@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/modern/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
|
|
|
@@ -8667,6 +8667,9 @@ function getDateObject(date) {
|
|
|
8667
8667
|
}
|
|
8668
8668
|
return date;
|
|
8669
8669
|
}
|
|
8670
|
+
var StyledDateSelect = styled4(DateSelect)`
|
|
8671
|
+
background-color: #ffffff;
|
|
8672
|
+
`;
|
|
8670
8673
|
var DateCellValue = ({
|
|
8671
8674
|
columnDefinition,
|
|
8672
8675
|
isGroup,
|
|
@@ -8714,7 +8717,7 @@ var Editor2 = React77.forwardRef(
|
|
|
8714
8717
|
timeZone: columnDefinition.cellEditorParams?.timeZone
|
|
8715
8718
|
},
|
|
8716
8719
|
/* @__PURE__ */ React77.createElement(
|
|
8717
|
-
|
|
8720
|
+
StyledDateSelect,
|
|
8718
8721
|
{
|
|
8719
8722
|
afterHide,
|
|
8720
8723
|
className: cx4("input-cell"),
|
|
@@ -55209,6 +55212,17 @@ function transformServerSideRequestObj(request, filtersState, searchValue) {
|
|
|
55209
55212
|
)
|
|
55210
55213
|
};
|
|
55211
55214
|
}
|
|
55215
|
+
function isNumberFilterCondition(item) {
|
|
55216
|
+
return item && [
|
|
55217
|
+
"lessThan",
|
|
55218
|
+
"greaterThan",
|
|
55219
|
+
"isEqual",
|
|
55220
|
+
"inRange",
|
|
55221
|
+
"greaterThanOrEqual",
|
|
55222
|
+
"lessThanOrEqual",
|
|
55223
|
+
"no_value"
|
|
55224
|
+
].includes(item.type);
|
|
55225
|
+
}
|
|
55212
55226
|
var transformFilterValue = (value, field, formatter) => {
|
|
55213
55227
|
const formattedValue = formatter?.(value, field);
|
|
55214
55228
|
if (formattedValue)
|
|
@@ -55217,6 +55231,33 @@ var transformFilterValue = (value, field, formatter) => {
|
|
|
55217
55231
|
return formatISO(value.date, { representation: "date" });
|
|
55218
55232
|
return value.toString();
|
|
55219
55233
|
};
|
|
55234
|
+
function buildNumberFilterParams(filters) {
|
|
55235
|
+
return filters.reduce((acc, filter, idx) => {
|
|
55236
|
+
const singleExpr = mapFilterToQueryParam(filter);
|
|
55237
|
+
if (idx === 0)
|
|
55238
|
+
return singleExpr;
|
|
55239
|
+
const separator = filter.operator === "or" ? "|" : ",";
|
|
55240
|
+
return acc + separator + singleExpr;
|
|
55241
|
+
}, "");
|
|
55242
|
+
}
|
|
55243
|
+
function mapFilterToQueryParam(filter) {
|
|
55244
|
+
const operatorMap = {
|
|
55245
|
+
lessThan: "lt",
|
|
55246
|
+
lessThanOrEqual: "lte",
|
|
55247
|
+
greaterThan: "gt",
|
|
55248
|
+
greaterThanOrEqual: "gte",
|
|
55249
|
+
isEqual: "eq",
|
|
55250
|
+
inRange: "range",
|
|
55251
|
+
no_value: "null"
|
|
55252
|
+
};
|
|
55253
|
+
if (filter.type === "inRange") {
|
|
55254
|
+
return `range:${filter.value}-${filter.valueTo}`;
|
|
55255
|
+
}
|
|
55256
|
+
if (filter.type === "no_value") {
|
|
55257
|
+
return "null";
|
|
55258
|
+
}
|
|
55259
|
+
return operatorMap[filter.type] ? `${operatorMap[filter.type]}:${filter.value}` : String(filter.value ?? "");
|
|
55260
|
+
}
|
|
55220
55261
|
function getServerSideParams(request, filtersState, searchValue, options = {}) {
|
|
55221
55262
|
const params = new URLSearchParams();
|
|
55222
55263
|
if (options.pagination !== false) {
|
|
@@ -55240,10 +55281,17 @@ function getServerSideParams(request, filtersState, searchValue, options = {}) {
|
|
|
55240
55281
|
if (options.filters !== false) {
|
|
55241
55282
|
const formatter = options.filterValueFormatter;
|
|
55242
55283
|
filtersState.forEach((filter) => {
|
|
55243
|
-
const
|
|
55244
|
-
|
|
55245
|
-
)
|
|
55246
|
-
|
|
55284
|
+
const isNumericCondition = filter.selected.every(isNumberFilterCondition);
|
|
55285
|
+
const hasCustomFormatter = typeof formatter === "function";
|
|
55286
|
+
if (isNumericCondition && filter.selected.length > 0 && !hasCustomFormatter) {
|
|
55287
|
+
const numericExpr = buildNumberFilterParams(filter.selected);
|
|
55288
|
+
params.set(`filters[${filter.field}]`, numericExpr);
|
|
55289
|
+
} else {
|
|
55290
|
+
const value = filter.selected.length === 1 ? transformFilterValue(filter.selected[0], filter.field, formatter) : `[${filter.selected.map(
|
|
55291
|
+
(val) => transformFilterValue(val, filter.field, formatter)
|
|
55292
|
+
)}]`;
|
|
55293
|
+
params.set(`filters[${filter.field}]`, value);
|
|
55294
|
+
}
|
|
55247
55295
|
});
|
|
55248
55296
|
request.groupKeys.forEach((groupKey, index) => {
|
|
55249
55297
|
params.set(`filters[${request.rowGroupCols[index].field}]`, groupKey);
|
|
@@ -56423,6 +56471,7 @@ var getMainMenuItems = (props, I18n) => {
|
|
|
56423
56471
|
value: "resetColumns",
|
|
56424
56472
|
action() {
|
|
56425
56473
|
props.columnApi.resetColumnState();
|
|
56474
|
+
props.onTableConfigChange();
|
|
56426
56475
|
}
|
|
56427
56476
|
};
|
|
56428
56477
|
const rowUngroup = {
|
|
@@ -56431,7 +56480,6 @@ var getMainMenuItems = (props, I18n) => {
|
|
|
56431
56480
|
}),
|
|
56432
56481
|
value: "rowUnGroup",
|
|
56433
56482
|
action() {
|
|
56434
|
-
props.columnApi.resetColumnState();
|
|
56435
56483
|
props.columnApi.removeRowGroupColumn(props.column);
|
|
56436
56484
|
}
|
|
56437
56485
|
};
|
|
@@ -56441,7 +56489,6 @@ var getMainMenuItems = (props, I18n) => {
|
|
|
56441
56489
|
}),
|
|
56442
56490
|
value: "rowGroup",
|
|
56443
56491
|
action() {
|
|
56444
|
-
props.columnApi.resetColumnState();
|
|
56445
56492
|
props.columnApi.addRowGroupColumn(props.column);
|
|
56446
56493
|
}
|
|
56447
56494
|
};
|
|
@@ -56697,8 +56744,18 @@ var GenericHeaderRenderer = (props) => {
|
|
|
56697
56744
|
const onSSDR = Boolean(onServerSideDataRequest);
|
|
56698
56745
|
const [sortOrder, setSortOrder] = React77.useState(props.column.getSort());
|
|
56699
56746
|
const [isFirstColumn2, setIsFirstColumn] = React77.useState(false);
|
|
56747
|
+
const [isRowGroupActive, setIsRowGroupActive] = React77.useState(
|
|
56748
|
+
() => props.column.isRowGroupActive()
|
|
56749
|
+
);
|
|
56700
56750
|
const defaultMenuOptions = getMainMenuItems(
|
|
56701
|
-
{
|
|
56751
|
+
{
|
|
56752
|
+
...props,
|
|
56753
|
+
menuConfig: {
|
|
56754
|
+
...props.menuConfig,
|
|
56755
|
+
isRowGroupActive
|
|
56756
|
+
},
|
|
56757
|
+
onTableConfigChange
|
|
56758
|
+
},
|
|
56702
56759
|
I18n
|
|
56703
56760
|
);
|
|
56704
56761
|
const headerCellRef = useRef(null);
|
|
@@ -56712,6 +56769,18 @@ var GenericHeaderRenderer = (props) => {
|
|
|
56712
56769
|
}) : !!headerCheckboxSelection;
|
|
56713
56770
|
const checkbox = useRef(null);
|
|
56714
56771
|
const colId = props.column.getId();
|
|
56772
|
+
React77.useEffect(() => {
|
|
56773
|
+
const onRowGroupChanged = () => {
|
|
56774
|
+
setIsRowGroupActive(props.column.isRowGroupActive());
|
|
56775
|
+
};
|
|
56776
|
+
props.column.addEventListener("columnRowGroupChanged", onRowGroupChanged);
|
|
56777
|
+
return () => {
|
|
56778
|
+
props.column.removeEventListener(
|
|
56779
|
+
"columnRowGroupChanged",
|
|
56780
|
+
onRowGroupChanged
|
|
56781
|
+
);
|
|
56782
|
+
};
|
|
56783
|
+
}, []);
|
|
56715
56784
|
React77.useEffect(() => {
|
|
56716
56785
|
function calculatePosition() {
|
|
56717
56786
|
const columns = props.columnApi.getColumnState();
|
|
@@ -104954,6 +105023,19 @@ function getRootRowNode(rowNode) {
|
|
|
104954
105023
|
return rowNode.level > 0 && rowNode.parent ? getRootRowNode(rowNode.parent) : rowNode;
|
|
104955
105024
|
}
|
|
104956
105025
|
|
|
105026
|
+
// src/utils/mergeRefs.ts
|
|
105027
|
+
function mergeRefs(...refs) {
|
|
105028
|
+
return (value) => {
|
|
105029
|
+
refs.forEach((ref) => {
|
|
105030
|
+
if (typeof ref === "function") {
|
|
105031
|
+
ref(value);
|
|
105032
|
+
} else if (ref != null) {
|
|
105033
|
+
ref.current = value;
|
|
105034
|
+
}
|
|
105035
|
+
});
|
|
105036
|
+
};
|
|
105037
|
+
}
|
|
105038
|
+
|
|
104957
105039
|
// src/utils/setSiblingGroupsRowSelection.ts
|
|
104958
105040
|
function setSiblingGroupsRowSelection(groupIndex, gridApi) {
|
|
104959
105041
|
gridApi?.forEachNode((node) => {
|
|
@@ -105034,6 +105116,12 @@ var de_DE_default = {
|
|
|
105034
105116
|
less_than_equal_to: "Ist kleiner als oder gleich",
|
|
105035
105117
|
no_value: "Kein Wert"
|
|
105036
105118
|
}
|
|
105119
|
+
},
|
|
105120
|
+
multiSelectQuickFilter: {
|
|
105121
|
+
ariaLabel: "Schnell-Filter: mehrere Optionen ausw\xE4hlen"
|
|
105122
|
+
},
|
|
105123
|
+
singleSelectQuickFilter: {
|
|
105124
|
+
ariaLabel: "Schnell-Filter: eine Option ausw\xE4hlen"
|
|
105037
105125
|
}
|
|
105038
105126
|
},
|
|
105039
105127
|
loading: {
|
|
@@ -105120,6 +105208,9 @@ var de_DE_default = {
|
|
|
105120
105208
|
groupCell: {
|
|
105121
105209
|
expand: "Gruppe erweitern",
|
|
105122
105210
|
collapse: "Gruppe ausblenden"
|
|
105211
|
+
},
|
|
105212
|
+
rowCheckbox: {
|
|
105213
|
+
ariaLabel: "Zeile ausw\xE4hlen"
|
|
105123
105214
|
}
|
|
105124
105215
|
}
|
|
105125
105216
|
};
|
|
@@ -105185,6 +105276,12 @@ var en_AU_default = {
|
|
|
105185
105276
|
less_than_equal_to: "Is less than or equal to",
|
|
105186
105277
|
no_value: "No value"
|
|
105187
105278
|
}
|
|
105279
|
+
},
|
|
105280
|
+
multiSelectQuickFilter: {
|
|
105281
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
105282
|
+
},
|
|
105283
|
+
singleSelectQuickFilter: {
|
|
105284
|
+
ariaLabel: "Quick filter: Select an option"
|
|
105188
105285
|
}
|
|
105189
105286
|
},
|
|
105190
105287
|
loading: {
|
|
@@ -105271,6 +105368,9 @@ var en_AU_default = {
|
|
|
105271
105368
|
groupCell: {
|
|
105272
105369
|
expand: "Expand group",
|
|
105273
105370
|
collapse: "Collapse group"
|
|
105371
|
+
},
|
|
105372
|
+
rowCheckbox: {
|
|
105373
|
+
ariaLabel: "Select row"
|
|
105274
105374
|
}
|
|
105275
105375
|
}
|
|
105276
105376
|
};
|
|
@@ -105336,6 +105436,12 @@ var en_CA_default = {
|
|
|
105336
105436
|
less_than_equal_to: "Is less than or equal to",
|
|
105337
105437
|
no_value: "No value"
|
|
105338
105438
|
}
|
|
105439
|
+
},
|
|
105440
|
+
multiSelectQuickFilter: {
|
|
105441
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
105442
|
+
},
|
|
105443
|
+
singleSelectQuickFilter: {
|
|
105444
|
+
ariaLabel: "Quick filter: Select an option"
|
|
105339
105445
|
}
|
|
105340
105446
|
},
|
|
105341
105447
|
loading: {
|
|
@@ -105422,6 +105528,9 @@ var en_CA_default = {
|
|
|
105422
105528
|
groupCell: {
|
|
105423
105529
|
expand: "Expand group",
|
|
105424
105530
|
collapse: "Collapse group"
|
|
105531
|
+
},
|
|
105532
|
+
rowCheckbox: {
|
|
105533
|
+
ariaLabel: "Select row"
|
|
105425
105534
|
}
|
|
105426
105535
|
}
|
|
105427
105536
|
};
|
|
@@ -105487,6 +105596,12 @@ var en_GB_default = {
|
|
|
105487
105596
|
less_than_equal_to: "Is less than or equal to",
|
|
105488
105597
|
no_value: "No value"
|
|
105489
105598
|
}
|
|
105599
|
+
},
|
|
105600
|
+
multiSelectQuickFilter: {
|
|
105601
|
+
ariaLabel: "Quick filter: Select multiple options"
|
|
105602
|
+
},
|
|
105603
|
+
singleSelectQuickFilter: {
|
|
105604
|
+
ariaLabel: "Quick filter: Select an option"
|
|
105490
105605
|
}
|
|
105491
105606
|
},
|
|
105492
105607
|
loading: {
|
|
@@ -105573,6 +105688,9 @@ var en_GB_default = {
|
|
|
105573
105688
|
groupCell: {
|
|
105574
105689
|
expand: "Expand group",
|
|
105575
105690
|
collapse: "Collapse group"
|
|
105691
|
+
},
|
|
105692
|
+
rowCheckbox: {
|
|
105693
|
+
ariaLabel: "Select row"
|
|
105576
105694
|
}
|
|
105577
105695
|
}
|
|
105578
105696
|
};
|
|
@@ -105798,6 +105916,12 @@ var es_ES_default = {
|
|
|
105798
105916
|
less_than_equal_to: "Es menor o igual que",
|
|
105799
105917
|
no_value: "Ning\xFAn valor"
|
|
105800
105918
|
}
|
|
105919
|
+
},
|
|
105920
|
+
multiSelectQuickFilter: {
|
|
105921
|
+
ariaLabel: "Filtro r\xE1pido: seleccionar varias opciones"
|
|
105922
|
+
},
|
|
105923
|
+
singleSelectQuickFilter: {
|
|
105924
|
+
ariaLabel: "Filtro r\xE1pido: seleccionar una opci\xF3n"
|
|
105801
105925
|
}
|
|
105802
105926
|
},
|
|
105803
105927
|
loading: {
|
|
@@ -105884,6 +106008,9 @@ var es_ES_default = {
|
|
|
105884
106008
|
groupCell: {
|
|
105885
106009
|
expand: "Expandir grupo",
|
|
105886
106010
|
collapse: "Contraer grupo"
|
|
106011
|
+
},
|
|
106012
|
+
rowCheckbox: {
|
|
106013
|
+
ariaLabel: "Seleccionar fila"
|
|
105887
106014
|
}
|
|
105888
106015
|
}
|
|
105889
106016
|
};
|
|
@@ -105949,6 +106076,12 @@ var es_default = {
|
|
|
105949
106076
|
less_than_equal_to: "Es menor o igual a",
|
|
105950
106077
|
no_value: "Ning\xFAn valor"
|
|
105951
106078
|
}
|
|
106079
|
+
},
|
|
106080
|
+
multiSelectQuickFilter: {
|
|
106081
|
+
ariaLabel: "Filtro r\xE1pido: Seleccione varias opciones"
|
|
106082
|
+
},
|
|
106083
|
+
singleSelectQuickFilter: {
|
|
106084
|
+
ariaLabel: "Filtro r\xE1pido: Seleccione una opci\xF3n"
|
|
105952
106085
|
}
|
|
105953
106086
|
},
|
|
105954
106087
|
loading: {
|
|
@@ -106035,6 +106168,9 @@ var es_default = {
|
|
|
106035
106168
|
groupCell: {
|
|
106036
106169
|
expand: "Expandir grupo",
|
|
106037
106170
|
collapse: "Colapsar grupo"
|
|
106171
|
+
},
|
|
106172
|
+
rowCheckbox: {
|
|
106173
|
+
ariaLabel: "Seleccionar fila"
|
|
106038
106174
|
}
|
|
106039
106175
|
}
|
|
106040
106176
|
};
|
|
@@ -106100,6 +106236,12 @@ var fr_CA_default = {
|
|
|
106100
106236
|
less_than_equal_to: "Est inf\xE9rieur ou \xE9gal \xE0",
|
|
106101
106237
|
no_value: "Aucune valeur"
|
|
106102
106238
|
}
|
|
106239
|
+
},
|
|
106240
|
+
multiSelectQuickFilter: {
|
|
106241
|
+
ariaLabel: "Filtre rapide\xA0: s\xE9lectionner plusieurs options"
|
|
106242
|
+
},
|
|
106243
|
+
singleSelectQuickFilter: {
|
|
106244
|
+
ariaLabel: "Filtre rapide\xA0: s\xE9lectionner une option"
|
|
106103
106245
|
}
|
|
106104
106246
|
},
|
|
106105
106247
|
loading: {
|
|
@@ -106186,6 +106328,9 @@ var fr_CA_default = {
|
|
|
106186
106328
|
groupCell: {
|
|
106187
106329
|
expand: "D\xE9velopper le groupe",
|
|
106188
106330
|
collapse: "R\xE9duire le groupe"
|
|
106331
|
+
},
|
|
106332
|
+
rowCheckbox: {
|
|
106333
|
+
ariaLabel: "S\xE9lectionner une ligne"
|
|
106189
106334
|
}
|
|
106190
106335
|
}
|
|
106191
106336
|
};
|
|
@@ -106251,6 +106396,12 @@ var fr_FR_default = {
|
|
|
106251
106396
|
less_than_equal_to: "Est inf\xE9rieure ou \xE9gale \xE0",
|
|
106252
106397
|
no_value: "Aucune valeur"
|
|
106253
106398
|
}
|
|
106399
|
+
},
|
|
106400
|
+
multiSelectQuickFilter: {
|
|
106401
|
+
ariaLabel: "Filtre rapide : s\xE9lectionnez plusieurs options"
|
|
106402
|
+
},
|
|
106403
|
+
singleSelectQuickFilter: {
|
|
106404
|
+
ariaLabel: "Filtre rapide : s\xE9lectionnez une option"
|
|
106254
106405
|
}
|
|
106255
106406
|
},
|
|
106256
106407
|
loading: {
|
|
@@ -106337,6 +106488,9 @@ var fr_FR_default = {
|
|
|
106337
106488
|
groupCell: {
|
|
106338
106489
|
expand: "D\xE9velopper le groupe",
|
|
106339
106490
|
collapse: "R\xE9duire le groupe"
|
|
106491
|
+
},
|
|
106492
|
+
rowCheckbox: {
|
|
106493
|
+
ariaLabel: "S\xE9lectionner une ligne"
|
|
106340
106494
|
}
|
|
106341
106495
|
}
|
|
106342
106496
|
};
|
|
@@ -106402,6 +106556,12 @@ var is_IS_default = {
|
|
|
106402
106556
|
less_than_equal_to: "Er minna en e\xF0a jafnt",
|
|
106403
106557
|
no_value: "Ekkert gildi"
|
|
106404
106558
|
}
|
|
106559
|
+
},
|
|
106560
|
+
multiSelectQuickFilter: {
|
|
106561
|
+
ariaLabel: "Flj\xF3tleg s\xEDa: Veldu marga valkosti"
|
|
106562
|
+
},
|
|
106563
|
+
singleSelectQuickFilter: {
|
|
106564
|
+
ariaLabel: "Hra\xF0s\xEDa: Veldu valkost"
|
|
106405
106565
|
}
|
|
106406
106566
|
},
|
|
106407
106567
|
loading: {
|
|
@@ -106488,6 +106648,9 @@ var is_IS_default = {
|
|
|
106488
106648
|
groupCell: {
|
|
106489
106649
|
expand: "St\xE6kka h\xF3pinn",
|
|
106490
106650
|
collapse: "Hrunh\xF3pur"
|
|
106651
|
+
},
|
|
106652
|
+
rowCheckbox: {
|
|
106653
|
+
ariaLabel: "Veldu R\xF6\xF0"
|
|
106491
106654
|
}
|
|
106492
106655
|
}
|
|
106493
106656
|
};
|
|
@@ -106553,6 +106716,12 @@ var ja_JP_default = {
|
|
|
106553
106716
|
less_than_equal_to: "\u4EE5\u4E0B\u3067\u3059",
|
|
106554
106717
|
no_value: "\u5024\u304C\u3042\u308A\u307E\u305B\u3093"
|
|
106555
106718
|
}
|
|
106719
|
+
},
|
|
106720
|
+
multiSelectQuickFilter: {
|
|
106721
|
+
ariaLabel: "\u30AF\u30A4\u30C3\u30AF\u30D5\u30A3\u30EB\u30BF\u30FC: \u8907\u6570\u306E\u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u9078\u629E"
|
|
106722
|
+
},
|
|
106723
|
+
singleSelectQuickFilter: {
|
|
106724
|
+
ariaLabel: "\u30AF\u30A4\u30C3\u30AF\u30D5\u30A3\u30EB\u30BF\u30FC: \u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u9078\u629E"
|
|
106556
106725
|
}
|
|
106557
106726
|
},
|
|
106558
106727
|
loading: {
|
|
@@ -106639,6 +106808,9 @@ var ja_JP_default = {
|
|
|
106639
106808
|
groupCell: {
|
|
106640
106809
|
expand: "\u30B0\u30EB\u30FC\u30D7\u3092\u5C55\u958B\u3059\u308B",
|
|
106641
106810
|
collapse: "\u30B0\u30EB\u30FC\u30D7\u3092\u6298\u308A\u305F\u305F\u3080"
|
|
106811
|
+
},
|
|
106812
|
+
rowCheckbox: {
|
|
106813
|
+
ariaLabel: "\u884C\u3092\u9078\u629E"
|
|
106642
106814
|
}
|
|
106643
106815
|
}
|
|
106644
106816
|
};
|
|
@@ -106670,7 +106842,7 @@ var pl_PL_default = {
|
|
|
106670
106842
|
bulkEdit: "Edycja masowa",
|
|
106671
106843
|
cancel: "Anuluj",
|
|
106672
106844
|
editValues: "Edytuj warto\u015Bci",
|
|
106673
|
-
error: "Przepraszamy, nie mo\u017Cna zaktualizowa\u0107 pozycji.Spr\xF3buj ponownie.",
|
|
106845
|
+
error: "Przepraszamy, nie mo\u017Cna zaktualizowa\u0107 pozycji. Spr\xF3buj ponownie.",
|
|
106674
106846
|
placeholderForField: "Wprowad\u017A %{fieldName}",
|
|
106675
106847
|
selection: "Wybrano %{count} %{number}",
|
|
106676
106848
|
success: "Pozycje zosta\u0142y pomy\u015Blnie zaktualizowane.",
|
|
@@ -106704,6 +106876,12 @@ var pl_PL_default = {
|
|
|
106704
106876
|
less_than_equal_to: "mniej ni\u017C lub r\xF3wne",
|
|
106705
106877
|
no_value: "brak warto\u015Bci"
|
|
106706
106878
|
}
|
|
106879
|
+
},
|
|
106880
|
+
multiSelectQuickFilter: {
|
|
106881
|
+
ariaLabel: "Szybki filtr: wybierz wiele opcji"
|
|
106882
|
+
},
|
|
106883
|
+
singleSelectQuickFilter: {
|
|
106884
|
+
ariaLabel: "Szybki filtr: wybierz opcj\u0119"
|
|
106707
106885
|
}
|
|
106708
106886
|
},
|
|
106709
106887
|
loading: {
|
|
@@ -106790,6 +106968,9 @@ var pl_PL_default = {
|
|
|
106790
106968
|
groupCell: {
|
|
106791
106969
|
expand: "Rozwi\u0144 grup\u0119",
|
|
106792
106970
|
collapse: "Zwi\u0144 grup\u0119"
|
|
106971
|
+
},
|
|
106972
|
+
rowCheckbox: {
|
|
106973
|
+
ariaLabel: "Wybierz wiersz"
|
|
106793
106974
|
}
|
|
106794
106975
|
}
|
|
106795
106976
|
};
|
|
@@ -107015,6 +107196,12 @@ var pt_BR_default = {
|
|
|
107015
107196
|
less_than_equal_to: "\xC9 Menor Que ou Igual a",
|
|
107016
107197
|
no_value: "Nenhum Valor"
|
|
107017
107198
|
}
|
|
107199
|
+
},
|
|
107200
|
+
multiSelectQuickFilter: {
|
|
107201
|
+
ariaLabel: "Filtro r\xE1pido: Selecione v\xE1rias op\xE7\xF5es"
|
|
107202
|
+
},
|
|
107203
|
+
singleSelectQuickFilter: {
|
|
107204
|
+
ariaLabel: "Filtro r\xE1pido: Selecione uma op\xE7\xE3o"
|
|
107018
107205
|
}
|
|
107019
107206
|
},
|
|
107020
107207
|
loading: {
|
|
@@ -107101,6 +107288,9 @@ var pt_BR_default = {
|
|
|
107101
107288
|
groupCell: {
|
|
107102
107289
|
expand: "Expandir grupo",
|
|
107103
107290
|
collapse: "Recolher grupo"
|
|
107291
|
+
},
|
|
107292
|
+
rowCheckbox: {
|
|
107293
|
+
ariaLabel: "Selecionar Linha"
|
|
107104
107294
|
}
|
|
107105
107295
|
}
|
|
107106
107296
|
};
|
|
@@ -107166,6 +107356,12 @@ var th_TH_default = {
|
|
|
107166
107356
|
less_than_equal_to: "\u0E19\u0E49\u0E2D\u0E22\u0E01\u0E27\u0E48\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E17\u0E48\u0E32\u0E01\u0E31\u0E1A",
|
|
107167
107357
|
no_value: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E04\u0E48\u0E32"
|
|
107168
107358
|
}
|
|
107359
|
+
},
|
|
107360
|
+
multiSelectQuickFilter: {
|
|
107361
|
+
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"
|
|
107362
|
+
},
|
|
107363
|
+
singleSelectQuickFilter: {
|
|
107364
|
+
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"
|
|
107169
107365
|
}
|
|
107170
107366
|
},
|
|
107171
107367
|
loading: {
|
|
@@ -107252,6 +107448,9 @@ var th_TH_default = {
|
|
|
107252
107448
|
groupCell: {
|
|
107253
107449
|
expand: "\u0E02\u0E22\u0E32\u0E22\u0E01\u0E25\u0E38\u0E48\u0E21",
|
|
107254
107450
|
collapse: "\u0E01\u0E32\u0E23\u0E22\u0E38\u0E1A\u0E01\u0E25\u0E38\u0E48\u0E21"
|
|
107451
|
+
},
|
|
107452
|
+
rowCheckbox: {
|
|
107453
|
+
ariaLabel: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E41\u0E16\u0E27"
|
|
107255
107454
|
}
|
|
107256
107455
|
}
|
|
107257
107456
|
};
|
|
@@ -107317,6 +107516,12 @@ var zh_SG_default = {
|
|
|
107317
107516
|
less_than_equal_to: "\u5C0F\u4E8E\u6216\u7B49\u4E8E",
|
|
107318
107517
|
no_value: "\u65E0\u503C"
|
|
107319
107518
|
}
|
|
107519
|
+
},
|
|
107520
|
+
multiSelectQuickFilter: {
|
|
107521
|
+
ariaLabel: "\u5FEB\u901F\u7B5B\u9009\uFF1A\u9009\u62E9\u591A\u4E2A\u9009\u9879"
|
|
107522
|
+
},
|
|
107523
|
+
singleSelectQuickFilter: {
|
|
107524
|
+
ariaLabel: "\u5FEB\u901F\u7B5B\u9009\uFF1A\u9009\u62E9\u4E00\u4E2A\u9009\u9879"
|
|
107320
107525
|
}
|
|
107321
107526
|
},
|
|
107322
107527
|
loading: {
|
|
@@ -107403,6 +107608,9 @@ var zh_SG_default = {
|
|
|
107403
107608
|
groupCell: {
|
|
107404
107609
|
expand: "\u5C55\u5F00\u7EC4",
|
|
107405
107610
|
collapse: "\u6298\u53E0\u7EC4"
|
|
107611
|
+
},
|
|
107612
|
+
rowCheckbox: {
|
|
107613
|
+
ariaLabel: "\u9009\u62E9\u884C"
|
|
107406
107614
|
}
|
|
107407
107615
|
}
|
|
107408
107616
|
};
|
|
@@ -109406,6 +109614,15 @@ var Table = (props) => {
|
|
|
109406
109614
|
["onGridReady"],
|
|
109407
109615
|
props.UNSAFE_internalAGGridOverrides ?? {}
|
|
109408
109616
|
);
|
|
109617
|
+
const { ref: resizeRef } = useResizeDetector({
|
|
109618
|
+
onResize: onContainerResize,
|
|
109619
|
+
refreshMode: "debounce",
|
|
109620
|
+
refreshRate: 400
|
|
109621
|
+
});
|
|
109622
|
+
const combinedRef = React77.useCallback(
|
|
109623
|
+
mergeRefs(wrapperRef, resizeRef),
|
|
109624
|
+
[wrapperRef, resizeRef]
|
|
109625
|
+
);
|
|
109409
109626
|
return /* @__PURE__ */ React77.createElement(
|
|
109410
109627
|
Spinner,
|
|
109411
109628
|
{
|
|
@@ -109420,133 +109637,125 @@ var Table = (props) => {
|
|
|
109420
109637
|
}
|
|
109421
109638
|
},
|
|
109422
109639
|
/* @__PURE__ */ React77.createElement(
|
|
109423
|
-
|
|
109640
|
+
"div",
|
|
109424
109641
|
{
|
|
109425
|
-
|
|
109426
|
-
|
|
109427
|
-
|
|
109428
|
-
|
|
109429
|
-
/* @__PURE__ */ React77.createElement(
|
|
109430
|
-
"div",
|
|
109431
|
-
{
|
|
109432
|
-
style: {
|
|
109433
|
-
flex: 1,
|
|
109434
|
-
width: "100%",
|
|
109435
|
-
maxHeight: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
|
|
109436
|
-
},
|
|
109437
|
-
className: cx19("ag-theme-alpine", {
|
|
109438
|
-
"ag-suppress-column-virtualization": suppressColumnVirtualisation
|
|
109439
|
-
}),
|
|
109440
|
-
ref: wrapperRef,
|
|
109441
|
-
"data-qa": loadingStatus.loading ? "loading" : "loaded"
|
|
109642
|
+
style: {
|
|
109643
|
+
flex: 1,
|
|
109644
|
+
width: "100%",
|
|
109645
|
+
maxHeight: props.maxHeight && tableHeight < props.maxHeight ? void 0 : props.maxHeight
|
|
109442
109646
|
},
|
|
109443
|
-
|
|
109647
|
+
className: cx19("ag-theme-alpine", {
|
|
109648
|
+
"ag-suppress-column-virtualization": suppressColumnVirtualisation
|
|
109649
|
+
}),
|
|
109650
|
+
ref: combinedRef,
|
|
109651
|
+
"data-qa": loadingStatus.loading ? "loading" : "loaded"
|
|
109652
|
+
},
|
|
109653
|
+
/* @__PURE__ */ React77.createElement("style", null, `:root {
|
|
109444
109654
|
--viewport-width: ${viewportWidth}px;
|
|
109445
109655
|
--rowActions-width: ${rowActionsWidth.current}px;
|
|
109446
109656
|
}`),
|
|
109447
|
-
|
|
109448
|
-
|
|
109449
|
-
|
|
109450
|
-
|
|
109451
|
-
|
|
109452
|
-
|
|
109453
|
-
|
|
109454
|
-
|
|
109455
|
-
|
|
109456
|
-
|
|
109457
|
-
|
|
109458
|
-
|
|
109459
|
-
|
|
109460
|
-
|
|
109461
|
-
|
|
109462
|
-
|
|
109463
|
-
|
|
109464
|
-
|
|
109465
|
-
|
|
109466
|
-
|
|
109467
|
-
|
|
109468
|
-
|
|
109469
|
-
|
|
109470
|
-
|
|
109471
|
-
|
|
109472
|
-
|
|
109473
|
-
|
|
109474
|
-
|
|
109475
|
-
|
|
109476
|
-
|
|
109477
|
-
|
|
109478
|
-
|
|
109479
|
-
|
|
109480
|
-
|
|
109481
|
-
|
|
109482
|
-
|
|
109483
|
-
|
|
109484
|
-
|
|
109485
|
-
|
|
109486
|
-
|
|
109487
|
-
|
|
109488
|
-
|
|
109489
|
-
|
|
109490
|
-
|
|
109491
|
-
|
|
109492
|
-
|
|
109493
|
-
|
|
109494
|
-
|
|
109495
|
-
|
|
109496
|
-
|
|
109497
|
-
|
|
109498
|
-
|
|
109499
|
-
|
|
109500
|
-
|
|
109501
|
-
|
|
109502
|
-
|
|
109503
|
-
|
|
109504
|
-
|
|
109505
|
-
|
|
109506
|
-
|
|
109507
|
-
|
|
109508
|
-
|
|
109509
|
-
|
|
109510
|
-
|
|
109511
|
-
|
|
109512
|
-
|
|
109513
|
-
|
|
109514
|
-
|
|
109515
|
-
|
|
109516
|
-
|
|
109517
|
-
|
|
109518
|
-
|
|
109519
|
-
|
|
109520
|
-
|
|
109521
|
-
|
|
109522
|
-
|
|
109523
|
-
|
|
109524
|
-
|
|
109525
|
-
|
|
109526
|
-
|
|
109527
|
-
|
|
109528
|
-
|
|
109529
|
-
|
|
109530
|
-
|
|
109531
|
-
|
|
109532
|
-
|
|
109533
|
-
|
|
109534
|
-
|
|
109535
|
-
|
|
109536
|
-
|
|
109537
|
-
|
|
109538
|
-
|
|
109539
|
-
|
|
109540
|
-
|
|
109541
|
-
|
|
109542
|
-
|
|
109543
|
-
|
|
109544
|
-
|
|
109545
|
-
|
|
109546
|
-
|
|
109547
|
-
|
|
109548
|
-
|
|
109549
|
-
)
|
|
109657
|
+
/* @__PURE__ */ React77.createElement(
|
|
109658
|
+
AgGridReact,
|
|
109659
|
+
{
|
|
109660
|
+
aggFuncs: aggregationFunctions_exports,
|
|
109661
|
+
alwaysAggregateAtRootLevel: !onSSDR,
|
|
109662
|
+
autoGroupColumnDef: decoratedAutoGroupColDef,
|
|
109663
|
+
cacheBlockSize: props.paginationPageSize || defaultPaginationPageSize,
|
|
109664
|
+
isGroupOpenByDefault: isClientSideGroupOpenByDefault,
|
|
109665
|
+
isServerSideGroupOpenByDefault,
|
|
109666
|
+
defaultColDef,
|
|
109667
|
+
enableGroupEdit: internalTableContext.enableGroupEditAndValidation,
|
|
109668
|
+
enableCellTextSelection: internalTableContext.enableCellTextSelection,
|
|
109669
|
+
enableCellEditingOnBackspace: true,
|
|
109670
|
+
excelStyles: transformToExcelStyles(props.excelDataTypeFormats),
|
|
109671
|
+
components: frameworkComponents.base,
|
|
109672
|
+
fullWidthCellRenderer: FullWidthCellRenderer(
|
|
109673
|
+
props.fullWidthCellRenderer
|
|
109674
|
+
),
|
|
109675
|
+
getRowHeight: getMainTableRowHeight,
|
|
109676
|
+
getRowId: internalTableContext.getRowId,
|
|
109677
|
+
getRowStyle,
|
|
109678
|
+
groupAllowUnbalanced: true,
|
|
109679
|
+
groupDefaultExpanded: props.groupsAlwaysExpanded ? -1 : props.groupDefaultExpanded,
|
|
109680
|
+
groupIncludeFooter: !onSSDR && props.groupIncludeFooter === void 0 ? true : props.groupIncludeFooter,
|
|
109681
|
+
getGroupRowAgg: props.getGroupRowAgg ? getGroupRowAgg : void 0,
|
|
109682
|
+
groupSelectsChildren: internalTableContext.totalRowCount > 0 && props.groupSelectsChildren || !onSSDR,
|
|
109683
|
+
groupSelectsFiltered: true,
|
|
109684
|
+
headerHeight: props.headerHeight,
|
|
109685
|
+
icons: tableIcons,
|
|
109686
|
+
isFullWidthRow: (props2) => {
|
|
109687
|
+
const node = props2.rowNode;
|
|
109688
|
+
return isFullWidthRow(node);
|
|
109689
|
+
},
|
|
109690
|
+
initialGroupOrderComparator: props.initialGroupOrderComparator ? (params) => props.initialGroupOrderComparator(
|
|
109691
|
+
serializeNode(params.nodeA),
|
|
109692
|
+
serializeNode(params.nodeB)
|
|
109693
|
+
) : void 0,
|
|
109694
|
+
isRowSelectable,
|
|
109695
|
+
loadingOverlayComponent: "loadingOverlayRenderer",
|
|
109696
|
+
loadingOverlayComponentParams: {
|
|
109697
|
+
loading: true
|
|
109698
|
+
},
|
|
109699
|
+
maintainColumnOrder: props.maintainColumnOrder,
|
|
109700
|
+
modules: [
|
|
109701
|
+
...props.modules,
|
|
109702
|
+
MasterDetailModule,
|
|
109703
|
+
MenuModule,
|
|
109704
|
+
RowGroupingModule,
|
|
109705
|
+
SetFilterModule,
|
|
109706
|
+
CsvExportModule,
|
|
109707
|
+
ExcelExportModule,
|
|
109708
|
+
SparklinesModule
|
|
109709
|
+
],
|
|
109710
|
+
noRowsOverlayComponent: "emptyStateRenderer",
|
|
109711
|
+
noRowsOverlayComponentParams: {
|
|
109712
|
+
emptyStateRenderer: props.emptyStateRenderer
|
|
109713
|
+
},
|
|
109714
|
+
onCellValueChanged: internalOnCellValueChanged,
|
|
109715
|
+
onColumnGroupOpened,
|
|
109716
|
+
onColumnMoved,
|
|
109717
|
+
onColumnPinned,
|
|
109718
|
+
onColumnResized,
|
|
109719
|
+
onColumnRowGroupChanged,
|
|
109720
|
+
onDisplayedColumnsChanged,
|
|
109721
|
+
onDragStopped,
|
|
109722
|
+
onGridReady,
|
|
109723
|
+
onColumnEverythingChanged: props.onColumnEverythingChanged,
|
|
109724
|
+
onModelUpdated,
|
|
109725
|
+
onCellFocused: props.onCellFocused,
|
|
109726
|
+
onRowDragEnd,
|
|
109727
|
+
onRowDragMove,
|
|
109728
|
+
onRowGroupOpened: internalRowGroupOpened,
|
|
109729
|
+
onRowSelected: internalOnRowSelected,
|
|
109730
|
+
onSortChanged: onSortEventChanged,
|
|
109731
|
+
onFilterChanged,
|
|
109732
|
+
onFirstDataRendered: props.onFirstDataRendered,
|
|
109733
|
+
paginateChildRows: props.paginateChildRows,
|
|
109734
|
+
pagination: props.pagination,
|
|
109735
|
+
paginationPageSize: props.paginationPageSize || defaultPaginationPageSize,
|
|
109736
|
+
popupParent: props.popupParent,
|
|
109737
|
+
pinnedBottomRowData: props.pinnedBottomRowData,
|
|
109738
|
+
rowBuffer: props.rowBuffer,
|
|
109739
|
+
rowClassRules,
|
|
109740
|
+
rowDragManaged: onSSDR ? false : props.rowDragManaged ?? true,
|
|
109741
|
+
rowModelType: onSSDR ? "serverSide" : void 0,
|
|
109742
|
+
rowSelection: "multiple",
|
|
109743
|
+
...serverSideInfiniteScroll,
|
|
109744
|
+
suppressClickEdit: true,
|
|
109745
|
+
suppressAggFuncInHeader: true,
|
|
109746
|
+
suppressColumnMoveAnimation: true,
|
|
109747
|
+
suppressColumnVirtualisation,
|
|
109748
|
+
suppressContextMenu: true,
|
|
109749
|
+
suppressFieldDotNotation: props.suppressFieldDotNotation,
|
|
109750
|
+
suppressGroupRowsSticky: !props.stickyExpandedGroupRows,
|
|
109751
|
+
suppressPropertyNamesCheck: true,
|
|
109752
|
+
suppressRowClickSelection: props.suppressRowClickSelection || tableRowSelectionEnabled,
|
|
109753
|
+
suppressPaginationPanel: true,
|
|
109754
|
+
tabToNextCell: props.tabToNextCell,
|
|
109755
|
+
...clientSideRowData,
|
|
109756
|
+
...detailRowConfigProps,
|
|
109757
|
+
...overrideProps
|
|
109758
|
+
}
|
|
109550
109759
|
)
|
|
109551
109760
|
),
|
|
109552
109761
|
props.pagination && gridApi && /* @__PURE__ */ React77.createElement(
|
|
@@ -109690,7 +109899,7 @@ var FILTERS_GROUP_EXPANDABLE_AREA_VERTICAL_MARGIN = spacing.md;
|
|
|
109690
109899
|
var FILTERS_GROUP_ITEM_HEIGHT = 60;
|
|
109691
109900
|
var ITEMS_IN_FILTERS_GROUP = 5;
|
|
109692
109901
|
var FILTERS_GROUP_EXPANDABLE_AREA_HEIGHT = (FILTERS_GROUP_ITEM_HEIGHT + spacing.xl) * ITEMS_IN_FILTERS_GROUP + BORDER_WIDTH;
|
|
109693
|
-
var StyledPanelSection =
|
|
109902
|
+
var StyledPanelSection = styled4(Panel.Section)`
|
|
109694
109903
|
// Filters Group container styles
|
|
109695
109904
|
&.filters-list-group-section {
|
|
109696
109905
|
padding-bottom: ${FILTERS_GROUP_VERTICAL_MARGIN}px;
|
|
@@ -109983,7 +110192,7 @@ var ConfigPanelButton = () => {
|
|
|
109983
110192
|
var QuickFilterLabel = React77.forwardRef(({ enabled, ...props }, ref) => {
|
|
109984
110193
|
return /* @__PURE__ */ React77.createElement(StyledQuickFilterLabel, { $enabled: enabled }, /* @__PURE__ */ React77.createElement(SelectButton, { ref, ...props }));
|
|
109985
110194
|
});
|
|
109986
|
-
var StyledQuickFilterLabel =
|
|
110195
|
+
var StyledQuickFilterLabel = styled4.div`
|
|
109987
110196
|
${StyledSelectButton} {
|
|
109988
110197
|
width: auto;
|
|
109989
110198
|
max-width: 380px;
|
|
@@ -110610,7 +110819,7 @@ var LocationQuickFilterRenderer = ({
|
|
|
110610
110819
|
);
|
|
110611
110820
|
};
|
|
110612
110821
|
var LocationQuickFilterRenderer_default = LocationQuickFilterRenderer;
|
|
110613
|
-
var StyledFilterPresetPopoverContent =
|
|
110822
|
+
var StyledFilterPresetPopoverContent = styled4(Popover.Content)`
|
|
110614
110823
|
padding: ${spacing.sm}px ${spacing.lg}px;
|
|
110615
110824
|
`;
|
|
110616
110825
|
var getValueLabel = (isValueEmpty, value, placeholder, filterName) => {
|
|
@@ -110692,7 +110901,7 @@ var getSuperSelectFilterPreset = (columnDefinition) => {
|
|
|
110692
110901
|
selectionStyle: "highlight"
|
|
110693
110902
|
};
|
|
110694
110903
|
};
|
|
110695
|
-
var StyledSuperSelectWrapper =
|
|
110904
|
+
var StyledSuperSelectWrapper = styled4.div`
|
|
110696
110905
|
${UNSAFE_StyledSuperSelectTrigger} {
|
|
110697
110906
|
width: auto;
|
|
110698
110907
|
}
|
|
@@ -111145,7 +111354,7 @@ var FilterIcon = () => {
|
|
|
111145
111354
|
)
|
|
111146
111355
|
);
|
|
111147
111356
|
};
|
|
111148
|
-
var StyledFilterTokenWrapper =
|
|
111357
|
+
var StyledFilterTokenWrapper = styled4.div`
|
|
111149
111358
|
${UNSAFE_StyledFilterTokenLabel} {
|
|
111150
111359
|
font-weight: ${typographyWeights.semibold};
|
|
111151
111360
|
}
|