@procore/data-table 14.23.2 → 14.25.0
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/CHANGELOG.md +21 -0
- package/dist/legacy/index.cjs +350 -142
- package/dist/legacy/index.js +347 -138
- package/dist/modern/index.cjs +350 -142
- package/dist/modern/index.js +347 -138
- package/package.json +3 -3
package/dist/legacy/index.js
CHANGED
|
@@ -7,6 +7,7 @@ import { Error as Error$1, Grip, Pencil, Building, ExternalLink, Clear, Calendar
|
|
|
7
7
|
import classNames from 'classnames';
|
|
8
8
|
import { isDate, parseISO, isSameDay, formatISO, isBefore } from 'date-fns';
|
|
9
9
|
import { formatNumber, formatCurrency, formatPercentage } from '@procore/labs-financials-utils';
|
|
10
|
+
import styled4, { css as css$1 } from 'styled-components';
|
|
10
11
|
import { format } from '@procore/labs-financials-utils/dist/format';
|
|
11
12
|
import { detectPrng, factory } from 'ulid';
|
|
12
13
|
import { useToastAlertContext, ToastAlertProvider } from '@procore/toast-alert';
|
|
@@ -14,10 +15,9 @@ import ReactDOM, { createPortal } from 'react-dom';
|
|
|
14
15
|
import { renderToString, renderToStaticMarkup } from 'react-dom/server';
|
|
15
16
|
import { storage } from '@procore/web-sdk-storage';
|
|
16
17
|
import _isEqual from 'lodash.isequal';
|
|
17
|
-
import
|
|
18
|
+
import { useResizeDetector } from 'react-resize-detector';
|
|
18
19
|
import { DateTimeSelectField } from '@procore/labs-datetime-select';
|
|
19
20
|
import Decimal from 'decimal.js';
|
|
20
|
-
import styled3, { css as css$1 } from 'styled-components';
|
|
21
21
|
import { getDatePlaceholder } from '@procore/globalization-toolkit';
|
|
22
22
|
import { GroupBySelect } from '@procore/labs-group-by-select';
|
|
23
23
|
|
|
@@ -8675,6 +8675,9 @@ function getDateObject(date) {
|
|
|
8675
8675
|
}
|
|
8676
8676
|
return date;
|
|
8677
8677
|
}
|
|
8678
|
+
var StyledDateSelect = styled4(DateSelect)`
|
|
8679
|
+
background-color: #ffffff;
|
|
8680
|
+
`;
|
|
8678
8681
|
var DateCellValue = ({
|
|
8679
8682
|
columnDefinition,
|
|
8680
8683
|
isGroup,
|
|
@@ -8725,7 +8728,7 @@ var Editor2 = React77.forwardRef(
|
|
|
8725
8728
|
timeZone: (_a = columnDefinition.cellEditorParams) == null ? void 0 : _a.timeZone
|
|
8726
8729
|
},
|
|
8727
8730
|
/* @__PURE__ */ React77.createElement(
|
|
8728
|
-
|
|
8731
|
+
StyledDateSelect,
|
|
8729
8732
|
{
|
|
8730
8733
|
afterHide,
|
|
8731
8734
|
className: cx4("input-cell"),
|
|
@@ -55278,6 +55281,17 @@ function transformServerSideRequestObj(request, filtersState, searchValue) {
|
|
|
55278
55281
|
)
|
|
55279
55282
|
};
|
|
55280
55283
|
}
|
|
55284
|
+
function isNumberFilterCondition(item) {
|
|
55285
|
+
return item && [
|
|
55286
|
+
"lessThan",
|
|
55287
|
+
"greaterThan",
|
|
55288
|
+
"isEqual",
|
|
55289
|
+
"inRange",
|
|
55290
|
+
"greaterThanOrEqual",
|
|
55291
|
+
"lessThanOrEqual",
|
|
55292
|
+
"no_value"
|
|
55293
|
+
].includes(item.type);
|
|
55294
|
+
}
|
|
55281
55295
|
var transformFilterValue = (value, field, formatter) => {
|
|
55282
55296
|
const formattedValue = formatter == null ? void 0 : formatter(value, field);
|
|
55283
55297
|
if (formattedValue)
|
|
@@ -55286,6 +55300,33 @@ var transformFilterValue = (value, field, formatter) => {
|
|
|
55286
55300
|
return formatISO(value.date, { representation: "date" });
|
|
55287
55301
|
return value.toString();
|
|
55288
55302
|
};
|
|
55303
|
+
function buildNumberFilterParams(filters) {
|
|
55304
|
+
return filters.reduce((acc, filter, idx) => {
|
|
55305
|
+
const singleExpr = mapFilterToQueryParam(filter);
|
|
55306
|
+
if (idx === 0)
|
|
55307
|
+
return singleExpr;
|
|
55308
|
+
const separator = filter.operator === "or" ? "|" : ",";
|
|
55309
|
+
return acc + separator + singleExpr;
|
|
55310
|
+
}, "");
|
|
55311
|
+
}
|
|
55312
|
+
function mapFilterToQueryParam(filter) {
|
|
55313
|
+
const operatorMap = {
|
|
55314
|
+
lessThan: "lt",
|
|
55315
|
+
lessThanOrEqual: "lte",
|
|
55316
|
+
greaterThan: "gt",
|
|
55317
|
+
greaterThanOrEqual: "gte",
|
|
55318
|
+
isEqual: "eq",
|
|
55319
|
+
inRange: "range",
|
|
55320
|
+
no_value: "null"
|
|
55321
|
+
};
|
|
55322
|
+
if (filter.type === "inRange") {
|
|
55323
|
+
return `range:${filter.value}-${filter.valueTo}`;
|
|
55324
|
+
}
|
|
55325
|
+
if (filter.type === "no_value") {
|
|
55326
|
+
return "null";
|
|
55327
|
+
}
|
|
55328
|
+
return operatorMap[filter.type] ? `${operatorMap[filter.type]}:${filter.value}` : String(filter.value ?? "");
|
|
55329
|
+
}
|
|
55289
55330
|
function getServerSideParams(request, filtersState, searchValue, options = {}) {
|
|
55290
55331
|
var _a;
|
|
55291
55332
|
const params = new URLSearchParams();
|
|
@@ -55310,10 +55351,17 @@ function getServerSideParams(request, filtersState, searchValue, options = {}) {
|
|
|
55310
55351
|
if (options.filters !== false) {
|
|
55311
55352
|
const formatter = options.filterValueFormatter;
|
|
55312
55353
|
filtersState.forEach((filter) => {
|
|
55313
|
-
const
|
|
55314
|
-
|
|
55315
|
-
)
|
|
55316
|
-
|
|
55354
|
+
const isNumericCondition = filter.selected.every(isNumberFilterCondition);
|
|
55355
|
+
const hasCustomFormatter = typeof formatter === "function";
|
|
55356
|
+
if (isNumericCondition && filter.selected.length > 0 && !hasCustomFormatter) {
|
|
55357
|
+
const numericExpr = buildNumberFilterParams(filter.selected);
|
|
55358
|
+
params.set(`filters[${filter.field}]`, numericExpr);
|
|
55359
|
+
} else {
|
|
55360
|
+
const value = filter.selected.length === 1 ? transformFilterValue(filter.selected[0], filter.field, formatter) : `[${filter.selected.map(
|
|
55361
|
+
(val) => transformFilterValue(val, filter.field, formatter)
|
|
55362
|
+
)}]`;
|
|
55363
|
+
params.set(`filters[${filter.field}]`, value);
|
|
55364
|
+
}
|
|
55317
55365
|
});
|
|
55318
55366
|
request.groupKeys.forEach((groupKey, index) => {
|
|
55319
55367
|
params.set(`filters[${request.rowGroupCols[index].field}]`, groupKey);
|
|
@@ -56517,6 +56565,7 @@ var getMainMenuItems = (props, I18n) => {
|
|
|
56517
56565
|
value: "resetColumns",
|
|
56518
56566
|
action() {
|
|
56519
56567
|
props.columnApi.resetColumnState();
|
|
56568
|
+
props.onTableConfigChange();
|
|
56520
56569
|
}
|
|
56521
56570
|
};
|
|
56522
56571
|
const rowUngroup = {
|
|
@@ -56525,7 +56574,6 @@ var getMainMenuItems = (props, I18n) => {
|
|
|
56525
56574
|
}),
|
|
56526
56575
|
value: "rowUnGroup",
|
|
56527
56576
|
action() {
|
|
56528
|
-
props.columnApi.resetColumnState();
|
|
56529
56577
|
props.columnApi.removeRowGroupColumn(props.column);
|
|
56530
56578
|
}
|
|
56531
56579
|
};
|
|
@@ -56535,7 +56583,6 @@ var getMainMenuItems = (props, I18n) => {
|
|
|
56535
56583
|
}),
|
|
56536
56584
|
value: "rowGroup",
|
|
56537
56585
|
action() {
|
|
56538
|
-
props.columnApi.resetColumnState();
|
|
56539
56586
|
props.columnApi.addRowGroupColumn(props.column);
|
|
56540
56587
|
}
|
|
56541
56588
|
};
|
|
@@ -56793,8 +56840,18 @@ var GenericHeaderRenderer = (props) => {
|
|
|
56793
56840
|
const onSSDR = Boolean(onServerSideDataRequest);
|
|
56794
56841
|
const [sortOrder, setSortOrder] = React77.useState(props.column.getSort());
|
|
56795
56842
|
const [isFirstColumn2, setIsFirstColumn] = React77.useState(false);
|
|
56843
|
+
const [isRowGroupActive, setIsRowGroupActive] = React77.useState(
|
|
56844
|
+
() => props.column.isRowGroupActive()
|
|
56845
|
+
);
|
|
56796
56846
|
const defaultMenuOptions = getMainMenuItems(
|
|
56797
|
-
{
|
|
56847
|
+
{
|
|
56848
|
+
...props,
|
|
56849
|
+
menuConfig: {
|
|
56850
|
+
...props.menuConfig,
|
|
56851
|
+
isRowGroupActive
|
|
56852
|
+
},
|
|
56853
|
+
onTableConfigChange
|
|
56854
|
+
},
|
|
56798
56855
|
I18n
|
|
56799
56856
|
);
|
|
56800
56857
|
const headerCellRef = useRef(null);
|
|
@@ -56808,6 +56865,18 @@ var GenericHeaderRenderer = (props) => {
|
|
|
56808
56865
|
}) : !!headerCheckboxSelection;
|
|
56809
56866
|
const checkbox = useRef(null);
|
|
56810
56867
|
const colId = props.column.getId();
|
|
56868
|
+
React77.useEffect(() => {
|
|
56869
|
+
const onRowGroupChanged = () => {
|
|
56870
|
+
setIsRowGroupActive(props.column.isRowGroupActive());
|
|
56871
|
+
};
|
|
56872
|
+
props.column.addEventListener("columnRowGroupChanged", onRowGroupChanged);
|
|
56873
|
+
return () => {
|
|
56874
|
+
props.column.removeEventListener(
|
|
56875
|
+
"columnRowGroupChanged",
|
|
56876
|
+
onRowGroupChanged
|
|
56877
|
+
);
|
|
56878
|
+
};
|
|
56879
|
+
}, []);
|
|
56811
56880
|
React77.useEffect(() => {
|
|
56812
56881
|
function calculatePosition() {
|
|
56813
56882
|
const columns = props.columnApi.getColumnState();
|
|
@@ -105116,6 +105185,19 @@ function getRootRowNode(rowNode) {
|
|
|
105116
105185
|
return rowNode.level > 0 && rowNode.parent ? getRootRowNode(rowNode.parent) : rowNode;
|
|
105117
105186
|
}
|
|
105118
105187
|
|
|
105188
|
+
// src/utils/mergeRefs.ts
|
|
105189
|
+
function mergeRefs(...refs) {
|
|
105190
|
+
return (value) => {
|
|
105191
|
+
refs.forEach((ref) => {
|
|
105192
|
+
if (typeof ref === "function") {
|
|
105193
|
+
ref(value);
|
|
105194
|
+
} else if (ref != null) {
|
|
105195
|
+
ref.current = value;
|
|
105196
|
+
}
|
|
105197
|
+
});
|
|
105198
|
+
};
|
|
105199
|
+
}
|
|
105200
|
+
|
|
105119
105201
|
// src/utils/setSiblingGroupsRowSelection.ts
|
|
105120
105202
|
function setSiblingGroupsRowSelection(groupIndex, gridApi) {
|
|
105121
105203
|
gridApi == null ? void 0 : gridApi.forEachNode((node) => {
|
|
@@ -105196,6 +105278,12 @@ var de_DE_default = {
|
|
|
105196
105278
|
less_than_equal_to: "Ist kleiner als oder gleich",
|
|
105197
105279
|
no_value: "Kein Wert"
|
|
105198
105280
|
}
|
|
105281
|
+
},
|
|
105282
|
+
multiSelectQuickFilter: {
|
|
105283
|
+
ariaLabel: "Schnell-Filter: mehrere Optionen ausw\xE4hlen"
|
|
105284
|
+
},
|
|
105285
|
+
singleSelectQuickFilter: {
|
|
105286
|
+
ariaLabel: "Schnell-Filter: eine Option ausw\xE4hlen"
|
|
105199
105287
|
}
|
|
105200
105288
|
},
|
|
105201
105289
|
loading: {
|
|
@@ -105282,6 +105370,9 @@ var de_DE_default = {
|
|
|
105282
105370
|
groupCell: {
|
|
105283
105371
|
expand: "Gruppe erweitern",
|
|
105284
105372
|
collapse: "Gruppe ausblenden"
|
|
105373
|
+
},
|
|
105374
|
+
rowCheckbox: {
|
|
105375
|
+
ariaLabel: "Zeile ausw\xE4hlen"
|
|
105285
105376
|
}
|
|
105286
105377
|
}
|
|
105287
105378
|
};
|
|
@@ -105347,6 +105438,12 @@ var en_AU_default = {
|
|
|
105347
105438
|
less_than_equal_to: "Is less than or equal to",
|
|
105348
105439
|
no_value: "No value"
|
|
105349
105440
|
}
|
|
105441
|
+
},
|
|
105442
|
+
multiSelectQuickFilter: {
|
|
105443
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
105444
|
+
},
|
|
105445
|
+
singleSelectQuickFilter: {
|
|
105446
|
+
ariaLabel: "Quick filter: Select an option"
|
|
105350
105447
|
}
|
|
105351
105448
|
},
|
|
105352
105449
|
loading: {
|
|
@@ -105433,6 +105530,9 @@ var en_AU_default = {
|
|
|
105433
105530
|
groupCell: {
|
|
105434
105531
|
expand: "Expand group",
|
|
105435
105532
|
collapse: "Collapse group"
|
|
105533
|
+
},
|
|
105534
|
+
rowCheckbox: {
|
|
105535
|
+
ariaLabel: "Select row"
|
|
105436
105536
|
}
|
|
105437
105537
|
}
|
|
105438
105538
|
};
|
|
@@ -105498,6 +105598,12 @@ var en_CA_default = {
|
|
|
105498
105598
|
less_than_equal_to: "Is less than or equal to",
|
|
105499
105599
|
no_value: "No value"
|
|
105500
105600
|
}
|
|
105601
|
+
},
|
|
105602
|
+
multiSelectQuickFilter: {
|
|
105603
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
105604
|
+
},
|
|
105605
|
+
singleSelectQuickFilter: {
|
|
105606
|
+
ariaLabel: "Quick filter: Select an option"
|
|
105501
105607
|
}
|
|
105502
105608
|
},
|
|
105503
105609
|
loading: {
|
|
@@ -105584,6 +105690,9 @@ var en_CA_default = {
|
|
|
105584
105690
|
groupCell: {
|
|
105585
105691
|
expand: "Expand group",
|
|
105586
105692
|
collapse: "Collapse group"
|
|
105693
|
+
},
|
|
105694
|
+
rowCheckbox: {
|
|
105695
|
+
ariaLabel: "Select row"
|
|
105587
105696
|
}
|
|
105588
105697
|
}
|
|
105589
105698
|
};
|
|
@@ -105649,6 +105758,12 @@ var en_GB_default = {
|
|
|
105649
105758
|
less_than_equal_to: "Is less than or equal to",
|
|
105650
105759
|
no_value: "No value"
|
|
105651
105760
|
}
|
|
105761
|
+
},
|
|
105762
|
+
multiSelectQuickFilter: {
|
|
105763
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
105764
|
+
},
|
|
105765
|
+
singleSelectQuickFilter: {
|
|
105766
|
+
ariaLabel: "Quick filter: Select an option"
|
|
105652
105767
|
}
|
|
105653
105768
|
},
|
|
105654
105769
|
loading: {
|
|
@@ -105735,6 +105850,9 @@ var en_GB_default = {
|
|
|
105735
105850
|
groupCell: {
|
|
105736
105851
|
expand: "Expand group",
|
|
105737
105852
|
collapse: "Collapse group"
|
|
105853
|
+
},
|
|
105854
|
+
rowCheckbox: {
|
|
105855
|
+
ariaLabel: "Select row"
|
|
105738
105856
|
}
|
|
105739
105857
|
}
|
|
105740
105858
|
};
|
|
@@ -105960,6 +106078,12 @@ var es_ES_default = {
|
|
|
105960
106078
|
less_than_equal_to: "Es menor o igual que",
|
|
105961
106079
|
no_value: "Ning\xFAn valor"
|
|
105962
106080
|
}
|
|
106081
|
+
},
|
|
106082
|
+
multiSelectQuickFilter: {
|
|
106083
|
+
ariaLabel: "Filtro r\xE1pido: seleccionar varias opciones"
|
|
106084
|
+
},
|
|
106085
|
+
singleSelectQuickFilter: {
|
|
106086
|
+
ariaLabel: "Filtro r\xE1pido: seleccionar una opci\xF3n"
|
|
105963
106087
|
}
|
|
105964
106088
|
},
|
|
105965
106089
|
loading: {
|
|
@@ -106046,6 +106170,9 @@ var es_ES_default = {
|
|
|
106046
106170
|
groupCell: {
|
|
106047
106171
|
expand: "Expandir grupo",
|
|
106048
106172
|
collapse: "Contraer grupo"
|
|
106173
|
+
},
|
|
106174
|
+
rowCheckbox: {
|
|
106175
|
+
ariaLabel: "Seleccionar fila"
|
|
106049
106176
|
}
|
|
106050
106177
|
}
|
|
106051
106178
|
};
|
|
@@ -106111,6 +106238,12 @@ var es_default = {
|
|
|
106111
106238
|
less_than_equal_to: "Es menor o igual a",
|
|
106112
106239
|
no_value: "Ning\xFAn valor"
|
|
106113
106240
|
}
|
|
106241
|
+
},
|
|
106242
|
+
multiSelectQuickFilter: {
|
|
106243
|
+
ariaLabel: "Filtro r\xE1pido: Seleccione varias opciones"
|
|
106244
|
+
},
|
|
106245
|
+
singleSelectQuickFilter: {
|
|
106246
|
+
ariaLabel: "Filtro r\xE1pido: Seleccione una opci\xF3n"
|
|
106114
106247
|
}
|
|
106115
106248
|
},
|
|
106116
106249
|
loading: {
|
|
@@ -106197,6 +106330,9 @@ var es_default = {
|
|
|
106197
106330
|
groupCell: {
|
|
106198
106331
|
expand: "Expandir grupo",
|
|
106199
106332
|
collapse: "Colapsar grupo"
|
|
106333
|
+
},
|
|
106334
|
+
rowCheckbox: {
|
|
106335
|
+
ariaLabel: "Seleccionar fila"
|
|
106200
106336
|
}
|
|
106201
106337
|
}
|
|
106202
106338
|
};
|
|
@@ -106262,6 +106398,12 @@ var fr_CA_default = {
|
|
|
106262
106398
|
less_than_equal_to: "Est inf\xE9rieur ou \xE9gal \xE0",
|
|
106263
106399
|
no_value: "Aucune valeur"
|
|
106264
106400
|
}
|
|
106401
|
+
},
|
|
106402
|
+
multiSelectQuickFilter: {
|
|
106403
|
+
ariaLabel: "Filtre rapide\xA0: s\xE9lectionner plusieurs options"
|
|
106404
|
+
},
|
|
106405
|
+
singleSelectQuickFilter: {
|
|
106406
|
+
ariaLabel: "Filtre rapide\xA0: s\xE9lectionner une option"
|
|
106265
106407
|
}
|
|
106266
106408
|
},
|
|
106267
106409
|
loading: {
|
|
@@ -106348,6 +106490,9 @@ var fr_CA_default = {
|
|
|
106348
106490
|
groupCell: {
|
|
106349
106491
|
expand: "D\xE9velopper le groupe",
|
|
106350
106492
|
collapse: "R\xE9duire le groupe"
|
|
106493
|
+
},
|
|
106494
|
+
rowCheckbox: {
|
|
106495
|
+
ariaLabel: "S\xE9lectionner une ligne"
|
|
106351
106496
|
}
|
|
106352
106497
|
}
|
|
106353
106498
|
};
|
|
@@ -106413,6 +106558,12 @@ var fr_FR_default = {
|
|
|
106413
106558
|
less_than_equal_to: "Est inf\xE9rieure ou \xE9gale \xE0",
|
|
106414
106559
|
no_value: "Aucune valeur"
|
|
106415
106560
|
}
|
|
106561
|
+
},
|
|
106562
|
+
multiSelectQuickFilter: {
|
|
106563
|
+
ariaLabel: "Filtre rapide : s\xE9lectionnez plusieurs options"
|
|
106564
|
+
},
|
|
106565
|
+
singleSelectQuickFilter: {
|
|
106566
|
+
ariaLabel: "Filtre rapide : s\xE9lectionnez une option"
|
|
106416
106567
|
}
|
|
106417
106568
|
},
|
|
106418
106569
|
loading: {
|
|
@@ -106499,6 +106650,9 @@ var fr_FR_default = {
|
|
|
106499
106650
|
groupCell: {
|
|
106500
106651
|
expand: "D\xE9velopper le groupe",
|
|
106501
106652
|
collapse: "R\xE9duire le groupe"
|
|
106653
|
+
},
|
|
106654
|
+
rowCheckbox: {
|
|
106655
|
+
ariaLabel: "S\xE9lectionner une ligne"
|
|
106502
106656
|
}
|
|
106503
106657
|
}
|
|
106504
106658
|
};
|
|
@@ -106564,6 +106718,12 @@ var is_IS_default = {
|
|
|
106564
106718
|
less_than_equal_to: "Er minna en e\xF0a jafnt",
|
|
106565
106719
|
no_value: "Ekkert gildi"
|
|
106566
106720
|
}
|
|
106721
|
+
},
|
|
106722
|
+
multiSelectQuickFilter: {
|
|
106723
|
+
ariaLabel: "Flj\xF3tleg s\xEDa: Veldu marga valkosti"
|
|
106724
|
+
},
|
|
106725
|
+
singleSelectQuickFilter: {
|
|
106726
|
+
ariaLabel: "Hra\xF0s\xEDa: Veldu valkost"
|
|
106567
106727
|
}
|
|
106568
106728
|
},
|
|
106569
106729
|
loading: {
|
|
@@ -106650,6 +106810,9 @@ var is_IS_default = {
|
|
|
106650
106810
|
groupCell: {
|
|
106651
106811
|
expand: "St\xE6kka h\xF3pinn",
|
|
106652
106812
|
collapse: "Hrunh\xF3pur"
|
|
106813
|
+
},
|
|
106814
|
+
rowCheckbox: {
|
|
106815
|
+
ariaLabel: "Veldu R\xF6\xF0"
|
|
106653
106816
|
}
|
|
106654
106817
|
}
|
|
106655
106818
|
};
|
|
@@ -106715,6 +106878,12 @@ var ja_JP_default = {
|
|
|
106715
106878
|
less_than_equal_to: "\u4EE5\u4E0B\u3067\u3059",
|
|
106716
106879
|
no_value: "\u5024\u304C\u3042\u308A\u307E\u305B\u3093"
|
|
106717
106880
|
}
|
|
106881
|
+
},
|
|
106882
|
+
multiSelectQuickFilter: {
|
|
106883
|
+
ariaLabel: "\u30AF\u30A4\u30C3\u30AF\u30D5\u30A3\u30EB\u30BF\u30FC: \u8907\u6570\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u9078\u629E"
|
|
106884
|
+
},
|
|
106885
|
+
singleSelectQuickFilter: {
|
|
106886
|
+
ariaLabel: "\u30AF\u30A4\u30C3\u30AF\u30D5\u30A3\u30EB\u30BF\u30FC: \u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u9078\u629E"
|
|
106718
106887
|
}
|
|
106719
106888
|
},
|
|
106720
106889
|
loading: {
|
|
@@ -106801,6 +106970,9 @@ var ja_JP_default = {
|
|
|
106801
106970
|
groupCell: {
|
|
106802
106971
|
expand: "\u30B0\u30EB\u30FC\u30D7\u3092\u5C55\u958B\u3059\u308B",
|
|
106803
106972
|
collapse: "\u30B0\u30EB\u30FC\u30D7\u3092\u6298\u308A\u305F\u305F\u3080"
|
|
106973
|
+
},
|
|
106974
|
+
rowCheckbox: {
|
|
106975
|
+
ariaLabel: "\u884C\u3092\u9078\u629E"
|
|
106804
106976
|
}
|
|
106805
106977
|
}
|
|
106806
106978
|
};
|
|
@@ -106832,7 +107004,7 @@ var pl_PL_default = {
|
|
|
106832
107004
|
bulkEdit: "Edycja masowa",
|
|
106833
107005
|
cancel: "Anuluj",
|
|
106834
107006
|
editValues: "Edytuj warto\u015Bci",
|
|
106835
|
-
error: "Przepraszamy, nie mo\u017Cna zaktualizowa\u0107 pozycji.Spr\xF3buj ponownie.",
|
|
107007
|
+
error: "Przepraszamy, nie mo\u017Cna zaktualizowa\u0107 pozycji. Spr\xF3buj ponownie.",
|
|
106836
107008
|
placeholderForField: "Wprowad\u017A %{fieldName}",
|
|
106837
107009
|
selection: "Wybrano %{count} %{number}",
|
|
106838
107010
|
success: "Pozycje zosta\u0142y pomy\u015Blnie zaktualizowane.",
|
|
@@ -106866,6 +107038,12 @@ var pl_PL_default = {
|
|
|
106866
107038
|
less_than_equal_to: "mniej ni\u017C lub r\xF3wne",
|
|
106867
107039
|
no_value: "brak warto\u015Bci"
|
|
106868
107040
|
}
|
|
107041
|
+
},
|
|
107042
|
+
multiSelectQuickFilter: {
|
|
107043
|
+
ariaLabel: "Szybki filtr: wybierz wiele opcji"
|
|
107044
|
+
},
|
|
107045
|
+
singleSelectQuickFilter: {
|
|
107046
|
+
ariaLabel: "Szybki filtr: wybierz opcj\u0119"
|
|
106869
107047
|
}
|
|
106870
107048
|
},
|
|
106871
107049
|
loading: {
|
|
@@ -106952,6 +107130,9 @@ var pl_PL_default = {
|
|
|
106952
107130
|
groupCell: {
|
|
106953
107131
|
expand: "Rozwi\u0144 grup\u0119",
|
|
106954
107132
|
collapse: "Zwi\u0144 grup\u0119"
|
|
107133
|
+
},
|
|
107134
|
+
rowCheckbox: {
|
|
107135
|
+
ariaLabel: "Wybierz wiersz"
|
|
106955
107136
|
}
|
|
106956
107137
|
}
|
|
106957
107138
|
};
|
|
@@ -107177,6 +107358,12 @@ var pt_BR_default = {
|
|
|
107177
107358
|
less_than_equal_to: "\xC9 Menor Que ou Igual a",
|
|
107178
107359
|
no_value: "Nenhum Valor"
|
|
107179
107360
|
}
|
|
107361
|
+
},
|
|
107362
|
+
multiSelectQuickFilter: {
|
|
107363
|
+
ariaLabel: "Filtro r\xE1pido: Selecione v\xE1rias op\xE7\xF5es"
|
|
107364
|
+
},
|
|
107365
|
+
singleSelectQuickFilter: {
|
|
107366
|
+
ariaLabel: "Filtro r\xE1pido: Selecione uma op\xE7\xE3o"
|
|
107180
107367
|
}
|
|
107181
107368
|
},
|
|
107182
107369
|
loading: {
|
|
@@ -107263,6 +107450,9 @@ var pt_BR_default = {
|
|
|
107263
107450
|
groupCell: {
|
|
107264
107451
|
expand: "Expandir grupo",
|
|
107265
107452
|
collapse: "Recolher grupo"
|
|
107453
|
+
},
|
|
107454
|
+
rowCheckbox: {
|
|
107455
|
+
ariaLabel: "Selecionar Linha"
|
|
107266
107456
|
}
|
|
107267
107457
|
}
|
|
107268
107458
|
};
|
|
@@ -107328,6 +107518,12 @@ var th_TH_default = {
|
|
|
107328
107518
|
less_than_equal_to: "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
107329
107519
|
no_value: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E04\u0E48\u0E32"
|
|
107330
107520
|
}
|
|
107521
|
+
},
|
|
107522
|
+
multiSelectQuickFilter: {
|
|
107523
|
+
ariaLabel: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E14\u0E48\u0E27\u0E19: \u0E40\u0E25\u0E37\u0E2D\u0E01\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2B\u0E25\u0E32\u0E22\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23"
|
|
107524
|
+
},
|
|
107525
|
+
singleSelectQuickFilter: {
|
|
107526
|
+
ariaLabel: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07\u0E14\u0E48\u0E27\u0E19: \u0E40\u0E25\u0E37\u0E2D\u0E01\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01"
|
|
107331
107527
|
}
|
|
107332
107528
|
},
|
|
107333
107529
|
loading: {
|
|
@@ -107414,6 +107610,9 @@ var th_TH_default = {
|
|
|
107414
107610
|
groupCell: {
|
|
107415
107611
|
expand: "\u0E02\u0E22\u0E32\u0E22\u0E01\u0E25\u0E38\u0E48\u0E21",
|
|
107416
107612
|
collapse: "\u0E01\u0E32\u0E23\u0E22\u0E38\u0E1A\u0E01\u0E25\u0E38\u0E48\u0E21"
|
|
107613
|
+
},
|
|
107614
|
+
rowCheckbox: {
|
|
107615
|
+
ariaLabel: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E41\u0E16\u0E27"
|
|
107417
107616
|
}
|
|
107418
107617
|
}
|
|
107419
107618
|
};
|
|
@@ -107479,6 +107678,12 @@ var zh_SG_default = {
|
|
|
107479
107678
|
less_than_equal_to: "\u5C0F\u4E8E\u6216\u7B49\u4E8E",
|
|
107480
107679
|
no_value: "\u65E0\u503C"
|
|
107481
107680
|
}
|
|
107681
|
+
},
|
|
107682
|
+
multiSelectQuickFilter: {
|
|
107683
|
+
ariaLabel: "\u5FEB\u901F\u7B5B\u9009\uFF1A\u9009\u62E9\u591A\u4E2A\u9009\u9879"
|
|
107684
|
+
},
|
|
107685
|
+
singleSelectQuickFilter: {
|
|
107686
|
+
ariaLabel: "\u5FEB\u901F\u7B5B\u9009\uFF1A\u9009\u62E9\u4E00\u4E2A\u9009\u9879"
|
|
107482
107687
|
}
|
|
107483
107688
|
},
|
|
107484
107689
|
loading: {
|
|
@@ -107565,6 +107770,9 @@ var zh_SG_default = {
|
|
|
107565
107770
|
groupCell: {
|
|
107566
107771
|
expand: "\u5C55\u5F00\u7EC4",
|
|
107567
107772
|
collapse: "\u6298\u53E0\u7EC4"
|
|
107773
|
+
},
|
|
107774
|
+
rowCheckbox: {
|
|
107775
|
+
ariaLabel: "\u9009\u62E9\u884C"
|
|
107568
107776
|
}
|
|
107569
107777
|
}
|
|
107570
107778
|
};
|
|
@@ -109618,6 +109826,15 @@ var Table = (props) => {
|
|
|
109618
109826
|
["onGridReady"],
|
|
109619
109827
|
props.UNSAFE_internalAGGridOverrides ?? {}
|
|
109620
109828
|
);
|
|
109829
|
+
const { ref: resizeRef } = useResizeDetector({
|
|
109830
|
+
onResize: onContainerResize,
|
|
109831
|
+
refreshMode: "debounce",
|
|
109832
|
+
refreshRate: 400
|
|
109833
|
+
});
|
|
109834
|
+
const combinedRef = React77.useCallback(
|
|
109835
|
+
mergeRefs(wrapperRef, resizeRef),
|
|
109836
|
+
[wrapperRef, resizeRef]
|
|
109837
|
+
);
|
|
109621
109838
|
return /* @__PURE__ */ React77.createElement(
|
|
109622
109839
|
Spinner,
|
|
109623
109840
|
{
|
|
@@ -109632,133 +109849,125 @@ var Table = (props) => {
|
|
|
109632
109849
|
}
|
|
109633
109850
|
},
|
|
109634
109851
|
/* @__PURE__ */ React77.createElement(
|
|
109635
|
-
|
|
109852
|
+
"div",
|
|
109636
109853
|
{
|
|
109637
|
-
|
|
109638
|
-
|
|
109639
|
-
|
|
109640
|
-
|
|
109641
|
-
/* @__PURE__ */ React77.createElement(
|
|
109642
|
-
"div",
|
|
109643
|
-
{
|
|
109644
|
-
style: {
|
|
109645
|
-
flex: 1,
|
|
109646
|
-
width: "100%",
|
|
109647
|
-
maxHeight: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
|
|
109648
|
-
},
|
|
109649
|
-
className: cx19("ag-theme-alpine", {
|
|
109650
|
-
"ag-suppress-column-virtualization": suppressColumnVirtualisation
|
|
109651
|
-
}),
|
|
109652
|
-
ref: wrapperRef,
|
|
109653
|
-
"data-qa": loadingStatus.loading ? "loading" : "loaded"
|
|
109854
|
+
style: {
|
|
109855
|
+
flex: 1,
|
|
109856
|
+
width: "100%",
|
|
109857
|
+
maxHeight: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
|
|
109654
109858
|
},
|
|
109655
|
-
|
|
109859
|
+
className: cx19("ag-theme-alpine", {
|
|
109860
|
+
"ag-suppress-column-virtualization": suppressColumnVirtualisation
|
|
109861
|
+
}),
|
|
109862
|
+
ref: combinedRef,
|
|
109863
|
+
"data-qa": loadingStatus.loading ? "loading" : "loaded"
|
|
109864
|
+
},
|
|
109865
|
+
/* @__PURE__ */ React77.createElement("style", null, `:root {
|
|
109656
109866
|
--viewport-width: ${viewportWidth}px;
|
|
109657
109867
|
--rowActions-width: ${rowActionsWidth.current}px;
|
|
109658
109868
|
}`),
|
|
109659
|
-
|
|
109660
|
-
|
|
109661
|
-
|
|
109662
|
-
|
|
109663
|
-
|
|
109664
|
-
|
|
109665
|
-
|
|
109666
|
-
|
|
109667
|
-
|
|
109668
|
-
|
|
109669
|
-
|
|
109670
|
-
|
|
109671
|
-
|
|
109672
|
-
|
|
109673
|
-
|
|
109674
|
-
|
|
109675
|
-
|
|
109676
|
-
|
|
109677
|
-
|
|
109678
|
-
|
|
109679
|
-
|
|
109680
|
-
|
|
109681
|
-
|
|
109682
|
-
|
|
109683
|
-
|
|
109684
|
-
|
|
109685
|
-
|
|
109686
|
-
|
|
109687
|
-
|
|
109688
|
-
|
|
109689
|
-
|
|
109690
|
-
|
|
109691
|
-
|
|
109692
|
-
|
|
109693
|
-
|
|
109694
|
-
|
|
109695
|
-
|
|
109696
|
-
|
|
109697
|
-
|
|
109698
|
-
|
|
109699
|
-
|
|
109700
|
-
|
|
109701
|
-
|
|
109702
|
-
|
|
109703
|
-
|
|
109704
|
-
|
|
109705
|
-
|
|
109706
|
-
|
|
109707
|
-
|
|
109708
|
-
|
|
109709
|
-
|
|
109710
|
-
|
|
109711
|
-
|
|
109712
|
-
|
|
109713
|
-
|
|
109714
|
-
|
|
109715
|
-
|
|
109716
|
-
|
|
109717
|
-
|
|
109718
|
-
|
|
109719
|
-
|
|
109720
|
-
|
|
109721
|
-
|
|
109722
|
-
|
|
109723
|
-
|
|
109724
|
-
|
|
109725
|
-
|
|
109726
|
-
|
|
109727
|
-
|
|
109728
|
-
|
|
109729
|
-
|
|
109730
|
-
|
|
109731
|
-
|
|
109732
|
-
|
|
109733
|
-
|
|
109734
|
-
|
|
109735
|
-
|
|
109736
|
-
|
|
109737
|
-
|
|
109738
|
-
|
|
109739
|
-
|
|
109740
|
-
|
|
109741
|
-
|
|
109742
|
-
|
|
109743
|
-
|
|
109744
|
-
|
|
109745
|
-
|
|
109746
|
-
|
|
109747
|
-
|
|
109748
|
-
|
|
109749
|
-
|
|
109750
|
-
|
|
109751
|
-
|
|
109752
|
-
|
|
109753
|
-
|
|
109754
|
-
|
|
109755
|
-
|
|
109756
|
-
|
|
109757
|
-
|
|
109758
|
-
|
|
109759
|
-
|
|
109760
|
-
|
|
109761
|
-
)
|
|
109869
|
+
/* @__PURE__ */ React77.createElement(
|
|
109870
|
+
AgGridReact,
|
|
109871
|
+
{
|
|
109872
|
+
aggFuncs: aggregationFunctions_exports,
|
|
109873
|
+
alwaysAggregateAtRootLevel: !onSSDR,
|
|
109874
|
+
autoGroupColumnDef: decoratedAutoGroupColDef,
|
|
109875
|
+
cacheBlockSize: props.paginationPageSize || defaultPaginationPageSize,
|
|
109876
|
+
isGroupOpenByDefault: isClientSideGroupOpenByDefault,
|
|
109877
|
+
isServerSideGroupOpenByDefault,
|
|
109878
|
+
defaultColDef,
|
|
109879
|
+
enableGroupEdit: internalTableContext.enableGroupEditAndValidation,
|
|
109880
|
+
enableCellTextSelection: internalTableContext.enableCellTextSelection,
|
|
109881
|
+
enableCellEditingOnBackspace: true,
|
|
109882
|
+
excelStyles: transformToExcelStyles(props.excelDataTypeFormats),
|
|
109883
|
+
components: frameworkComponents.base,
|
|
109884
|
+
fullWidthCellRenderer: FullWidthCellRenderer(
|
|
109885
|
+
props.fullWidthCellRenderer
|
|
109886
|
+
),
|
|
109887
|
+
getRowHeight: getMainTableRowHeight,
|
|
109888
|
+
getRowId: internalTableContext.getRowId,
|
|
109889
|
+
getRowStyle,
|
|
109890
|
+
groupAllowUnbalanced: true,
|
|
109891
|
+
groupDefaultExpanded: props.groupsAlwaysExpanded ? -1 : props.groupDefaultExpanded,
|
|
109892
|
+
groupIncludeFooter: !onSSDR && props.groupIncludeFooter === void 0 ? true : props.groupIncludeFooter,
|
|
109893
|
+
getGroupRowAgg: props.getGroupRowAgg ? getGroupRowAgg : void 0,
|
|
109894
|
+
groupSelectsChildren: internalTableContext.totalRowCount > 0 && props.groupSelectsChildren || !onSSDR,
|
|
109895
|
+
groupSelectsFiltered: true,
|
|
109896
|
+
headerHeight: props.headerHeight,
|
|
109897
|
+
icons: tableIcons,
|
|
109898
|
+
isFullWidthRow: (props2) => {
|
|
109899
|
+
const node = props2.rowNode;
|
|
109900
|
+
return isFullWidthRow(node);
|
|
109901
|
+
},
|
|
109902
|
+
initialGroupOrderComparator: props.initialGroupOrderComparator ? (params) => props.initialGroupOrderComparator(
|
|
109903
|
+
serializeNode(params.nodeA),
|
|
109904
|
+
serializeNode(params.nodeB)
|
|
109905
|
+
) : void 0,
|
|
109906
|
+
isRowSelectable,
|
|
109907
|
+
loadingOverlayComponent: "loadingOverlayRenderer",
|
|
109908
|
+
loadingOverlayComponentParams: {
|
|
109909
|
+
loading: true
|
|
109910
|
+
},
|
|
109911
|
+
maintainColumnOrder: props.maintainColumnOrder,
|
|
109912
|
+
modules: [
|
|
109913
|
+
...props.modules,
|
|
109914
|
+
MasterDetailModule,
|
|
109915
|
+
MenuModule,
|
|
109916
|
+
RowGroupingModule,
|
|
109917
|
+
SetFilterModule,
|
|
109918
|
+
CsvExportModule,
|
|
109919
|
+
ExcelExportModule,
|
|
109920
|
+
SparklinesModule
|
|
109921
|
+
],
|
|
109922
|
+
noRowsOverlayComponent: "emptyStateRenderer",
|
|
109923
|
+
noRowsOverlayComponentParams: {
|
|
109924
|
+
emptyStateRenderer: props.emptyStateRenderer
|
|
109925
|
+
},
|
|
109926
|
+
onCellValueChanged: internalOnCellValueChanged,
|
|
109927
|
+
onColumnGroupOpened,
|
|
109928
|
+
onColumnMoved,
|
|
109929
|
+
onColumnPinned,
|
|
109930
|
+
onColumnResized,
|
|
109931
|
+
onColumnRowGroupChanged,
|
|
109932
|
+
onDisplayedColumnsChanged,
|
|
109933
|
+
onDragStopped,
|
|
109934
|
+
onGridReady,
|
|
109935
|
+
onColumnEverythingChanged: props.onColumnEverythingChanged,
|
|
109936
|
+
onModelUpdated,
|
|
109937
|
+
onCellFocused: props.onCellFocused,
|
|
109938
|
+
onRowDragEnd,
|
|
109939
|
+
onRowDragMove,
|
|
109940
|
+
onRowGroupOpened: internalRowGroupOpened,
|
|
109941
|
+
onRowSelected: internalOnRowSelected,
|
|
109942
|
+
onSortChanged: onSortEventChanged,
|
|
109943
|
+
onFilterChanged,
|
|
109944
|
+
onFirstDataRendered: props.onFirstDataRendered,
|
|
109945
|
+
paginateChildRows: props.paginateChildRows,
|
|
109946
|
+
pagination: props.pagination,
|
|
109947
|
+
paginationPageSize: props.paginationPageSize || defaultPaginationPageSize,
|
|
109948
|
+
popupParent: props.popupParent,
|
|
109949
|
+
pinnedBottomRowData: props.pinnedBottomRowData,
|
|
109950
|
+
rowBuffer: props.rowBuffer,
|
|
109951
|
+
rowClassRules,
|
|
109952
|
+
rowDragManaged: onSSDR ? false : props.rowDragManaged ?? true,
|
|
109953
|
+
rowModelType: onSSDR ? "serverSide" : void 0,
|
|
109954
|
+
rowSelection: "multiple",
|
|
109955
|
+
...serverSideInfiniteScroll,
|
|
109956
|
+
suppressClickEdit: true,
|
|
109957
|
+
suppressAggFuncInHeader: true,
|
|
109958
|
+
suppressColumnMoveAnimation: true,
|
|
109959
|
+
suppressColumnVirtualisation,
|
|
109960
|
+
suppressContextMenu: true,
|
|
109961
|
+
suppressFieldDotNotation: props.suppressFieldDotNotation,
|
|
109962
|
+
suppressGroupRowsSticky: !props.stickyExpandedGroupRows,
|
|
109963
|
+
suppressPropertyNamesCheck: true,
|
|
109964
|
+
suppressRowClickSelection: props.suppressRowClickSelection || tableRowSelectionEnabled,
|
|
109965
|
+
suppressPaginationPanel: true,
|
|
109966
|
+
tabToNextCell: props.tabToNextCell,
|
|
109967
|
+
...clientSideRowData,
|
|
109968
|
+
...detailRowConfigProps,
|
|
109969
|
+
...overrideProps
|
|
109970
|
+
}
|
|
109762
109971
|
)
|
|
109763
109972
|
),
|
|
109764
109973
|
props.pagination && gridApi && /* @__PURE__ */ React77.createElement(
|
|
@@ -109906,7 +110115,7 @@ var FILTERS_GROUP_EXPANDABLE_AREA_VERTICAL_MARGIN = spacing.md;
|
|
|
109906
110115
|
var FILTERS_GROUP_ITEM_HEIGHT = 60;
|
|
109907
110116
|
var ITEMS_IN_FILTERS_GROUP = 5;
|
|
109908
110117
|
var FILTERS_GROUP_EXPANDABLE_AREA_HEIGHT = (FILTERS_GROUP_ITEM_HEIGHT + spacing.xl) * ITEMS_IN_FILTERS_GROUP + BORDER_WIDTH;
|
|
109909
|
-
var StyledPanelSection =
|
|
110118
|
+
var StyledPanelSection = styled4(Panel.Section)`
|
|
109910
110119
|
// Filters Group container styles
|
|
109911
110120
|
&.filters-list-group-section {
|
|
109912
110121
|
padding-bottom: ${FILTERS_GROUP_VERTICAL_MARGIN}px;
|
|
@@ -110200,7 +110409,7 @@ var ConfigPanelButton = () => {
|
|
|
110200
110409
|
var QuickFilterLabel = React77.forwardRef(({ enabled, ...props }, ref) => {
|
|
110201
110410
|
return /* @__PURE__ */ React77.createElement(StyledQuickFilterLabel, { $enabled: enabled }, /* @__PURE__ */ React77.createElement(SelectButton, { ref, ...props }));
|
|
110202
110411
|
});
|
|
110203
|
-
var StyledQuickFilterLabel =
|
|
110412
|
+
var StyledQuickFilterLabel = styled4.div`
|
|
110204
110413
|
${StyledSelectButton} {
|
|
110205
110414
|
width: auto;
|
|
110206
110415
|
max-width: 380px;
|
|
@@ -110832,7 +111041,7 @@ var LocationQuickFilterRenderer = ({
|
|
|
110832
111041
|
);
|
|
110833
111042
|
};
|
|
110834
111043
|
var LocationQuickFilterRenderer_default = LocationQuickFilterRenderer;
|
|
110835
|
-
var StyledFilterPresetPopoverContent =
|
|
111044
|
+
var StyledFilterPresetPopoverContent = styled4(Popover.Content)`
|
|
110836
111045
|
padding: ${spacing.sm}px ${spacing.lg}px;
|
|
110837
111046
|
`;
|
|
110838
111047
|
var getValueLabel = (isValueEmpty, value, placeholder, filterName) => {
|
|
@@ -110916,7 +111125,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
110916
111125
|
selectionStyle: "highlight"
|
|
110917
111126
|
};
|
|
110918
111127
|
};
|
|
110919
|
-
var StyledSuperSelectWrapper =
|
|
111128
|
+
var StyledSuperSelectWrapper = styled4.div`
|
|
110920
111129
|
${UNSAFE_StyledSuperSelectTrigger} {
|
|
110921
111130
|
width: auto;
|
|
110922
111131
|
}
|
|
@@ -111387,7 +111596,7 @@ var FilterIcon = () => {
|
|
|
111387
111596
|
)
|
|
111388
111597
|
);
|
|
111389
111598
|
};
|
|
111390
|
-
var StyledFilterTokenWrapper =
|
|
111599
|
+
var StyledFilterTokenWrapper = styled4.div`
|
|
111391
111600
|
${UNSAFE_StyledFilterTokenLabel} {
|
|
111392
111601
|
font-weight: ${typographyWeights.semibold};
|
|
111393
111602
|
}
|