@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.js
CHANGED
|
@@ -3373,9 +3373,9 @@ var CssBuilder = class _CssBuilder {
|
|
|
3373
3373
|
get measureNarrow() {
|
|
3374
3374
|
return this.add("maxWidth", "20em");
|
|
3375
3375
|
}
|
|
3376
|
-
/** Sets `textIndent: "1em"; marginTop:
|
|
3376
|
+
/** Sets `textIndent: "1em"; marginTop: "0px"; marginBottom: "0px"`. */
|
|
3377
3377
|
get indent() {
|
|
3378
|
-
return this.add("textIndent", "1em").add("marginTop",
|
|
3378
|
+
return this.add("textIndent", "1em").add("marginTop", "0px").add("marginBottom", "0px");
|
|
3379
3379
|
}
|
|
3380
3380
|
/** Sets `fontVariant: "small-caps"`. */
|
|
3381
3381
|
get smallCaps() {
|
|
@@ -3788,6 +3788,12 @@ var CssBuilder = class _CssBuilder {
|
|
|
3788
3788
|
get onDisabled() {
|
|
3789
3789
|
return this.newCss({ selector: ":disabled" });
|
|
3790
3790
|
}
|
|
3791
|
+
get ifFirstOfType() {
|
|
3792
|
+
return this.newCss({ selector: ":first-of-type" });
|
|
3793
|
+
}
|
|
3794
|
+
get ifLastOfType() {
|
|
3795
|
+
return this.newCss({ selector: ":last-of-type" });
|
|
3796
|
+
}
|
|
3791
3797
|
/** Marks this element as a default hover marker (for ancestor pseudo selectors). */
|
|
3792
3798
|
get marker() {
|
|
3793
3799
|
return this;
|
|
@@ -3867,6 +3873,11 @@ var CssBuilder = class _CssBuilder {
|
|
|
3867
3873
|
addCss(props) {
|
|
3868
3874
|
return this.add(omitUndefinedValues(props));
|
|
3869
3875
|
}
|
|
3876
|
+
/** Marker for the build-time transform to append a raw className. */
|
|
3877
|
+
className(className) {
|
|
3878
|
+
void className;
|
|
3879
|
+
return this;
|
|
3880
|
+
}
|
|
3870
3881
|
/** Convert a style hash into `{ className, style }` props for manual spreading into non-`css=` contexts. */
|
|
3871
3882
|
props(styles) {
|
|
3872
3883
|
return trussProps(styles);
|
|
@@ -3894,7 +3905,7 @@ function px(pixels) {
|
|
|
3894
3905
|
return `${pixels}px`;
|
|
3895
3906
|
}
|
|
3896
3907
|
function omitUndefinedValues(value) {
|
|
3897
|
-
const entries = Object.entries(value).filter(
|
|
3908
|
+
const entries = Object.entries(value).filter(([, entryValue]) => {
|
|
3898
3909
|
return entryValue !== void 0;
|
|
3899
3910
|
});
|
|
3900
3911
|
return Object.fromEntries(entries);
|
|
@@ -4177,12 +4188,12 @@ function Popper(props) {
|
|
|
4177
4188
|
color: "white",
|
|
4178
4189
|
paddingLeft: "pl1",
|
|
4179
4190
|
paddingRight: "pr1",
|
|
4180
|
-
paddingTop: "
|
|
4181
|
-
paddingBottom: "
|
|
4191
|
+
paddingTop: "pt_4px",
|
|
4192
|
+
paddingBottom: "pb_4px",
|
|
4182
4193
|
borderRadius: "br4",
|
|
4183
4194
|
fontWeight: "fw4",
|
|
4184
|
-
fontSize: "
|
|
4185
|
-
lineHeight: "
|
|
4195
|
+
fontSize: "fz_12px",
|
|
4196
|
+
lineHeight: "lh_16px",
|
|
4186
4197
|
zIndex: "z_999999"
|
|
4187
4198
|
},
|
|
4188
4199
|
...xss
|
|
@@ -4756,10 +4767,10 @@ function Chip(props) {
|
|
|
4756
4767
|
} }),
|
|
4757
4768
|
/* @__PURE__ */ jsx5("span", { ...trussProps4({
|
|
4758
4769
|
overflow: "oh",
|
|
4759
|
-
display: "
|
|
4760
|
-
WebkitBoxOrient: "
|
|
4761
|
-
textOverflow: "
|
|
4762
|
-
WebkitLineClamp: "
|
|
4770
|
+
display: "d_negwebkit_box",
|
|
4771
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
4772
|
+
textOverflow: "to_ellipsis",
|
|
4773
|
+
WebkitLineClamp: "wlc_1",
|
|
4763
4774
|
wordBreak: "wbba"
|
|
4764
4775
|
}), children: text })
|
|
4765
4776
|
] })
|
|
@@ -4795,8 +4806,8 @@ var typeStyles = {
|
|
|
4795
4806
|
};
|
|
4796
4807
|
var chipBaseStyles = (compact) => ({
|
|
4797
4808
|
fontWeight: "fw6",
|
|
4798
|
-
fontSize: "
|
|
4799
|
-
lineHeight: "
|
|
4809
|
+
fontSize: "fz_12px",
|
|
4810
|
+
lineHeight: "lh_16px",
|
|
4800
4811
|
display: "dif",
|
|
4801
4812
|
alignItems: "aic",
|
|
4802
4813
|
borderRadius: "br16",
|
|
@@ -4914,6 +4925,7 @@ var nonKindGridColumnKeys = [
|
|
|
4914
4925
|
"serverSideSortKey",
|
|
4915
4926
|
"clientSideSort",
|
|
4916
4927
|
"sticky",
|
|
4928
|
+
"border",
|
|
4917
4929
|
"wrapAction",
|
|
4918
4930
|
"isAction",
|
|
4919
4931
|
"id",
|
|
@@ -5397,8 +5409,8 @@ function ExpandableHeader(props) {
|
|
|
5397
5409
|
return /* @__PURE__ */ jsxs4("button", { ...hoverProps, ...trussProps8({
|
|
5398
5410
|
display: "df",
|
|
5399
5411
|
fontWeight: "fw4",
|
|
5400
|
-
fontSize: "
|
|
5401
|
-
lineHeight: "
|
|
5412
|
+
fontSize: "fz_12px",
|
|
5413
|
+
lineHeight: "lh_16px",
|
|
5402
5414
|
alignItems: "aic",
|
|
5403
5415
|
justifyContent: "jcsb",
|
|
5404
5416
|
gap: "gap2",
|
|
@@ -5447,10 +5459,10 @@ function ExpandableHeader(props) {
|
|
|
5447
5459
|
/* @__PURE__ */ jsx10("span", { ...trussProps8({
|
|
5448
5460
|
textAlign: "tal",
|
|
5449
5461
|
overflow: "oh",
|
|
5450
|
-
display: "
|
|
5451
|
-
WebkitBoxOrient: "
|
|
5452
|
-
textOverflow: "
|
|
5453
|
-
WebkitLineClamp: "
|
|
5462
|
+
display: "d_negwebkit_box",
|
|
5463
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5464
|
+
textOverflow: "to_ellipsis",
|
|
5465
|
+
WebkitLineClamp: "wlc_2"
|
|
5454
5466
|
}), children: title }),
|
|
5455
5467
|
tooltipEl
|
|
5456
5468
|
] }),
|
|
@@ -5519,10 +5531,10 @@ function SortHeader(props) {
|
|
|
5519
5531
|
iconOnLeft && icon,
|
|
5520
5532
|
/* @__PURE__ */ jsx11("span", { ...trussProps9({
|
|
5521
5533
|
overflow: "oh",
|
|
5522
|
-
display: "
|
|
5523
|
-
WebkitBoxOrient: "
|
|
5524
|
-
textOverflow: "
|
|
5525
|
-
WebkitLineClamp: "
|
|
5534
|
+
display: "d_negwebkit_box",
|
|
5535
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5536
|
+
textOverflow: "to_ellipsis",
|
|
5537
|
+
WebkitLineClamp: "wlc_2"
|
|
5526
5538
|
}), children: content }),
|
|
5527
5539
|
tooltipEl,
|
|
5528
5540
|
!iconOnLeft && icon
|
|
@@ -5554,7 +5566,7 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
|
|
|
5554
5566
|
...style?.presentationSettings?.wrap === false ? {
|
|
5555
5567
|
whiteSpace: "wsnw",
|
|
5556
5568
|
overflow: "oh",
|
|
5557
|
-
textOverflow: "
|
|
5569
|
+
textOverflow: "to_ellipsis"
|
|
5558
5570
|
} : {}
|
|
5559
5571
|
})) : content;
|
|
5560
5572
|
if (content && typeof content === "string" && isHeader && canSortColumn) {
|
|
@@ -5565,10 +5577,10 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
|
|
|
5565
5577
|
return /* @__PURE__ */ jsxs6(Fragment3, { children: [
|
|
5566
5578
|
/* @__PURE__ */ jsx12("span", { ...trussProps10({
|
|
5567
5579
|
overflow: "oh",
|
|
5568
|
-
display: "
|
|
5569
|
-
WebkitBoxOrient: "
|
|
5570
|
-
textOverflow: "
|
|
5571
|
-
WebkitLineClamp: "
|
|
5580
|
+
display: "d_negwebkit_box",
|
|
5581
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5582
|
+
textOverflow: "to_ellipsis",
|
|
5583
|
+
WebkitLineClamp: "wlc_2"
|
|
5572
5584
|
}), children: content }),
|
|
5573
5585
|
tooltipEl
|
|
5574
5586
|
] });
|
|
@@ -5576,10 +5588,10 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
|
|
|
5576
5588
|
return /* @__PURE__ */ jsxs6(Fragment3, { children: [
|
|
5577
5589
|
/* @__PURE__ */ jsx12("span", { ...trussProps10({
|
|
5578
5590
|
overflow: "oh",
|
|
5579
|
-
display: "
|
|
5580
|
-
WebkitBoxOrient: "
|
|
5581
|
-
textOverflow: "
|
|
5582
|
-
WebkitLineClamp: "
|
|
5591
|
+
display: "d_negwebkit_box",
|
|
5592
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
5593
|
+
textOverflow: "to_ellipsis",
|
|
5594
|
+
WebkitLineClamp: "wlc_2"
|
|
5583
5595
|
}), title: content, children: content }),
|
|
5584
5596
|
tooltipEl
|
|
5585
5597
|
] });
|
|
@@ -5588,7 +5600,7 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
|
|
|
5588
5600
|
/* @__PURE__ */ jsx12("span", { ...trussProps10({
|
|
5589
5601
|
whiteSpace: "wsnw",
|
|
5590
5602
|
overflow: "oh",
|
|
5591
|
-
textOverflow: "
|
|
5603
|
+
textOverflow: "to_ellipsis",
|
|
5592
5604
|
minWidth: "mw0"
|
|
5593
5605
|
}), title: content, children: content }),
|
|
5594
5606
|
tooltipEl
|
|
@@ -5634,6 +5646,19 @@ function getFirstOrLastCellCss(style, columnIndex, columns, colspan = 1) {
|
|
|
5634
5646
|
...columnIndex + colspan >= columns.length ? style.lastCellCss : {}
|
|
5635
5647
|
};
|
|
5636
5648
|
}
|
|
5649
|
+
function getColumnBorderCss(border, style) {
|
|
5650
|
+
if (!border) return {};
|
|
5651
|
+
return {
|
|
5652
|
+
...border === "left" ? {
|
|
5653
|
+
borderLeftStyle: "bls_solid",
|
|
5654
|
+
borderLeftWidth: "blw_1px"
|
|
5655
|
+
} : {
|
|
5656
|
+
borderRightStyle: "brs_solid",
|
|
5657
|
+
borderRightWidth: "brw_1px"
|
|
5658
|
+
},
|
|
5659
|
+
...style.borderStyle
|
|
5660
|
+
};
|
|
5661
|
+
}
|
|
5637
5662
|
function isJSX(content) {
|
|
5638
5663
|
return typeof content === "object" && content && "type" in content && "props" in content;
|
|
5639
5664
|
}
|
|
@@ -5938,8 +5963,8 @@ function Header(props) {
|
|
|
5938
5963
|
}), children: [
|
|
5939
5964
|
/* @__PURE__ */ jsx15("h1", { ...trussProps12({
|
|
5940
5965
|
fontWeight: "fw4",
|
|
5941
|
-
fontSize: "
|
|
5942
|
-
lineHeight: "
|
|
5966
|
+
fontSize: "fz_16px",
|
|
5967
|
+
lineHeight: "lh_24px"
|
|
5943
5968
|
}), children: format(displayMonth, "MMMM yyyy") }),
|
|
5944
5969
|
/* @__PURE__ */ jsxs8("div", { children: [
|
|
5945
5970
|
/* @__PURE__ */ jsx15(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronLeft", onClick: () => goToMonth(addMonths(displayMonth, -1)) }),
|
|
@@ -5970,8 +5995,8 @@ function YearSkipHeader(props) {
|
|
|
5970
5995
|
/* @__PURE__ */ jsx15(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronLeft", onClick: () => goToMonth(addMonths(displayMonth, -1)) }),
|
|
5971
5996
|
/* @__PURE__ */ jsx15("h1", { ...trussProps12({
|
|
5972
5997
|
fontWeight: "fw4",
|
|
5973
|
-
fontSize: "
|
|
5974
|
-
lineHeight: "
|
|
5998
|
+
fontSize: "fz_16px",
|
|
5999
|
+
lineHeight: "lh_24px"
|
|
5975
6000
|
}), children: format(displayMonth, "MMM") }),
|
|
5976
6001
|
/* @__PURE__ */ jsx15(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronRight", onClick: () => goToMonth(addMonths(displayMonth, 1)) })
|
|
5977
6002
|
] }),
|
|
@@ -5983,8 +6008,8 @@ function YearSkipHeader(props) {
|
|
|
5983
6008
|
/* @__PURE__ */ jsx15(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronLeft", onClick: () => goToMonth(addYears(displayMonth, -1)) }),
|
|
5984
6009
|
/* @__PURE__ */ jsx15("h1", { ...trussProps12({
|
|
5985
6010
|
fontWeight: "fw4",
|
|
5986
|
-
fontSize: "
|
|
5987
|
-
lineHeight: "
|
|
6011
|
+
fontSize: "fz_16px",
|
|
6012
|
+
lineHeight: "lh_24px"
|
|
5988
6013
|
}), children: format(displayMonth, "yyyy") }),
|
|
5989
6014
|
/* @__PURE__ */ jsx15(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronRight", onClick: () => goToMonth(addYears(displayMonth, 1)) })
|
|
5990
6015
|
] })
|
|
@@ -6008,8 +6033,8 @@ function WeekHeader() {
|
|
|
6008
6033
|
paddingRight: "pr1",
|
|
6009
6034
|
paddingLeft: "pl1",
|
|
6010
6035
|
fontWeight: "fw4",
|
|
6011
|
-
fontSize: "
|
|
6012
|
-
lineHeight: "
|
|
6036
|
+
fontSize: "fz_12px",
|
|
6037
|
+
lineHeight: "lh_16px",
|
|
6013
6038
|
color: "gray400"
|
|
6014
6039
|
}), key: format2(day, "EEEE") }, /* @__PURE__ */ jsx16("span", { "aria-hidden": "true", children: format2(day, "EEEEE") }), /* @__PURE__ */ jsx16("span", { className: "rdp-vhidden", children: format2(day, "EEEE") }))) }) });
|
|
6015
6040
|
}
|
|
@@ -6030,8 +6055,8 @@ function DatePicker(props) {
|
|
|
6030
6055
|
display: "dib",
|
|
6031
6056
|
backgroundColor: "bgWhite",
|
|
6032
6057
|
fontWeight: "fw4",
|
|
6033
|
-
fontSize: "
|
|
6034
|
-
lineHeight: "
|
|
6058
|
+
fontSize: "fz_12px",
|
|
6059
|
+
lineHeight: "lh_16px"
|
|
6035
6060
|
}), ...tid, children: /* @__PURE__ */ jsx17(
|
|
6036
6061
|
DayPicker,
|
|
6037
6062
|
{
|
|
@@ -6084,8 +6109,8 @@ function DateRangePicker(props) {
|
|
|
6084
6109
|
display: "dib",
|
|
6085
6110
|
backgroundColor: "bgWhite",
|
|
6086
6111
|
fontWeight: "fw4",
|
|
6087
|
-
fontSize: "
|
|
6088
|
-
lineHeight: "
|
|
6112
|
+
fontSize: "fz_12px",
|
|
6113
|
+
lineHeight: "lh_16px"
|
|
6089
6114
|
}), ...tid, children: /* @__PURE__ */ jsx19(DayPicker2, { mode: "range", selected: range, components: {
|
|
6090
6115
|
Caption: useYearPicker ? YearSkipHeader : Header,
|
|
6091
6116
|
Head: WeekHeader,
|
|
@@ -6128,8 +6153,8 @@ function MenuSectionImpl(props) {
|
|
|
6128
6153
|
const tid = useTestIds(props);
|
|
6129
6154
|
return /* @__PURE__ */ jsxs9(Fragment5, { children: [
|
|
6130
6155
|
isPersistentSection && /* @__PURE__ */ jsx20("li", { ...separatorProps, ...trussProps17({
|
|
6131
|
-
borderTopStyle: "
|
|
6132
|
-
borderTopWidth: "
|
|
6156
|
+
borderTopStyle: "bts_solid",
|
|
6157
|
+
borderTopWidth: "btw_1px",
|
|
6133
6158
|
borderColor: "bcGray200"
|
|
6134
6159
|
}) }),
|
|
6135
6160
|
/* @__PURE__ */ jsx20("li", { ...itemProps, ...trussProps17({
|
|
@@ -6141,9 +6166,9 @@ function MenuSectionImpl(props) {
|
|
|
6141
6166
|
color: "white"
|
|
6142
6167
|
} : {}
|
|
6143
6168
|
}), children: /* @__PURE__ */ jsx20("ul", { ...trussProps17({
|
|
6144
|
-
padding: "
|
|
6145
|
-
margin: "
|
|
6146
|
-
listStyle: "
|
|
6169
|
+
padding: "p_0",
|
|
6170
|
+
margin: "m_0",
|
|
6171
|
+
listStyle: "lis_none"
|
|
6147
6172
|
}), ...groupProps, ...tid[isPersistentSection ? "persistentItems" : "menuItems"], children: [...section.childNodes].map((item) => /* @__PURE__ */ jsx20(MenuItemImpl, { item, state, onClose, contrast, ...tid }, item.key)) }) })
|
|
6148
6173
|
] });
|
|
6149
6174
|
}
|
|
@@ -6171,8 +6196,8 @@ function HelperText(props) {
|
|
|
6171
6196
|
return /* @__PURE__ */ jsx21("div", { ...trussProps18({
|
|
6172
6197
|
color: "gray700",
|
|
6173
6198
|
fontWeight: "fw4",
|
|
6174
|
-
fontSize: "
|
|
6175
|
-
lineHeight: "
|
|
6199
|
+
fontSize: "fz_12px",
|
|
6200
|
+
lineHeight: "lh_16px",
|
|
6176
6201
|
marginTop: "mt_4px",
|
|
6177
6202
|
...contrast ? {
|
|
6178
6203
|
color: "gray100"
|
|
@@ -6203,8 +6228,8 @@ function LabelComponent(props) {
|
|
|
6203
6228
|
alignItems: "aic",
|
|
6204
6229
|
gap: "gap1",
|
|
6205
6230
|
fontWeight: "fw4",
|
|
6206
|
-
fontSize: "
|
|
6207
|
-
lineHeight: "
|
|
6231
|
+
fontSize: "fz_14px",
|
|
6232
|
+
lineHeight: "lh_20px",
|
|
6208
6233
|
color: "gray700",
|
|
6209
6234
|
marginBottom: ["mb_var", {
|
|
6210
6235
|
"--marginBottom": `${inline ? 0 : 4}px`
|
|
@@ -6236,8 +6261,8 @@ function InlineLabel({
|
|
|
6236
6261
|
}) {
|
|
6237
6262
|
return /* @__PURE__ */ jsxs10("label", { ...labelProps, ...others, ...trussProps19({
|
|
6238
6263
|
fontWeight: "fw4",
|
|
6239
|
-
fontSize: "
|
|
6240
|
-
lineHeight: "
|
|
6264
|
+
fontSize: "fz_14px",
|
|
6265
|
+
lineHeight: "lh_20px",
|
|
6241
6266
|
whiteSpace: "wsnw",
|
|
6242
6267
|
color: "color_currentColor",
|
|
6243
6268
|
paddingRight: "pr_4px",
|
|
@@ -6666,58 +6691,58 @@ function KeptGroupRow(props) {
|
|
|
6666
6691
|
var __typography = {
|
|
6667
6692
|
xs2: {
|
|
6668
6693
|
fontWeight: "fw4",
|
|
6669
|
-
fontSize: "
|
|
6670
|
-
lineHeight: "
|
|
6694
|
+
fontSize: "fz_10px",
|
|
6695
|
+
lineHeight: "lh_14px"
|
|
6671
6696
|
},
|
|
6672
6697
|
xs2Sb: {
|
|
6673
6698
|
fontWeight: "fw6",
|
|
6674
|
-
fontSize: "
|
|
6675
|
-
lineHeight: "
|
|
6699
|
+
fontSize: "fz_10px",
|
|
6700
|
+
lineHeight: "lh_14px"
|
|
6676
6701
|
},
|
|
6677
6702
|
xs: {
|
|
6678
6703
|
fontWeight: "fw4",
|
|
6679
|
-
fontSize: "
|
|
6680
|
-
lineHeight: "
|
|
6704
|
+
fontSize: "fz_12px",
|
|
6705
|
+
lineHeight: "lh_16px"
|
|
6681
6706
|
},
|
|
6682
6707
|
xsSb: {
|
|
6683
6708
|
fontWeight: "fw6",
|
|
6684
|
-
fontSize: "
|
|
6685
|
-
lineHeight: "
|
|
6709
|
+
fontSize: "fz_12px",
|
|
6710
|
+
lineHeight: "lh_16px"
|
|
6686
6711
|
},
|
|
6687
6712
|
sm: {
|
|
6688
6713
|
fontWeight: "fw4",
|
|
6689
|
-
fontSize: "
|
|
6690
|
-
lineHeight: "
|
|
6714
|
+
fontSize: "fz_14px",
|
|
6715
|
+
lineHeight: "lh_20px"
|
|
6691
6716
|
},
|
|
6692
6717
|
smSb: {
|
|
6693
6718
|
fontWeight: "fw6",
|
|
6694
|
-
fontSize: "
|
|
6695
|
-
lineHeight: "
|
|
6719
|
+
fontSize: "fz_14px",
|
|
6720
|
+
lineHeight: "lh_20px"
|
|
6696
6721
|
},
|
|
6697
6722
|
md: {
|
|
6698
6723
|
fontWeight: "fw4",
|
|
6699
|
-
fontSize: "
|
|
6700
|
-
lineHeight: "
|
|
6724
|
+
fontSize: "fz_16px",
|
|
6725
|
+
lineHeight: "lh_24px"
|
|
6701
6726
|
},
|
|
6702
6727
|
mdSb: {
|
|
6703
6728
|
fontWeight: "fw6",
|
|
6704
|
-
fontSize: "
|
|
6705
|
-
lineHeight: "
|
|
6729
|
+
fontSize: "fz_16px",
|
|
6730
|
+
lineHeight: "lh_24px"
|
|
6706
6731
|
},
|
|
6707
6732
|
lg: {
|
|
6708
6733
|
fontWeight: "fw6",
|
|
6709
|
-
fontSize: "
|
|
6710
|
-
lineHeight: "
|
|
6734
|
+
fontSize: "fz_18px",
|
|
6735
|
+
lineHeight: "lh_28px"
|
|
6711
6736
|
},
|
|
6712
6737
|
xl: {
|
|
6713
6738
|
fontWeight: "fw6",
|
|
6714
|
-
fontSize: "
|
|
6715
|
-
lineHeight: "
|
|
6739
|
+
fontSize: "fz_20px",
|
|
6740
|
+
lineHeight: "lh_28px"
|
|
6716
6741
|
},
|
|
6717
6742
|
xl2: {
|
|
6718
6743
|
fontWeight: "fw6",
|
|
6719
|
-
fontSize: "
|
|
6720
|
-
lineHeight: "
|
|
6744
|
+
fontSize: "fz_30px",
|
|
6745
|
+
lineHeight: "lh_36px"
|
|
6721
6746
|
}
|
|
6722
6747
|
};
|
|
6723
6748
|
function memoizedTableStyles() {
|
|
@@ -6742,8 +6767,8 @@ function memoizedTableStyles() {
|
|
|
6742
6767
|
cellCss: {
|
|
6743
6768
|
...{
|
|
6744
6769
|
fontWeight: "fw6",
|
|
6745
|
-
fontSize: "
|
|
6746
|
-
lineHeight: "
|
|
6770
|
+
fontSize: "fz_12px",
|
|
6771
|
+
lineHeight: "lh_16px",
|
|
6747
6772
|
minHeight: "mh_56px",
|
|
6748
6773
|
color: "gray700",
|
|
6749
6774
|
backgroundColor: "bgGray100",
|
|
@@ -6758,13 +6783,13 @@ function memoizedTableStyles() {
|
|
|
6758
6783
|
firstContentColumn: {
|
|
6759
6784
|
...{
|
|
6760
6785
|
fontWeight: "fw4",
|
|
6761
|
-
fontSize: "
|
|
6762
|
-
lineHeight: "
|
|
6786
|
+
fontSize: "fz_14px",
|
|
6787
|
+
lineHeight: "lh_20px"
|
|
6763
6788
|
},
|
|
6764
6789
|
...allWhite && {
|
|
6765
6790
|
fontWeight: "fw6",
|
|
6766
|
-
fontSize: "
|
|
6767
|
-
lineHeight: "
|
|
6791
|
+
fontSize: "fz_14px",
|
|
6792
|
+
lineHeight: "lh_20px",
|
|
6768
6793
|
color: "gray900"
|
|
6769
6794
|
}
|
|
6770
6795
|
}
|
|
@@ -6772,8 +6797,8 @@ function memoizedTableStyles() {
|
|
|
6772
6797
|
2: {
|
|
6773
6798
|
firstContentColumn: {
|
|
6774
6799
|
fontWeight: "fw4",
|
|
6775
|
-
fontSize: "
|
|
6776
|
-
lineHeight: "
|
|
6800
|
+
fontSize: "fz_12px",
|
|
6801
|
+
lineHeight: "lh_16px",
|
|
6777
6802
|
paddingLeft: "pl3"
|
|
6778
6803
|
}
|
|
6779
6804
|
},
|
|
@@ -6781,8 +6806,8 @@ function memoizedTableStyles() {
|
|
|
6781
6806
|
3: {
|
|
6782
6807
|
firstContentColumn: {
|
|
6783
6808
|
fontWeight: "fw4",
|
|
6784
|
-
fontSize: "
|
|
6785
|
-
lineHeight: "
|
|
6809
|
+
fontSize: "fz_12px",
|
|
6810
|
+
lineHeight: "lh_16px",
|
|
6786
6811
|
paddingLeft: "pl_36px"
|
|
6787
6812
|
}
|
|
6788
6813
|
}
|
|
@@ -6791,8 +6816,8 @@ function memoizedTableStyles() {
|
|
|
6791
6816
|
1: {
|
|
6792
6817
|
firstContentColumn: {
|
|
6793
6818
|
fontWeight: "fw4",
|
|
6794
|
-
fontSize: "
|
|
6795
|
-
lineHeight: "
|
|
6819
|
+
fontSize: "fz_12px",
|
|
6820
|
+
lineHeight: "lh_16px",
|
|
6796
6821
|
paddingLeft: "pl3"
|
|
6797
6822
|
}
|
|
6798
6823
|
}
|
|
@@ -6809,10 +6834,10 @@ function memoizedTableStyles() {
|
|
|
6809
6834
|
backgroundColor: "bgWhite"
|
|
6810
6835
|
},
|
|
6811
6836
|
...bordered && {
|
|
6812
|
-
borderLeftStyle: "
|
|
6813
|
-
borderLeftWidth: "
|
|
6814
|
-
borderRightStyle: "
|
|
6815
|
-
borderRightWidth: "
|
|
6837
|
+
borderLeftStyle: "bls_solid",
|
|
6838
|
+
borderLeftWidth: "blw_1px",
|
|
6839
|
+
borderRightStyle: "brs_solid",
|
|
6840
|
+
borderRightWidth: "brw_1px",
|
|
6816
6841
|
borderColor: "bcGray200"
|
|
6817
6842
|
}
|
|
6818
6843
|
},
|
|
@@ -6824,12 +6849,12 @@ function memoizedTableStyles() {
|
|
|
6824
6849
|
...{
|
|
6825
6850
|
color: "gray700",
|
|
6826
6851
|
fontWeight: "fw6",
|
|
6827
|
-
fontSize: "
|
|
6828
|
-
lineHeight: "
|
|
6852
|
+
fontSize: "fz_12px",
|
|
6853
|
+
lineHeight: "lh_16px",
|
|
6829
6854
|
backgroundColor: "bgGray200",
|
|
6830
6855
|
alignItems: "aic",
|
|
6831
|
-
paddingLeft: "
|
|
6832
|
-
paddingRight: "
|
|
6856
|
+
paddingLeft: "pl_12px",
|
|
6857
|
+
paddingRight: "pr_12px",
|
|
6833
6858
|
whiteSpace: "whiteSpace_unset",
|
|
6834
6859
|
height: "h_40px"
|
|
6835
6860
|
},
|
|
@@ -6841,28 +6866,28 @@ function memoizedTableStyles() {
|
|
|
6841
6866
|
backgroundColor: "bgGray100",
|
|
6842
6867
|
color: "gray700",
|
|
6843
6868
|
fontWeight: "fw6",
|
|
6844
|
-
fontSize: "
|
|
6845
|
-
lineHeight: "
|
|
6869
|
+
fontSize: "fz_12px",
|
|
6870
|
+
lineHeight: "lh_16px",
|
|
6846
6871
|
height: ["h_var", {
|
|
6847
6872
|
"--height": `${totalsRowHeight}px`
|
|
6848
6873
|
}],
|
|
6849
|
-
paddingTop: "
|
|
6850
|
-
paddingBottom: "
|
|
6851
|
-
paddingRight: "
|
|
6852
|
-
paddingLeft: "
|
|
6874
|
+
paddingTop: "pt_12px",
|
|
6875
|
+
paddingBottom: "pb_12px",
|
|
6876
|
+
paddingRight: "pr_12px",
|
|
6877
|
+
paddingLeft: "pl_12px"
|
|
6853
6878
|
},
|
|
6854
6879
|
expandableHeaderCss: {
|
|
6855
6880
|
backgroundColor: "bgWhite",
|
|
6856
6881
|
color: "gray900",
|
|
6857
6882
|
fontWeight: "fw6",
|
|
6858
|
-
fontSize: "
|
|
6859
|
-
lineHeight: "
|
|
6883
|
+
fontSize: "fz_12px",
|
|
6884
|
+
lineHeight: "lh_16px",
|
|
6860
6885
|
whiteSpace: "wsn",
|
|
6861
6886
|
height: ["h_var", {
|
|
6862
6887
|
"--height": `${expandableHeaderRowHeight}px`
|
|
6863
6888
|
}],
|
|
6864
|
-
paddingLeft: "
|
|
6865
|
-
paddingRight: "
|
|
6889
|
+
paddingLeft: "pl_12px",
|
|
6890
|
+
paddingRight: "pr_12px",
|
|
6866
6891
|
paddingTop: "pt0",
|
|
6867
6892
|
paddingBottom: "pb0",
|
|
6868
6893
|
boxShadow: ["boxShadow_var", {
|
|
@@ -6884,15 +6909,15 @@ function memoizedTableStyles() {
|
|
|
6884
6909
|
alignItems: ["ai_var", {
|
|
6885
6910
|
"--alignItems": alignItems
|
|
6886
6911
|
}],
|
|
6887
|
-
paddingLeft: "
|
|
6888
|
-
paddingRight: "
|
|
6912
|
+
paddingLeft: "pl_12px",
|
|
6913
|
+
paddingRight: "pr_12px",
|
|
6889
6914
|
boxShadow: ["boxShadow_var", {
|
|
6890
6915
|
"--boxShadow": `inset 0 -1px 0 ${"rgba(236, 235, 235, 1)" /* Gray200 */}`
|
|
6891
6916
|
}]
|
|
6892
6917
|
},
|
|
6893
6918
|
...rowHeight === "flexible" ? {
|
|
6894
|
-
paddingTop: "
|
|
6895
|
-
paddingBottom: "
|
|
6919
|
+
paddingTop: "pt_12px",
|
|
6920
|
+
paddingBottom: "pb_12px"
|
|
6896
6921
|
} : {
|
|
6897
6922
|
whiteSpace: "wsnw",
|
|
6898
6923
|
height: ["h_var", {
|
|
@@ -6904,18 +6929,21 @@ function memoizedTableStyles() {
|
|
|
6904
6929
|
} : {}
|
|
6905
6930
|
},
|
|
6906
6931
|
firstCellCss: bordered ? {
|
|
6907
|
-
borderLeftStyle: "
|
|
6908
|
-
borderLeftWidth: "
|
|
6932
|
+
borderLeftStyle: "bls_solid",
|
|
6933
|
+
borderLeftWidth: "blw_1px",
|
|
6909
6934
|
borderColor: "bcGray200"
|
|
6910
6935
|
} : void 0,
|
|
6911
6936
|
lastCellCss: bordered ? {
|
|
6912
|
-
borderRightStyle: "
|
|
6913
|
-
borderRightWidth: "
|
|
6937
|
+
borderRightStyle: "brs_solid",
|
|
6938
|
+
borderRightWidth: "brw_1px",
|
|
6914
6939
|
borderColor: "bcGray200"
|
|
6915
6940
|
} : void 0,
|
|
6941
|
+
borderStyle: {
|
|
6942
|
+
borderColor: "bcGray200"
|
|
6943
|
+
},
|
|
6916
6944
|
firstRowCellCss: bordered ? {
|
|
6917
|
-
borderTopStyle: "
|
|
6918
|
-
borderTopWidth: "
|
|
6945
|
+
borderTopStyle: "bts_solid",
|
|
6946
|
+
borderTopWidth: "btw_1px",
|
|
6919
6947
|
borderColor: "bcGray200"
|
|
6920
6948
|
} : void 0,
|
|
6921
6949
|
firstRowFirstCellCss: {
|
|
@@ -6928,8 +6956,8 @@ function memoizedTableStyles() {
|
|
|
6928
6956
|
// remove the inset shadow and, when bordered, replace it with a true bottom border.
|
|
6929
6957
|
lastRowCellCss: bordered ? {
|
|
6930
6958
|
boxShadow: "bsh0",
|
|
6931
|
-
borderBottomStyle: "
|
|
6932
|
-
borderBottomWidth: "
|
|
6959
|
+
borderBottomStyle: "bbs_solid",
|
|
6960
|
+
borderBottomWidth: "bbw_1px",
|
|
6933
6961
|
borderColor: "bcGray200"
|
|
6934
6962
|
} : {
|
|
6935
6963
|
boxShadow: "bsh0"
|
|
@@ -6953,8 +6981,8 @@ function memoizedTableStyles() {
|
|
|
6953
6981
|
backgroundColor: "bgYellow100",
|
|
6954
6982
|
color: "gray900",
|
|
6955
6983
|
fontWeight: "fw6",
|
|
6956
|
-
fontSize: "
|
|
6957
|
-
lineHeight: "
|
|
6984
|
+
fontSize: "fz_12px",
|
|
6985
|
+
lineHeight: "lh_16px",
|
|
6958
6986
|
display: "df",
|
|
6959
6987
|
alignItems: "aic"
|
|
6960
6988
|
},
|
|
@@ -6984,8 +7012,8 @@ var condensedStyle = {
|
|
|
6984
7012
|
}).firstRowMessageCss,
|
|
6985
7013
|
...{
|
|
6986
7014
|
fontWeight: "fw4",
|
|
6987
|
-
fontSize: "
|
|
6988
|
-
lineHeight: "
|
|
7015
|
+
fontSize: "fz_12px",
|
|
7016
|
+
lineHeight: "lh_16px",
|
|
6989
7017
|
color: "gray900"
|
|
6990
7018
|
}
|
|
6991
7019
|
}
|
|
@@ -7004,10 +7032,10 @@ var cardStyle = {
|
|
|
7004
7032
|
boxShadow: "h_bshHover"
|
|
7005
7033
|
},
|
|
7006
7034
|
firstRowCss: {
|
|
7007
|
-
borderLeftStyle: "
|
|
7008
|
-
borderLeftWidth: "
|
|
7009
|
-
borderRightStyle: "
|
|
7010
|
-
borderRightWidth: "
|
|
7035
|
+
borderLeftStyle: "bls_solid",
|
|
7036
|
+
borderLeftWidth: "blw_1px",
|
|
7037
|
+
borderRightStyle: "brs_solid",
|
|
7038
|
+
borderRightWidth: "brw_1px",
|
|
7011
7039
|
borderColor: "bcGray200",
|
|
7012
7040
|
borderRadius: "borderRadius_8px_8px_0_0",
|
|
7013
7041
|
overflow: "oh"
|
|
@@ -7031,8 +7059,8 @@ var cardStyle = {
|
|
|
7031
7059
|
marginRight: "mr0",
|
|
7032
7060
|
marginLeft: "ml0",
|
|
7033
7061
|
fontWeight: "fw6",
|
|
7034
|
-
fontSize: "
|
|
7035
|
-
lineHeight: "
|
|
7062
|
+
fontSize: "fz_12px",
|
|
7063
|
+
lineHeight: "lh_16px",
|
|
7036
7064
|
color: "gray700"
|
|
7037
7065
|
}
|
|
7038
7066
|
},
|
|
@@ -7441,58 +7469,58 @@ var __maybeInc3 = (inc) => {
|
|
|
7441
7469
|
var __typography2 = {
|
|
7442
7470
|
xs2: {
|
|
7443
7471
|
fontWeight: "fw4",
|
|
7444
|
-
fontSize: "
|
|
7445
|
-
lineHeight: "
|
|
7472
|
+
fontSize: "fz_10px",
|
|
7473
|
+
lineHeight: "lh_14px"
|
|
7446
7474
|
},
|
|
7447
7475
|
xs2Sb: {
|
|
7448
7476
|
fontWeight: "fw6",
|
|
7449
|
-
fontSize: "
|
|
7450
|
-
lineHeight: "
|
|
7477
|
+
fontSize: "fz_10px",
|
|
7478
|
+
lineHeight: "lh_14px"
|
|
7451
7479
|
},
|
|
7452
7480
|
xs: {
|
|
7453
7481
|
fontWeight: "fw4",
|
|
7454
|
-
fontSize: "
|
|
7455
|
-
lineHeight: "
|
|
7482
|
+
fontSize: "fz_12px",
|
|
7483
|
+
lineHeight: "lh_16px"
|
|
7456
7484
|
},
|
|
7457
7485
|
xsSb: {
|
|
7458
7486
|
fontWeight: "fw6",
|
|
7459
|
-
fontSize: "
|
|
7460
|
-
lineHeight: "
|
|
7487
|
+
fontSize: "fz_12px",
|
|
7488
|
+
lineHeight: "lh_16px"
|
|
7461
7489
|
},
|
|
7462
7490
|
sm: {
|
|
7463
7491
|
fontWeight: "fw4",
|
|
7464
|
-
fontSize: "
|
|
7465
|
-
lineHeight: "
|
|
7492
|
+
fontSize: "fz_14px",
|
|
7493
|
+
lineHeight: "lh_20px"
|
|
7466
7494
|
},
|
|
7467
7495
|
smSb: {
|
|
7468
7496
|
fontWeight: "fw6",
|
|
7469
|
-
fontSize: "
|
|
7470
|
-
lineHeight: "
|
|
7497
|
+
fontSize: "fz_14px",
|
|
7498
|
+
lineHeight: "lh_20px"
|
|
7471
7499
|
},
|
|
7472
7500
|
md: {
|
|
7473
7501
|
fontWeight: "fw4",
|
|
7474
|
-
fontSize: "
|
|
7475
|
-
lineHeight: "
|
|
7502
|
+
fontSize: "fz_16px",
|
|
7503
|
+
lineHeight: "lh_24px"
|
|
7476
7504
|
},
|
|
7477
7505
|
mdSb: {
|
|
7478
7506
|
fontWeight: "fw6",
|
|
7479
|
-
fontSize: "
|
|
7480
|
-
lineHeight: "
|
|
7507
|
+
fontSize: "fz_16px",
|
|
7508
|
+
lineHeight: "lh_24px"
|
|
7481
7509
|
},
|
|
7482
7510
|
lg: {
|
|
7483
7511
|
fontWeight: "fw6",
|
|
7484
|
-
fontSize: "
|
|
7485
|
-
lineHeight: "
|
|
7512
|
+
fontSize: "fz_18px",
|
|
7513
|
+
lineHeight: "lh_28px"
|
|
7486
7514
|
},
|
|
7487
7515
|
xl: {
|
|
7488
7516
|
fontWeight: "fw6",
|
|
7489
|
-
fontSize: "
|
|
7490
|
-
lineHeight: "
|
|
7517
|
+
fontSize: "fz_20px",
|
|
7518
|
+
lineHeight: "lh_28px"
|
|
7491
7519
|
},
|
|
7492
7520
|
xl2: {
|
|
7493
7521
|
fontWeight: "fw6",
|
|
7494
|
-
fontSize: "
|
|
7495
|
-
lineHeight: "
|
|
7522
|
+
fontSize: "fz_30px",
|
|
7523
|
+
lineHeight: "lh_36px"
|
|
7496
7524
|
}
|
|
7497
7525
|
};
|
|
7498
7526
|
function maybeApplyFunction(row, maybeFn) {
|
|
@@ -7723,6 +7751,8 @@ function RowImpl(props) {
|
|
|
7723
7751
|
...isBodyRow && levelStyle?.cellCss,
|
|
7724
7752
|
// Level specific styling for the first content column
|
|
7725
7753
|
...applyFirstContentColumnStyles && levelStyle?.firstContentColumn,
|
|
7754
|
+
// Apply any declarative column border styling after header/body defaults.
|
|
7755
|
+
...getColumnBorderCss(column2.border, style),
|
|
7726
7756
|
// The specific cell's css (if any from GridCellContent)
|
|
7727
7757
|
...rowStyleCellCss,
|
|
7728
7758
|
// Apply active row styling for non-nested card styles.
|
|
@@ -7824,8 +7854,8 @@ function ErrorMessage(props) {
|
|
|
7824
7854
|
const errorEl = errorMsg ? /* @__PURE__ */ jsxs15("div", { ...trussProps24({
|
|
7825
7855
|
color: "red600",
|
|
7826
7856
|
fontWeight: "fw4",
|
|
7827
|
-
fontSize: "
|
|
7828
|
-
lineHeight: "
|
|
7857
|
+
fontSize: "fz_14px",
|
|
7858
|
+
lineHeight: "lh_20px",
|
|
7829
7859
|
display: "df",
|
|
7830
7860
|
marginTop: "mt_4px",
|
|
7831
7861
|
...contrast ? {
|
|
@@ -7857,58 +7887,58 @@ var __maybeInc4 = (inc) => {
|
|
|
7857
7887
|
var __typography3 = {
|
|
7858
7888
|
xs2: {
|
|
7859
7889
|
fontWeight: "fw4",
|
|
7860
|
-
fontSize: "
|
|
7861
|
-
lineHeight: "
|
|
7890
|
+
fontSize: "fz_10px",
|
|
7891
|
+
lineHeight: "lh_14px"
|
|
7862
7892
|
},
|
|
7863
7893
|
xs2Sb: {
|
|
7864
7894
|
fontWeight: "fw6",
|
|
7865
|
-
fontSize: "
|
|
7866
|
-
lineHeight: "
|
|
7895
|
+
fontSize: "fz_10px",
|
|
7896
|
+
lineHeight: "lh_14px"
|
|
7867
7897
|
},
|
|
7868
7898
|
xs: {
|
|
7869
7899
|
fontWeight: "fw4",
|
|
7870
|
-
fontSize: "
|
|
7871
|
-
lineHeight: "
|
|
7900
|
+
fontSize: "fz_12px",
|
|
7901
|
+
lineHeight: "lh_16px"
|
|
7872
7902
|
},
|
|
7873
7903
|
xsSb: {
|
|
7874
7904
|
fontWeight: "fw6",
|
|
7875
|
-
fontSize: "
|
|
7876
|
-
lineHeight: "
|
|
7905
|
+
fontSize: "fz_12px",
|
|
7906
|
+
lineHeight: "lh_16px"
|
|
7877
7907
|
},
|
|
7878
7908
|
sm: {
|
|
7879
7909
|
fontWeight: "fw4",
|
|
7880
|
-
fontSize: "
|
|
7881
|
-
lineHeight: "
|
|
7910
|
+
fontSize: "fz_14px",
|
|
7911
|
+
lineHeight: "lh_20px"
|
|
7882
7912
|
},
|
|
7883
7913
|
smSb: {
|
|
7884
7914
|
fontWeight: "fw6",
|
|
7885
|
-
fontSize: "
|
|
7886
|
-
lineHeight: "
|
|
7915
|
+
fontSize: "fz_14px",
|
|
7916
|
+
lineHeight: "lh_20px"
|
|
7887
7917
|
},
|
|
7888
7918
|
md: {
|
|
7889
7919
|
fontWeight: "fw4",
|
|
7890
|
-
fontSize: "
|
|
7891
|
-
lineHeight: "
|
|
7920
|
+
fontSize: "fz_16px",
|
|
7921
|
+
lineHeight: "lh_24px"
|
|
7892
7922
|
},
|
|
7893
7923
|
mdSb: {
|
|
7894
7924
|
fontWeight: "fw6",
|
|
7895
|
-
fontSize: "
|
|
7896
|
-
lineHeight: "
|
|
7925
|
+
fontSize: "fz_16px",
|
|
7926
|
+
lineHeight: "lh_24px"
|
|
7897
7927
|
},
|
|
7898
7928
|
lg: {
|
|
7899
7929
|
fontWeight: "fw6",
|
|
7900
|
-
fontSize: "
|
|
7901
|
-
lineHeight: "
|
|
7930
|
+
fontSize: "fz_18px",
|
|
7931
|
+
lineHeight: "lh_28px"
|
|
7902
7932
|
},
|
|
7903
7933
|
xl: {
|
|
7904
7934
|
fontWeight: "fw6",
|
|
7905
|
-
fontSize: "
|
|
7906
|
-
lineHeight: "
|
|
7935
|
+
fontSize: "fz_20px",
|
|
7936
|
+
lineHeight: "lh_28px"
|
|
7907
7937
|
},
|
|
7908
7938
|
xl2: {
|
|
7909
7939
|
fontWeight: "fw6",
|
|
7910
|
-
fontSize: "
|
|
7911
|
-
lineHeight: "
|
|
7940
|
+
fontSize: "fz_30px",
|
|
7941
|
+
lineHeight: "lh_36px"
|
|
7912
7942
|
}
|
|
7913
7943
|
};
|
|
7914
7944
|
function TextFieldBase(props) {
|
|
@@ -7962,7 +7992,6 @@ function TextFieldBase(props) {
|
|
|
7962
7992
|
} = internalProps;
|
|
7963
7993
|
const errorMessageId = `${inputProps.id}-error`;
|
|
7964
7994
|
const labelSuffix = useLabelSuffix(required, inputProps.readOnly);
|
|
7965
|
-
const ElementType = multiline ? "textarea" : "input";
|
|
7966
7995
|
const tid = useTestIds(props, defaultTestId(label));
|
|
7967
7996
|
const [isFocused, setIsFocused] = useState10(false);
|
|
7968
7997
|
const {
|
|
@@ -8137,7 +8166,7 @@ function TextFieldBase(props) {
|
|
|
8137
8166
|
} : {
|
|
8138
8167
|
whiteSpace: "wsnw",
|
|
8139
8168
|
overflow: "oh",
|
|
8140
|
-
textOverflow: "
|
|
8169
|
+
textOverflow: "to_ellipsis"
|
|
8141
8170
|
}
|
|
8142
8171
|
},
|
|
8143
8172
|
hover: {
|
|
@@ -8197,6 +8226,38 @@ function TextFieldBase(props) {
|
|
|
8197
8226
|
}
|
|
8198
8227
|
const showFocus = isFocused && !inputProps.readOnly || forceFocus;
|
|
8199
8228
|
const showHover = isHovered && !inputProps.disabled && !inputProps.readOnly && !isFocused || forceHover;
|
|
8229
|
+
const fieldElementProps = mergeProps6(inputProps, {
|
|
8230
|
+
onBlur,
|
|
8231
|
+
onFocus: onFocusChained,
|
|
8232
|
+
onChange: onDomChange
|
|
8233
|
+
}, {
|
|
8234
|
+
"aria-invalid": Boolean(errorMsg),
|
|
8235
|
+
...labelStyle === "hidden" ? {
|
|
8236
|
+
"aria-label": label
|
|
8237
|
+
} : {}
|
|
8238
|
+
});
|
|
8239
|
+
const errorMessageProps = errorMsg ? {
|
|
8240
|
+
"aria-errormessage": errorMessageId
|
|
8241
|
+
} : {};
|
|
8242
|
+
const fieldElementCss = {
|
|
8243
|
+
...fieldStyles.input,
|
|
8244
|
+
...inputProps.disabled ? fieldStyles.disabled : {},
|
|
8245
|
+
...showHover ? fieldStyles.hover : {},
|
|
8246
|
+
...unfocusedPlaceholder && !isFocused && {
|
|
8247
|
+
position: "absolute",
|
|
8248
|
+
overflow: "oh",
|
|
8249
|
+
clip: "cli_inset_50",
|
|
8250
|
+
clipPath: "clp_none",
|
|
8251
|
+
border: "bd_0",
|
|
8252
|
+
height: "h_1px",
|
|
8253
|
+
margin: "m_neg1px",
|
|
8254
|
+
width: "w_1px",
|
|
8255
|
+
padding: "p_0",
|
|
8256
|
+
whiteSpace: "wsnw",
|
|
8257
|
+
opacity: "o0"
|
|
8258
|
+
},
|
|
8259
|
+
...xss
|
|
8260
|
+
};
|
|
8200
8261
|
return /* @__PURE__ */ jsxs16(Fragment9, { children: [
|
|
8201
8262
|
/* @__PURE__ */ jsxs16("div", { ...trussProps25(fieldStyles.container), ...groupProps, ...focusWithinProps, children: [
|
|
8202
8263
|
label && labelStyle !== "inline" && /* @__PURE__ */ jsx29(Label, { labelProps, hidden: labelStyle === "hidden" || compound, label, inline: labelStyle !== "above", suffix: labelSuffix, contrast, ...tid.label }),
|
|
@@ -8214,7 +8275,7 @@ function TextFieldBase(props) {
|
|
|
8214
8275
|
...wrap === false ? {
|
|
8215
8276
|
whiteSpace: "wsnw",
|
|
8216
8277
|
overflow: "oh",
|
|
8217
|
-
textOverflow: "
|
|
8278
|
+
textOverflow: "to_ellipsis"
|
|
8218
8279
|
} : {}
|
|
8219
8280
|
},
|
|
8220
8281
|
...xss
|
|
@@ -8279,13 +8340,13 @@ function TextFieldBase(props) {
|
|
|
8279
8340
|
...isFocused && {
|
|
8280
8341
|
position: "absolute",
|
|
8281
8342
|
overflow: "oh",
|
|
8282
|
-
clip: "
|
|
8283
|
-
clipPath: "
|
|
8284
|
-
border: "
|
|
8285
|
-
height: "
|
|
8286
|
-
margin: "
|
|
8287
|
-
width: "
|
|
8288
|
-
padding: "
|
|
8343
|
+
clip: "cli_inset_50",
|
|
8344
|
+
clipPath: "clp_none",
|
|
8345
|
+
border: "bd_0",
|
|
8346
|
+
height: "h_1px",
|
|
8347
|
+
margin: "m_neg1px",
|
|
8348
|
+
width: "w_1px",
|
|
8349
|
+
padding: "p_0",
|
|
8289
8350
|
whiteSpace: "wsnw",
|
|
8290
8351
|
opacity: "o0"
|
|
8291
8352
|
}
|
|
@@ -8293,36 +8354,7 @@ function TextFieldBase(props) {
|
|
|
8293
8354
|
children: unfocusedPlaceholder
|
|
8294
8355
|
}
|
|
8295
8356
|
),
|
|
8296
|
-
/* @__PURE__ */ jsx29(
|
|
8297
|
-
onBlur,
|
|
8298
|
-
onFocus: onFocusChained,
|
|
8299
|
-
onChange: onDomChange
|
|
8300
|
-
}, {
|
|
8301
|
-
"aria-invalid": Boolean(errorMsg),
|
|
8302
|
-
...labelStyle === "hidden" ? {
|
|
8303
|
-
"aria-label": label
|
|
8304
|
-
} : {}
|
|
8305
|
-
}), ...errorMsg ? {
|
|
8306
|
-
"aria-errormessage": errorMessageId
|
|
8307
|
-
} : {}, ref: fieldRef, rows: multiline ? 1 : void 0, ...trussProps25({
|
|
8308
|
-
...fieldStyles.input,
|
|
8309
|
-
...inputProps.disabled ? fieldStyles.disabled : {},
|
|
8310
|
-
...showHover ? fieldStyles.hover : {},
|
|
8311
|
-
...unfocusedPlaceholder && !isFocused && {
|
|
8312
|
-
position: "absolute",
|
|
8313
|
-
overflow: "oh",
|
|
8314
|
-
clip: "visuallyHidden_clip",
|
|
8315
|
-
clipPath: "visuallyHidden_clipPath",
|
|
8316
|
-
border: "visuallyHidden_border",
|
|
8317
|
-
height: "visuallyHidden_height",
|
|
8318
|
-
margin: "visuallyHidden_margin",
|
|
8319
|
-
width: "visuallyHidden_width",
|
|
8320
|
-
padding: "visuallyHidden_padding",
|
|
8321
|
-
whiteSpace: "wsnw",
|
|
8322
|
-
opacity: "o0"
|
|
8323
|
-
},
|
|
8324
|
-
...xss
|
|
8325
|
-
}), ...tid }),
|
|
8357
|
+
multiline ? /* @__PURE__ */ jsx29("textarea", { ...fieldElementProps, ...errorMessageProps, ref: fieldRef, rows: 1, ...trussProps25(fieldElementCss), ...tid }) : /* @__PURE__ */ jsx29("input", { ...fieldElementProps, ...errorMessageProps, ref: fieldRef, ...trussProps25(fieldElementCss), ...tid }),
|
|
8326
8358
|
isFocused && clearable && onChange && inputProps.value && /* @__PURE__ */ jsx29(IconButton, { icon: "xCircle", color: "rgba(100, 100, 100, 1)" /* Gray700 */, onClick: () => {
|
|
8327
8359
|
onChange(void 0);
|
|
8328
8360
|
fieldRef.current?.focus();
|
|
@@ -8484,8 +8516,8 @@ function Menu(props) {
|
|
|
8484
8516
|
...{
|
|
8485
8517
|
display: "df",
|
|
8486
8518
|
flexDirection: "fdc",
|
|
8487
|
-
marginTop: "
|
|
8488
|
-
marginBottom: "
|
|
8519
|
+
marginTop: "mt_4px",
|
|
8520
|
+
marginBottom: "mb_4px",
|
|
8489
8521
|
outline: "outline0",
|
|
8490
8522
|
borderRadius: "br4",
|
|
8491
8523
|
boxShadow: "bshBasic",
|
|
@@ -8504,9 +8536,9 @@ function Menu(props) {
|
|
|
8504
8536
|
}), children: [
|
|
8505
8537
|
searchable && /* @__PURE__ */ jsx31(MenuSearchField, { label: "", value: search, placeholder: "Search...", labelStyle: "inline", onChange: setSearch, ...tid }),
|
|
8506
8538
|
/* @__PURE__ */ jsx31("ul", { ...trussProps26({
|
|
8507
|
-
padding: "
|
|
8508
|
-
margin: "
|
|
8509
|
-
listStyle: "
|
|
8539
|
+
padding: "p_0",
|
|
8540
|
+
margin: "m_0",
|
|
8541
|
+
listStyle: "lis_none"
|
|
8510
8542
|
}), ...menuProps, ref: menuRef, ...tid.menu, children: [...state.collection].map((item) => /* @__PURE__ */ jsx31(MenuSectionImpl, { section: item, state, onClose, contrast, ...tid }, item.key)) })
|
|
8511
8543
|
] }) });
|
|
8512
8544
|
}
|
|
@@ -8524,58 +8556,58 @@ import { jsx as jsx32, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
|
8524
8556
|
var __typography4 = {
|
|
8525
8557
|
xs2: {
|
|
8526
8558
|
fontWeight: "fw4",
|
|
8527
|
-
fontSize: "
|
|
8528
|
-
lineHeight: "
|
|
8559
|
+
fontSize: "fz_10px",
|
|
8560
|
+
lineHeight: "lh_14px"
|
|
8529
8561
|
},
|
|
8530
8562
|
xs2Sb: {
|
|
8531
8563
|
fontWeight: "fw6",
|
|
8532
|
-
fontSize: "
|
|
8533
|
-
lineHeight: "
|
|
8564
|
+
fontSize: "fz_10px",
|
|
8565
|
+
lineHeight: "lh_14px"
|
|
8534
8566
|
},
|
|
8535
8567
|
xs: {
|
|
8536
8568
|
fontWeight: "fw4",
|
|
8537
|
-
fontSize: "
|
|
8538
|
-
lineHeight: "
|
|
8569
|
+
fontSize: "fz_12px",
|
|
8570
|
+
lineHeight: "lh_16px"
|
|
8539
8571
|
},
|
|
8540
8572
|
xsSb: {
|
|
8541
8573
|
fontWeight: "fw6",
|
|
8542
|
-
fontSize: "
|
|
8543
|
-
lineHeight: "
|
|
8574
|
+
fontSize: "fz_12px",
|
|
8575
|
+
lineHeight: "lh_16px"
|
|
8544
8576
|
},
|
|
8545
8577
|
sm: {
|
|
8546
8578
|
fontWeight: "fw4",
|
|
8547
|
-
fontSize: "
|
|
8548
|
-
lineHeight: "
|
|
8579
|
+
fontSize: "fz_14px",
|
|
8580
|
+
lineHeight: "lh_20px"
|
|
8549
8581
|
},
|
|
8550
8582
|
smSb: {
|
|
8551
8583
|
fontWeight: "fw6",
|
|
8552
|
-
fontSize: "
|
|
8553
|
-
lineHeight: "
|
|
8584
|
+
fontSize: "fz_14px",
|
|
8585
|
+
lineHeight: "lh_20px"
|
|
8554
8586
|
},
|
|
8555
8587
|
md: {
|
|
8556
8588
|
fontWeight: "fw4",
|
|
8557
|
-
fontSize: "
|
|
8558
|
-
lineHeight: "
|
|
8589
|
+
fontSize: "fz_16px",
|
|
8590
|
+
lineHeight: "lh_24px"
|
|
8559
8591
|
},
|
|
8560
8592
|
mdSb: {
|
|
8561
8593
|
fontWeight: "fw6",
|
|
8562
|
-
fontSize: "
|
|
8563
|
-
lineHeight: "
|
|
8594
|
+
fontSize: "fz_16px",
|
|
8595
|
+
lineHeight: "lh_24px"
|
|
8564
8596
|
},
|
|
8565
8597
|
lg: {
|
|
8566
8598
|
fontWeight: "fw6",
|
|
8567
|
-
fontSize: "
|
|
8568
|
-
lineHeight: "
|
|
8599
|
+
fontSize: "fz_18px",
|
|
8600
|
+
lineHeight: "lh_28px"
|
|
8569
8601
|
},
|
|
8570
8602
|
xl: {
|
|
8571
8603
|
fontWeight: "fw6",
|
|
8572
|
-
fontSize: "
|
|
8573
|
-
lineHeight: "
|
|
8604
|
+
fontSize: "fz_20px",
|
|
8605
|
+
lineHeight: "lh_28px"
|
|
8574
8606
|
},
|
|
8575
8607
|
xl2: {
|
|
8576
8608
|
fontWeight: "fw6",
|
|
8577
|
-
fontSize: "
|
|
8578
|
-
lineHeight: "
|
|
8609
|
+
fontSize: "fz_30px",
|
|
8610
|
+
lineHeight: "lh_36px"
|
|
8579
8611
|
}
|
|
8580
8612
|
};
|
|
8581
8613
|
function Avatar({
|
|
@@ -8860,8 +8892,8 @@ function Button(props) {
|
|
|
8860
8892
|
...mergeProps8(asLink ? navLink : void 0, void 0, {
|
|
8861
8893
|
...{
|
|
8862
8894
|
fontWeight: "fw6",
|
|
8863
|
-
fontSize: "
|
|
8864
|
-
lineHeight: "
|
|
8895
|
+
fontSize: "fz_14px",
|
|
8896
|
+
lineHeight: "lh_20px",
|
|
8865
8897
|
outline: "outline0",
|
|
8866
8898
|
borderRadius: "br8",
|
|
8867
8899
|
display: "dif",
|
|
@@ -9233,8 +9265,8 @@ var variantStyles = (contrast) => ({
|
|
|
9233
9265
|
var sizeStyles = {
|
|
9234
9266
|
sm: {
|
|
9235
9267
|
height: "h_32px",
|
|
9236
|
-
paddingLeft: "
|
|
9237
|
-
paddingRight: "
|
|
9268
|
+
paddingLeft: "pl_12px",
|
|
9269
|
+
paddingRight: "pr_12px"
|
|
9238
9270
|
},
|
|
9239
9271
|
md: {
|
|
9240
9272
|
height: "h_40px",
|
|
@@ -9344,14 +9376,14 @@ var baseStyles = {
|
|
|
9344
9376
|
display: "df",
|
|
9345
9377
|
alignItems: "aic",
|
|
9346
9378
|
height: "h_32px",
|
|
9347
|
-
paddingTop: "
|
|
9348
|
-
paddingBottom: "
|
|
9379
|
+
paddingTop: "pt_6px",
|
|
9380
|
+
paddingBottom: "pb_6px",
|
|
9349
9381
|
paddingLeft: "pl1",
|
|
9350
9382
|
paddingRight: "pr1",
|
|
9351
9383
|
borderRadius: "br4",
|
|
9352
9384
|
fontWeight: "fw6",
|
|
9353
|
-
fontSize: "
|
|
9354
|
-
lineHeight: "
|
|
9385
|
+
fontSize: "fz_14px",
|
|
9386
|
+
lineHeight: "lh_20px",
|
|
9355
9387
|
outline: "outline0"
|
|
9356
9388
|
};
|
|
9357
9389
|
var navLinkVariantStyles = (contrast) => ({
|
|
@@ -9531,8 +9563,8 @@ function ContextualModal(props) {
|
|
|
9531
9563
|
}), ...tid, children: [
|
|
9532
9564
|
title && /* @__PURE__ */ jsx37("div", { ...trussProps32({
|
|
9533
9565
|
fontWeight: "fw6",
|
|
9534
|
-
fontSize: "
|
|
9535
|
-
lineHeight: "
|
|
9566
|
+
fontSize: "fz_18px",
|
|
9567
|
+
lineHeight: "lh_28px",
|
|
9536
9568
|
textAlign: "tac"
|
|
9537
9569
|
}), ...tid.title, children: title }),
|
|
9538
9570
|
/* @__PURE__ */ jsx37("div", { ...tid.content, children: typeof content === "function" ? content(close) : content })
|
|
@@ -9569,8 +9601,8 @@ function AvatarGroup(props) {
|
|
|
9569
9601
|
alignItems: "aic",
|
|
9570
9602
|
gap: "gap1",
|
|
9571
9603
|
fontWeight: "fw6",
|
|
9572
|
-
fontSize: "
|
|
9573
|
-
lineHeight: "
|
|
9604
|
+
fontSize: "fz_12px",
|
|
9605
|
+
lineHeight: "lh_16px"
|
|
9574
9606
|
}), children: [
|
|
9575
9607
|
/* @__PURE__ */ jsx39("div", { ...trussProps33({
|
|
9576
9608
|
display: "df",
|
|
@@ -9675,12 +9707,12 @@ function MenuItemImpl(props) {
|
|
|
9675
9707
|
outline: "outline0",
|
|
9676
9708
|
minHeight: "mh_42px",
|
|
9677
9709
|
fontWeight: "fw4",
|
|
9678
|
-
fontSize: "
|
|
9679
|
-
lineHeight: "
|
|
9710
|
+
fontSize: "fz_14px",
|
|
9711
|
+
lineHeight: "lh_20px"
|
|
9680
9712
|
},
|
|
9681
9713
|
...menuItem.hasDivider ? {
|
|
9682
|
-
borderBottomStyle: "
|
|
9683
|
-
borderBottomWidth: "
|
|
9714
|
+
borderBottomStyle: "bbs_solid",
|
|
9715
|
+
borderBottomWidth: "bbw_1px",
|
|
9684
9716
|
borderColor: "bcGray700"
|
|
9685
9717
|
} : {},
|
|
9686
9718
|
...!isDisabled && isHovered ? contrast ? {
|
|
@@ -9993,7 +10025,7 @@ function ListBoxChip({
|
|
|
9993
10025
|
...{
|
|
9994
10026
|
whiteSpace: "wsnw",
|
|
9995
10027
|
overflow: "oh",
|
|
9996
|
-
textOverflow: "
|
|
10028
|
+
textOverflow: "to_ellipsis",
|
|
9997
10029
|
display: "dib"
|
|
9998
10030
|
}
|
|
9999
10031
|
}), title: label, children: label });
|
|
@@ -10079,8 +10111,8 @@ function ChipSelectField(props) {
|
|
|
10079
10111
|
const chipStyles = {
|
|
10080
10112
|
...chipBaseStyles(),
|
|
10081
10113
|
...{
|
|
10082
|
-
paddingTop: "
|
|
10083
|
-
paddingBottom: "
|
|
10114
|
+
paddingTop: "pt_2px",
|
|
10115
|
+
paddingBottom: "pb_2px",
|
|
10084
10116
|
gap: "gap0",
|
|
10085
10117
|
alignItems: "aiStretch"
|
|
10086
10118
|
}
|
|
@@ -10249,10 +10281,10 @@ function ChipSelectField(props) {
|
|
|
10249
10281
|
...{
|
|
10250
10282
|
textAlign: "tal",
|
|
10251
10283
|
borderRadius: "br16",
|
|
10252
|
-
paddingLeft: "
|
|
10253
|
-
paddingRight: "
|
|
10254
|
-
paddingTop: "
|
|
10255
|
-
paddingBottom: "
|
|
10284
|
+
paddingLeft: "pl_10px",
|
|
10285
|
+
paddingRight: "pr_10px",
|
|
10286
|
+
paddingTop: "pt_2px",
|
|
10287
|
+
paddingBottom: "pb_2px",
|
|
10256
10288
|
outline: "outline0",
|
|
10257
10289
|
...showClearButton ? {
|
|
10258
10290
|
paddingRight: "pr_4px",
|
|
@@ -10262,10 +10294,10 @@ function ChipSelectField(props) {
|
|
|
10262
10294
|
...isDisabled ? chipDisabledStyles : chipHoverOnlyStyles
|
|
10263
10295
|
}), title: state.selectedItem ? state.selectedItem.textValue : placeholder, ...tid, children: /* @__PURE__ */ jsx44("span", { ...valueProps, ...trussProps37({
|
|
10264
10296
|
overflow: "oh",
|
|
10265
|
-
display: "
|
|
10266
|
-
WebkitBoxOrient: "
|
|
10267
|
-
textOverflow: "
|
|
10268
|
-
WebkitLineClamp: "
|
|
10297
|
+
display: "d_negwebkit_box",
|
|
10298
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
10299
|
+
textOverflow: "to_ellipsis",
|
|
10300
|
+
WebkitLineClamp: "wlc_1",
|
|
10269
10301
|
wordBreak: "wbba"
|
|
10270
10302
|
}), children: state.selectedItem ? state.selectedItem.textValue : placeholder }) }),
|
|
10271
10303
|
showClearButton && /* @__PURE__ */ jsx44("button", { ...clearFocusProps, ...trussProps37({
|
|
@@ -10381,13 +10413,13 @@ function Option(props) {
|
|
|
10381
10413
|
outline: "outline0",
|
|
10382
10414
|
cursor: "cursorPointer",
|
|
10383
10415
|
fontWeight: "fw4",
|
|
10384
|
-
fontSize: "
|
|
10385
|
-
lineHeight: "
|
|
10416
|
+
fontSize: "fz_14px",
|
|
10417
|
+
lineHeight: "lh_20px"
|
|
10386
10418
|
},
|
|
10387
10419
|
// Assumes only one Persistent Item per list - will need to change to utilize Sections if that assumption is incorrect.
|
|
10388
10420
|
...isPersistentKey(item.key) ? {
|
|
10389
|
-
borderTopStyle: "
|
|
10390
|
-
borderTopWidth: "
|
|
10421
|
+
borderTopStyle: "bts_solid",
|
|
10422
|
+
borderTopWidth: "btw_1px",
|
|
10391
10423
|
borderColor: "bcGray200"
|
|
10392
10424
|
} : {},
|
|
10393
10425
|
...themeStyles.item,
|
|
@@ -10579,13 +10611,13 @@ var markSvgStyles = {
|
|
|
10579
10611
|
};
|
|
10580
10612
|
var labelStyles = {
|
|
10581
10613
|
fontWeight: "fw4",
|
|
10582
|
-
fontSize: "
|
|
10583
|
-
lineHeight: "
|
|
10614
|
+
fontSize: "fz_14px",
|
|
10615
|
+
lineHeight: "lh_20px"
|
|
10584
10616
|
};
|
|
10585
10617
|
var descStyles = {
|
|
10586
10618
|
fontWeight: "fw4",
|
|
10587
|
-
fontSize: "
|
|
10588
|
-
lineHeight: "
|
|
10619
|
+
fontSize: "fz_14px",
|
|
10620
|
+
lineHeight: "lh_20px",
|
|
10589
10621
|
color: "gray700"
|
|
10590
10622
|
};
|
|
10591
10623
|
function StyledCheckbox(props) {
|
|
@@ -10690,8 +10722,8 @@ function TreeOption(props) {
|
|
|
10690
10722
|
outline: "outline0",
|
|
10691
10723
|
cursor: "cursorPointer",
|
|
10692
10724
|
fontWeight: "fw4",
|
|
10693
|
-
fontSize: "
|
|
10694
|
-
lineHeight: "
|
|
10725
|
+
fontSize: "fz_14px",
|
|
10726
|
+
lineHeight: "lh_20px"
|
|
10695
10727
|
},
|
|
10696
10728
|
...listItemStyles.item,
|
|
10697
10729
|
...isHovered && !isDisabled ? listItemStyles.hover : {},
|
|
@@ -10881,8 +10913,8 @@ function ListBoxSection(props) {
|
|
|
10881
10913
|
const childNodes = [...section.childNodes];
|
|
10882
10914
|
return /* @__PURE__ */ jsxs32(Fragment15, { children: [
|
|
10883
10915
|
isPersistentSection && /* @__PURE__ */ jsx50("li", { ...separatorProps, ...trussProps42({
|
|
10884
|
-
borderTopStyle: "
|
|
10885
|
-
borderTopWidth: "
|
|
10916
|
+
borderTopStyle: "bts_solid",
|
|
10917
|
+
borderTopWidth: "btw_1px",
|
|
10886
10918
|
borderColor: "bcGray200"
|
|
10887
10919
|
}) }),
|
|
10888
10920
|
/* @__PURE__ */ jsx50("li", { ...itemProps, ...trussProps42({
|
|
@@ -10890,9 +10922,9 @@ function ListBoxSection(props) {
|
|
|
10890
10922
|
overflow: "oa"
|
|
10891
10923
|
} : {}
|
|
10892
10924
|
}), children: /* @__PURE__ */ jsx50("ul", { ...trussProps42({
|
|
10893
|
-
padding: "
|
|
10894
|
-
margin: "
|
|
10895
|
-
listStyle: "
|
|
10925
|
+
padding: "p_0",
|
|
10926
|
+
margin: "m_0",
|
|
10927
|
+
listStyle: "lis_none",
|
|
10896
10928
|
...!isPersistentSection ? {
|
|
10897
10929
|
height: ["h_var", {
|
|
10898
10930
|
"--height": `${popoverHeight - sectionSeparatorHeight - persistentItemHeight}px`
|
|
@@ -10988,25 +11020,25 @@ function ListBox(props) {
|
|
|
10988
11020
|
} : {}
|
|
10989
11021
|
}), ref: listBoxRef, ...listBoxProps, children: [
|
|
10990
11022
|
isMultiSelect && !isTree && state.selectionManager.selectedKeys.size > 0 && /* @__PURE__ */ jsx52("ul", { ...trussProps44({
|
|
10991
|
-
padding: "
|
|
10992
|
-
margin: "
|
|
10993
|
-
listStyle: "
|
|
11023
|
+
padding: "p_0",
|
|
11024
|
+
margin: "m_0",
|
|
11025
|
+
listStyle: "lis_none",
|
|
10994
11026
|
paddingTop: "pt2",
|
|
10995
11027
|
paddingLeft: "pl2",
|
|
10996
11028
|
paddingBottom: "pb1",
|
|
10997
11029
|
paddingRight: "pr1",
|
|
10998
11030
|
display: "df",
|
|
10999
|
-
borderBottomStyle: "
|
|
11000
|
-
borderBottomWidth: "
|
|
11031
|
+
borderBottomStyle: "bbs_solid",
|
|
11032
|
+
borderBottomWidth: "bbw_1px",
|
|
11001
11033
|
borderColor: "bcGray200",
|
|
11002
11034
|
flexWrap: "flexWrap_wrap",
|
|
11003
11035
|
maxHeight: "maxh_50",
|
|
11004
11036
|
overflow: "oa"
|
|
11005
11037
|
}), ref: selectedList, children: selectedOptions.map((o) => /* @__PURE__ */ jsx52(ListBoxToggleChip, { state, option: o, getOptionValue, getOptionLabel, disabled: state.disabledKeys.has(getOptionValue(o)) }, getOptionValue(o))) }),
|
|
11006
11038
|
/* @__PURE__ */ jsx52("ul", { ...trussProps44({
|
|
11007
|
-
padding: "
|
|
11008
|
-
margin: "
|
|
11009
|
-
listStyle: "
|
|
11039
|
+
padding: "p_0",
|
|
11040
|
+
margin: "m_0",
|
|
11041
|
+
listStyle: "lis_none",
|
|
11010
11042
|
flexGrow: "fg1"
|
|
11011
11043
|
}), children: hasSections ? [...state.collection].map((section) => /* @__PURE__ */ jsx52(
|
|
11012
11044
|
ListBoxSection,
|
|
@@ -12530,8 +12562,8 @@ function IconCard(props) {
|
|
|
12530
12562
|
/* @__PURE__ */ jsx64(Icon, { icon, inc: 4, color: isDisabled ? "rgba(221, 220, 220, 1)" /* Gray300 */ : "rgba(36, 36, 36, 1)" /* Gray900 */ }),
|
|
12531
12563
|
/* @__PURE__ */ jsx64("span", { ...trussProps50({
|
|
12532
12564
|
fontWeight: "fw4",
|
|
12533
|
-
fontSize: "
|
|
12534
|
-
lineHeight: "
|
|
12565
|
+
fontSize: "fz_12px",
|
|
12566
|
+
lineHeight: "lh_16px",
|
|
12535
12567
|
...isDisabled ? {
|
|
12536
12568
|
color: "gray300"
|
|
12537
12569
|
} : {}
|
|
@@ -12613,7 +12645,7 @@ function MultiLineSelectField(props) {
|
|
|
12613
12645
|
}), key: index }, /* @__PURE__ */ jsx65("div", { ...trussProps51({
|
|
12614
12646
|
whiteSpace: "wsnw",
|
|
12615
12647
|
overflow: "oh",
|
|
12616
|
-
textOverflow: "
|
|
12648
|
+
textOverflow: "to_ellipsis",
|
|
12617
12649
|
width: "w100"
|
|
12618
12650
|
}), children: /* @__PURE__ */ jsx65(SelectField, { ...otherProps, ...tid.selectField, labelStyle: "hidden", value, onSelect: () => {
|
|
12619
12651
|
}, options, getOptionValue, getOptionLabel, compact: true, readOnly: true }) }), /* @__PURE__ */ jsx65(Button, { ...tid.deleteSelected, variant: "tertiary", label: "", "aria-label": `Delete selected ${otherProps.label}`, icon: "x", onClick: () => {
|
|
@@ -12966,8 +12998,8 @@ function Radio(props) {
|
|
|
12966
12998
|
/* @__PURE__ */ jsxs41("div", { children: [
|
|
12967
12999
|
/* @__PURE__ */ jsx68("div", { id: labelId, ...trussProps52({
|
|
12968
13000
|
fontWeight: "fw4",
|
|
12969
|
-
fontSize: "
|
|
12970
|
-
lineHeight: "
|
|
13001
|
+
fontSize: "fz_14px",
|
|
13002
|
+
lineHeight: "lh_20px",
|
|
12971
13003
|
color: "gray800",
|
|
12972
13004
|
...disabled ? {
|
|
12973
13005
|
color: "gray400"
|
|
@@ -12977,8 +13009,8 @@ function Radio(props) {
|
|
|
12977
13009
|
} : {}, children: label }),
|
|
12978
13010
|
description && /* @__PURE__ */ jsx68("div", { id: descriptionId, ...trussProps52({
|
|
12979
13011
|
fontWeight: "fw4",
|
|
12980
|
-
fontSize: "
|
|
12981
|
-
lineHeight: "
|
|
13012
|
+
fontSize: "fz_14px",
|
|
13013
|
+
lineHeight: "lh_20px",
|
|
12982
13014
|
color: "gray700",
|
|
12983
13015
|
...disabled ? {
|
|
12984
13016
|
color: "gray400"
|
|
@@ -13232,8 +13264,8 @@ function RichTextFieldImpl(props) {
|
|
|
13232
13264
|
minHeight: "mh_120px",
|
|
13233
13265
|
backgroundColor: "bgWhite",
|
|
13234
13266
|
fontWeight: "fw4",
|
|
13235
|
-
fontSize: "
|
|
13236
|
-
lineHeight: "
|
|
13267
|
+
fontSize: "fz_14px",
|
|
13268
|
+
lineHeight: "lh_20px",
|
|
13237
13269
|
color: "gray900",
|
|
13238
13270
|
borderStyle: "bss",
|
|
13239
13271
|
borderWidth: "bw1",
|
|
@@ -13386,8 +13418,8 @@ function Switch(props) {
|
|
|
13386
13418
|
alignItems: "aic",
|
|
13387
13419
|
width: "wa",
|
|
13388
13420
|
fontWeight: "fw4",
|
|
13389
|
-
fontSize: "
|
|
13390
|
-
lineHeight: "
|
|
13421
|
+
fontSize: "fz_14px",
|
|
13422
|
+
lineHeight: "lh_20px"
|
|
13391
13423
|
},
|
|
13392
13424
|
...labelStyle === "centered" && {
|
|
13393
13425
|
flexDirection: "fdc",
|
|
@@ -13440,8 +13472,8 @@ function Switch(props) {
|
|
|
13440
13472
|
}), children: withIcon && /* @__PURE__ */ jsx72(Icon, { icon: isSelected ? "check" : "x", color: isSelected ? "rgba(29, 78, 216, 1)" /* Blue700 */ : "rgba(201, 201, 201, 1)" /* Gray400 */, inc: toggleHeight(compact) / 16 }) }) }) }),
|
|
13441
13473
|
labelStyle === "inline" && /* @__PURE__ */ jsx72(Label, { label, tooltip, inline: true, xss: {
|
|
13442
13474
|
fontWeight: "fw4",
|
|
13443
|
-
fontSize: "
|
|
13444
|
-
lineHeight: "
|
|
13475
|
+
fontSize: "fz_14px",
|
|
13476
|
+
lineHeight: "lh_20px",
|
|
13445
13477
|
color: "gray900",
|
|
13446
13478
|
...compact ? {
|
|
13447
13479
|
lineHeight: "lineHeight_1"
|
|
@@ -13697,8 +13729,8 @@ function ToggleButton(props) {
|
|
|
13697
13729
|
cursor: "cursorPointer",
|
|
13698
13730
|
width: "w_max_content",
|
|
13699
13731
|
fontWeight: "fw4",
|
|
13700
|
-
fontSize: "
|
|
13701
|
-
lineHeight: "
|
|
13732
|
+
fontSize: "fz_14px",
|
|
13733
|
+
lineHeight: "lh_20px",
|
|
13702
13734
|
userSelect: "usn"
|
|
13703
13735
|
},
|
|
13704
13736
|
...isHovered && toggleHoverStyles,
|
|
@@ -13855,13 +13887,13 @@ function ToggleChip2(props) {
|
|
|
13855
13887
|
alignItems: "aic",
|
|
13856
13888
|
borderRadius: "br16",
|
|
13857
13889
|
fontWeight: "fw4",
|
|
13858
|
-
fontSize: "
|
|
13859
|
-
lineHeight: "
|
|
13890
|
+
fontSize: "fz_14px",
|
|
13891
|
+
lineHeight: "lh_20px",
|
|
13860
13892
|
paddingLeft: "pl1",
|
|
13861
13893
|
paddingRight: "pr1",
|
|
13862
13894
|
cursor: "cursorPointer",
|
|
13863
|
-
paddingTop: "
|
|
13864
|
-
paddingBottom: "
|
|
13895
|
+
paddingTop: "pt_4px",
|
|
13896
|
+
paddingBottom: "pb_4px"
|
|
13865
13897
|
},
|
|
13866
13898
|
...chipStateCss,
|
|
13867
13899
|
...isFocusVisible ? {
|
|
@@ -15663,10 +15695,10 @@ function ToggleChip(props) {
|
|
|
15663
15695
|
/* @__PURE__ */ jsx80("span", { ...trussProps59({
|
|
15664
15696
|
textAlign: "tal",
|
|
15665
15697
|
overflow: "oh",
|
|
15666
|
-
display: "
|
|
15667
|
-
WebkitBoxOrient: "
|
|
15668
|
-
textOverflow: "
|
|
15669
|
-
WebkitLineClamp: "
|
|
15698
|
+
display: "d_negwebkit_box",
|
|
15699
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
15700
|
+
textOverflow: "to_ellipsis",
|
|
15701
|
+
WebkitLineClamp: "wlc_1",
|
|
15670
15702
|
wordBreak: "wbba",
|
|
15671
15703
|
...disabled ? {
|
|
15672
15704
|
paddingRight: "pr0"
|
|
@@ -15783,20 +15815,20 @@ function Accordion(props) {
|
|
|
15783
15815
|
paddingRight: "pr2",
|
|
15784
15816
|
paddingLeft: "pl2",
|
|
15785
15817
|
fontWeight: "fw4",
|
|
15786
|
-
fontSize: "
|
|
15787
|
-
lineHeight: "
|
|
15818
|
+
fontSize: "fz_16px",
|
|
15819
|
+
lineHeight: "lh_24px",
|
|
15788
15820
|
outline: "outline_none",
|
|
15789
15821
|
backgroundColor: "h_bgGray100",
|
|
15790
15822
|
...!!titleOnClick ? {
|
|
15791
15823
|
fontWeight: "fw4 h_fw6",
|
|
15792
|
-
fontSize: "
|
|
15793
|
-
lineHeight: "
|
|
15824
|
+
fontSize: "fz_16px h_fz_16px",
|
|
15825
|
+
lineHeight: "lh_24px h_lh_24px"
|
|
15794
15826
|
} : {}
|
|
15795
15827
|
},
|
|
15796
15828
|
...compact && {
|
|
15797
15829
|
fontWeight: "fw4",
|
|
15798
|
-
fontSize: "
|
|
15799
|
-
lineHeight: "
|
|
15830
|
+
fontSize: "fz_14px",
|
|
15831
|
+
lineHeight: "lh_20px",
|
|
15800
15832
|
paddingLeft: "pl2",
|
|
15801
15833
|
paddingRight: "pr_10px",
|
|
15802
15834
|
paddingTop: "pt1",
|
|
@@ -15822,12 +15854,12 @@ function Accordion(props) {
|
|
|
15822
15854
|
...{
|
|
15823
15855
|
borderColor: "bcGray300",
|
|
15824
15856
|
...topBorder ? {
|
|
15825
|
-
borderTopStyle: "
|
|
15826
|
-
borderTopWidth: "
|
|
15857
|
+
borderTopStyle: "bts_solid",
|
|
15858
|
+
borderTopWidth: "btw_1px"
|
|
15827
15859
|
} : {},
|
|
15828
15860
|
...bottomBorder ? {
|
|
15829
|
-
borderBottomStyle: "
|
|
15830
|
-
borderBottomWidth: "
|
|
15861
|
+
borderBottomStyle: "bbs_solid",
|
|
15862
|
+
borderBottomWidth: "bbw_1px"
|
|
15831
15863
|
} : {}
|
|
15832
15864
|
},
|
|
15833
15865
|
...size ? {
|
|
@@ -15852,8 +15884,8 @@ function Accordion(props) {
|
|
|
15852
15884
|
paddingRight: "pr2",
|
|
15853
15885
|
justifyContent: "jcfe",
|
|
15854
15886
|
...compact ? {
|
|
15855
|
-
paddingLeft: "
|
|
15856
|
-
paddingRight: "
|
|
15887
|
+
paddingLeft: "pl_10px",
|
|
15888
|
+
paddingRight: "pr_10px"
|
|
15857
15889
|
} : {}
|
|
15858
15890
|
}
|
|
15859
15891
|
}), onClick: toggle, children: /* @__PURE__ */ jsx82(RotatingChevronIcon, { expanded }) })
|
|
@@ -15992,8 +16024,8 @@ function Indicator({
|
|
|
15992
16024
|
alignItems: "aic",
|
|
15993
16025
|
color: "gray700",
|
|
15994
16026
|
fontWeight: "fw6",
|
|
15995
|
-
fontSize: "
|
|
15996
|
-
lineHeight: "
|
|
16027
|
+
fontSize: "fz_14px",
|
|
16028
|
+
lineHeight: "lh_20px"
|
|
15997
16029
|
}), children: [
|
|
15998
16030
|
/* @__PURE__ */ jsx84(Icon, { icon, color }),
|
|
15999
16031
|
text
|
|
@@ -16025,8 +16057,8 @@ function Banner(props) {
|
|
|
16025
16057
|
paddingLeft: "pl2",
|
|
16026
16058
|
color: "gray900",
|
|
16027
16059
|
fontWeight: "fw4",
|
|
16028
|
-
fontSize: "
|
|
16029
|
-
lineHeight: "
|
|
16060
|
+
fontSize: "fz_16px",
|
|
16061
|
+
lineHeight: "lh_24px",
|
|
16030
16062
|
boxShadow: "bshBasic"
|
|
16031
16063
|
}
|
|
16032
16064
|
}), ...tid, role: "alert", children: [
|
|
@@ -16225,14 +16257,14 @@ function Modal(props) {
|
|
|
16225
16257
|
);
|
|
16226
16258
|
return /* @__PURE__ */ jsx87(ModalProvider, { children: /* @__PURE__ */ jsx87(OverlayContainer2, { children: /* @__PURE__ */ jsx87(AutoSaveStatusProvider, { children: /* @__PURE__ */ jsx87("div", { ...trussProps64({
|
|
16227
16259
|
position: "fixed",
|
|
16228
|
-
top: "
|
|
16229
|
-
bottom: "
|
|
16230
|
-
left: "
|
|
16231
|
-
right: "
|
|
16260
|
+
top: "tp_0",
|
|
16261
|
+
bottom: "bot_0",
|
|
16262
|
+
left: "l_0",
|
|
16263
|
+
right: "r_0",
|
|
16232
16264
|
display: "df",
|
|
16233
16265
|
alignItems: "aic",
|
|
16234
16266
|
justifyContent: "jcc",
|
|
16235
|
-
backgroundColor: "
|
|
16267
|
+
backgroundColor: "bgc_rgba_36_36_36_0_6",
|
|
16236
16268
|
zIndex: "z4"
|
|
16237
16269
|
}), ...underlayProps, ...testId.underlay, children: /* @__PURE__ */ jsx87(FocusScope4, { contain: true, restoreFocus: true, autoFocus: true, children: /* @__PURE__ */ jsxs51("div", { ...trussProps64({
|
|
16238
16270
|
borderRadius: "br24",
|
|
@@ -16269,8 +16301,8 @@ function Modal(props) {
|
|
|
16269
16301
|
paddingLeft: "pl3",
|
|
16270
16302
|
flexShrink: "fs0",
|
|
16271
16303
|
...drawHeaderBorder ? {
|
|
16272
|
-
borderBottomStyle: "
|
|
16273
|
-
borderBottomWidth: "
|
|
16304
|
+
borderBottomStyle: "bbs_solid",
|
|
16305
|
+
borderBottomWidth: "bbw_1px",
|
|
16274
16306
|
borderColor: "bcGray200"
|
|
16275
16307
|
} : {}
|
|
16276
16308
|
}), children: [
|
|
@@ -16281,8 +16313,8 @@ function Modal(props) {
|
|
|
16281
16313
|
/* @__PURE__ */ jsx87("h1", { ...trussProps64({
|
|
16282
16314
|
flexGrow: "fg1",
|
|
16283
16315
|
fontWeight: "fw6",
|
|
16284
|
-
fontSize: "
|
|
16285
|
-
lineHeight: "
|
|
16316
|
+
fontSize: "fz_30px",
|
|
16317
|
+
lineHeight: "lh_36px",
|
|
16286
16318
|
color: "gray900"
|
|
16287
16319
|
}), ref: modalHeaderRef, ...titleProps, ...testId.title })
|
|
16288
16320
|
] }),
|
|
@@ -16290,8 +16322,8 @@ function Modal(props) {
|
|
|
16290
16322
|
flexGrow: "fg1",
|
|
16291
16323
|
overflowY: "oya",
|
|
16292
16324
|
...hasScroll ? {
|
|
16293
|
-
borderBottomStyle: "
|
|
16294
|
-
borderBottomWidth: "
|
|
16325
|
+
borderBottomStyle: "bbs_solid",
|
|
16326
|
+
borderBottomWidth: "bbw_1px",
|
|
16295
16327
|
borderColor: "bcGray200"
|
|
16296
16328
|
} : {},
|
|
16297
16329
|
...!!forceScrolling ? {
|
|
@@ -16395,8 +16427,8 @@ function SnackbarNotice(props) {
|
|
|
16395
16427
|
backgroundColor: "bgGray800",
|
|
16396
16428
|
borderRadius: "br4",
|
|
16397
16429
|
fontWeight: "fw4",
|
|
16398
|
-
fontSize: "
|
|
16399
|
-
lineHeight: "
|
|
16430
|
+
fontSize: "fz_16px",
|
|
16431
|
+
lineHeight: "lh_24px",
|
|
16400
16432
|
display: "df",
|
|
16401
16433
|
alignItems: "aic",
|
|
16402
16434
|
maxWidth: "maxw_420px"
|
|
@@ -16410,13 +16442,13 @@ function SnackbarNotice(props) {
|
|
|
16410
16442
|
{
|
|
16411
16443
|
...trussProps65({
|
|
16412
16444
|
overflow: "oh",
|
|
16413
|
-
display: "
|
|
16414
|
-
WebkitBoxOrient: "
|
|
16415
|
-
textOverflow: "
|
|
16416
|
-
WebkitLineClamp: "
|
|
16445
|
+
display: "d_negwebkit_box",
|
|
16446
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
16447
|
+
textOverflow: "to_ellipsis",
|
|
16448
|
+
WebkitLineClamp: "wlc_3",
|
|
16417
16449
|
paddingRight: "pr2",
|
|
16418
|
-
marginTop: "
|
|
16419
|
-
marginBottom: "
|
|
16450
|
+
marginTop: "mt_12px",
|
|
16451
|
+
marginBottom: "mb_12px",
|
|
16420
16452
|
paddingLeft: ["pl_var", {
|
|
16421
16453
|
"--paddingLeft": `${icon ? 8 : 16}px`
|
|
16422
16454
|
}]
|
|
@@ -16436,8 +16468,8 @@ function SnackbarNotice(props) {
|
|
|
16436
16468
|
action && /* @__PURE__ */ jsx88("span", { ...trussProps65({
|
|
16437
16469
|
textTransform: "ttu",
|
|
16438
16470
|
fontWeight: "fw4",
|
|
16439
|
-
fontSize: "
|
|
16440
|
-
lineHeight: "
|
|
16471
|
+
fontSize: "fz_14px",
|
|
16472
|
+
lineHeight: "lh_20px",
|
|
16441
16473
|
paddingRight: ["pr_var", {
|
|
16442
16474
|
"--paddingRight": `${!reallyHideClose && action.variant !== "text" ? 4 : 8}px`
|
|
16443
16475
|
}]
|
|
@@ -16644,8 +16676,8 @@ function SuperDrawer() {
|
|
|
16644
16676
|
paddingBottom: "pb3",
|
|
16645
16677
|
paddingRight: "pr3",
|
|
16646
16678
|
paddingLeft: "pl3",
|
|
16647
|
-
borderBottomStyle: "
|
|
16648
|
-
borderBottomWidth: "
|
|
16679
|
+
borderBottomStyle: "bbs_solid",
|
|
16680
|
+
borderBottomWidth: "bbw_1px",
|
|
16649
16681
|
borderColor: "bcGray200",
|
|
16650
16682
|
display: "df",
|
|
16651
16683
|
alignItems: "aic",
|
|
@@ -17062,8 +17094,8 @@ function ListFieldRowInputs({
|
|
|
17062
17094
|
}), ...tid, children: [
|
|
17063
17095
|
/* @__PURE__ */ jsxs56("span", { ...trussProps69({
|
|
17064
17096
|
fontWeight: "fw6",
|
|
17065
|
-
fontSize: "
|
|
17066
|
-
lineHeight: "
|
|
17097
|
+
fontSize: "fz_16px",
|
|
17098
|
+
lineHeight: "lh_24px"
|
|
17067
17099
|
}), ...tid.name, children: [
|
|
17068
17100
|
listFieldConfig.name,
|
|
17069
17101
|
" ",
|
|
@@ -17815,10 +17847,10 @@ function CompoundField({
|
|
|
17815
17847
|
alignItems: "aic",
|
|
17816
17848
|
flexShrink: "fs1",
|
|
17817
17849
|
maxWidth: "maxw_550px",
|
|
17818
|
-
borderTopStyle: "
|
|
17819
|
-
borderTopWidth: "
|
|
17820
|
-
borderBottomStyle: "
|
|
17821
|
-
borderBottomWidth: "
|
|
17850
|
+
borderTopStyle: "bts_solid",
|
|
17851
|
+
borderTopWidth: "btw_1px",
|
|
17852
|
+
borderBottomStyle: "bbs_solid",
|
|
17853
|
+
borderBottomWidth: "bbw_1px",
|
|
17822
17854
|
borderColor: "bcGray300"
|
|
17823
17855
|
};
|
|
17824
17856
|
const internalProps = {
|
|
@@ -17841,8 +17873,8 @@ function CompoundField({
|
|
|
17841
17873
|
/* @__PURE__ */ jsx114("div", { ...trussProps72({
|
|
17842
17874
|
...commonStyles,
|
|
17843
17875
|
...{
|
|
17844
|
-
borderLeftStyle: "
|
|
17845
|
-
borderLeftWidth: "
|
|
17876
|
+
borderLeftStyle: "bls_solid",
|
|
17877
|
+
borderLeftWidth: "blw_1px",
|
|
17846
17878
|
borderRadius: "borderRadius_4px_0_0_4px"
|
|
17847
17879
|
},
|
|
17848
17880
|
...hasFocusWithin && {
|
|
@@ -17865,8 +17897,8 @@ function CompoundField({
|
|
|
17865
17897
|
...commonStyles,
|
|
17866
17898
|
...{
|
|
17867
17899
|
flexGrow: "fg1",
|
|
17868
|
-
borderRightStyle: "
|
|
17869
|
-
borderRightWidth: "
|
|
17900
|
+
borderRightStyle: "brs_solid",
|
|
17901
|
+
borderRightWidth: "brw_1px",
|
|
17870
17902
|
borderRadius: "borderRadius_0_4px_4px_0"
|
|
17871
17903
|
},
|
|
17872
17904
|
...hasFocusWithin && {
|
|
@@ -17919,8 +17951,8 @@ function FormHeading(props) {
|
|
|
17919
17951
|
/* @__PURE__ */ jsx116("h3", { ...trussProps73({
|
|
17920
17952
|
...{
|
|
17921
17953
|
fontWeight: "fw4",
|
|
17922
|
-
fontSize: "
|
|
17923
|
-
lineHeight: "
|
|
17954
|
+
fontSize: "fz_16px",
|
|
17955
|
+
lineHeight: "lh_24px",
|
|
17924
17956
|
...!isFirst ? {
|
|
17925
17957
|
marginTop: "mt1"
|
|
17926
17958
|
} : {}
|
|
@@ -17957,15 +17989,15 @@ function StaticField(props) {
|
|
|
17957
17989
|
/* @__PURE__ */ jsx117("label", { ...trussProps74({
|
|
17958
17990
|
display: "db",
|
|
17959
17991
|
fontWeight: "fw4",
|
|
17960
|
-
fontSize: "
|
|
17961
|
-
lineHeight: "
|
|
17992
|
+
fontSize: "fz_14px",
|
|
17993
|
+
lineHeight: "lh_20px",
|
|
17962
17994
|
color: "gray700",
|
|
17963
17995
|
marginBottom: "mb_4px"
|
|
17964
17996
|
}), htmlFor: id, ...tid.label, children: label }),
|
|
17965
17997
|
/* @__PURE__ */ jsx117("div", { id, ...trussProps74({
|
|
17966
17998
|
fontWeight: "fw4",
|
|
17967
|
-
fontSize: "
|
|
17968
|
-
lineHeight: "
|
|
17999
|
+
fontSize: "fz_14px",
|
|
18000
|
+
lineHeight: "lh_20px",
|
|
17969
18001
|
color: "gray900",
|
|
17970
18002
|
display: "df",
|
|
17971
18003
|
alignItems: "aic",
|
|
@@ -18178,18 +18210,18 @@ function PageHeaderBreadcrumbs({
|
|
|
18178
18210
|
/* @__PURE__ */ jsxs61(Fragment25, { children: [
|
|
18179
18211
|
index > 0 && !hideDivisor && /* @__PURE__ */ jsx122("span", { ...trussProps76({
|
|
18180
18212
|
fontWeight: "fw6",
|
|
18181
|
-
fontSize: "
|
|
18182
|
-
lineHeight: "
|
|
18213
|
+
fontSize: "fz_14px",
|
|
18214
|
+
lineHeight: "lh_20px",
|
|
18183
18215
|
color: "gray700",
|
|
18184
18216
|
marginLeft: "ml1",
|
|
18185
18217
|
marginRight: "mr1",
|
|
18186
|
-
marginTop: "
|
|
18187
|
-
marginBottom: "
|
|
18218
|
+
marginTop: "mt_2px",
|
|
18219
|
+
marginBottom: "mb_2px"
|
|
18188
18220
|
}), children: "/" }),
|
|
18189
18221
|
/* @__PURE__ */ jsx122(Link4, { to: bc.href, ...mergeProps20("navLink", void 0, {
|
|
18190
18222
|
fontWeight: "fw6",
|
|
18191
|
-
fontSize: "
|
|
18192
|
-
lineHeight: "
|
|
18223
|
+
fontSize: "fz_14px",
|
|
18224
|
+
lineHeight: "lh_20px",
|
|
18193
18225
|
color: "gray700 h_gray900"
|
|
18194
18226
|
}), ...tids.navLink, children: bc.label }),
|
|
18195
18227
|
bc.right
|
|
@@ -18316,8 +18348,8 @@ function PageHeader(props) {
|
|
|
18316
18348
|
breadCrumb && /* @__PURE__ */ jsx123(PageHeaderBreadcrumbs, { breadcrumb: breadCrumb }),
|
|
18317
18349
|
/* @__PURE__ */ jsx123("h1", { ...trussProps77({
|
|
18318
18350
|
fontWeight: "fw6",
|
|
18319
|
-
fontSize: "
|
|
18320
|
-
lineHeight: "
|
|
18351
|
+
fontSize: "fz_30px",
|
|
18352
|
+
lineHeight: "lh_36px"
|
|
18321
18353
|
}), ...tids.pageTitle, children: pageTitle })
|
|
18322
18354
|
] }),
|
|
18323
18355
|
/* @__PURE__ */ jsxs62("div", { ...trussProps77({
|
|
@@ -18375,8 +18407,8 @@ function FormSections(props) {
|
|
|
18375
18407
|
}), children: [
|
|
18376
18408
|
section.title && /* @__PURE__ */ jsx123("h2", { ...trussProps77({
|
|
18377
18409
|
fontWeight: "fw6",
|
|
18378
|
-
fontSize: "
|
|
18379
|
-
lineHeight: "
|
|
18410
|
+
fontSize: "fz_20px",
|
|
18411
|
+
lineHeight: "lh_28px",
|
|
18380
18412
|
marginBottom: "mb3"
|
|
18381
18413
|
}), children: section.title }),
|
|
18382
18414
|
/* @__PURE__ */ jsx123(BoundForm, { formState, rows: section.rows })
|
|
@@ -18412,8 +18444,8 @@ function LeftNav(props) {
|
|
|
18412
18444
|
}
|
|
18413
18445
|
var activeStyles2 = {
|
|
18414
18446
|
fontWeight: "fw6",
|
|
18415
|
-
fontSize: "
|
|
18416
|
-
lineHeight: "
|
|
18447
|
+
fontSize: "fz_14px",
|
|
18448
|
+
lineHeight: "lh_20px",
|
|
18417
18449
|
boxShadow: ["boxShadow_var", {
|
|
18418
18450
|
"--boxShadow": `inset 3px 0px 0 0px ${"rgba(37, 99, 235, 1)" /* Blue600 */}`
|
|
18419
18451
|
}]
|
|
@@ -18421,8 +18453,8 @@ var activeStyles2 = {
|
|
|
18421
18453
|
var hoverStyles2 = {
|
|
18422
18454
|
backgroundColor: "bgBlue50",
|
|
18423
18455
|
fontWeight: "fw6",
|
|
18424
|
-
fontSize: "
|
|
18425
|
-
lineHeight: "
|
|
18456
|
+
fontSize: "fz_14px",
|
|
18457
|
+
lineHeight: "lh_20px",
|
|
18426
18458
|
color: "blue900",
|
|
18427
18459
|
boxShadow: ["boxShadow_var", {
|
|
18428
18460
|
"--boxShadow": `inset 3px 0px 0 0px ${"rgba(30, 58, 138, 1)" /* Blue900 */}`
|
|
@@ -18468,8 +18500,8 @@ function SectionNavLink(props) {
|
|
|
18468
18500
|
return /* @__PURE__ */ jsx123("button", { ref: buttonRef, ...buttonProps, ...focusProps, ...hoverProps, ...trussProps77({
|
|
18469
18501
|
...{
|
|
18470
18502
|
fontWeight: "fw6",
|
|
18471
|
-
fontSize: "
|
|
18472
|
-
lineHeight: "
|
|
18503
|
+
fontSize: "fz_14px",
|
|
18504
|
+
lineHeight: "lh_20px",
|
|
18473
18505
|
outline: "outline0",
|
|
18474
18506
|
borderRadius: "br0",
|
|
18475
18507
|
display: "dif",
|
|
@@ -18678,8 +18710,8 @@ function CountBadge(props) {
|
|
|
18678
18710
|
flexShrink: "fs0",
|
|
18679
18711
|
borderRadius: "br100",
|
|
18680
18712
|
fontWeight: "fw6",
|
|
18681
|
-
fontSize: "
|
|
18682
|
-
lineHeight: "
|
|
18713
|
+
fontSize: "fz_10px",
|
|
18714
|
+
lineHeight: "lh_14px",
|
|
18683
18715
|
display: "df",
|
|
18684
18716
|
alignItems: "aic",
|
|
18685
18717
|
justifyContent: "jcc",
|
|
@@ -19114,15 +19146,15 @@ function ModalFilterItem({
|
|
|
19114
19146
|
return /* @__PURE__ */ jsxs66("div", { ...trussProps80({
|
|
19115
19147
|
marginBottom: "mb4",
|
|
19116
19148
|
...!label ? {
|
|
19117
|
-
borderTopStyle: "
|
|
19118
|
-
borderTopWidth: "
|
|
19149
|
+
borderTopStyle: "bts_solid",
|
|
19150
|
+
borderTopWidth: "btw_1px",
|
|
19119
19151
|
borderColor: "bcGray200"
|
|
19120
19152
|
} : {}
|
|
19121
19153
|
}), children: [
|
|
19122
19154
|
label && /* @__PURE__ */ jsx135("h2", { ...trussProps80({
|
|
19123
19155
|
fontWeight: "fw4",
|
|
19124
|
-
fontSize: "
|
|
19125
|
-
lineHeight: "
|
|
19156
|
+
fontSize: "fz_16px",
|
|
19157
|
+
lineHeight: "lh_24px",
|
|
19126
19158
|
marginBottom: "mb2"
|
|
19127
19159
|
}), children: label }),
|
|
19128
19160
|
/* @__PURE__ */ jsx135("div", { ...trussProps80({
|
|
@@ -19344,11 +19376,11 @@ function Pagination(props) {
|
|
|
19344
19376
|
return /* @__PURE__ */ jsxs69("div", { ...trussProps83({
|
|
19345
19377
|
display: "df",
|
|
19346
19378
|
borderColor: "bcGray200",
|
|
19347
|
-
borderTopStyle: "
|
|
19348
|
-
borderTopWidth: "
|
|
19379
|
+
borderTopStyle: "bts_solid",
|
|
19380
|
+
borderTopWidth: "btw_1px",
|
|
19349
19381
|
fontWeight: "fw4",
|
|
19350
|
-
fontSize: "
|
|
19351
|
-
lineHeight: "
|
|
19382
|
+
fontSize: "fz_12px",
|
|
19383
|
+
lineHeight: "lh_16px",
|
|
19352
19384
|
color: "gray500",
|
|
19353
19385
|
paddingLeft: "pl2",
|
|
19354
19386
|
paddingRight: "pr2",
|
|
@@ -19463,11 +19495,11 @@ function EditColumnsButton(props) {
|
|
|
19463
19495
|
options.map((option) => /* @__PURE__ */ jsxs70(Fragment32, { children: [
|
|
19464
19496
|
/* @__PURE__ */ jsx140("div", { ...trussProps84({
|
|
19465
19497
|
fontWeight: "fw4",
|
|
19466
|
-
fontSize: "
|
|
19467
|
-
lineHeight: "
|
|
19498
|
+
fontSize: "fz_14px",
|
|
19499
|
+
lineHeight: "lh_20px",
|
|
19468
19500
|
whiteSpace: "wsnw",
|
|
19469
19501
|
overflow: "oh",
|
|
19470
|
-
textOverflow: "
|
|
19502
|
+
textOverflow: "to_ellipsis",
|
|
19471
19503
|
paddingRight: "pr1"
|
|
19472
19504
|
}), children: option.label }),
|
|
19473
19505
|
/* @__PURE__ */ jsx140(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}`] })
|
|
@@ -19791,8 +19823,8 @@ function Header2(props) {
|
|
|
19791
19823
|
breadcrumb && /* @__PURE__ */ jsx145(PageHeaderBreadcrumbs, { breadcrumb }),
|
|
19792
19824
|
/* @__PURE__ */ jsx145("h1", { ...trussProps88({
|
|
19793
19825
|
fontWeight: "fw6",
|
|
19794
|
-
fontSize: "
|
|
19795
|
-
lineHeight: "
|
|
19826
|
+
fontSize: "fz_30px",
|
|
19827
|
+
lineHeight: "lh_36px",
|
|
19796
19828
|
marginTop: "mt1"
|
|
19797
19829
|
}), ...tids.pageTitle, children: pageTitle })
|
|
19798
19830
|
] }),
|
|
@@ -20183,8 +20215,8 @@ function GroupButton(props) {
|
|
|
20183
20215
|
children: /* @__PURE__ */ jsxs77("button", { ref, ...buttonProps, ...focusProps, ...hoverProps, ...trussProps91({
|
|
20184
20216
|
...{
|
|
20185
20217
|
fontWeight: "fw6",
|
|
20186
|
-
fontSize: "
|
|
20187
|
-
lineHeight: "
|
|
20218
|
+
fontSize: "fz_14px",
|
|
20219
|
+
lineHeight: "lh_20px",
|
|
20188
20220
|
outline: "outline0",
|
|
20189
20221
|
borderRadius: "br0",
|
|
20190
20222
|
display: "dif",
|
|
@@ -20267,12 +20299,12 @@ var sizeStyles2 = {
|
|
|
20267
20299
|
};
|
|
20268
20300
|
var iconStyles2 = {
|
|
20269
20301
|
xs: {
|
|
20270
|
-
paddingLeft: "
|
|
20271
|
-
paddingRight: "
|
|
20302
|
+
paddingLeft: "pl_2px",
|
|
20303
|
+
paddingRight: "pr_2px"
|
|
20272
20304
|
},
|
|
20273
20305
|
sm: {
|
|
20274
|
-
paddingLeft: "
|
|
20275
|
-
paddingRight: "
|
|
20306
|
+
paddingLeft: "pl_4px",
|
|
20307
|
+
paddingRight: "pr_4px"
|
|
20276
20308
|
},
|
|
20277
20309
|
md: {
|
|
20278
20310
|
paddingLeft: "pl1",
|
|
@@ -20315,15 +20347,15 @@ function Tag(props) {
|
|
|
20315
20347
|
...{
|
|
20316
20348
|
display: "dif",
|
|
20317
20349
|
fontWeight: "fw6",
|
|
20318
|
-
fontSize: "
|
|
20319
|
-
lineHeight: "
|
|
20350
|
+
fontSize: "fz_10px",
|
|
20351
|
+
lineHeight: "lh_14px",
|
|
20320
20352
|
textTransform: "ttu",
|
|
20321
20353
|
alignItems: "aic",
|
|
20322
20354
|
gap: "gap_4px",
|
|
20323
|
-
paddingLeft: "
|
|
20324
|
-
paddingRight: "
|
|
20325
|
-
paddingTop: "
|
|
20326
|
-
paddingBottom: "
|
|
20355
|
+
paddingLeft: "pl_6px",
|
|
20356
|
+
paddingRight: "pr_6px",
|
|
20357
|
+
paddingTop: "pt_2px",
|
|
20358
|
+
paddingBottom: "pb_2px",
|
|
20327
20359
|
color: "gray900",
|
|
20328
20360
|
borderRadius: "br4"
|
|
20329
20361
|
},
|
|
@@ -20335,10 +20367,10 @@ function Tag(props) {
|
|
|
20335
20367
|
}), children: /* @__PURE__ */ jsx152(Icon, { icon: otherProps.icon, inc: 1.5 }) }),
|
|
20336
20368
|
/* @__PURE__ */ jsx152("span", { ref, ...trussProps92({
|
|
20337
20369
|
overflow: "oh",
|
|
20338
|
-
display: "
|
|
20339
|
-
WebkitBoxOrient: "
|
|
20340
|
-
textOverflow: "
|
|
20341
|
-
WebkitLineClamp: "
|
|
20370
|
+
display: "d_negwebkit_box",
|
|
20371
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
20372
|
+
textOverflow: "to_ellipsis",
|
|
20373
|
+
WebkitLineClamp: "wlc_1",
|
|
20342
20374
|
wordBreak: "wbba"
|
|
20343
20375
|
}), children: text })
|
|
20344
20376
|
] })
|
|
@@ -20452,14 +20484,14 @@ function Card(props) {
|
|
|
20452
20484
|
/* @__PURE__ */ jsxs79("div", { children: [
|
|
20453
20485
|
/* @__PURE__ */ jsx153("div", { ...trussProps93({
|
|
20454
20486
|
fontWeight: "fw6",
|
|
20455
|
-
fontSize: "
|
|
20456
|
-
lineHeight: "
|
|
20487
|
+
fontSize: "fz_12px",
|
|
20488
|
+
lineHeight: "lh_16px",
|
|
20457
20489
|
color: "gray700"
|
|
20458
20490
|
}), ...tid.subtitle, children: subtitle }),
|
|
20459
20491
|
/* @__PURE__ */ jsx153("div", { ...trussProps93({
|
|
20460
20492
|
fontWeight: "fw6",
|
|
20461
|
-
fontSize: "
|
|
20462
|
-
lineHeight: "
|
|
20493
|
+
fontSize: "fz_14px",
|
|
20494
|
+
lineHeight: "lh_20px",
|
|
20463
20495
|
color: "gray900",
|
|
20464
20496
|
...isHovered ? {
|
|
20465
20497
|
color: "blue700"
|
|
@@ -20520,8 +20552,8 @@ function Copy(props) {
|
|
|
20520
20552
|
return /* @__PURE__ */ jsx154("div", { ...mergeProps22("beam-copy", void 0, {
|
|
20521
20553
|
...{
|
|
20522
20554
|
fontWeight: "fw4",
|
|
20523
|
-
fontSize: "
|
|
20524
|
-
lineHeight: "
|
|
20555
|
+
fontSize: "fz_14px",
|
|
20556
|
+
lineHeight: "lh_20px",
|
|
20525
20557
|
color: "gray700",
|
|
20526
20558
|
marginTop: "mt2",
|
|
20527
20559
|
marginBottom: "mb3",
|
|
@@ -21035,17 +21067,17 @@ function MaxLines({
|
|
|
21035
21067
|
WebkitLineClamp: ["lineClamp_var", {
|
|
21036
21068
|
"--WebkitLineClamp": maxLines
|
|
21037
21069
|
}],
|
|
21038
|
-
overflow: "
|
|
21039
|
-
display: "
|
|
21040
|
-
WebkitBoxOrient: "
|
|
21041
|
-
textOverflow: "
|
|
21070
|
+
overflow: "oh",
|
|
21071
|
+
display: "d_negwebkit_box",
|
|
21072
|
+
WebkitBoxOrient: "wbo_vertical",
|
|
21073
|
+
textOverflow: "to_ellipsis"
|
|
21042
21074
|
} : {}
|
|
21043
21075
|
}), children }),
|
|
21044
21076
|
hasMore && /* @__PURE__ */ jsx160("button", { ...trussProps97({
|
|
21045
21077
|
display: "db",
|
|
21046
21078
|
fontWeight: "fw4",
|
|
21047
|
-
fontSize: "
|
|
21048
|
-
lineHeight: "
|
|
21079
|
+
fontSize: "fz_14px",
|
|
21080
|
+
lineHeight: "lh_20px"
|
|
21049
21081
|
}), onClick: () => setExpanded((prev) => !prev), children: expanded ? "Show Less" : "Show More" })
|
|
21050
21082
|
] });
|
|
21051
21083
|
}
|
|
@@ -21273,9 +21305,9 @@ function Stepper(props) {
|
|
|
21273
21305
|
width: "w100"
|
|
21274
21306
|
}), ...tid, children: [
|
|
21275
21307
|
/* @__PURE__ */ jsx162("ol", { ...trussProps99({
|
|
21276
|
-
padding: "
|
|
21277
|
-
margin: "
|
|
21278
|
-
listStyle: "
|
|
21308
|
+
padding: "p_0",
|
|
21309
|
+
margin: "m_0",
|
|
21310
|
+
listStyle: "lis_none",
|
|
21279
21311
|
display: "df",
|
|
21280
21312
|
gap: ["gap_var", {
|
|
21281
21313
|
"--gap": `${gap}px`
|
|
@@ -21349,8 +21381,8 @@ function StepButton(props) {
|
|
|
21349
21381
|
return /* @__PURE__ */ jsxs83("button", { ref, ...buttonProps, ...focusProps, ...hoverProps, ...trussProps99({
|
|
21350
21382
|
...{
|
|
21351
21383
|
fontWeight: "fw6",
|
|
21352
|
-
fontSize: "
|
|
21353
|
-
lineHeight: "
|
|
21384
|
+
fontSize: "fz_14px",
|
|
21385
|
+
lineHeight: "lh_20px",
|
|
21354
21386
|
outline: "outline0",
|
|
21355
21387
|
borderRadius: "br8",
|
|
21356
21388
|
display: "dif",
|
|
@@ -21363,8 +21395,8 @@ function StepButton(props) {
|
|
|
21363
21395
|
width: "w100",
|
|
21364
21396
|
height: "h100",
|
|
21365
21397
|
fontWeight: "fw4",
|
|
21366
|
-
fontSize: "
|
|
21367
|
-
lineHeight: "
|
|
21398
|
+
fontSize: "fz_14px",
|
|
21399
|
+
lineHeight: "lh_20px",
|
|
21368
21400
|
color: "gray700",
|
|
21369
21401
|
whiteSpace: "whiteSpace_initial",
|
|
21370
21402
|
...state === "error" ? {
|
|
@@ -21477,8 +21509,8 @@ function SuperDrawerHeader(props) {
|
|
|
21477
21509
|
}), children: [
|
|
21478
21510
|
/* @__PURE__ */ jsx163("h1", { ...trussProps100({
|
|
21479
21511
|
fontWeight: "fw6",
|
|
21480
|
-
fontSize: "
|
|
21481
|
-
lineHeight: "
|
|
21512
|
+
fontSize: "fz_30px",
|
|
21513
|
+
lineHeight: "lh_36px"
|
|
21482
21514
|
}), children: props.title }),
|
|
21483
21515
|
props.left
|
|
21484
21516
|
] }),
|
|
@@ -21746,8 +21778,8 @@ var SuperDrawerContent = ({
|
|
|
21746
21778
|
return /* @__PURE__ */ jsxs86(Fragment38, { children: [
|
|
21747
21779
|
wrapWithMotionAndMaybeBack(children),
|
|
21748
21780
|
actions && /* @__PURE__ */ jsx166("footer", { ...trussProps101({
|
|
21749
|
-
borderTopStyle: "
|
|
21750
|
-
borderTopWidth: "
|
|
21781
|
+
borderTopStyle: "bts_solid",
|
|
21782
|
+
borderTopWidth: "btw_1px",
|
|
21751
21783
|
borderColor: "bcGray200",
|
|
21752
21784
|
paddingTop: "pt3",
|
|
21753
21785
|
paddingBottom: "pb3",
|
|
@@ -21869,8 +21901,8 @@ function Tabs(props) {
|
|
|
21869
21901
|
},
|
|
21870
21902
|
...includeBottomBorder ? {
|
|
21871
21903
|
...{
|
|
21872
|
-
borderBottomStyle: "
|
|
21873
|
-
borderBottomWidth: "
|
|
21904
|
+
borderBottomStyle: "bbs_solid",
|
|
21905
|
+
borderBottomWidth: "bbw_1px",
|
|
21874
21906
|
borderColor: "bcGray200"
|
|
21875
21907
|
}
|
|
21876
21908
|
} : {}
|
|
@@ -21970,7 +22002,7 @@ function getTabStyles() {
|
|
|
21970
22002
|
const borderBottomWidthPx = 4;
|
|
21971
22003
|
const verticalPaddingPx = 6;
|
|
21972
22004
|
const borderBottomStyles = {
|
|
21973
|
-
borderBottomStyle: "
|
|
22005
|
+
borderBottomStyle: "bbs_solid",
|
|
21974
22006
|
borderBottomWidth: ["borderBottomWidth_var", {
|
|
21975
22007
|
"--borderBottomWidth": `${borderBottomWidthPx}px`
|
|
21976
22008
|
}],
|
|
@@ -21996,15 +22028,15 @@ function getTabStyles() {
|
|
|
21996
22028
|
width: "width_fit_content",
|
|
21997
22029
|
cursor: "cursorPointer",
|
|
21998
22030
|
fontWeight: "fw4",
|
|
21999
|
-
fontSize: "
|
|
22000
|
-
lineHeight: "
|
|
22031
|
+
fontSize: "fz_14px",
|
|
22032
|
+
lineHeight: "lh_20px"
|
|
22001
22033
|
},
|
|
22002
22034
|
activeStyles: {
|
|
22003
22035
|
...{
|
|
22004
22036
|
borderColor: "bcBlue700",
|
|
22005
22037
|
fontWeight: "fw6",
|
|
22006
|
-
fontSize: "
|
|
22007
|
-
lineHeight: "
|
|
22038
|
+
fontSize: "fz_14px",
|
|
22039
|
+
lineHeight: "lh_20px",
|
|
22008
22040
|
color: "gray900"
|
|
22009
22041
|
},
|
|
22010
22042
|
...borderBottomStyles
|
|
@@ -22254,6 +22286,7 @@ export {
|
|
|
22254
22286
|
formatValue,
|
|
22255
22287
|
generateColumnId,
|
|
22256
22288
|
getAlignment,
|
|
22289
|
+
getColumnBorderCss,
|
|
22257
22290
|
getDateFormat,
|
|
22258
22291
|
getFirstOrLastCellCss,
|
|
22259
22292
|
getJustification,
|