@homebound/beam 3.0.0-alpha.5 → 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/README.md +5 -1
- package/dist/Css.json +1 -1
- package/dist/index.cjs +482 -448
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -2
- package/dist/index.d.ts +17 -2
- package/dist/index.js +481 -448
- package/dist/index.js.map +1 -1
- package/dist/truss.css +114 -190
- package/package.json +4 -3
package/dist/index.cjs
CHANGED
|
@@ -221,6 +221,7 @@ __export(index_exports, {
|
|
|
221
221
|
formatValue: () => formatValue,
|
|
222
222
|
generateColumnId: () => generateColumnId,
|
|
223
223
|
getAlignment: () => getAlignment,
|
|
224
|
+
getColumnBorderCss: () => getColumnBorderCss,
|
|
224
225
|
getDateFormat: () => getDateFormat,
|
|
225
226
|
getFirstOrLastCellCss: () => getFirstOrLastCellCss,
|
|
226
227
|
getJustification: () => getJustification,
|
|
@@ -3670,9 +3671,9 @@ var CssBuilder = class _CssBuilder {
|
|
|
3670
3671
|
get measureNarrow() {
|
|
3671
3672
|
return this.add("maxWidth", "20em");
|
|
3672
3673
|
}
|
|
3673
|
-
/** Sets `textIndent: "1em"; marginTop:
|
|
3674
|
+
/** Sets `textIndent: "1em"; marginTop: "0px"; marginBottom: "0px"`. */
|
|
3674
3675
|
get indent() {
|
|
3675
|
-
return this.add("textIndent", "1em").add("marginTop",
|
|
3676
|
+
return this.add("textIndent", "1em").add("marginTop", "0px").add("marginBottom", "0px");
|
|
3676
3677
|
}
|
|
3677
3678
|
/** Sets `fontVariant: "small-caps"`. */
|
|
3678
3679
|
get smallCaps() {
|
|
@@ -4085,6 +4086,12 @@ var CssBuilder = class _CssBuilder {
|
|
|
4085
4086
|
get onDisabled() {
|
|
4086
4087
|
return this.newCss({ selector: ":disabled" });
|
|
4087
4088
|
}
|
|
4089
|
+
get ifFirstOfType() {
|
|
4090
|
+
return this.newCss({ selector: ":first-of-type" });
|
|
4091
|
+
}
|
|
4092
|
+
get ifLastOfType() {
|
|
4093
|
+
return this.newCss({ selector: ":last-of-type" });
|
|
4094
|
+
}
|
|
4088
4095
|
/** Marks this element as a default hover marker (for ancestor pseudo selectors). */
|
|
4089
4096
|
get marker() {
|
|
4090
4097
|
return this;
|
|
@@ -4164,6 +4171,11 @@ var CssBuilder = class _CssBuilder {
|
|
|
4164
4171
|
addCss(props) {
|
|
4165
4172
|
return this.add(omitUndefinedValues(props));
|
|
4166
4173
|
}
|
|
4174
|
+
/** Marker for the build-time transform to append a raw className. */
|
|
4175
|
+
className(className) {
|
|
4176
|
+
void className;
|
|
4177
|
+
return this;
|
|
4178
|
+
}
|
|
4167
4179
|
/** Convert a style hash into `{ className, style }` props for manual spreading into non-`css=` contexts. */
|
|
4168
4180
|
props(styles) {
|
|
4169
4181
|
return (0, import_runtime.trussProps)(styles);
|
|
@@ -4191,7 +4203,7 @@ function px(pixels) {
|
|
|
4191
4203
|
return `${pixels}px`;
|
|
4192
4204
|
}
|
|
4193
4205
|
function omitUndefinedValues(value) {
|
|
4194
|
-
const entries = Object.entries(value).filter(
|
|
4206
|
+
const entries = Object.entries(value).filter(([, entryValue]) => {
|
|
4195
4207
|
return entryValue !== void 0;
|
|
4196
4208
|
});
|
|
4197
4209
|
return Object.fromEntries(entries);
|
|
@@ -4578,12 +4590,12 @@ function Popper(props) {
|
|
|
4578
4590
|
color: "white",
|
|
4579
4591
|
paddingLeft: "pl1",
|
|
4580
4592
|
paddingRight: "pr1",
|
|
4581
|
-
paddingTop: "
|
|
4582
|
-
paddingBottom: "
|
|
4593
|
+
paddingTop: "pt_4px",
|
|
4594
|
+
paddingBottom: "pb_4px",
|
|
4583
4595
|
borderRadius: "br4",
|
|
4584
4596
|
fontWeight: "fw4",
|
|
4585
|
-
fontSize: "
|
|
4586
|
-
lineHeight: "
|
|
4597
|
+
fontSize: "fz_12px",
|
|
4598
|
+
lineHeight: "lh_16px",
|
|
4587
4599
|
zIndex: "z_999999"
|
|
4588
4600
|
},
|
|
4589
4601
|
...xss
|
|
@@ -5157,10 +5169,10 @@ function Chip(props) {
|
|
|
5157
5169
|
} }),
|
|
5158
5170
|
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", { ...(0, import_runtime4.trussProps)({
|
|
5159
5171
|
overflow: "oh",
|
|
5160
|
-
display: "
|
|
5161
|
-
WebkitBoxOrient: "
|
|
5162
|
-
textOverflow: "
|
|
5163
|
-
WebkitLineClamp: "
|
|
5172
|
+
display: "d_negwebkit_box",
|
|
5173
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5174
|
+
textOverflow: "to_ellipsis",
|
|
5175
|
+
WebkitLineClamp: "wlc_1",
|
|
5164
5176
|
wordBreak: "wbba"
|
|
5165
5177
|
}), children: text })
|
|
5166
5178
|
] })
|
|
@@ -5196,8 +5208,8 @@ var typeStyles = {
|
|
|
5196
5208
|
};
|
|
5197
5209
|
var chipBaseStyles = (compact) => ({
|
|
5198
5210
|
fontWeight: "fw6",
|
|
5199
|
-
fontSize: "
|
|
5200
|
-
lineHeight: "
|
|
5211
|
+
fontSize: "fz_12px",
|
|
5212
|
+
lineHeight: "lh_16px",
|
|
5201
5213
|
display: "dif",
|
|
5202
5214
|
alignItems: "aic",
|
|
5203
5215
|
borderRadius: "br16",
|
|
@@ -5315,6 +5327,7 @@ var nonKindGridColumnKeys = [
|
|
|
5315
5327
|
"serverSideSortKey",
|
|
5316
5328
|
"clientSideSort",
|
|
5317
5329
|
"sticky",
|
|
5330
|
+
"border",
|
|
5318
5331
|
"wrapAction",
|
|
5319
5332
|
"isAction",
|
|
5320
5333
|
"id",
|
|
@@ -5798,8 +5811,8 @@ function ExpandableHeader(props) {
|
|
|
5798
5811
|
return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("button", { ...hoverProps, ...(0, import_runtime8.trussProps)({
|
|
5799
5812
|
display: "df",
|
|
5800
5813
|
fontWeight: "fw4",
|
|
5801
|
-
fontSize: "
|
|
5802
|
-
lineHeight: "
|
|
5814
|
+
fontSize: "fz_12px",
|
|
5815
|
+
lineHeight: "lh_16px",
|
|
5803
5816
|
alignItems: "aic",
|
|
5804
5817
|
justifyContent: "jcsb",
|
|
5805
5818
|
gap: "gap2",
|
|
@@ -5848,10 +5861,10 @@ function ExpandableHeader(props) {
|
|
|
5848
5861
|
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { ...(0, import_runtime8.trussProps)({
|
|
5849
5862
|
textAlign: "tal",
|
|
5850
5863
|
overflow: "oh",
|
|
5851
|
-
display: "
|
|
5852
|
-
WebkitBoxOrient: "
|
|
5853
|
-
textOverflow: "
|
|
5854
|
-
WebkitLineClamp: "
|
|
5864
|
+
display: "d_negwebkit_box",
|
|
5865
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5866
|
+
textOverflow: "to_ellipsis",
|
|
5867
|
+
WebkitLineClamp: "wlc_2"
|
|
5855
5868
|
}), children: title }),
|
|
5856
5869
|
tooltipEl
|
|
5857
5870
|
] }),
|
|
@@ -5920,10 +5933,10 @@ function SortHeader(props) {
|
|
|
5920
5933
|
iconOnLeft && icon,
|
|
5921
5934
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", { ...(0, import_runtime9.trussProps)({
|
|
5922
5935
|
overflow: "oh",
|
|
5923
|
-
display: "
|
|
5924
|
-
WebkitBoxOrient: "
|
|
5925
|
-
textOverflow: "
|
|
5926
|
-
WebkitLineClamp: "
|
|
5936
|
+
display: "d_negwebkit_box",
|
|
5937
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5938
|
+
textOverflow: "to_ellipsis",
|
|
5939
|
+
WebkitLineClamp: "wlc_2"
|
|
5927
5940
|
}), children: content }),
|
|
5928
5941
|
tooltipEl,
|
|
5929
5942
|
!iconOnLeft && icon
|
|
@@ -5955,7 +5968,7 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
|
|
|
5955
5968
|
...style?.presentationSettings?.wrap === false ? {
|
|
5956
5969
|
whiteSpace: "wsnw",
|
|
5957
5970
|
overflow: "oh",
|
|
5958
|
-
textOverflow: "
|
|
5971
|
+
textOverflow: "to_ellipsis"
|
|
5959
5972
|
} : {}
|
|
5960
5973
|
})) : content;
|
|
5961
5974
|
if (content && typeof content === "string" && isHeader && canSortColumn) {
|
|
@@ -5966,10 +5979,10 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
|
|
|
5966
5979
|
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(import_jsx_runtime12.Fragment, { children: [
|
|
5967
5980
|
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { ...(0, import_runtime10.trussProps)({
|
|
5968
5981
|
overflow: "oh",
|
|
5969
|
-
display: "
|
|
5970
|
-
WebkitBoxOrient: "
|
|
5971
|
-
textOverflow: "
|
|
5972
|
-
WebkitLineClamp: "
|
|
5982
|
+
display: "d_negwebkit_box",
|
|
5983
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5984
|
+
textOverflow: "to_ellipsis",
|
|
5985
|
+
WebkitLineClamp: "wlc_2"
|
|
5973
5986
|
}), children: content }),
|
|
5974
5987
|
tooltipEl
|
|
5975
5988
|
] });
|
|
@@ -5977,10 +5990,10 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
|
|
|
5977
5990
|
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(import_jsx_runtime12.Fragment, { children: [
|
|
5978
5991
|
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { ...(0, import_runtime10.trussProps)({
|
|
5979
5992
|
overflow: "oh",
|
|
5980
|
-
display: "
|
|
5981
|
-
WebkitBoxOrient: "
|
|
5982
|
-
textOverflow: "
|
|
5983
|
-
WebkitLineClamp: "
|
|
5993
|
+
display: "d_negwebkit_box",
|
|
5994
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5995
|
+
textOverflow: "to_ellipsis",
|
|
5996
|
+
WebkitLineClamp: "wlc_2"
|
|
5984
5997
|
}), title: content, children: content }),
|
|
5985
5998
|
tooltipEl
|
|
5986
5999
|
] });
|
|
@@ -5989,7 +6002,7 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
|
|
|
5989
6002
|
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { ...(0, import_runtime10.trussProps)({
|
|
5990
6003
|
whiteSpace: "wsnw",
|
|
5991
6004
|
overflow: "oh",
|
|
5992
|
-
textOverflow: "
|
|
6005
|
+
textOverflow: "to_ellipsis",
|
|
5993
6006
|
minWidth: "mw0"
|
|
5994
6007
|
}), title: content, children: content }),
|
|
5995
6008
|
tooltipEl
|
|
@@ -6035,6 +6048,19 @@ function getFirstOrLastCellCss(style, columnIndex, columns, colspan = 1) {
|
|
|
6035
6048
|
...columnIndex + colspan >= columns.length ? style.lastCellCss : {}
|
|
6036
6049
|
};
|
|
6037
6050
|
}
|
|
6051
|
+
function getColumnBorderCss(border, style) {
|
|
6052
|
+
if (!border) return {};
|
|
6053
|
+
return {
|
|
6054
|
+
...border === "left" ? {
|
|
6055
|
+
borderLeftStyle: "bls_solid",
|
|
6056
|
+
borderLeftWidth: "blw_1px"
|
|
6057
|
+
} : {
|
|
6058
|
+
borderRightStyle: "brs_solid",
|
|
6059
|
+
borderRightWidth: "brw_1px"
|
|
6060
|
+
},
|
|
6061
|
+
...style.borderStyle
|
|
6062
|
+
};
|
|
6063
|
+
}
|
|
6038
6064
|
function isJSX(content) {
|
|
6039
6065
|
return typeof content === "object" && content && "type" in content && "props" in content;
|
|
6040
6066
|
}
|
|
@@ -6339,8 +6365,8 @@ function Header(props) {
|
|
|
6339
6365
|
}), children: [
|
|
6340
6366
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h1", { ...(0, import_runtime12.trussProps)({
|
|
6341
6367
|
fontWeight: "fw4",
|
|
6342
|
-
fontSize: "
|
|
6343
|
-
lineHeight: "
|
|
6368
|
+
fontSize: "fz_16px",
|
|
6369
|
+
lineHeight: "lh_24px"
|
|
6344
6370
|
}), children: (0, import_date_fns.format)(displayMonth, "MMMM yyyy") }),
|
|
6345
6371
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
|
|
6346
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)) }),
|
|
@@ -6371,8 +6397,8 @@ function YearSkipHeader(props) {
|
|
|
6371
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)) }),
|
|
6372
6398
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h1", { ...(0, import_runtime12.trussProps)({
|
|
6373
6399
|
fontWeight: "fw4",
|
|
6374
|
-
fontSize: "
|
|
6375
|
-
lineHeight: "
|
|
6400
|
+
fontSize: "fz_16px",
|
|
6401
|
+
lineHeight: "lh_24px"
|
|
6376
6402
|
}), children: (0, import_date_fns.format)(displayMonth, "MMM") }),
|
|
6377
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)) })
|
|
6378
6404
|
] }),
|
|
@@ -6384,8 +6410,8 @@ function YearSkipHeader(props) {
|
|
|
6384
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)) }),
|
|
6385
6411
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h1", { ...(0, import_runtime12.trussProps)({
|
|
6386
6412
|
fontWeight: "fw4",
|
|
6387
|
-
fontSize: "
|
|
6388
|
-
lineHeight: "
|
|
6413
|
+
fontSize: "fz_16px",
|
|
6414
|
+
lineHeight: "lh_24px"
|
|
6389
6415
|
}), children: (0, import_date_fns.format)(displayMonth, "yyyy") }),
|
|
6390
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)) })
|
|
6391
6417
|
] })
|
|
@@ -6409,8 +6435,8 @@ function WeekHeader() {
|
|
|
6409
6435
|
paddingRight: "pr1",
|
|
6410
6436
|
paddingLeft: "pl1",
|
|
6411
6437
|
fontWeight: "fw4",
|
|
6412
|
-
fontSize: "
|
|
6413
|
-
lineHeight: "
|
|
6438
|
+
fontSize: "fz_12px",
|
|
6439
|
+
lineHeight: "lh_16px",
|
|
6414
6440
|
color: "gray400"
|
|
6415
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") }))) }) });
|
|
6416
6442
|
}
|
|
@@ -6431,8 +6457,8 @@ function DatePicker(props) {
|
|
|
6431
6457
|
display: "dib",
|
|
6432
6458
|
backgroundColor: "bgWhite",
|
|
6433
6459
|
fontWeight: "fw4",
|
|
6434
|
-
fontSize: "
|
|
6435
|
-
lineHeight: "
|
|
6460
|
+
fontSize: "fz_12px",
|
|
6461
|
+
lineHeight: "lh_16px"
|
|
6436
6462
|
}), ...tid, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
6437
6463
|
import_react_day_picker3.DayPicker,
|
|
6438
6464
|
{
|
|
@@ -6485,8 +6511,8 @@ function DateRangePicker(props) {
|
|
|
6485
6511
|
display: "dib",
|
|
6486
6512
|
backgroundColor: "bgWhite",
|
|
6487
6513
|
fontWeight: "fw4",
|
|
6488
|
-
fontSize: "
|
|
6489
|
-
lineHeight: "
|
|
6514
|
+
fontSize: "fz_12px",
|
|
6515
|
+
lineHeight: "lh_16px"
|
|
6490
6516
|
}), ...tid, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_react_day_picker4.DayPicker, { mode: "range", selected: range, components: {
|
|
6491
6517
|
Caption: useYearPicker ? YearSkipHeader : Header,
|
|
6492
6518
|
Head: WeekHeader,
|
|
@@ -6529,8 +6555,8 @@ function MenuSectionImpl(props) {
|
|
|
6529
6555
|
const tid = useTestIds(props);
|
|
6530
6556
|
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
|
|
6531
6557
|
isPersistentSection && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("li", { ...separatorProps, ...(0, import_runtime17.trussProps)({
|
|
6532
|
-
borderTopStyle: "
|
|
6533
|
-
borderTopWidth: "
|
|
6558
|
+
borderTopStyle: "bts_solid",
|
|
6559
|
+
borderTopWidth: "btw_1px",
|
|
6534
6560
|
borderColor: "bcGray200"
|
|
6535
6561
|
}) }),
|
|
6536
6562
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("li", { ...itemProps, ...(0, import_runtime17.trussProps)({
|
|
@@ -6542,9 +6568,9 @@ function MenuSectionImpl(props) {
|
|
|
6542
6568
|
color: "white"
|
|
6543
6569
|
} : {}
|
|
6544
6570
|
}), children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("ul", { ...(0, import_runtime17.trussProps)({
|
|
6545
|
-
padding: "
|
|
6546
|
-
margin: "
|
|
6547
|
-
listStyle: "
|
|
6571
|
+
padding: "p_0",
|
|
6572
|
+
margin: "m_0",
|
|
6573
|
+
listStyle: "lis_none"
|
|
6548
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)) }) })
|
|
6549
6575
|
] });
|
|
6550
6576
|
}
|
|
@@ -6572,8 +6598,8 @@ function HelperText(props) {
|
|
|
6572
6598
|
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { ...(0, import_runtime18.trussProps)({
|
|
6573
6599
|
color: "gray700",
|
|
6574
6600
|
fontWeight: "fw4",
|
|
6575
|
-
fontSize: "
|
|
6576
|
-
lineHeight: "
|
|
6601
|
+
fontSize: "fz_12px",
|
|
6602
|
+
lineHeight: "lh_16px",
|
|
6577
6603
|
marginTop: "mt_4px",
|
|
6578
6604
|
...contrast ? {
|
|
6579
6605
|
color: "gray100"
|
|
@@ -6604,8 +6630,8 @@ function LabelComponent(props) {
|
|
|
6604
6630
|
alignItems: "aic",
|
|
6605
6631
|
gap: "gap1",
|
|
6606
6632
|
fontWeight: "fw4",
|
|
6607
|
-
fontSize: "
|
|
6608
|
-
lineHeight: "
|
|
6633
|
+
fontSize: "fz_14px",
|
|
6634
|
+
lineHeight: "lh_20px",
|
|
6609
6635
|
color: "gray700",
|
|
6610
6636
|
marginBottom: ["mb_var", {
|
|
6611
6637
|
"--marginBottom": `${inline ? 0 : 4}px`
|
|
@@ -6637,8 +6663,8 @@ function InlineLabel({
|
|
|
6637
6663
|
}) {
|
|
6638
6664
|
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("label", { ...labelProps, ...others, ...(0, import_runtime19.trussProps)({
|
|
6639
6665
|
fontWeight: "fw4",
|
|
6640
|
-
fontSize: "
|
|
6641
|
-
lineHeight: "
|
|
6666
|
+
fontSize: "fz_14px",
|
|
6667
|
+
lineHeight: "lh_20px",
|
|
6642
6668
|
whiteSpace: "wsnw",
|
|
6643
6669
|
color: "color_currentColor",
|
|
6644
6670
|
paddingRight: "pr_4px",
|
|
@@ -7067,58 +7093,58 @@ function KeptGroupRow(props) {
|
|
|
7067
7093
|
var __typography = {
|
|
7068
7094
|
xs2: {
|
|
7069
7095
|
fontWeight: "fw4",
|
|
7070
|
-
fontSize: "
|
|
7071
|
-
lineHeight: "
|
|
7096
|
+
fontSize: "fz_10px",
|
|
7097
|
+
lineHeight: "lh_14px"
|
|
7072
7098
|
},
|
|
7073
7099
|
xs2Sb: {
|
|
7074
7100
|
fontWeight: "fw6",
|
|
7075
|
-
fontSize: "
|
|
7076
|
-
lineHeight: "
|
|
7101
|
+
fontSize: "fz_10px",
|
|
7102
|
+
lineHeight: "lh_14px"
|
|
7077
7103
|
},
|
|
7078
7104
|
xs: {
|
|
7079
7105
|
fontWeight: "fw4",
|
|
7080
|
-
fontSize: "
|
|
7081
|
-
lineHeight: "
|
|
7106
|
+
fontSize: "fz_12px",
|
|
7107
|
+
lineHeight: "lh_16px"
|
|
7082
7108
|
},
|
|
7083
7109
|
xsSb: {
|
|
7084
7110
|
fontWeight: "fw6",
|
|
7085
|
-
fontSize: "
|
|
7086
|
-
lineHeight: "
|
|
7111
|
+
fontSize: "fz_12px",
|
|
7112
|
+
lineHeight: "lh_16px"
|
|
7087
7113
|
},
|
|
7088
7114
|
sm: {
|
|
7089
7115
|
fontWeight: "fw4",
|
|
7090
|
-
fontSize: "
|
|
7091
|
-
lineHeight: "
|
|
7116
|
+
fontSize: "fz_14px",
|
|
7117
|
+
lineHeight: "lh_20px"
|
|
7092
7118
|
},
|
|
7093
7119
|
smSb: {
|
|
7094
7120
|
fontWeight: "fw6",
|
|
7095
|
-
fontSize: "
|
|
7096
|
-
lineHeight: "
|
|
7121
|
+
fontSize: "fz_14px",
|
|
7122
|
+
lineHeight: "lh_20px"
|
|
7097
7123
|
},
|
|
7098
7124
|
md: {
|
|
7099
7125
|
fontWeight: "fw4",
|
|
7100
|
-
fontSize: "
|
|
7101
|
-
lineHeight: "
|
|
7126
|
+
fontSize: "fz_16px",
|
|
7127
|
+
lineHeight: "lh_24px"
|
|
7102
7128
|
},
|
|
7103
7129
|
mdSb: {
|
|
7104
7130
|
fontWeight: "fw6",
|
|
7105
|
-
fontSize: "
|
|
7106
|
-
lineHeight: "
|
|
7131
|
+
fontSize: "fz_16px",
|
|
7132
|
+
lineHeight: "lh_24px"
|
|
7107
7133
|
},
|
|
7108
7134
|
lg: {
|
|
7109
7135
|
fontWeight: "fw6",
|
|
7110
|
-
fontSize: "
|
|
7111
|
-
lineHeight: "
|
|
7136
|
+
fontSize: "fz_18px",
|
|
7137
|
+
lineHeight: "lh_28px"
|
|
7112
7138
|
},
|
|
7113
7139
|
xl: {
|
|
7114
7140
|
fontWeight: "fw6",
|
|
7115
|
-
fontSize: "
|
|
7116
|
-
lineHeight: "
|
|
7141
|
+
fontSize: "fz_20px",
|
|
7142
|
+
lineHeight: "lh_28px"
|
|
7117
7143
|
},
|
|
7118
7144
|
xl2: {
|
|
7119
7145
|
fontWeight: "fw6",
|
|
7120
|
-
fontSize: "
|
|
7121
|
-
lineHeight: "
|
|
7146
|
+
fontSize: "fz_30px",
|
|
7147
|
+
lineHeight: "lh_36px"
|
|
7122
7148
|
}
|
|
7123
7149
|
};
|
|
7124
7150
|
function memoizedTableStyles() {
|
|
@@ -7143,8 +7169,8 @@ function memoizedTableStyles() {
|
|
|
7143
7169
|
cellCss: {
|
|
7144
7170
|
...{
|
|
7145
7171
|
fontWeight: "fw6",
|
|
7146
|
-
fontSize: "
|
|
7147
|
-
lineHeight: "
|
|
7172
|
+
fontSize: "fz_12px",
|
|
7173
|
+
lineHeight: "lh_16px",
|
|
7148
7174
|
minHeight: "mh_56px",
|
|
7149
7175
|
color: "gray700",
|
|
7150
7176
|
backgroundColor: "bgGray100",
|
|
@@ -7159,13 +7185,13 @@ function memoizedTableStyles() {
|
|
|
7159
7185
|
firstContentColumn: {
|
|
7160
7186
|
...{
|
|
7161
7187
|
fontWeight: "fw4",
|
|
7162
|
-
fontSize: "
|
|
7163
|
-
lineHeight: "
|
|
7188
|
+
fontSize: "fz_14px",
|
|
7189
|
+
lineHeight: "lh_20px"
|
|
7164
7190
|
},
|
|
7165
7191
|
...allWhite && {
|
|
7166
7192
|
fontWeight: "fw6",
|
|
7167
|
-
fontSize: "
|
|
7168
|
-
lineHeight: "
|
|
7193
|
+
fontSize: "fz_14px",
|
|
7194
|
+
lineHeight: "lh_20px",
|
|
7169
7195
|
color: "gray900"
|
|
7170
7196
|
}
|
|
7171
7197
|
}
|
|
@@ -7173,8 +7199,8 @@ function memoizedTableStyles() {
|
|
|
7173
7199
|
2: {
|
|
7174
7200
|
firstContentColumn: {
|
|
7175
7201
|
fontWeight: "fw4",
|
|
7176
|
-
fontSize: "
|
|
7177
|
-
lineHeight: "
|
|
7202
|
+
fontSize: "fz_12px",
|
|
7203
|
+
lineHeight: "lh_16px",
|
|
7178
7204
|
paddingLeft: "pl3"
|
|
7179
7205
|
}
|
|
7180
7206
|
},
|
|
@@ -7182,8 +7208,8 @@ function memoizedTableStyles() {
|
|
|
7182
7208
|
3: {
|
|
7183
7209
|
firstContentColumn: {
|
|
7184
7210
|
fontWeight: "fw4",
|
|
7185
|
-
fontSize: "
|
|
7186
|
-
lineHeight: "
|
|
7211
|
+
fontSize: "fz_12px",
|
|
7212
|
+
lineHeight: "lh_16px",
|
|
7187
7213
|
paddingLeft: "pl_36px"
|
|
7188
7214
|
}
|
|
7189
7215
|
}
|
|
@@ -7192,8 +7218,8 @@ function memoizedTableStyles() {
|
|
|
7192
7218
|
1: {
|
|
7193
7219
|
firstContentColumn: {
|
|
7194
7220
|
fontWeight: "fw4",
|
|
7195
|
-
fontSize: "
|
|
7196
|
-
lineHeight: "
|
|
7221
|
+
fontSize: "fz_12px",
|
|
7222
|
+
lineHeight: "lh_16px",
|
|
7197
7223
|
paddingLeft: "pl3"
|
|
7198
7224
|
}
|
|
7199
7225
|
}
|
|
@@ -7210,10 +7236,10 @@ function memoizedTableStyles() {
|
|
|
7210
7236
|
backgroundColor: "bgWhite"
|
|
7211
7237
|
},
|
|
7212
7238
|
...bordered && {
|
|
7213
|
-
borderLeftStyle: "
|
|
7214
|
-
borderLeftWidth: "
|
|
7215
|
-
borderRightStyle: "
|
|
7216
|
-
borderRightWidth: "
|
|
7239
|
+
borderLeftStyle: "bls_solid",
|
|
7240
|
+
borderLeftWidth: "blw_1px",
|
|
7241
|
+
borderRightStyle: "brs_solid",
|
|
7242
|
+
borderRightWidth: "brw_1px",
|
|
7217
7243
|
borderColor: "bcGray200"
|
|
7218
7244
|
}
|
|
7219
7245
|
},
|
|
@@ -7225,12 +7251,12 @@ function memoizedTableStyles() {
|
|
|
7225
7251
|
...{
|
|
7226
7252
|
color: "gray700",
|
|
7227
7253
|
fontWeight: "fw6",
|
|
7228
|
-
fontSize: "
|
|
7229
|
-
lineHeight: "
|
|
7254
|
+
fontSize: "fz_12px",
|
|
7255
|
+
lineHeight: "lh_16px",
|
|
7230
7256
|
backgroundColor: "bgGray200",
|
|
7231
7257
|
alignItems: "aic",
|
|
7232
|
-
paddingLeft: "
|
|
7233
|
-
paddingRight: "
|
|
7258
|
+
paddingLeft: "pl_12px",
|
|
7259
|
+
paddingRight: "pr_12px",
|
|
7234
7260
|
whiteSpace: "whiteSpace_unset",
|
|
7235
7261
|
height: "h_40px"
|
|
7236
7262
|
},
|
|
@@ -7242,28 +7268,28 @@ function memoizedTableStyles() {
|
|
|
7242
7268
|
backgroundColor: "bgGray100",
|
|
7243
7269
|
color: "gray700",
|
|
7244
7270
|
fontWeight: "fw6",
|
|
7245
|
-
fontSize: "
|
|
7246
|
-
lineHeight: "
|
|
7271
|
+
fontSize: "fz_12px",
|
|
7272
|
+
lineHeight: "lh_16px",
|
|
7247
7273
|
height: ["h_var", {
|
|
7248
7274
|
"--height": `${totalsRowHeight}px`
|
|
7249
7275
|
}],
|
|
7250
|
-
paddingTop: "
|
|
7251
|
-
paddingBottom: "
|
|
7252
|
-
paddingRight: "
|
|
7253
|
-
paddingLeft: "
|
|
7276
|
+
paddingTop: "pt_12px",
|
|
7277
|
+
paddingBottom: "pb_12px",
|
|
7278
|
+
paddingRight: "pr_12px",
|
|
7279
|
+
paddingLeft: "pl_12px"
|
|
7254
7280
|
},
|
|
7255
7281
|
expandableHeaderCss: {
|
|
7256
7282
|
backgroundColor: "bgWhite",
|
|
7257
7283
|
color: "gray900",
|
|
7258
7284
|
fontWeight: "fw6",
|
|
7259
|
-
fontSize: "
|
|
7260
|
-
lineHeight: "
|
|
7285
|
+
fontSize: "fz_12px",
|
|
7286
|
+
lineHeight: "lh_16px",
|
|
7261
7287
|
whiteSpace: "wsn",
|
|
7262
7288
|
height: ["h_var", {
|
|
7263
7289
|
"--height": `${expandableHeaderRowHeight}px`
|
|
7264
7290
|
}],
|
|
7265
|
-
paddingLeft: "
|
|
7266
|
-
paddingRight: "
|
|
7291
|
+
paddingLeft: "pl_12px",
|
|
7292
|
+
paddingRight: "pr_12px",
|
|
7267
7293
|
paddingTop: "pt0",
|
|
7268
7294
|
paddingBottom: "pb0",
|
|
7269
7295
|
boxShadow: ["boxShadow_var", {
|
|
@@ -7285,15 +7311,15 @@ function memoizedTableStyles() {
|
|
|
7285
7311
|
alignItems: ["ai_var", {
|
|
7286
7312
|
"--alignItems": alignItems
|
|
7287
7313
|
}],
|
|
7288
|
-
paddingLeft: "
|
|
7289
|
-
paddingRight: "
|
|
7314
|
+
paddingLeft: "pl_12px",
|
|
7315
|
+
paddingRight: "pr_12px",
|
|
7290
7316
|
boxShadow: ["boxShadow_var", {
|
|
7291
7317
|
"--boxShadow": `inset 0 -1px 0 ${"rgba(236, 235, 235, 1)" /* Gray200 */}`
|
|
7292
7318
|
}]
|
|
7293
7319
|
},
|
|
7294
7320
|
...rowHeight === "flexible" ? {
|
|
7295
|
-
paddingTop: "
|
|
7296
|
-
paddingBottom: "
|
|
7321
|
+
paddingTop: "pt_12px",
|
|
7322
|
+
paddingBottom: "pb_12px"
|
|
7297
7323
|
} : {
|
|
7298
7324
|
whiteSpace: "wsnw",
|
|
7299
7325
|
height: ["h_var", {
|
|
@@ -7305,18 +7331,21 @@ function memoizedTableStyles() {
|
|
|
7305
7331
|
} : {}
|
|
7306
7332
|
},
|
|
7307
7333
|
firstCellCss: bordered ? {
|
|
7308
|
-
borderLeftStyle: "
|
|
7309
|
-
borderLeftWidth: "
|
|
7334
|
+
borderLeftStyle: "bls_solid",
|
|
7335
|
+
borderLeftWidth: "blw_1px",
|
|
7310
7336
|
borderColor: "bcGray200"
|
|
7311
7337
|
} : void 0,
|
|
7312
7338
|
lastCellCss: bordered ? {
|
|
7313
|
-
borderRightStyle: "
|
|
7314
|
-
borderRightWidth: "
|
|
7339
|
+
borderRightStyle: "brs_solid",
|
|
7340
|
+
borderRightWidth: "brw_1px",
|
|
7315
7341
|
borderColor: "bcGray200"
|
|
7316
7342
|
} : void 0,
|
|
7343
|
+
borderStyle: {
|
|
7344
|
+
borderColor: "bcGray200"
|
|
7345
|
+
},
|
|
7317
7346
|
firstRowCellCss: bordered ? {
|
|
7318
|
-
borderTopStyle: "
|
|
7319
|
-
borderTopWidth: "
|
|
7347
|
+
borderTopStyle: "bts_solid",
|
|
7348
|
+
borderTopWidth: "btw_1px",
|
|
7320
7349
|
borderColor: "bcGray200"
|
|
7321
7350
|
} : void 0,
|
|
7322
7351
|
firstRowFirstCellCss: {
|
|
@@ -7329,8 +7358,8 @@ function memoizedTableStyles() {
|
|
|
7329
7358
|
// remove the inset shadow and, when bordered, replace it with a true bottom border.
|
|
7330
7359
|
lastRowCellCss: bordered ? {
|
|
7331
7360
|
boxShadow: "bsh0",
|
|
7332
|
-
borderBottomStyle: "
|
|
7333
|
-
borderBottomWidth: "
|
|
7361
|
+
borderBottomStyle: "bbs_solid",
|
|
7362
|
+
borderBottomWidth: "bbw_1px",
|
|
7334
7363
|
borderColor: "bcGray200"
|
|
7335
7364
|
} : {
|
|
7336
7365
|
boxShadow: "bsh0"
|
|
@@ -7354,8 +7383,8 @@ function memoizedTableStyles() {
|
|
|
7354
7383
|
backgroundColor: "bgYellow100",
|
|
7355
7384
|
color: "gray900",
|
|
7356
7385
|
fontWeight: "fw6",
|
|
7357
|
-
fontSize: "
|
|
7358
|
-
lineHeight: "
|
|
7386
|
+
fontSize: "fz_12px",
|
|
7387
|
+
lineHeight: "lh_16px",
|
|
7359
7388
|
display: "df",
|
|
7360
7389
|
alignItems: "aic"
|
|
7361
7390
|
},
|
|
@@ -7385,8 +7414,8 @@ var condensedStyle = {
|
|
|
7385
7414
|
}).firstRowMessageCss,
|
|
7386
7415
|
...{
|
|
7387
7416
|
fontWeight: "fw4",
|
|
7388
|
-
fontSize: "
|
|
7389
|
-
lineHeight: "
|
|
7417
|
+
fontSize: "fz_12px",
|
|
7418
|
+
lineHeight: "lh_16px",
|
|
7390
7419
|
color: "gray900"
|
|
7391
7420
|
}
|
|
7392
7421
|
}
|
|
@@ -7405,10 +7434,10 @@ var cardStyle = {
|
|
|
7405
7434
|
boxShadow: "h_bshHover"
|
|
7406
7435
|
},
|
|
7407
7436
|
firstRowCss: {
|
|
7408
|
-
borderLeftStyle: "
|
|
7409
|
-
borderLeftWidth: "
|
|
7410
|
-
borderRightStyle: "
|
|
7411
|
-
borderRightWidth: "
|
|
7437
|
+
borderLeftStyle: "bls_solid",
|
|
7438
|
+
borderLeftWidth: "blw_1px",
|
|
7439
|
+
borderRightStyle: "brs_solid",
|
|
7440
|
+
borderRightWidth: "brw_1px",
|
|
7412
7441
|
borderColor: "bcGray200",
|
|
7413
7442
|
borderRadius: "borderRadius_8px_8px_0_0",
|
|
7414
7443
|
overflow: "oh"
|
|
@@ -7432,8 +7461,8 @@ var cardStyle = {
|
|
|
7432
7461
|
marginRight: "mr0",
|
|
7433
7462
|
marginLeft: "ml0",
|
|
7434
7463
|
fontWeight: "fw6",
|
|
7435
|
-
fontSize: "
|
|
7436
|
-
lineHeight: "
|
|
7464
|
+
fontSize: "fz_12px",
|
|
7465
|
+
lineHeight: "lh_16px",
|
|
7437
7466
|
color: "gray700"
|
|
7438
7467
|
}
|
|
7439
7468
|
},
|
|
@@ -7842,58 +7871,58 @@ var __maybeInc3 = (inc) => {
|
|
|
7842
7871
|
var __typography2 = {
|
|
7843
7872
|
xs2: {
|
|
7844
7873
|
fontWeight: "fw4",
|
|
7845
|
-
fontSize: "
|
|
7846
|
-
lineHeight: "
|
|
7874
|
+
fontSize: "fz_10px",
|
|
7875
|
+
lineHeight: "lh_14px"
|
|
7847
7876
|
},
|
|
7848
7877
|
xs2Sb: {
|
|
7849
7878
|
fontWeight: "fw6",
|
|
7850
|
-
fontSize: "
|
|
7851
|
-
lineHeight: "
|
|
7879
|
+
fontSize: "fz_10px",
|
|
7880
|
+
lineHeight: "lh_14px"
|
|
7852
7881
|
},
|
|
7853
7882
|
xs: {
|
|
7854
7883
|
fontWeight: "fw4",
|
|
7855
|
-
fontSize: "
|
|
7856
|
-
lineHeight: "
|
|
7884
|
+
fontSize: "fz_12px",
|
|
7885
|
+
lineHeight: "lh_16px"
|
|
7857
7886
|
},
|
|
7858
7887
|
xsSb: {
|
|
7859
7888
|
fontWeight: "fw6",
|
|
7860
|
-
fontSize: "
|
|
7861
|
-
lineHeight: "
|
|
7889
|
+
fontSize: "fz_12px",
|
|
7890
|
+
lineHeight: "lh_16px"
|
|
7862
7891
|
},
|
|
7863
7892
|
sm: {
|
|
7864
7893
|
fontWeight: "fw4",
|
|
7865
|
-
fontSize: "
|
|
7866
|
-
lineHeight: "
|
|
7894
|
+
fontSize: "fz_14px",
|
|
7895
|
+
lineHeight: "lh_20px"
|
|
7867
7896
|
},
|
|
7868
7897
|
smSb: {
|
|
7869
7898
|
fontWeight: "fw6",
|
|
7870
|
-
fontSize: "
|
|
7871
|
-
lineHeight: "
|
|
7899
|
+
fontSize: "fz_14px",
|
|
7900
|
+
lineHeight: "lh_20px"
|
|
7872
7901
|
},
|
|
7873
7902
|
md: {
|
|
7874
7903
|
fontWeight: "fw4",
|
|
7875
|
-
fontSize: "
|
|
7876
|
-
lineHeight: "
|
|
7904
|
+
fontSize: "fz_16px",
|
|
7905
|
+
lineHeight: "lh_24px"
|
|
7877
7906
|
},
|
|
7878
7907
|
mdSb: {
|
|
7879
7908
|
fontWeight: "fw6",
|
|
7880
|
-
fontSize: "
|
|
7881
|
-
lineHeight: "
|
|
7909
|
+
fontSize: "fz_16px",
|
|
7910
|
+
lineHeight: "lh_24px"
|
|
7882
7911
|
},
|
|
7883
7912
|
lg: {
|
|
7884
7913
|
fontWeight: "fw6",
|
|
7885
|
-
fontSize: "
|
|
7886
|
-
lineHeight: "
|
|
7914
|
+
fontSize: "fz_18px",
|
|
7915
|
+
lineHeight: "lh_28px"
|
|
7887
7916
|
},
|
|
7888
7917
|
xl: {
|
|
7889
7918
|
fontWeight: "fw6",
|
|
7890
|
-
fontSize: "
|
|
7891
|
-
lineHeight: "
|
|
7919
|
+
fontSize: "fz_20px",
|
|
7920
|
+
lineHeight: "lh_28px"
|
|
7892
7921
|
},
|
|
7893
7922
|
xl2: {
|
|
7894
7923
|
fontWeight: "fw6",
|
|
7895
|
-
fontSize: "
|
|
7896
|
-
lineHeight: "
|
|
7924
|
+
fontSize: "fz_30px",
|
|
7925
|
+
lineHeight: "lh_36px"
|
|
7897
7926
|
}
|
|
7898
7927
|
};
|
|
7899
7928
|
function maybeApplyFunction(row, maybeFn) {
|
|
@@ -8124,6 +8153,8 @@ function RowImpl(props) {
|
|
|
8124
8153
|
...isBodyRow && levelStyle?.cellCss,
|
|
8125
8154
|
// Level specific styling for the first content column
|
|
8126
8155
|
...applyFirstContentColumnStyles && levelStyle?.firstContentColumn,
|
|
8156
|
+
// Apply any declarative column border styling after header/body defaults.
|
|
8157
|
+
...getColumnBorderCss(column2.border, style),
|
|
8127
8158
|
// The specific cell's css (if any from GridCellContent)
|
|
8128
8159
|
...rowStyleCellCss,
|
|
8129
8160
|
// Apply active row styling for non-nested card styles.
|
|
@@ -8225,8 +8256,8 @@ function ErrorMessage(props) {
|
|
|
8225
8256
|
const errorEl = errorMsg ? /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { ...(0, import_runtime25.trussProps)({
|
|
8226
8257
|
color: "red600",
|
|
8227
8258
|
fontWeight: "fw4",
|
|
8228
|
-
fontSize: "
|
|
8229
|
-
lineHeight: "
|
|
8259
|
+
fontSize: "fz_14px",
|
|
8260
|
+
lineHeight: "lh_20px",
|
|
8230
8261
|
display: "df",
|
|
8231
8262
|
marginTop: "mt_4px",
|
|
8232
8263
|
...contrast ? {
|
|
@@ -8258,58 +8289,58 @@ var __maybeInc4 = (inc) => {
|
|
|
8258
8289
|
var __typography3 = {
|
|
8259
8290
|
xs2: {
|
|
8260
8291
|
fontWeight: "fw4",
|
|
8261
|
-
fontSize: "
|
|
8262
|
-
lineHeight: "
|
|
8292
|
+
fontSize: "fz_10px",
|
|
8293
|
+
lineHeight: "lh_14px"
|
|
8263
8294
|
},
|
|
8264
8295
|
xs2Sb: {
|
|
8265
8296
|
fontWeight: "fw6",
|
|
8266
|
-
fontSize: "
|
|
8267
|
-
lineHeight: "
|
|
8297
|
+
fontSize: "fz_10px",
|
|
8298
|
+
lineHeight: "lh_14px"
|
|
8268
8299
|
},
|
|
8269
8300
|
xs: {
|
|
8270
8301
|
fontWeight: "fw4",
|
|
8271
|
-
fontSize: "
|
|
8272
|
-
lineHeight: "
|
|
8302
|
+
fontSize: "fz_12px",
|
|
8303
|
+
lineHeight: "lh_16px"
|
|
8273
8304
|
},
|
|
8274
8305
|
xsSb: {
|
|
8275
8306
|
fontWeight: "fw6",
|
|
8276
|
-
fontSize: "
|
|
8277
|
-
lineHeight: "
|
|
8307
|
+
fontSize: "fz_12px",
|
|
8308
|
+
lineHeight: "lh_16px"
|
|
8278
8309
|
},
|
|
8279
8310
|
sm: {
|
|
8280
8311
|
fontWeight: "fw4",
|
|
8281
|
-
fontSize: "
|
|
8282
|
-
lineHeight: "
|
|
8312
|
+
fontSize: "fz_14px",
|
|
8313
|
+
lineHeight: "lh_20px"
|
|
8283
8314
|
},
|
|
8284
8315
|
smSb: {
|
|
8285
8316
|
fontWeight: "fw6",
|
|
8286
|
-
fontSize: "
|
|
8287
|
-
lineHeight: "
|
|
8317
|
+
fontSize: "fz_14px",
|
|
8318
|
+
lineHeight: "lh_20px"
|
|
8288
8319
|
},
|
|
8289
8320
|
md: {
|
|
8290
8321
|
fontWeight: "fw4",
|
|
8291
|
-
fontSize: "
|
|
8292
|
-
lineHeight: "
|
|
8322
|
+
fontSize: "fz_16px",
|
|
8323
|
+
lineHeight: "lh_24px"
|
|
8293
8324
|
},
|
|
8294
8325
|
mdSb: {
|
|
8295
8326
|
fontWeight: "fw6",
|
|
8296
|
-
fontSize: "
|
|
8297
|
-
lineHeight: "
|
|
8327
|
+
fontSize: "fz_16px",
|
|
8328
|
+
lineHeight: "lh_24px"
|
|
8298
8329
|
},
|
|
8299
8330
|
lg: {
|
|
8300
8331
|
fontWeight: "fw6",
|
|
8301
|
-
fontSize: "
|
|
8302
|
-
lineHeight: "
|
|
8332
|
+
fontSize: "fz_18px",
|
|
8333
|
+
lineHeight: "lh_28px"
|
|
8303
8334
|
},
|
|
8304
8335
|
xl: {
|
|
8305
8336
|
fontWeight: "fw6",
|
|
8306
|
-
fontSize: "
|
|
8307
|
-
lineHeight: "
|
|
8337
|
+
fontSize: "fz_20px",
|
|
8338
|
+
lineHeight: "lh_28px"
|
|
8308
8339
|
},
|
|
8309
8340
|
xl2: {
|
|
8310
8341
|
fontWeight: "fw6",
|
|
8311
|
-
fontSize: "
|
|
8312
|
-
lineHeight: "
|
|
8342
|
+
fontSize: "fz_30px",
|
|
8343
|
+
lineHeight: "lh_36px"
|
|
8313
8344
|
}
|
|
8314
8345
|
};
|
|
8315
8346
|
function TextFieldBase(props) {
|
|
@@ -8363,7 +8394,6 @@ function TextFieldBase(props) {
|
|
|
8363
8394
|
} = internalProps;
|
|
8364
8395
|
const errorMessageId = `${inputProps.id}-error`;
|
|
8365
8396
|
const labelSuffix = useLabelSuffix(required, inputProps.readOnly);
|
|
8366
|
-
const ElementType = multiline ? "textarea" : "input";
|
|
8367
8397
|
const tid = useTestIds(props, defaultTestId(label));
|
|
8368
8398
|
const [isFocused, setIsFocused] = (0, import_react26.useState)(false);
|
|
8369
8399
|
const {
|
|
@@ -8538,7 +8568,7 @@ function TextFieldBase(props) {
|
|
|
8538
8568
|
} : {
|
|
8539
8569
|
whiteSpace: "wsnw",
|
|
8540
8570
|
overflow: "oh",
|
|
8541
|
-
textOverflow: "
|
|
8571
|
+
textOverflow: "to_ellipsis"
|
|
8542
8572
|
}
|
|
8543
8573
|
},
|
|
8544
8574
|
hover: {
|
|
@@ -8598,6 +8628,38 @@ function TextFieldBase(props) {
|
|
|
8598
8628
|
}
|
|
8599
8629
|
const showFocus = isFocused && !inputProps.readOnly || forceFocus;
|
|
8600
8630
|
const showHover = isHovered && !inputProps.disabled && !inputProps.readOnly && !isFocused || forceHover;
|
|
8631
|
+
const fieldElementProps = (0, import_react_aria8.mergeProps)(inputProps, {
|
|
8632
|
+
onBlur,
|
|
8633
|
+
onFocus: onFocusChained,
|
|
8634
|
+
onChange: onDomChange
|
|
8635
|
+
}, {
|
|
8636
|
+
"aria-invalid": Boolean(errorMsg),
|
|
8637
|
+
...labelStyle === "hidden" ? {
|
|
8638
|
+
"aria-label": label
|
|
8639
|
+
} : {}
|
|
8640
|
+
});
|
|
8641
|
+
const errorMessageProps = errorMsg ? {
|
|
8642
|
+
"aria-errormessage": errorMessageId
|
|
8643
|
+
} : {};
|
|
8644
|
+
const fieldElementCss = {
|
|
8645
|
+
...fieldStyles.input,
|
|
8646
|
+
...inputProps.disabled ? fieldStyles.disabled : {},
|
|
8647
|
+
...showHover ? fieldStyles.hover : {},
|
|
8648
|
+
...unfocusedPlaceholder && !isFocused && {
|
|
8649
|
+
position: "absolute",
|
|
8650
|
+
overflow: "oh",
|
|
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
|
+
whiteSpace: "wsnw",
|
|
8659
|
+
opacity: "o0"
|
|
8660
|
+
},
|
|
8661
|
+
...xss
|
|
8662
|
+
};
|
|
8601
8663
|
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(import_jsx_runtime29.Fragment, { children: [
|
|
8602
8664
|
/* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { ...(0, import_runtime26.trussProps)(fieldStyles.container), ...groupProps, ...focusWithinProps, children: [
|
|
8603
8665
|
label && labelStyle !== "inline" && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Label, { labelProps, hidden: labelStyle === "hidden" || compound, label, inline: labelStyle !== "above", suffix: labelSuffix, contrast, ...tid.label }),
|
|
@@ -8615,7 +8677,7 @@ function TextFieldBase(props) {
|
|
|
8615
8677
|
...wrap === false ? {
|
|
8616
8678
|
whiteSpace: "wsnw",
|
|
8617
8679
|
overflow: "oh",
|
|
8618
|
-
textOverflow: "
|
|
8680
|
+
textOverflow: "to_ellipsis"
|
|
8619
8681
|
} : {}
|
|
8620
8682
|
},
|
|
8621
8683
|
...xss
|
|
@@ -8680,13 +8742,13 @@ function TextFieldBase(props) {
|
|
|
8680
8742
|
...isFocused && {
|
|
8681
8743
|
position: "absolute",
|
|
8682
8744
|
overflow: "oh",
|
|
8683
|
-
clip: "
|
|
8684
|
-
clipPath: "
|
|
8685
|
-
border: "
|
|
8686
|
-
height: "
|
|
8687
|
-
margin: "
|
|
8688
|
-
width: "
|
|
8689
|
-
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",
|
|
8690
8752
|
whiteSpace: "wsnw",
|
|
8691
8753
|
opacity: "o0"
|
|
8692
8754
|
}
|
|
@@ -8694,36 +8756,7 @@ function TextFieldBase(props) {
|
|
|
8694
8756
|
children: unfocusedPlaceholder
|
|
8695
8757
|
}
|
|
8696
8758
|
),
|
|
8697
|
-
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
8698
|
-
onBlur,
|
|
8699
|
-
onFocus: onFocusChained,
|
|
8700
|
-
onChange: onDomChange
|
|
8701
|
-
}, {
|
|
8702
|
-
"aria-invalid": Boolean(errorMsg),
|
|
8703
|
-
...labelStyle === "hidden" ? {
|
|
8704
|
-
"aria-label": label
|
|
8705
|
-
} : {}
|
|
8706
|
-
}), ...errorMsg ? {
|
|
8707
|
-
"aria-errormessage": errorMessageId
|
|
8708
|
-
} : {}, ref: fieldRef, rows: multiline ? 1 : void 0, ...(0, import_runtime26.trussProps)({
|
|
8709
|
-
...fieldStyles.input,
|
|
8710
|
-
...inputProps.disabled ? fieldStyles.disabled : {},
|
|
8711
|
-
...showHover ? fieldStyles.hover : {},
|
|
8712
|
-
...unfocusedPlaceholder && !isFocused && {
|
|
8713
|
-
position: "absolute",
|
|
8714
|
-
overflow: "oh",
|
|
8715
|
-
clip: "visuallyHidden_clip",
|
|
8716
|
-
clipPath: "visuallyHidden_clipPath",
|
|
8717
|
-
border: "visuallyHidden_border",
|
|
8718
|
-
height: "visuallyHidden_height",
|
|
8719
|
-
margin: "visuallyHidden_margin",
|
|
8720
|
-
width: "visuallyHidden_width",
|
|
8721
|
-
padding: "visuallyHidden_padding",
|
|
8722
|
-
whiteSpace: "wsnw",
|
|
8723
|
-
opacity: "o0"
|
|
8724
|
-
},
|
|
8725
|
-
...xss
|
|
8726
|
-
}), ...tid }),
|
|
8759
|
+
multiline ? /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("textarea", { ...fieldElementProps, ...errorMessageProps, ref: fieldRef, rows: 1, ...(0, import_runtime26.trussProps)(fieldElementCss), ...tid }) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("input", { ...fieldElementProps, ...errorMessageProps, ref: fieldRef, ...(0, import_runtime26.trussProps)(fieldElementCss), ...tid }),
|
|
8727
8760
|
isFocused && clearable && onChange && inputProps.value && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(IconButton, { icon: "xCircle", color: "rgba(100, 100, 100, 1)" /* Gray700 */, onClick: () => {
|
|
8728
8761
|
onChange(void 0);
|
|
8729
8762
|
fieldRef.current?.focus();
|
|
@@ -8885,8 +8918,8 @@ function Menu(props) {
|
|
|
8885
8918
|
...{
|
|
8886
8919
|
display: "df",
|
|
8887
8920
|
flexDirection: "fdc",
|
|
8888
|
-
marginTop: "
|
|
8889
|
-
marginBottom: "
|
|
8921
|
+
marginTop: "mt_4px",
|
|
8922
|
+
marginBottom: "mb_4px",
|
|
8890
8923
|
outline: "outline0",
|
|
8891
8924
|
borderRadius: "br4",
|
|
8892
8925
|
boxShadow: "bshBasic",
|
|
@@ -8905,9 +8938,9 @@ function Menu(props) {
|
|
|
8905
8938
|
}), children: [
|
|
8906
8939
|
searchable && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(MenuSearchField, { label: "", value: search, placeholder: "Search...", labelStyle: "inline", onChange: setSearch, ...tid }),
|
|
8907
8940
|
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("ul", { ...(0, import_runtime27.trussProps)({
|
|
8908
|
-
padding: "
|
|
8909
|
-
margin: "
|
|
8910
|
-
listStyle: "
|
|
8941
|
+
padding: "p_0",
|
|
8942
|
+
margin: "m_0",
|
|
8943
|
+
listStyle: "lis_none"
|
|
8911
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)) })
|
|
8912
8945
|
] }) });
|
|
8913
8946
|
}
|
|
@@ -8925,58 +8958,58 @@ var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
|
8925
8958
|
var __typography4 = {
|
|
8926
8959
|
xs2: {
|
|
8927
8960
|
fontWeight: "fw4",
|
|
8928
|
-
fontSize: "
|
|
8929
|
-
lineHeight: "
|
|
8961
|
+
fontSize: "fz_10px",
|
|
8962
|
+
lineHeight: "lh_14px"
|
|
8930
8963
|
},
|
|
8931
8964
|
xs2Sb: {
|
|
8932
8965
|
fontWeight: "fw6",
|
|
8933
|
-
fontSize: "
|
|
8934
|
-
lineHeight: "
|
|
8966
|
+
fontSize: "fz_10px",
|
|
8967
|
+
lineHeight: "lh_14px"
|
|
8935
8968
|
},
|
|
8936
8969
|
xs: {
|
|
8937
8970
|
fontWeight: "fw4",
|
|
8938
|
-
fontSize: "
|
|
8939
|
-
lineHeight: "
|
|
8971
|
+
fontSize: "fz_12px",
|
|
8972
|
+
lineHeight: "lh_16px"
|
|
8940
8973
|
},
|
|
8941
8974
|
xsSb: {
|
|
8942
8975
|
fontWeight: "fw6",
|
|
8943
|
-
fontSize: "
|
|
8944
|
-
lineHeight: "
|
|
8976
|
+
fontSize: "fz_12px",
|
|
8977
|
+
lineHeight: "lh_16px"
|
|
8945
8978
|
},
|
|
8946
8979
|
sm: {
|
|
8947
8980
|
fontWeight: "fw4",
|
|
8948
|
-
fontSize: "
|
|
8949
|
-
lineHeight: "
|
|
8981
|
+
fontSize: "fz_14px",
|
|
8982
|
+
lineHeight: "lh_20px"
|
|
8950
8983
|
},
|
|
8951
8984
|
smSb: {
|
|
8952
8985
|
fontWeight: "fw6",
|
|
8953
|
-
fontSize: "
|
|
8954
|
-
lineHeight: "
|
|
8986
|
+
fontSize: "fz_14px",
|
|
8987
|
+
lineHeight: "lh_20px"
|
|
8955
8988
|
},
|
|
8956
8989
|
md: {
|
|
8957
8990
|
fontWeight: "fw4",
|
|
8958
|
-
fontSize: "
|
|
8959
|
-
lineHeight: "
|
|
8991
|
+
fontSize: "fz_16px",
|
|
8992
|
+
lineHeight: "lh_24px"
|
|
8960
8993
|
},
|
|
8961
8994
|
mdSb: {
|
|
8962
8995
|
fontWeight: "fw6",
|
|
8963
|
-
fontSize: "
|
|
8964
|
-
lineHeight: "
|
|
8996
|
+
fontSize: "fz_16px",
|
|
8997
|
+
lineHeight: "lh_24px"
|
|
8965
8998
|
},
|
|
8966
8999
|
lg: {
|
|
8967
9000
|
fontWeight: "fw6",
|
|
8968
|
-
fontSize: "
|
|
8969
|
-
lineHeight: "
|
|
9001
|
+
fontSize: "fz_18px",
|
|
9002
|
+
lineHeight: "lh_28px"
|
|
8970
9003
|
},
|
|
8971
9004
|
xl: {
|
|
8972
9005
|
fontWeight: "fw6",
|
|
8973
|
-
fontSize: "
|
|
8974
|
-
lineHeight: "
|
|
9006
|
+
fontSize: "fz_20px",
|
|
9007
|
+
lineHeight: "lh_28px"
|
|
8975
9008
|
},
|
|
8976
9009
|
xl2: {
|
|
8977
9010
|
fontWeight: "fw6",
|
|
8978
|
-
fontSize: "
|
|
8979
|
-
lineHeight: "
|
|
9011
|
+
fontSize: "fz_30px",
|
|
9012
|
+
lineHeight: "lh_36px"
|
|
8980
9013
|
}
|
|
8981
9014
|
};
|
|
8982
9015
|
function Avatar({
|
|
@@ -9261,8 +9294,8 @@ function Button(props) {
|
|
|
9261
9294
|
...(0, import_runtime30.mergeProps)(asLink ? navLink : void 0, void 0, {
|
|
9262
9295
|
...{
|
|
9263
9296
|
fontWeight: "fw6",
|
|
9264
|
-
fontSize: "
|
|
9265
|
-
lineHeight: "
|
|
9297
|
+
fontSize: "fz_14px",
|
|
9298
|
+
lineHeight: "lh_20px",
|
|
9266
9299
|
outline: "outline0",
|
|
9267
9300
|
borderRadius: "br8",
|
|
9268
9301
|
display: "dif",
|
|
@@ -9634,8 +9667,8 @@ var variantStyles = (contrast) => ({
|
|
|
9634
9667
|
var sizeStyles = {
|
|
9635
9668
|
sm: {
|
|
9636
9669
|
height: "h_32px",
|
|
9637
|
-
paddingLeft: "
|
|
9638
|
-
paddingRight: "
|
|
9670
|
+
paddingLeft: "pl_12px",
|
|
9671
|
+
paddingRight: "pr_12px"
|
|
9639
9672
|
},
|
|
9640
9673
|
md: {
|
|
9641
9674
|
height: "h_40px",
|
|
@@ -9745,14 +9778,14 @@ var baseStyles = {
|
|
|
9745
9778
|
display: "df",
|
|
9746
9779
|
alignItems: "aic",
|
|
9747
9780
|
height: "h_32px",
|
|
9748
|
-
paddingTop: "
|
|
9749
|
-
paddingBottom: "
|
|
9781
|
+
paddingTop: "pt_6px",
|
|
9782
|
+
paddingBottom: "pb_6px",
|
|
9750
9783
|
paddingLeft: "pl1",
|
|
9751
9784
|
paddingRight: "pr1",
|
|
9752
9785
|
borderRadius: "br4",
|
|
9753
9786
|
fontWeight: "fw6",
|
|
9754
|
-
fontSize: "
|
|
9755
|
-
lineHeight: "
|
|
9787
|
+
fontSize: "fz_14px",
|
|
9788
|
+
lineHeight: "lh_20px",
|
|
9756
9789
|
outline: "outline0"
|
|
9757
9790
|
};
|
|
9758
9791
|
var navLinkVariantStyles = (contrast) => ({
|
|
@@ -9932,8 +9965,8 @@ function ContextualModal(props) {
|
|
|
9932
9965
|
}), ...tid, children: [
|
|
9933
9966
|
title && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { ...(0, import_runtime33.trussProps)({
|
|
9934
9967
|
fontWeight: "fw6",
|
|
9935
|
-
fontSize: "
|
|
9936
|
-
lineHeight: "
|
|
9968
|
+
fontSize: "fz_18px",
|
|
9969
|
+
lineHeight: "lh_28px",
|
|
9937
9970
|
textAlign: "tac"
|
|
9938
9971
|
}), ...tid.title, children: title }),
|
|
9939
9972
|
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { ...tid.content, children: typeof content === "function" ? content(close) : content })
|
|
@@ -9970,8 +10003,8 @@ function AvatarGroup(props) {
|
|
|
9970
10003
|
alignItems: "aic",
|
|
9971
10004
|
gap: "gap1",
|
|
9972
10005
|
fontWeight: "fw6",
|
|
9973
|
-
fontSize: "
|
|
9974
|
-
lineHeight: "
|
|
10006
|
+
fontSize: "fz_12px",
|
|
10007
|
+
lineHeight: "lh_16px"
|
|
9975
10008
|
}), children: [
|
|
9976
10009
|
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { ...(0, import_runtime34.trussProps)({
|
|
9977
10010
|
display: "df",
|
|
@@ -10076,12 +10109,12 @@ function MenuItemImpl(props) {
|
|
|
10076
10109
|
outline: "outline0",
|
|
10077
10110
|
minHeight: "mh_42px",
|
|
10078
10111
|
fontWeight: "fw4",
|
|
10079
|
-
fontSize: "
|
|
10080
|
-
lineHeight: "
|
|
10112
|
+
fontSize: "fz_14px",
|
|
10113
|
+
lineHeight: "lh_20px"
|
|
10081
10114
|
},
|
|
10082
10115
|
...menuItem.hasDivider ? {
|
|
10083
|
-
borderBottomStyle: "
|
|
10084
|
-
borderBottomWidth: "
|
|
10116
|
+
borderBottomStyle: "bbs_solid",
|
|
10117
|
+
borderBottomWidth: "bbw_1px",
|
|
10085
10118
|
borderColor: "bcGray700"
|
|
10086
10119
|
} : {},
|
|
10087
10120
|
...!isDisabled && isHovered ? contrast ? {
|
|
@@ -10394,7 +10427,7 @@ function ListBoxChip({
|
|
|
10394
10427
|
...{
|
|
10395
10428
|
whiteSpace: "wsnw",
|
|
10396
10429
|
overflow: "oh",
|
|
10397
|
-
textOverflow: "
|
|
10430
|
+
textOverflow: "to_ellipsis",
|
|
10398
10431
|
display: "dib"
|
|
10399
10432
|
}
|
|
10400
10433
|
}), title: label, children: label });
|
|
@@ -10480,8 +10513,8 @@ function ChipSelectField(props) {
|
|
|
10480
10513
|
const chipStyles = {
|
|
10481
10514
|
...chipBaseStyles(),
|
|
10482
10515
|
...{
|
|
10483
|
-
paddingTop: "
|
|
10484
|
-
paddingBottom: "
|
|
10516
|
+
paddingTop: "pt_2px",
|
|
10517
|
+
paddingBottom: "pb_2px",
|
|
10485
10518
|
gap: "gap0",
|
|
10486
10519
|
alignItems: "aiStretch"
|
|
10487
10520
|
}
|
|
@@ -10650,10 +10683,10 @@ function ChipSelectField(props) {
|
|
|
10650
10683
|
...{
|
|
10651
10684
|
textAlign: "tal",
|
|
10652
10685
|
borderRadius: "br16",
|
|
10653
|
-
paddingLeft: "
|
|
10654
|
-
paddingRight: "
|
|
10655
|
-
paddingTop: "
|
|
10656
|
-
paddingBottom: "
|
|
10686
|
+
paddingLeft: "pl_10px",
|
|
10687
|
+
paddingRight: "pr_10px",
|
|
10688
|
+
paddingTop: "pt_2px",
|
|
10689
|
+
paddingBottom: "pb_2px",
|
|
10657
10690
|
outline: "outline0",
|
|
10658
10691
|
...showClearButton ? {
|
|
10659
10692
|
paddingRight: "pr_4px",
|
|
@@ -10663,10 +10696,10 @@ function ChipSelectField(props) {
|
|
|
10663
10696
|
...isDisabled ? chipDisabledStyles : chipHoverOnlyStyles
|
|
10664
10697
|
}), title: state.selectedItem ? state.selectedItem.textValue : placeholder, ...tid, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { ...valueProps, ...(0, import_runtime38.trussProps)({
|
|
10665
10698
|
overflow: "oh",
|
|
10666
|
-
display: "
|
|
10667
|
-
WebkitBoxOrient: "
|
|
10668
|
-
textOverflow: "
|
|
10669
|
-
WebkitLineClamp: "
|
|
10699
|
+
display: "d_negwebkit_box",
|
|
10700
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
10701
|
+
textOverflow: "to_ellipsis",
|
|
10702
|
+
WebkitLineClamp: "wlc_1",
|
|
10670
10703
|
wordBreak: "wbba"
|
|
10671
10704
|
}), children: state.selectedItem ? state.selectedItem.textValue : placeholder }) }),
|
|
10672
10705
|
showClearButton && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("button", { ...clearFocusProps, ...(0, import_runtime38.trussProps)({
|
|
@@ -10782,13 +10815,13 @@ function Option(props) {
|
|
|
10782
10815
|
outline: "outline0",
|
|
10783
10816
|
cursor: "cursorPointer",
|
|
10784
10817
|
fontWeight: "fw4",
|
|
10785
|
-
fontSize: "
|
|
10786
|
-
lineHeight: "
|
|
10818
|
+
fontSize: "fz_14px",
|
|
10819
|
+
lineHeight: "lh_20px"
|
|
10787
10820
|
},
|
|
10788
10821
|
// Assumes only one Persistent Item per list - will need to change to utilize Sections if that assumption is incorrect.
|
|
10789
10822
|
...isPersistentKey(item.key) ? {
|
|
10790
|
-
borderTopStyle: "
|
|
10791
|
-
borderTopWidth: "
|
|
10823
|
+
borderTopStyle: "bts_solid",
|
|
10824
|
+
borderTopWidth: "btw_1px",
|
|
10792
10825
|
borderColor: "bcGray200"
|
|
10793
10826
|
} : {},
|
|
10794
10827
|
...themeStyles.item,
|
|
@@ -10980,13 +11013,13 @@ var markSvgStyles = {
|
|
|
10980
11013
|
};
|
|
10981
11014
|
var labelStyles = {
|
|
10982
11015
|
fontWeight: "fw4",
|
|
10983
|
-
fontSize: "
|
|
10984
|
-
lineHeight: "
|
|
11016
|
+
fontSize: "fz_14px",
|
|
11017
|
+
lineHeight: "lh_20px"
|
|
10985
11018
|
};
|
|
10986
11019
|
var descStyles = {
|
|
10987
11020
|
fontWeight: "fw4",
|
|
10988
|
-
fontSize: "
|
|
10989
|
-
lineHeight: "
|
|
11021
|
+
fontSize: "fz_14px",
|
|
11022
|
+
lineHeight: "lh_20px",
|
|
10990
11023
|
color: "gray700"
|
|
10991
11024
|
};
|
|
10992
11025
|
function StyledCheckbox(props) {
|
|
@@ -11091,8 +11124,8 @@ function TreeOption(props) {
|
|
|
11091
11124
|
outline: "outline0",
|
|
11092
11125
|
cursor: "cursorPointer",
|
|
11093
11126
|
fontWeight: "fw4",
|
|
11094
|
-
fontSize: "
|
|
11095
|
-
lineHeight: "
|
|
11127
|
+
fontSize: "fz_14px",
|
|
11128
|
+
lineHeight: "lh_20px"
|
|
11096
11129
|
},
|
|
11097
11130
|
...listItemStyles.item,
|
|
11098
11131
|
...isHovered && !isDisabled ? listItemStyles.hover : {},
|
|
@@ -11282,8 +11315,8 @@ function ListBoxSection(props) {
|
|
|
11282
11315
|
const childNodes = [...section.childNodes];
|
|
11283
11316
|
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(import_jsx_runtime50.Fragment, { children: [
|
|
11284
11317
|
isPersistentSection && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("li", { ...separatorProps, ...(0, import_runtime43.trussProps)({
|
|
11285
|
-
borderTopStyle: "
|
|
11286
|
-
borderTopWidth: "
|
|
11318
|
+
borderTopStyle: "bts_solid",
|
|
11319
|
+
borderTopWidth: "btw_1px",
|
|
11287
11320
|
borderColor: "bcGray200"
|
|
11288
11321
|
}) }),
|
|
11289
11322
|
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("li", { ...itemProps, ...(0, import_runtime43.trussProps)({
|
|
@@ -11291,9 +11324,9 @@ function ListBoxSection(props) {
|
|
|
11291
11324
|
overflow: "oa"
|
|
11292
11325
|
} : {}
|
|
11293
11326
|
}), children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("ul", { ...(0, import_runtime43.trussProps)({
|
|
11294
|
-
padding: "
|
|
11295
|
-
margin: "
|
|
11296
|
-
listStyle: "
|
|
11327
|
+
padding: "p_0",
|
|
11328
|
+
margin: "m_0",
|
|
11329
|
+
listStyle: "lis_none",
|
|
11297
11330
|
...!isPersistentSection ? {
|
|
11298
11331
|
height: ["h_var", {
|
|
11299
11332
|
"--height": `${popoverHeight - sectionSeparatorHeight - persistentItemHeight}px`
|
|
@@ -11389,25 +11422,25 @@ function ListBox(props) {
|
|
|
11389
11422
|
} : {}
|
|
11390
11423
|
}), ref: listBoxRef, ...listBoxProps, children: [
|
|
11391
11424
|
isMultiSelect && !isTree && state.selectionManager.selectedKeys.size > 0 && /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("ul", { ...(0, import_runtime45.trussProps)({
|
|
11392
|
-
padding: "
|
|
11393
|
-
margin: "
|
|
11394
|
-
listStyle: "
|
|
11425
|
+
padding: "p_0",
|
|
11426
|
+
margin: "m_0",
|
|
11427
|
+
listStyle: "lis_none",
|
|
11395
11428
|
paddingTop: "pt2",
|
|
11396
11429
|
paddingLeft: "pl2",
|
|
11397
11430
|
paddingBottom: "pb1",
|
|
11398
11431
|
paddingRight: "pr1",
|
|
11399
11432
|
display: "df",
|
|
11400
|
-
borderBottomStyle: "
|
|
11401
|
-
borderBottomWidth: "
|
|
11433
|
+
borderBottomStyle: "bbs_solid",
|
|
11434
|
+
borderBottomWidth: "bbw_1px",
|
|
11402
11435
|
borderColor: "bcGray200",
|
|
11403
11436
|
flexWrap: "flexWrap_wrap",
|
|
11404
11437
|
maxHeight: "maxh_50",
|
|
11405
11438
|
overflow: "oa"
|
|
11406
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))) }),
|
|
11407
11440
|
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("ul", { ...(0, import_runtime45.trussProps)({
|
|
11408
|
-
padding: "
|
|
11409
|
-
margin: "
|
|
11410
|
-
listStyle: "
|
|
11441
|
+
padding: "p_0",
|
|
11442
|
+
margin: "m_0",
|
|
11443
|
+
listStyle: "lis_none",
|
|
11411
11444
|
flexGrow: "fg1"
|
|
11412
11445
|
}), children: hasSections ? [...state.collection].map((section) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
|
11413
11446
|
ListBoxSection,
|
|
@@ -12931,8 +12964,8 @@ function IconCard(props) {
|
|
|
12931
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 */ }),
|
|
12932
12965
|
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { ...(0, import_runtime51.trussProps)({
|
|
12933
12966
|
fontWeight: "fw4",
|
|
12934
|
-
fontSize: "
|
|
12935
|
-
lineHeight: "
|
|
12967
|
+
fontSize: "fz_12px",
|
|
12968
|
+
lineHeight: "lh_16px",
|
|
12936
12969
|
...isDisabled ? {
|
|
12937
12970
|
color: "gray300"
|
|
12938
12971
|
} : {}
|
|
@@ -13014,7 +13047,7 @@ function MultiLineSelectField(props) {
|
|
|
13014
13047
|
}), key: index }, /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { ...(0, import_runtime52.trussProps)({
|
|
13015
13048
|
whiteSpace: "wsnw",
|
|
13016
13049
|
overflow: "oh",
|
|
13017
|
-
textOverflow: "
|
|
13050
|
+
textOverflow: "to_ellipsis",
|
|
13018
13051
|
width: "w100"
|
|
13019
13052
|
}), children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(SelectField, { ...otherProps, ...tid.selectField, labelStyle: "hidden", value, onSelect: () => {
|
|
13020
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: () => {
|
|
@@ -13367,8 +13400,8 @@ function Radio(props) {
|
|
|
13367
13400
|
/* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { children: [
|
|
13368
13401
|
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { id: labelId, ...(0, import_runtime53.trussProps)({
|
|
13369
13402
|
fontWeight: "fw4",
|
|
13370
|
-
fontSize: "
|
|
13371
|
-
lineHeight: "
|
|
13403
|
+
fontSize: "fz_14px",
|
|
13404
|
+
lineHeight: "lh_20px",
|
|
13372
13405
|
color: "gray800",
|
|
13373
13406
|
...disabled ? {
|
|
13374
13407
|
color: "gray400"
|
|
@@ -13378,8 +13411,8 @@ function Radio(props) {
|
|
|
13378
13411
|
} : {}, children: label }),
|
|
13379
13412
|
description && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { id: descriptionId, ...(0, import_runtime53.trussProps)({
|
|
13380
13413
|
fontWeight: "fw4",
|
|
13381
|
-
fontSize: "
|
|
13382
|
-
lineHeight: "
|
|
13414
|
+
fontSize: "fz_14px",
|
|
13415
|
+
lineHeight: "lh_20px",
|
|
13383
13416
|
color: "gray700",
|
|
13384
13417
|
...disabled ? {
|
|
13385
13418
|
color: "gray400"
|
|
@@ -13633,8 +13666,8 @@ function RichTextFieldImpl(props) {
|
|
|
13633
13666
|
minHeight: "mh_120px",
|
|
13634
13667
|
backgroundColor: "bgWhite",
|
|
13635
13668
|
fontWeight: "fw4",
|
|
13636
|
-
fontSize: "
|
|
13637
|
-
lineHeight: "
|
|
13669
|
+
fontSize: "fz_14px",
|
|
13670
|
+
lineHeight: "lh_20px",
|
|
13638
13671
|
color: "gray900",
|
|
13639
13672
|
borderStyle: "bss",
|
|
13640
13673
|
borderWidth: "bw1",
|
|
@@ -13787,8 +13820,8 @@ function Switch(props) {
|
|
|
13787
13820
|
alignItems: "aic",
|
|
13788
13821
|
width: "wa",
|
|
13789
13822
|
fontWeight: "fw4",
|
|
13790
|
-
fontSize: "
|
|
13791
|
-
lineHeight: "
|
|
13823
|
+
fontSize: "fz_14px",
|
|
13824
|
+
lineHeight: "lh_20px"
|
|
13792
13825
|
},
|
|
13793
13826
|
...labelStyle === "centered" && {
|
|
13794
13827
|
flexDirection: "fdc",
|
|
@@ -13841,8 +13874,8 @@ function Switch(props) {
|
|
|
13841
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 }) }) }) }),
|
|
13842
13875
|
labelStyle === "inline" && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(Label, { label, tooltip, inline: true, xss: {
|
|
13843
13876
|
fontWeight: "fw4",
|
|
13844
|
-
fontSize: "
|
|
13845
|
-
lineHeight: "
|
|
13877
|
+
fontSize: "fz_14px",
|
|
13878
|
+
lineHeight: "lh_20px",
|
|
13846
13879
|
color: "gray900",
|
|
13847
13880
|
...compact ? {
|
|
13848
13881
|
lineHeight: "lineHeight_1"
|
|
@@ -14098,8 +14131,8 @@ function ToggleButton(props) {
|
|
|
14098
14131
|
cursor: "cursorPointer",
|
|
14099
14132
|
width: "w_max_content",
|
|
14100
14133
|
fontWeight: "fw4",
|
|
14101
|
-
fontSize: "
|
|
14102
|
-
lineHeight: "
|
|
14134
|
+
fontSize: "fz_14px",
|
|
14135
|
+
lineHeight: "lh_20px",
|
|
14103
14136
|
userSelect: "usn"
|
|
14104
14137
|
},
|
|
14105
14138
|
...isHovered && toggleHoverStyles,
|
|
@@ -14256,13 +14289,13 @@ function ToggleChip2(props) {
|
|
|
14256
14289
|
alignItems: "aic",
|
|
14257
14290
|
borderRadius: "br16",
|
|
14258
14291
|
fontWeight: "fw4",
|
|
14259
|
-
fontSize: "
|
|
14260
|
-
lineHeight: "
|
|
14292
|
+
fontSize: "fz_14px",
|
|
14293
|
+
lineHeight: "lh_20px",
|
|
14261
14294
|
paddingLeft: "pl1",
|
|
14262
14295
|
paddingRight: "pr1",
|
|
14263
14296
|
cursor: "cursorPointer",
|
|
14264
|
-
paddingTop: "
|
|
14265
|
-
paddingBottom: "
|
|
14297
|
+
paddingTop: "pt_4px",
|
|
14298
|
+
paddingBottom: "pb_4px"
|
|
14266
14299
|
},
|
|
14267
14300
|
...chipStateCss,
|
|
14268
14301
|
...isFocusVisible ? {
|
|
@@ -16064,10 +16097,10 @@ function ToggleChip(props) {
|
|
|
16064
16097
|
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { ...(0, import_runtime60.trussProps)({
|
|
16065
16098
|
textAlign: "tal",
|
|
16066
16099
|
overflow: "oh",
|
|
16067
|
-
display: "
|
|
16068
|
-
WebkitBoxOrient: "
|
|
16069
|
-
textOverflow: "
|
|
16070
|
-
WebkitLineClamp: "
|
|
16100
|
+
display: "d_negwebkit_box",
|
|
16101
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
16102
|
+
textOverflow: "to_ellipsis",
|
|
16103
|
+
WebkitLineClamp: "wlc_1",
|
|
16071
16104
|
wordBreak: "wbba",
|
|
16072
16105
|
...disabled ? {
|
|
16073
16106
|
paddingRight: "pr0"
|
|
@@ -16184,20 +16217,20 @@ function Accordion(props) {
|
|
|
16184
16217
|
paddingRight: "pr2",
|
|
16185
16218
|
paddingLeft: "pl2",
|
|
16186
16219
|
fontWeight: "fw4",
|
|
16187
|
-
fontSize: "
|
|
16188
|
-
lineHeight: "
|
|
16220
|
+
fontSize: "fz_16px",
|
|
16221
|
+
lineHeight: "lh_24px",
|
|
16189
16222
|
outline: "outline_none",
|
|
16190
16223
|
backgroundColor: "h_bgGray100",
|
|
16191
16224
|
...!!titleOnClick ? {
|
|
16192
16225
|
fontWeight: "fw4 h_fw6",
|
|
16193
|
-
fontSize: "
|
|
16194
|
-
lineHeight: "
|
|
16226
|
+
fontSize: "fz_16px h_fz_16px",
|
|
16227
|
+
lineHeight: "lh_24px h_lh_24px"
|
|
16195
16228
|
} : {}
|
|
16196
16229
|
},
|
|
16197
16230
|
...compact && {
|
|
16198
16231
|
fontWeight: "fw4",
|
|
16199
|
-
fontSize: "
|
|
16200
|
-
lineHeight: "
|
|
16232
|
+
fontSize: "fz_14px",
|
|
16233
|
+
lineHeight: "lh_20px",
|
|
16201
16234
|
paddingLeft: "pl2",
|
|
16202
16235
|
paddingRight: "pr_10px",
|
|
16203
16236
|
paddingTop: "pt1",
|
|
@@ -16223,12 +16256,12 @@ function Accordion(props) {
|
|
|
16223
16256
|
...{
|
|
16224
16257
|
borderColor: "bcGray300",
|
|
16225
16258
|
...topBorder ? {
|
|
16226
|
-
borderTopStyle: "
|
|
16227
|
-
borderTopWidth: "
|
|
16259
|
+
borderTopStyle: "bts_solid",
|
|
16260
|
+
borderTopWidth: "btw_1px"
|
|
16228
16261
|
} : {},
|
|
16229
16262
|
...bottomBorder ? {
|
|
16230
|
-
borderBottomStyle: "
|
|
16231
|
-
borderBottomWidth: "
|
|
16263
|
+
borderBottomStyle: "bbs_solid",
|
|
16264
|
+
borderBottomWidth: "bbw_1px"
|
|
16232
16265
|
} : {}
|
|
16233
16266
|
},
|
|
16234
16267
|
...size ? {
|
|
@@ -16253,8 +16286,8 @@ function Accordion(props) {
|
|
|
16253
16286
|
paddingRight: "pr2",
|
|
16254
16287
|
justifyContent: "jcfe",
|
|
16255
16288
|
...compact ? {
|
|
16256
|
-
paddingLeft: "
|
|
16257
|
-
paddingRight: "
|
|
16289
|
+
paddingLeft: "pl_10px",
|
|
16290
|
+
paddingRight: "pr_10px"
|
|
16258
16291
|
} : {}
|
|
16259
16292
|
}
|
|
16260
16293
|
}), onClick: toggle, children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(RotatingChevronIcon, { expanded }) })
|
|
@@ -16393,8 +16426,8 @@ function Indicator({
|
|
|
16393
16426
|
alignItems: "aic",
|
|
16394
16427
|
color: "gray700",
|
|
16395
16428
|
fontWeight: "fw6",
|
|
16396
|
-
fontSize: "
|
|
16397
|
-
lineHeight: "
|
|
16429
|
+
fontSize: "fz_14px",
|
|
16430
|
+
lineHeight: "lh_20px"
|
|
16398
16431
|
}), children: [
|
|
16399
16432
|
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(Icon, { icon, color }),
|
|
16400
16433
|
text
|
|
@@ -16426,8 +16459,8 @@ function Banner(props) {
|
|
|
16426
16459
|
paddingLeft: "pl2",
|
|
16427
16460
|
color: "gray900",
|
|
16428
16461
|
fontWeight: "fw4",
|
|
16429
|
-
fontSize: "
|
|
16430
|
-
lineHeight: "
|
|
16462
|
+
fontSize: "fz_16px",
|
|
16463
|
+
lineHeight: "lh_24px",
|
|
16431
16464
|
boxShadow: "bshBasic"
|
|
16432
16465
|
}
|
|
16433
16466
|
}), ...tid, role: "alert", children: [
|
|
@@ -16626,14 +16659,14 @@ function Modal(props) {
|
|
|
16626
16659
|
);
|
|
16627
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)({
|
|
16628
16661
|
position: "fixed",
|
|
16629
|
-
top: "
|
|
16630
|
-
bottom: "
|
|
16631
|
-
left: "
|
|
16632
|
-
right: "
|
|
16662
|
+
top: "tp_0",
|
|
16663
|
+
bottom: "bot_0",
|
|
16664
|
+
left: "l_0",
|
|
16665
|
+
right: "r_0",
|
|
16633
16666
|
display: "df",
|
|
16634
16667
|
alignItems: "aic",
|
|
16635
16668
|
justifyContent: "jcc",
|
|
16636
|
-
backgroundColor: "
|
|
16669
|
+
backgroundColor: "bgc_rgba_36_36_36_0_6",
|
|
16637
16670
|
zIndex: "z4"
|
|
16638
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)({
|
|
16639
16672
|
borderRadius: "br24",
|
|
@@ -16670,8 +16703,8 @@ function Modal(props) {
|
|
|
16670
16703
|
paddingLeft: "pl3",
|
|
16671
16704
|
flexShrink: "fs0",
|
|
16672
16705
|
...drawHeaderBorder ? {
|
|
16673
|
-
borderBottomStyle: "
|
|
16674
|
-
borderBottomWidth: "
|
|
16706
|
+
borderBottomStyle: "bbs_solid",
|
|
16707
|
+
borderBottomWidth: "bbw_1px",
|
|
16675
16708
|
borderColor: "bcGray200"
|
|
16676
16709
|
} : {}
|
|
16677
16710
|
}), children: [
|
|
@@ -16682,8 +16715,8 @@ function Modal(props) {
|
|
|
16682
16715
|
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("h1", { ...(0, import_runtime65.trussProps)({
|
|
16683
16716
|
flexGrow: "fg1",
|
|
16684
16717
|
fontWeight: "fw6",
|
|
16685
|
-
fontSize: "
|
|
16686
|
-
lineHeight: "
|
|
16718
|
+
fontSize: "fz_30px",
|
|
16719
|
+
lineHeight: "lh_36px",
|
|
16687
16720
|
color: "gray900"
|
|
16688
16721
|
}), ref: modalHeaderRef, ...titleProps, ...testId.title })
|
|
16689
16722
|
] }),
|
|
@@ -16691,8 +16724,8 @@ function Modal(props) {
|
|
|
16691
16724
|
flexGrow: "fg1",
|
|
16692
16725
|
overflowY: "oya",
|
|
16693
16726
|
...hasScroll ? {
|
|
16694
|
-
borderBottomStyle: "
|
|
16695
|
-
borderBottomWidth: "
|
|
16727
|
+
borderBottomStyle: "bbs_solid",
|
|
16728
|
+
borderBottomWidth: "bbw_1px",
|
|
16696
16729
|
borderColor: "bcGray200"
|
|
16697
16730
|
} : {},
|
|
16698
16731
|
...!!forceScrolling ? {
|
|
@@ -16796,8 +16829,8 @@ function SnackbarNotice(props) {
|
|
|
16796
16829
|
backgroundColor: "bgGray800",
|
|
16797
16830
|
borderRadius: "br4",
|
|
16798
16831
|
fontWeight: "fw4",
|
|
16799
|
-
fontSize: "
|
|
16800
|
-
lineHeight: "
|
|
16832
|
+
fontSize: "fz_16px",
|
|
16833
|
+
lineHeight: "lh_24px",
|
|
16801
16834
|
display: "df",
|
|
16802
16835
|
alignItems: "aic",
|
|
16803
16836
|
maxWidth: "maxw_420px"
|
|
@@ -16811,13 +16844,13 @@ function SnackbarNotice(props) {
|
|
|
16811
16844
|
{
|
|
16812
16845
|
...(0, import_runtime66.trussProps)({
|
|
16813
16846
|
overflow: "oh",
|
|
16814
|
-
display: "
|
|
16815
|
-
WebkitBoxOrient: "
|
|
16816
|
-
textOverflow: "
|
|
16817
|
-
WebkitLineClamp: "
|
|
16847
|
+
display: "d_negwebkit_box",
|
|
16848
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
16849
|
+
textOverflow: "to_ellipsis",
|
|
16850
|
+
WebkitLineClamp: "wlc_3",
|
|
16818
16851
|
paddingRight: "pr2",
|
|
16819
|
-
marginTop: "
|
|
16820
|
-
marginBottom: "
|
|
16852
|
+
marginTop: "mt_12px",
|
|
16853
|
+
marginBottom: "mb_12px",
|
|
16821
16854
|
paddingLeft: ["pl_var", {
|
|
16822
16855
|
"--paddingLeft": `${icon ? 8 : 16}px`
|
|
16823
16856
|
}]
|
|
@@ -16837,8 +16870,8 @@ function SnackbarNotice(props) {
|
|
|
16837
16870
|
action && /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { ...(0, import_runtime66.trussProps)({
|
|
16838
16871
|
textTransform: "ttu",
|
|
16839
16872
|
fontWeight: "fw4",
|
|
16840
|
-
fontSize: "
|
|
16841
|
-
lineHeight: "
|
|
16873
|
+
fontSize: "fz_14px",
|
|
16874
|
+
lineHeight: "lh_20px",
|
|
16842
16875
|
paddingRight: ["pr_var", {
|
|
16843
16876
|
"--paddingRight": `${!reallyHideClose && action.variant !== "text" ? 4 : 8}px`
|
|
16844
16877
|
}]
|
|
@@ -17045,8 +17078,8 @@ function SuperDrawer() {
|
|
|
17045
17078
|
paddingBottom: "pb3",
|
|
17046
17079
|
paddingRight: "pr3",
|
|
17047
17080
|
paddingLeft: "pl3",
|
|
17048
|
-
borderBottomStyle: "
|
|
17049
|
-
borderBottomWidth: "
|
|
17081
|
+
borderBottomStyle: "bbs_solid",
|
|
17082
|
+
borderBottomWidth: "bbw_1px",
|
|
17050
17083
|
borderColor: "bcGray200",
|
|
17051
17084
|
display: "df",
|
|
17052
17085
|
alignItems: "aic",
|
|
@@ -17463,8 +17496,8 @@ function ListFieldRowInputs({
|
|
|
17463
17496
|
}), ...tid, children: [
|
|
17464
17497
|
/* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("span", { ...(0, import_runtime70.trussProps)({
|
|
17465
17498
|
fontWeight: "fw6",
|
|
17466
|
-
fontSize: "
|
|
17467
|
-
lineHeight: "
|
|
17499
|
+
fontSize: "fz_16px",
|
|
17500
|
+
lineHeight: "lh_24px"
|
|
17468
17501
|
}), ...tid.name, children: [
|
|
17469
17502
|
listFieldConfig.name,
|
|
17470
17503
|
" ",
|
|
@@ -18216,10 +18249,10 @@ function CompoundField({
|
|
|
18216
18249
|
alignItems: "aic",
|
|
18217
18250
|
flexShrink: "fs1",
|
|
18218
18251
|
maxWidth: "maxw_550px",
|
|
18219
|
-
borderTopStyle: "
|
|
18220
|
-
borderTopWidth: "
|
|
18221
|
-
borderBottomStyle: "
|
|
18222
|
-
borderBottomWidth: "
|
|
18252
|
+
borderTopStyle: "bts_solid",
|
|
18253
|
+
borderTopWidth: "btw_1px",
|
|
18254
|
+
borderBottomStyle: "bbs_solid",
|
|
18255
|
+
borderBottomWidth: "bbw_1px",
|
|
18223
18256
|
borderColor: "bcGray300"
|
|
18224
18257
|
};
|
|
18225
18258
|
const internalProps = {
|
|
@@ -18242,8 +18275,8 @@ function CompoundField({
|
|
|
18242
18275
|
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("div", { ...(0, import_runtime73.trussProps)({
|
|
18243
18276
|
...commonStyles,
|
|
18244
18277
|
...{
|
|
18245
|
-
borderLeftStyle: "
|
|
18246
|
-
borderLeftWidth: "
|
|
18278
|
+
borderLeftStyle: "bls_solid",
|
|
18279
|
+
borderLeftWidth: "blw_1px",
|
|
18247
18280
|
borderRadius: "borderRadius_4px_0_0_4px"
|
|
18248
18281
|
},
|
|
18249
18282
|
...hasFocusWithin && {
|
|
@@ -18266,8 +18299,8 @@ function CompoundField({
|
|
|
18266
18299
|
...commonStyles,
|
|
18267
18300
|
...{
|
|
18268
18301
|
flexGrow: "fg1",
|
|
18269
|
-
borderRightStyle: "
|
|
18270
|
-
borderRightWidth: "
|
|
18302
|
+
borderRightStyle: "brs_solid",
|
|
18303
|
+
borderRightWidth: "brw_1px",
|
|
18271
18304
|
borderRadius: "borderRadius_0_4px_4px_0"
|
|
18272
18305
|
},
|
|
18273
18306
|
...hasFocusWithin && {
|
|
@@ -18321,8 +18354,8 @@ function FormHeading(props) {
|
|
|
18321
18354
|
return /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("h3", { ...(0, import_runtime74.trussProps)({
|
|
18322
18355
|
...{
|
|
18323
18356
|
fontWeight: "fw4",
|
|
18324
|
-
fontSize: "
|
|
18325
|
-
lineHeight: "
|
|
18357
|
+
fontSize: "fz_16px",
|
|
18358
|
+
lineHeight: "lh_24px",
|
|
18326
18359
|
...!isFirst ? {
|
|
18327
18360
|
marginTop: "mt1"
|
|
18328
18361
|
} : {}
|
|
@@ -18358,15 +18391,15 @@ function StaticField(props) {
|
|
|
18358
18391
|
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("label", { ...(0, import_runtime75.trussProps)({
|
|
18359
18392
|
display: "db",
|
|
18360
18393
|
fontWeight: "fw4",
|
|
18361
|
-
fontSize: "
|
|
18362
|
-
lineHeight: "
|
|
18394
|
+
fontSize: "fz_14px",
|
|
18395
|
+
lineHeight: "lh_20px",
|
|
18363
18396
|
color: "gray700",
|
|
18364
18397
|
marginBottom: "mb_4px"
|
|
18365
18398
|
}), htmlFor: id, ...tid.label, children: label }),
|
|
18366
18399
|
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("div", { id, ...(0, import_runtime75.trussProps)({
|
|
18367
18400
|
fontWeight: "fw4",
|
|
18368
|
-
fontSize: "
|
|
18369
|
-
lineHeight: "
|
|
18401
|
+
fontSize: "fz_14px",
|
|
18402
|
+
lineHeight: "lh_20px",
|
|
18370
18403
|
color: "gray900",
|
|
18371
18404
|
display: "df",
|
|
18372
18405
|
alignItems: "aic",
|
|
@@ -18580,18 +18613,18 @@ function PageHeaderBreadcrumbs({
|
|
|
18580
18613
|
return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(import_react90.Fragment, { children: [
|
|
18581
18614
|
index > 0 && !hideDivisor && /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("span", { ...(0, import_runtime77.trussProps)({
|
|
18582
18615
|
fontWeight: "fw6",
|
|
18583
|
-
fontSize: "
|
|
18584
|
-
lineHeight: "
|
|
18616
|
+
fontSize: "fz_14px",
|
|
18617
|
+
lineHeight: "lh_20px",
|
|
18585
18618
|
color: "gray700",
|
|
18586
18619
|
marginLeft: "ml1",
|
|
18587
18620
|
marginRight: "mr1",
|
|
18588
|
-
marginTop: "
|
|
18589
|
-
marginBottom: "
|
|
18621
|
+
marginTop: "mt_2px",
|
|
18622
|
+
marginBottom: "mb_2px"
|
|
18590
18623
|
}), children: "/" }),
|
|
18591
18624
|
/* @__PURE__ */ (0, import_jsx_runtime122.jsx)(import_react_router_dom4.Link, { to: bc.href, ...(0, import_runtime77.mergeProps)("navLink", void 0, {
|
|
18592
18625
|
fontWeight: "fw6",
|
|
18593
|
-
fontSize: "
|
|
18594
|
-
lineHeight: "
|
|
18626
|
+
fontSize: "fz_14px",
|
|
18627
|
+
lineHeight: "lh_20px",
|
|
18595
18628
|
color: "gray700 h_gray900"
|
|
18596
18629
|
}), ...tids.navLink, children: bc.label }),
|
|
18597
18630
|
bc.right
|
|
@@ -18717,8 +18750,8 @@ function PageHeader(props) {
|
|
|
18717
18750
|
breadCrumb && /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(PageHeaderBreadcrumbs, { breadcrumb: breadCrumb }),
|
|
18718
18751
|
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("h1", { ...(0, import_runtime78.trussProps)({
|
|
18719
18752
|
fontWeight: "fw6",
|
|
18720
|
-
fontSize: "
|
|
18721
|
-
lineHeight: "
|
|
18753
|
+
fontSize: "fz_30px",
|
|
18754
|
+
lineHeight: "lh_36px"
|
|
18722
18755
|
}), ...tids.pageTitle, children: pageTitle })
|
|
18723
18756
|
] }),
|
|
18724
18757
|
/* @__PURE__ */ (0, import_jsx_runtime123.jsxs)("div", { ...(0, import_runtime78.trussProps)({
|
|
@@ -18776,8 +18809,8 @@ function FormSections(props) {
|
|
|
18776
18809
|
}), children: [
|
|
18777
18810
|
section.title && /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("h2", { ...(0, import_runtime78.trussProps)({
|
|
18778
18811
|
fontWeight: "fw6",
|
|
18779
|
-
fontSize: "
|
|
18780
|
-
lineHeight: "
|
|
18812
|
+
fontSize: "fz_20px",
|
|
18813
|
+
lineHeight: "lh_28px",
|
|
18781
18814
|
marginBottom: "mb3"
|
|
18782
18815
|
}), children: section.title }),
|
|
18783
18816
|
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)(BoundForm, { formState, rows: section.rows })
|
|
@@ -18813,8 +18846,8 @@ function LeftNav(props) {
|
|
|
18813
18846
|
}
|
|
18814
18847
|
var activeStyles2 = {
|
|
18815
18848
|
fontWeight: "fw6",
|
|
18816
|
-
fontSize: "
|
|
18817
|
-
lineHeight: "
|
|
18849
|
+
fontSize: "fz_14px",
|
|
18850
|
+
lineHeight: "lh_20px",
|
|
18818
18851
|
boxShadow: ["boxShadow_var", {
|
|
18819
18852
|
"--boxShadow": `inset 3px 0px 0 0px ${"rgba(37, 99, 235, 1)" /* Blue600 */}`
|
|
18820
18853
|
}]
|
|
@@ -18822,8 +18855,8 @@ var activeStyles2 = {
|
|
|
18822
18855
|
var hoverStyles2 = {
|
|
18823
18856
|
backgroundColor: "bgBlue50",
|
|
18824
18857
|
fontWeight: "fw6",
|
|
18825
|
-
fontSize: "
|
|
18826
|
-
lineHeight: "
|
|
18858
|
+
fontSize: "fz_14px",
|
|
18859
|
+
lineHeight: "lh_20px",
|
|
18827
18860
|
color: "blue900",
|
|
18828
18861
|
boxShadow: ["boxShadow_var", {
|
|
18829
18862
|
"--boxShadow": `inset 3px 0px 0 0px ${"rgba(30, 58, 138, 1)" /* Blue900 */}`
|
|
@@ -18869,8 +18902,8 @@ function SectionNavLink(props) {
|
|
|
18869
18902
|
return /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("button", { ref: buttonRef, ...buttonProps, ...focusProps, ...hoverProps, ...(0, import_runtime78.trussProps)({
|
|
18870
18903
|
...{
|
|
18871
18904
|
fontWeight: "fw6",
|
|
18872
|
-
fontSize: "
|
|
18873
|
-
lineHeight: "
|
|
18905
|
+
fontSize: "fz_14px",
|
|
18906
|
+
lineHeight: "lh_20px",
|
|
18874
18907
|
outline: "outline0",
|
|
18875
18908
|
borderRadius: "br0",
|
|
18876
18909
|
display: "dif",
|
|
@@ -19079,8 +19112,8 @@ function CountBadge(props) {
|
|
|
19079
19112
|
flexShrink: "fs0",
|
|
19080
19113
|
borderRadius: "br100",
|
|
19081
19114
|
fontWeight: "fw6",
|
|
19082
|
-
fontSize: "
|
|
19083
|
-
lineHeight: "
|
|
19115
|
+
fontSize: "fz_10px",
|
|
19116
|
+
lineHeight: "lh_14px",
|
|
19084
19117
|
display: "df",
|
|
19085
19118
|
alignItems: "aic",
|
|
19086
19119
|
justifyContent: "jcc",
|
|
@@ -19515,15 +19548,15 @@ function ModalFilterItem({
|
|
|
19515
19548
|
return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("div", { ...(0, import_runtime82.trussProps)({
|
|
19516
19549
|
marginBottom: "mb4",
|
|
19517
19550
|
...!label ? {
|
|
19518
|
-
borderTopStyle: "
|
|
19519
|
-
borderTopWidth: "
|
|
19551
|
+
borderTopStyle: "bts_solid",
|
|
19552
|
+
borderTopWidth: "btw_1px",
|
|
19520
19553
|
borderColor: "bcGray200"
|
|
19521
19554
|
} : {}
|
|
19522
19555
|
}), children: [
|
|
19523
19556
|
label && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("h2", { ...(0, import_runtime82.trussProps)({
|
|
19524
19557
|
fontWeight: "fw4",
|
|
19525
|
-
fontSize: "
|
|
19526
|
-
lineHeight: "
|
|
19558
|
+
fontSize: "fz_16px",
|
|
19559
|
+
lineHeight: "lh_24px",
|
|
19527
19560
|
marginBottom: "mb2"
|
|
19528
19561
|
}), children: label }),
|
|
19529
19562
|
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { ...(0, import_runtime82.trussProps)({
|
|
@@ -19745,11 +19778,11 @@ function Pagination(props) {
|
|
|
19745
19778
|
return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)("div", { ...(0, import_runtime85.trussProps)({
|
|
19746
19779
|
display: "df",
|
|
19747
19780
|
borderColor: "bcGray200",
|
|
19748
|
-
borderTopStyle: "
|
|
19749
|
-
borderTopWidth: "
|
|
19781
|
+
borderTopStyle: "bts_solid",
|
|
19782
|
+
borderTopWidth: "btw_1px",
|
|
19750
19783
|
fontWeight: "fw4",
|
|
19751
|
-
fontSize: "
|
|
19752
|
-
lineHeight: "
|
|
19784
|
+
fontSize: "fz_12px",
|
|
19785
|
+
lineHeight: "lh_16px",
|
|
19753
19786
|
color: "gray500",
|
|
19754
19787
|
paddingLeft: "pl2",
|
|
19755
19788
|
paddingRight: "pr2",
|
|
@@ -19864,11 +19897,11 @@ function EditColumnsButton(props) {
|
|
|
19864
19897
|
options.map((option) => /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(import_react98.Fragment, { children: [
|
|
19865
19898
|
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { ...(0, import_runtime86.trussProps)({
|
|
19866
19899
|
fontWeight: "fw4",
|
|
19867
|
-
fontSize: "
|
|
19868
|
-
lineHeight: "
|
|
19900
|
+
fontSize: "fz_14px",
|
|
19901
|
+
lineHeight: "lh_20px",
|
|
19869
19902
|
whiteSpace: "wsnw",
|
|
19870
19903
|
overflow: "oh",
|
|
19871
|
-
textOverflow: "
|
|
19904
|
+
textOverflow: "to_ellipsis",
|
|
19872
19905
|
paddingRight: "pr1"
|
|
19873
19906
|
}), children: option.label }),
|
|
19874
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}`] })
|
|
@@ -20192,8 +20225,8 @@ function Header2(props) {
|
|
|
20192
20225
|
breadcrumb && /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(PageHeaderBreadcrumbs, { breadcrumb }),
|
|
20193
20226
|
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("h1", { ...(0, import_runtime90.trussProps)({
|
|
20194
20227
|
fontWeight: "fw6",
|
|
20195
|
-
fontSize: "
|
|
20196
|
-
lineHeight: "
|
|
20228
|
+
fontSize: "fz_30px",
|
|
20229
|
+
lineHeight: "lh_36px",
|
|
20197
20230
|
marginTop: "mt1"
|
|
20198
20231
|
}), ...tids.pageTitle, children: pageTitle })
|
|
20199
20232
|
] }),
|
|
@@ -20584,8 +20617,8 @@ function GroupButton(props) {
|
|
|
20584
20617
|
children: /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("button", { ref, ...buttonProps, ...focusProps, ...hoverProps, ...(0, import_runtime93.trussProps)({
|
|
20585
20618
|
...{
|
|
20586
20619
|
fontWeight: "fw6",
|
|
20587
|
-
fontSize: "
|
|
20588
|
-
lineHeight: "
|
|
20620
|
+
fontSize: "fz_14px",
|
|
20621
|
+
lineHeight: "lh_20px",
|
|
20589
20622
|
outline: "outline0",
|
|
20590
20623
|
borderRadius: "br0",
|
|
20591
20624
|
display: "dif",
|
|
@@ -20668,12 +20701,12 @@ var sizeStyles2 = {
|
|
|
20668
20701
|
};
|
|
20669
20702
|
var iconStyles2 = {
|
|
20670
20703
|
xs: {
|
|
20671
|
-
paddingLeft: "
|
|
20672
|
-
paddingRight: "
|
|
20704
|
+
paddingLeft: "pl_2px",
|
|
20705
|
+
paddingRight: "pr_2px"
|
|
20673
20706
|
},
|
|
20674
20707
|
sm: {
|
|
20675
|
-
paddingLeft: "
|
|
20676
|
-
paddingRight: "
|
|
20708
|
+
paddingLeft: "pl_4px",
|
|
20709
|
+
paddingRight: "pr_4px"
|
|
20677
20710
|
},
|
|
20678
20711
|
md: {
|
|
20679
20712
|
paddingLeft: "pl1",
|
|
@@ -20716,15 +20749,15 @@ function Tag(props) {
|
|
|
20716
20749
|
...{
|
|
20717
20750
|
display: "dif",
|
|
20718
20751
|
fontWeight: "fw6",
|
|
20719
|
-
fontSize: "
|
|
20720
|
-
lineHeight: "
|
|
20752
|
+
fontSize: "fz_10px",
|
|
20753
|
+
lineHeight: "lh_14px",
|
|
20721
20754
|
textTransform: "ttu",
|
|
20722
20755
|
alignItems: "aic",
|
|
20723
20756
|
gap: "gap_4px",
|
|
20724
|
-
paddingLeft: "
|
|
20725
|
-
paddingRight: "
|
|
20726
|
-
paddingTop: "
|
|
20727
|
-
paddingBottom: "
|
|
20757
|
+
paddingLeft: "pl_6px",
|
|
20758
|
+
paddingRight: "pr_6px",
|
|
20759
|
+
paddingTop: "pt_2px",
|
|
20760
|
+
paddingBottom: "pb_2px",
|
|
20728
20761
|
color: "gray900",
|
|
20729
20762
|
borderRadius: "br4"
|
|
20730
20763
|
},
|
|
@@ -20736,10 +20769,10 @@ function Tag(props) {
|
|
|
20736
20769
|
}), children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(Icon, { icon: otherProps.icon, inc: 1.5 }) }),
|
|
20737
20770
|
/* @__PURE__ */ (0, import_jsx_runtime152.jsx)("span", { ref, ...(0, import_runtime94.trussProps)({
|
|
20738
20771
|
overflow: "oh",
|
|
20739
|
-
display: "
|
|
20740
|
-
WebkitBoxOrient: "
|
|
20741
|
-
textOverflow: "
|
|
20742
|
-
WebkitLineClamp: "
|
|
20772
|
+
display: "d_negwebkit_box",
|
|
20773
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
20774
|
+
textOverflow: "to_ellipsis",
|
|
20775
|
+
WebkitLineClamp: "wlc_1",
|
|
20743
20776
|
wordBreak: "wbba"
|
|
20744
20777
|
}), children: text })
|
|
20745
20778
|
] })
|
|
@@ -20853,14 +20886,14 @@ function Card(props) {
|
|
|
20853
20886
|
/* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("div", { children: [
|
|
20854
20887
|
/* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { ...(0, import_runtime95.trussProps)({
|
|
20855
20888
|
fontWeight: "fw6",
|
|
20856
|
-
fontSize: "
|
|
20857
|
-
lineHeight: "
|
|
20889
|
+
fontSize: "fz_12px",
|
|
20890
|
+
lineHeight: "lh_16px",
|
|
20858
20891
|
color: "gray700"
|
|
20859
20892
|
}), ...tid.subtitle, children: subtitle }),
|
|
20860
20893
|
/* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { ...(0, import_runtime95.trussProps)({
|
|
20861
20894
|
fontWeight: "fw6",
|
|
20862
|
-
fontSize: "
|
|
20863
|
-
lineHeight: "
|
|
20895
|
+
fontSize: "fz_14px",
|
|
20896
|
+
lineHeight: "lh_20px",
|
|
20864
20897
|
color: "gray900",
|
|
20865
20898
|
...isHovered ? {
|
|
20866
20899
|
color: "blue700"
|
|
@@ -20921,8 +20954,8 @@ function Copy(props) {
|
|
|
20921
20954
|
return /* @__PURE__ */ (0, import_jsx_runtime154.jsx)("div", { ...(0, import_runtime96.mergeProps)("beam-copy", void 0, {
|
|
20922
20955
|
...{
|
|
20923
20956
|
fontWeight: "fw4",
|
|
20924
|
-
fontSize: "
|
|
20925
|
-
lineHeight: "
|
|
20957
|
+
fontSize: "fz_14px",
|
|
20958
|
+
lineHeight: "lh_20px",
|
|
20926
20959
|
color: "gray700",
|
|
20927
20960
|
marginTop: "mt2",
|
|
20928
20961
|
marginBottom: "mb3",
|
|
@@ -21436,17 +21469,17 @@ function MaxLines({
|
|
|
21436
21469
|
WebkitLineClamp: ["lineClamp_var", {
|
|
21437
21470
|
"--WebkitLineClamp": maxLines
|
|
21438
21471
|
}],
|
|
21439
|
-
overflow: "
|
|
21440
|
-
display: "
|
|
21441
|
-
WebkitBoxOrient: "
|
|
21442
|
-
textOverflow: "
|
|
21472
|
+
overflow: "oh",
|
|
21473
|
+
display: "d_negwebkit_box",
|
|
21474
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
21475
|
+
textOverflow: "to_ellipsis"
|
|
21443
21476
|
} : {}
|
|
21444
21477
|
}), children }),
|
|
21445
21478
|
hasMore && /* @__PURE__ */ (0, import_jsx_runtime160.jsx)("button", { ...(0, import_runtime100.trussProps)({
|
|
21446
21479
|
display: "db",
|
|
21447
21480
|
fontWeight: "fw4",
|
|
21448
|
-
fontSize: "
|
|
21449
|
-
lineHeight: "
|
|
21481
|
+
fontSize: "fz_14px",
|
|
21482
|
+
lineHeight: "lh_20px"
|
|
21450
21483
|
}), onClick: () => setExpanded((prev) => !prev), children: expanded ? "Show Less" : "Show More" })
|
|
21451
21484
|
] });
|
|
21452
21485
|
}
|
|
@@ -21674,9 +21707,9 @@ function Stepper(props) {
|
|
|
21674
21707
|
width: "w100"
|
|
21675
21708
|
}), ...tid, children: [
|
|
21676
21709
|
/* @__PURE__ */ (0, import_jsx_runtime162.jsx)("ol", { ...(0, import_runtime102.trussProps)({
|
|
21677
|
-
padding: "
|
|
21678
|
-
margin: "
|
|
21679
|
-
listStyle: "
|
|
21710
|
+
padding: "p_0",
|
|
21711
|
+
margin: "m_0",
|
|
21712
|
+
listStyle: "lis_none",
|
|
21680
21713
|
display: "df",
|
|
21681
21714
|
gap: ["gap_var", {
|
|
21682
21715
|
"--gap": `${gap}px`
|
|
@@ -21750,8 +21783,8 @@ function StepButton(props) {
|
|
|
21750
21783
|
return /* @__PURE__ */ (0, import_jsx_runtime162.jsxs)("button", { ref, ...buttonProps, ...focusProps, ...hoverProps, ...(0, import_runtime102.trussProps)({
|
|
21751
21784
|
...{
|
|
21752
21785
|
fontWeight: "fw6",
|
|
21753
|
-
fontSize: "
|
|
21754
|
-
lineHeight: "
|
|
21786
|
+
fontSize: "fz_14px",
|
|
21787
|
+
lineHeight: "lh_20px",
|
|
21755
21788
|
outline: "outline0",
|
|
21756
21789
|
borderRadius: "br8",
|
|
21757
21790
|
display: "dif",
|
|
@@ -21764,8 +21797,8 @@ function StepButton(props) {
|
|
|
21764
21797
|
width: "w100",
|
|
21765
21798
|
height: "h100",
|
|
21766
21799
|
fontWeight: "fw4",
|
|
21767
|
-
fontSize: "
|
|
21768
|
-
lineHeight: "
|
|
21800
|
+
fontSize: "fz_14px",
|
|
21801
|
+
lineHeight: "lh_20px",
|
|
21769
21802
|
color: "gray700",
|
|
21770
21803
|
whiteSpace: "whiteSpace_initial",
|
|
21771
21804
|
...state === "error" ? {
|
|
@@ -21878,8 +21911,8 @@ function SuperDrawerHeader(props) {
|
|
|
21878
21911
|
}), children: [
|
|
21879
21912
|
/* @__PURE__ */ (0, import_jsx_runtime163.jsx)("h1", { ...(0, import_runtime103.trussProps)({
|
|
21880
21913
|
fontWeight: "fw6",
|
|
21881
|
-
fontSize: "
|
|
21882
|
-
lineHeight: "
|
|
21914
|
+
fontSize: "fz_30px",
|
|
21915
|
+
lineHeight: "lh_36px"
|
|
21883
21916
|
}), children: props.title }),
|
|
21884
21917
|
props.left
|
|
21885
21918
|
] }),
|
|
@@ -22147,8 +22180,8 @@ var SuperDrawerContent = ({
|
|
|
22147
22180
|
return /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(import_jsx_runtime166.Fragment, { children: [
|
|
22148
22181
|
wrapWithMotionAndMaybeBack(children),
|
|
22149
22182
|
actions && /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("footer", { ...(0, import_runtime104.trussProps)({
|
|
22150
|
-
borderTopStyle: "
|
|
22151
|
-
borderTopWidth: "
|
|
22183
|
+
borderTopStyle: "bts_solid",
|
|
22184
|
+
borderTopWidth: "btw_1px",
|
|
22152
22185
|
borderColor: "bcGray200",
|
|
22153
22186
|
paddingTop: "pt3",
|
|
22154
22187
|
paddingBottom: "pb3",
|
|
@@ -22270,8 +22303,8 @@ function Tabs(props) {
|
|
|
22270
22303
|
},
|
|
22271
22304
|
...includeBottomBorder ? {
|
|
22272
22305
|
...{
|
|
22273
|
-
borderBottomStyle: "
|
|
22274
|
-
borderBottomWidth: "
|
|
22306
|
+
borderBottomStyle: "bbs_solid",
|
|
22307
|
+
borderBottomWidth: "bbw_1px",
|
|
22275
22308
|
borderColor: "bcGray200"
|
|
22276
22309
|
}
|
|
22277
22310
|
} : {}
|
|
@@ -22371,7 +22404,7 @@ function getTabStyles() {
|
|
|
22371
22404
|
const borderBottomWidthPx = 4;
|
|
22372
22405
|
const verticalPaddingPx = 6;
|
|
22373
22406
|
const borderBottomStyles = {
|
|
22374
|
-
borderBottomStyle: "
|
|
22407
|
+
borderBottomStyle: "bbs_solid",
|
|
22375
22408
|
borderBottomWidth: ["borderBottomWidth_var", {
|
|
22376
22409
|
"--borderBottomWidth": `${borderBottomWidthPx}px`
|
|
22377
22410
|
}],
|
|
@@ -22397,15 +22430,15 @@ function getTabStyles() {
|
|
|
22397
22430
|
width: "width_fit_content",
|
|
22398
22431
|
cursor: "cursorPointer",
|
|
22399
22432
|
fontWeight: "fw4",
|
|
22400
|
-
fontSize: "
|
|
22401
|
-
lineHeight: "
|
|
22433
|
+
fontSize: "fz_14px",
|
|
22434
|
+
lineHeight: "lh_20px"
|
|
22402
22435
|
},
|
|
22403
22436
|
activeStyles: {
|
|
22404
22437
|
...{
|
|
22405
22438
|
borderColor: "bcBlue700",
|
|
22406
22439
|
fontWeight: "fw6",
|
|
22407
|
-
fontSize: "
|
|
22408
|
-
lineHeight: "
|
|
22440
|
+
fontSize: "fz_14px",
|
|
22441
|
+
lineHeight: "lh_20px",
|
|
22409
22442
|
color: "gray900"
|
|
22410
22443
|
},
|
|
22411
22444
|
...borderBottomStyles
|
|
@@ -22656,6 +22689,7 @@ function useToast() {
|
|
|
22656
22689
|
formatValue,
|
|
22657
22690
|
generateColumnId,
|
|
22658
22691
|
getAlignment,
|
|
22692
|
+
getColumnBorderCss,
|
|
22659
22693
|
getDateFormat,
|
|
22660
22694
|
getFirstOrLastCellCss,
|
|
22661
22695
|
getJustification,
|