@react-aria/table 3.7.1-nightly.3698 → 3.7.1-nightly.3705
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/import.mjs +1104 -0
- package/dist/main.js +5 -5
- package/dist/main.js.map +1 -1
- package/dist/module.js +5 -5
- package/dist/module.js.map +1 -1
- package/package.json +20 -15
- package/src/useTableColumnResize.ts +5 -5
package/dist/import.mjs
ADDED
|
@@ -0,0 +1,1104 @@
|
|
|
1
|
+
import {useGridRowGroup as $lJcFS$useGridRowGroup, useGrid as $lJcFS$useGrid, GridKeyboardDelegate as $lJcFS$GridKeyboardDelegate, useGridCell as $lJcFS$useGridCell, useGridRow as $lJcFS$useGridRow, useGridSelectionCheckbox as $lJcFS$useGridSelectionCheckbox} from "@react-aria/grid";
|
|
2
|
+
import {announce as $lJcFS$announce} from "@react-aria/live-announcer";
|
|
3
|
+
import {useId as $lJcFS$useId, useDescription as $lJcFS$useDescription, useUpdateEffect as $lJcFS$useUpdateEffect, mergeProps as $lJcFS$mergeProps, isAndroid as $lJcFS$isAndroid, focusWithoutScrolling as $lJcFS$focusWithoutScrolling} from "@react-aria/utils";
|
|
4
|
+
import {useMemo as $lJcFS$useMemo, useRef as $lJcFS$useRef, useCallback as $lJcFS$useCallback} from "react";
|
|
5
|
+
import {useCollator as $lJcFS$useCollator, useLocale as $lJcFS$useLocale, useLocalizedStringFormatter as $lJcFS$useLocalizedStringFormatter} from "@react-aria/i18n";
|
|
6
|
+
import {useFocusable as $lJcFS$useFocusable, focusSafely as $lJcFS$focusSafely} from "@react-aria/focus";
|
|
7
|
+
import {usePress as $lJcFS$usePress, useKeyboard as $lJcFS$useKeyboard, useMove as $lJcFS$useMove} from "@react-aria/interactions";
|
|
8
|
+
|
|
9
|
+
function $parcel$interopDefault(a) {
|
|
10
|
+
return a && a.__esModule ? a.default : a;
|
|
11
|
+
}
|
|
12
|
+
/*
|
|
13
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
14
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
15
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
16
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
17
|
+
*
|
|
18
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
19
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
20
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
21
|
+
* governing permissions and limitations under the License.
|
|
22
|
+
*/ /*
|
|
23
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
24
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
25
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
26
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
27
|
+
*
|
|
28
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
29
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
30
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
31
|
+
* governing permissions and limitations under the License.
|
|
32
|
+
*/
|
|
33
|
+
|
|
34
|
+
/*
|
|
35
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
36
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
37
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
38
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
39
|
+
*
|
|
40
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
41
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
42
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
43
|
+
* governing permissions and limitations under the License.
|
|
44
|
+
*/ const $2140fb2337097f2d$export$552312adfd451dab = new WeakMap();
|
|
45
|
+
function $2140fb2337097f2d$var$normalizeKey(key) {
|
|
46
|
+
if (typeof key === "string") return key.replace(/\s*/g, "");
|
|
47
|
+
return "" + key;
|
|
48
|
+
}
|
|
49
|
+
function $2140fb2337097f2d$export$37cd4213f2ad742e(state, columnKey) {
|
|
50
|
+
let gridId = $2140fb2337097f2d$export$552312adfd451dab.get(state);
|
|
51
|
+
if (!gridId) throw new Error("Unknown grid");
|
|
52
|
+
return `${gridId}-${$2140fb2337097f2d$var$normalizeKey(columnKey)}`;
|
|
53
|
+
}
|
|
54
|
+
function $2140fb2337097f2d$export$19baff3266315d44(state, rowKey, columnKey) {
|
|
55
|
+
let gridId = $2140fb2337097f2d$export$552312adfd451dab.get(state);
|
|
56
|
+
if (!gridId) throw new Error("Unknown grid");
|
|
57
|
+
return `${gridId}-${$2140fb2337097f2d$var$normalizeKey(rowKey)}-${$2140fb2337097f2d$var$normalizeKey(columnKey)}`;
|
|
58
|
+
}
|
|
59
|
+
function $2140fb2337097f2d$export$85069b70317f543(state, rowKey) {
|
|
60
|
+
// A row is labelled by it's row headers.
|
|
61
|
+
return [
|
|
62
|
+
...state.collection.rowHeaderColumnKeys
|
|
63
|
+
].map((columnKey)=>$2140fb2337097f2d$export$19baff3266315d44(state, rowKey, columnKey)).join(" ");
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
var $ae7e9c471762b4d3$exports = {};
|
|
68
|
+
var $ce3de3ff2fd66848$exports = {};
|
|
69
|
+
$ce3de3ff2fd66848$exports = {
|
|
70
|
+
"ascending": `تصاعدي`,
|
|
71
|
+
"ascendingSort": (args)=>`ترتيب حسب العمود ${args.columnName} بترتيب تصاعدي`,
|
|
72
|
+
"columnSize": (args)=>`${args.value} بالبكسل`,
|
|
73
|
+
"descending": `تنازلي`,
|
|
74
|
+
"descendingSort": (args)=>`ترتيب حسب العمود ${args.columnName} بترتيب تنازلي`,
|
|
75
|
+
"select": `تحديد`,
|
|
76
|
+
"selectAll": `تحديد الكل`,
|
|
77
|
+
"sortable": `عمود قابل للترتيب`
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
var $cb80dcce530985b9$exports = {};
|
|
82
|
+
$cb80dcce530985b9$exports = {
|
|
83
|
+
"ascending": `възходящ`,
|
|
84
|
+
"ascendingSort": (args)=>`сортирано по колона ${args.columnName} във възходящ ред`,
|
|
85
|
+
"columnSize": (args)=>`${args.value} пиксела`,
|
|
86
|
+
"descending": `низходящ`,
|
|
87
|
+
"descendingSort": (args)=>`сортирано по колона ${args.columnName} в низходящ ред`,
|
|
88
|
+
"select": `Изберете`,
|
|
89
|
+
"selectAll": `Изберете всичко`,
|
|
90
|
+
"sortable": `сортираща колона`
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
var $68ac86749db4c0fb$exports = {};
|
|
95
|
+
$68ac86749db4c0fb$exports = {
|
|
96
|
+
"ascending": `vzestupně`,
|
|
97
|
+
"ascendingSort": (args)=>`řazeno vzestupně podle sloupce ${args.columnName}`,
|
|
98
|
+
"columnSize": (args)=>`${args.value} pixelů`,
|
|
99
|
+
"descending": `sestupně`,
|
|
100
|
+
"descendingSort": (args)=>`řazeno sestupně podle sloupce ${args.columnName}`,
|
|
101
|
+
"select": `Vybrat`,
|
|
102
|
+
"selectAll": `Vybrat vše`,
|
|
103
|
+
"sortable": `sloupec s možností řazení`
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
var $9a6cbac08487e661$exports = {};
|
|
108
|
+
$9a6cbac08487e661$exports = {
|
|
109
|
+
"ascending": `stigende`,
|
|
110
|
+
"ascendingSort": (args)=>`sorteret efter kolonne ${args.columnName} i stigende rækkefølge`,
|
|
111
|
+
"columnSize": (args)=>`${args.value} pixels`,
|
|
112
|
+
"descending": `faldende`,
|
|
113
|
+
"descendingSort": (args)=>`sorteret efter kolonne ${args.columnName} i faldende rækkefølge`,
|
|
114
|
+
"select": `Vælg`,
|
|
115
|
+
"selectAll": `Vælg alle`,
|
|
116
|
+
"sortable": `sorterbar kolonne`
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
var $c963661d89486e72$exports = {};
|
|
121
|
+
$c963661d89486e72$exports = {
|
|
122
|
+
"ascending": `aufsteigend`,
|
|
123
|
+
"ascendingSort": (args)=>`sortiert nach Spalte ${args.columnName} in aufsteigender Reihenfolge`,
|
|
124
|
+
"columnSize": (args)=>`${args.value} Pixel`,
|
|
125
|
+
"descending": `absteigend`,
|
|
126
|
+
"descendingSort": (args)=>`sortiert nach Spalte ${args.columnName} in absteigender Reihenfolge`,
|
|
127
|
+
"select": `Auswählen`,
|
|
128
|
+
"selectAll": `Alles auswählen`,
|
|
129
|
+
"sortable": `sortierbare Spalte`
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
var $ac03861c6e8605f4$exports = {};
|
|
134
|
+
$ac03861c6e8605f4$exports = {
|
|
135
|
+
"ascending": `αύξουσα`,
|
|
136
|
+
"ascendingSort": (args)=>`διαλογή ανά στήλη ${args.columnName} σε αύξουσα σειρά`,
|
|
137
|
+
"columnSize": (args)=>`${args.value} pixel`,
|
|
138
|
+
"descending": `φθίνουσα`,
|
|
139
|
+
"descendingSort": (args)=>`διαλογή ανά στήλη ${args.columnName} σε φθίνουσα σειρά`,
|
|
140
|
+
"select": `Επιλογή`,
|
|
141
|
+
"selectAll": `Επιλογή όλων`,
|
|
142
|
+
"sortable": `Στήλη διαλογής`
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
var $09e6b82e0d6e466a$exports = {};
|
|
147
|
+
$09e6b82e0d6e466a$exports = {
|
|
148
|
+
"select": `Select`,
|
|
149
|
+
"selectAll": `Select All`,
|
|
150
|
+
"sortable": `sortable column`,
|
|
151
|
+
"ascending": `ascending`,
|
|
152
|
+
"descending": `descending`,
|
|
153
|
+
"ascendingSort": (args)=>`sorted by column ${args.columnName} in ascending order`,
|
|
154
|
+
"descendingSort": (args)=>`sorted by column ${args.columnName} in descending order`,
|
|
155
|
+
"columnSize": (args)=>`${args.value} pixels`
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
var $8cc39eb66c2bf220$exports = {};
|
|
160
|
+
$8cc39eb66c2bf220$exports = {
|
|
161
|
+
"ascending": `de subida`,
|
|
162
|
+
"ascendingSort": (args)=>`ordenado por columna ${args.columnName} en orden de subida`,
|
|
163
|
+
"columnSize": (args)=>`${args.value} píxeles`,
|
|
164
|
+
"descending": `de bajada`,
|
|
165
|
+
"descendingSort": (args)=>`ordenado por columna ${args.columnName} en orden de bajada`,
|
|
166
|
+
"select": `Seleccionar`,
|
|
167
|
+
"selectAll": `Seleccionar todos`,
|
|
168
|
+
"sortable": `columna ordenable`
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
var $4e11db3c25a38112$exports = {};
|
|
173
|
+
$4e11db3c25a38112$exports = {
|
|
174
|
+
"ascending": `tõusev järjestus`,
|
|
175
|
+
"ascendingSort": (args)=>`sorditud veeru järgi ${args.columnName} tõusvas järjestuses`,
|
|
176
|
+
"columnSize": (args)=>`${args.value} pikslit`,
|
|
177
|
+
"descending": `laskuv järjestus`,
|
|
178
|
+
"descendingSort": (args)=>`sorditud veeru järgi ${args.columnName} laskuvas järjestuses`,
|
|
179
|
+
"select": `Vali`,
|
|
180
|
+
"selectAll": `Vali kõik`,
|
|
181
|
+
"sortable": `sorditav veerg`
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
var $da1e751a92575e02$exports = {};
|
|
186
|
+
$da1e751a92575e02$exports = {
|
|
187
|
+
"ascending": `nouseva`,
|
|
188
|
+
"ascendingSort": (args)=>`lajiteltu sarakkeen ${args.columnName} mukaan nousevassa järjestyksessä`,
|
|
189
|
+
"columnSize": (args)=>`${args.value} pikseliä`,
|
|
190
|
+
"descending": `laskeva`,
|
|
191
|
+
"descendingSort": (args)=>`lajiteltu sarakkeen ${args.columnName} mukaan laskevassa järjestyksessä`,
|
|
192
|
+
"select": `Valitse`,
|
|
193
|
+
"selectAll": `Valitse kaikki`,
|
|
194
|
+
"sortable": `lajiteltava sarake`
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
var $1b5d6c6c47d55106$exports = {};
|
|
199
|
+
$1b5d6c6c47d55106$exports = {
|
|
200
|
+
"ascending": `croissant`,
|
|
201
|
+
"ascendingSort": (args)=>`trié en fonction de la colonne ${args.columnName} par ordre croissant`,
|
|
202
|
+
"columnSize": (args)=>`${args.value} pixels`,
|
|
203
|
+
"descending": `décroissant`,
|
|
204
|
+
"descendingSort": (args)=>`trié en fonction de la colonne ${args.columnName} par ordre décroissant`,
|
|
205
|
+
"select": `Sélectionner`,
|
|
206
|
+
"selectAll": `Sélectionner tout`,
|
|
207
|
+
"sortable": `colonne triable`
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
var $7c18ba27b86d3308$exports = {};
|
|
212
|
+
$7c18ba27b86d3308$exports = {
|
|
213
|
+
"ascending": `עולה`,
|
|
214
|
+
"ascendingSort": (args)=>`מוין לפי עמודה ${args.columnName} בסדר עולה`,
|
|
215
|
+
"columnSize": (args)=>`${args.value} פיקסלים`,
|
|
216
|
+
"descending": `יורד`,
|
|
217
|
+
"descendingSort": (args)=>`מוין לפי עמודה ${args.columnName} בסדר יורד`,
|
|
218
|
+
"select": `בחר`,
|
|
219
|
+
"selectAll": `בחר הכול`,
|
|
220
|
+
"sortable": `עמודה שניתן למיין`
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
var $2cb40998e20e8a46$exports = {};
|
|
225
|
+
$2cb40998e20e8a46$exports = {
|
|
226
|
+
"ascending": `rastući`,
|
|
227
|
+
"ascendingSort": (args)=>`razvrstano po stupcima ${args.columnName} rastućem redoslijedom`,
|
|
228
|
+
"columnSize": (args)=>`${args.value} piksela`,
|
|
229
|
+
"descending": `padajući`,
|
|
230
|
+
"descendingSort": (args)=>`razvrstano po stupcima ${args.columnName} padajućim redoslijedom`,
|
|
231
|
+
"select": `Odaberite`,
|
|
232
|
+
"selectAll": `Odaberite sve`,
|
|
233
|
+
"sortable": `stupac koji se može razvrstati`
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
var $189e23eec1d6aa3a$exports = {};
|
|
238
|
+
$189e23eec1d6aa3a$exports = {
|
|
239
|
+
"ascending": `növekvő`,
|
|
240
|
+
"ascendingSort": (args)=>`rendezve a(z) ${args.columnName} oszlop szerint, növekvő sorrendben`,
|
|
241
|
+
"columnSize": (args)=>`${args.value} képpont`,
|
|
242
|
+
"descending": `csökkenő`,
|
|
243
|
+
"descendingSort": (args)=>`rendezve a(z) ${args.columnName} oszlop szerint, csökkenő sorrendben`,
|
|
244
|
+
"select": `Kijelölés`,
|
|
245
|
+
"selectAll": `Összes kijelölése`,
|
|
246
|
+
"sortable": `rendezendő oszlop`
|
|
247
|
+
};
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
var $3c5ec8e4f015dfd0$exports = {};
|
|
251
|
+
$3c5ec8e4f015dfd0$exports = {
|
|
252
|
+
"ascending": `crescente`,
|
|
253
|
+
"ascendingSort": (args)=>`in ordine crescente in base alla colonna ${args.columnName}`,
|
|
254
|
+
"columnSize": (args)=>`${args.value} pixel`,
|
|
255
|
+
"descending": `decrescente`,
|
|
256
|
+
"descendingSort": (args)=>`in ordine decrescente in base alla colonna ${args.columnName}`,
|
|
257
|
+
"select": `Seleziona`,
|
|
258
|
+
"selectAll": `Seleziona tutto`,
|
|
259
|
+
"sortable": `colonna ordinabile`
|
|
260
|
+
};
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
var $d021d50e6b315ebb$exports = {};
|
|
264
|
+
$d021d50e6b315ebb$exports = {
|
|
265
|
+
"ascending": `昇順`,
|
|
266
|
+
"ascendingSort": (args)=>`列 ${args.columnName} を昇順で並べ替え`,
|
|
267
|
+
"columnSize": (args)=>`${args.value} ピクセル`,
|
|
268
|
+
"descending": `降順`,
|
|
269
|
+
"descendingSort": (args)=>`列 ${args.columnName} を降順で並べ替え`,
|
|
270
|
+
"select": `選択`,
|
|
271
|
+
"selectAll": `すべて選択`,
|
|
272
|
+
"sortable": `並べ替え可能な列`
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
var $52535c35c24ec937$exports = {};
|
|
277
|
+
$52535c35c24ec937$exports = {
|
|
278
|
+
"ascending": `오름차순`,
|
|
279
|
+
"ascendingSort": (args)=>`${args.columnName} 열을 기준으로 오름차순으로 정렬됨`,
|
|
280
|
+
"columnSize": (args)=>`${args.value} 픽셀`,
|
|
281
|
+
"descending": `내림차순`,
|
|
282
|
+
"descendingSort": (args)=>`${args.columnName} 열을 기준으로 내림차순으로 정렬됨`,
|
|
283
|
+
"select": `선택`,
|
|
284
|
+
"selectAll": `모두 선택`,
|
|
285
|
+
"sortable": `정렬 가능한 열`
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
var $b37ee03672edfd1d$exports = {};
|
|
290
|
+
$b37ee03672edfd1d$exports = {
|
|
291
|
+
"ascending": `didėjančia tvarka`,
|
|
292
|
+
"ascendingSort": (args)=>`surikiuota pagal stulpelį ${args.columnName} didėjančia tvarka`,
|
|
293
|
+
"columnSize": (args)=>`${args.value} piks.`,
|
|
294
|
+
"descending": `mažėjančia tvarka`,
|
|
295
|
+
"descendingSort": (args)=>`surikiuota pagal stulpelį ${args.columnName} mažėjančia tvarka`,
|
|
296
|
+
"select": `Pasirinkti`,
|
|
297
|
+
"selectAll": `Pasirinkti viską`,
|
|
298
|
+
"sortable": `rikiuojamas stulpelis`
|
|
299
|
+
};
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
var $c7df6686b4189d56$exports = {};
|
|
303
|
+
$c7df6686b4189d56$exports = {
|
|
304
|
+
"ascending": `augošā secībā`,
|
|
305
|
+
"ascendingSort": (args)=>`kārtots pēc kolonnas ${args.columnName} augošā secībā`,
|
|
306
|
+
"columnSize": (args)=>`${args.value} pikseļi`,
|
|
307
|
+
"descending": `dilstošā secībā`,
|
|
308
|
+
"descendingSort": (args)=>`kārtots pēc kolonnas ${args.columnName} dilstošā secībā`,
|
|
309
|
+
"select": `Atlasīt`,
|
|
310
|
+
"selectAll": `Atlasīt visu`,
|
|
311
|
+
"sortable": `kārtojamā kolonna`
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
var $da07fe8ec87e6b68$exports = {};
|
|
316
|
+
$da07fe8ec87e6b68$exports = {
|
|
317
|
+
"ascending": `stigende`,
|
|
318
|
+
"ascendingSort": (args)=>`sortert etter kolonne ${args.columnName} i stigende rekkefølge`,
|
|
319
|
+
"columnSize": (args)=>`${args.value} piksler`,
|
|
320
|
+
"descending": `synkende`,
|
|
321
|
+
"descendingSort": (args)=>`sortert etter kolonne ${args.columnName} i synkende rekkefølge`,
|
|
322
|
+
"select": `Velg`,
|
|
323
|
+
"selectAll": `Velg alle`,
|
|
324
|
+
"sortable": `kolonne som kan sorteres`
|
|
325
|
+
};
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
var $64b7e390f5791490$exports = {};
|
|
329
|
+
$64b7e390f5791490$exports = {
|
|
330
|
+
"ascending": `oplopend`,
|
|
331
|
+
"ascendingSort": (args)=>`gesorteerd in oplopende volgorde in kolom ${args.columnName}`,
|
|
332
|
+
"columnSize": (args)=>`${args.value} pixels`,
|
|
333
|
+
"descending": `aflopend`,
|
|
334
|
+
"descendingSort": (args)=>`gesorteerd in aflopende volgorde in kolom ${args.columnName}`,
|
|
335
|
+
"select": `Selecteren`,
|
|
336
|
+
"selectAll": `Alles selecteren`,
|
|
337
|
+
"sortable": `sorteerbare kolom`
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
var $2a03621e773f1678$exports = {};
|
|
342
|
+
$2a03621e773f1678$exports = {
|
|
343
|
+
"ascending": `rosnąco`,
|
|
344
|
+
"ascendingSort": (args)=>`posortowano według kolumny ${args.columnName} w porządku rosnącym`,
|
|
345
|
+
"columnSize": (args)=>`Liczba pikseli: ${args.value}`,
|
|
346
|
+
"descending": `malejąco`,
|
|
347
|
+
"descendingSort": (args)=>`posortowano według kolumny ${args.columnName} w porządku malejącym`,
|
|
348
|
+
"select": `Zaznacz`,
|
|
349
|
+
"selectAll": `Zaznacz wszystko`,
|
|
350
|
+
"sortable": `kolumna z możliwością sortowania`
|
|
351
|
+
};
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
var $0a79c0aba9e5ecc6$exports = {};
|
|
355
|
+
$0a79c0aba9e5ecc6$exports = {
|
|
356
|
+
"ascending": `crescente`,
|
|
357
|
+
"ascendingSort": (args)=>`classificado pela coluna ${args.columnName} em ordem crescente`,
|
|
358
|
+
"columnSize": (args)=>`${args.value} pixels`,
|
|
359
|
+
"descending": `decrescente`,
|
|
360
|
+
"descendingSort": (args)=>`classificado pela coluna ${args.columnName} em ordem decrescente`,
|
|
361
|
+
"select": `Selecionar`,
|
|
362
|
+
"selectAll": `Selecionar tudo`,
|
|
363
|
+
"sortable": `coluna classificável`
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
var $de7b4d0f7dc86fc8$exports = {};
|
|
368
|
+
$de7b4d0f7dc86fc8$exports = {
|
|
369
|
+
"ascending": `ascendente`,
|
|
370
|
+
"ascendingSort": (args)=>`Ordenar por coluna ${args.columnName} em ordem ascendente`,
|
|
371
|
+
"columnSize": (args)=>`${args.value} pixels`,
|
|
372
|
+
"descending": `descendente`,
|
|
373
|
+
"descendingSort": (args)=>`Ordenar por coluna ${args.columnName} em ordem descendente`,
|
|
374
|
+
"select": `Selecionar`,
|
|
375
|
+
"selectAll": `Selecionar tudo`,
|
|
376
|
+
"sortable": `Coluna ordenável`
|
|
377
|
+
};
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
var $28ea7e849d77bd1c$exports = {};
|
|
381
|
+
$28ea7e849d77bd1c$exports = {
|
|
382
|
+
"ascending": `crescătoare`,
|
|
383
|
+
"ascendingSort": (args)=>`sortate după coloana ${args.columnName} în ordine crescătoare`,
|
|
384
|
+
"columnSize": (args)=>`${args.value} pixeli`,
|
|
385
|
+
"descending": `descrescătoare`,
|
|
386
|
+
"descendingSort": (args)=>`sortate după coloana ${args.columnName} în ordine descrescătoare`,
|
|
387
|
+
"select": `Selectare`,
|
|
388
|
+
"selectAll": `Selectare totală`,
|
|
389
|
+
"sortable": `coloană sortabilă`
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
var $9a09321cf046b187$exports = {};
|
|
394
|
+
$9a09321cf046b187$exports = {
|
|
395
|
+
"ascending": `возрастание`,
|
|
396
|
+
"ascendingSort": (args)=>`сортировать столбец ${args.columnName} в порядке возрастания`,
|
|
397
|
+
"columnSize": (args)=>`${args.value} пикс.`,
|
|
398
|
+
"descending": `убывание`,
|
|
399
|
+
"descendingSort": (args)=>`сортировать столбец ${args.columnName} в порядке убывания`,
|
|
400
|
+
"select": `Выбрать`,
|
|
401
|
+
"selectAll": `Выбрать все`,
|
|
402
|
+
"sortable": `сортируемый столбец`
|
|
403
|
+
};
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
var $5afe469a63fcac7b$exports = {};
|
|
407
|
+
$5afe469a63fcac7b$exports = {
|
|
408
|
+
"ascending": `vzostupne`,
|
|
409
|
+
"ascendingSort": (args)=>`zoradené zostupne podľa stĺpca ${args.columnName}`,
|
|
410
|
+
"columnSize": (args)=>`Počet pixelov: ${args.value}`,
|
|
411
|
+
"descending": `zostupne`,
|
|
412
|
+
"descendingSort": (args)=>`zoradené zostupne podľa stĺpca ${args.columnName}`,
|
|
413
|
+
"select": `Vybrať`,
|
|
414
|
+
"selectAll": `Vybrať všetko`,
|
|
415
|
+
"sortable": `zoraditeľný stĺpec`
|
|
416
|
+
};
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
var $2956757ac31a7ce2$exports = {};
|
|
420
|
+
$2956757ac31a7ce2$exports = {
|
|
421
|
+
"ascending": `naraščajoče`,
|
|
422
|
+
"ascendingSort": (args)=>`razvrščeno po stolpcu ${args.columnName} v naraščajočem vrstnem redu`,
|
|
423
|
+
"columnSize": (args)=>`${args.value} slikovnih pik`,
|
|
424
|
+
"descending": `padajoče`,
|
|
425
|
+
"descendingSort": (args)=>`razvrščeno po stolpcu ${args.columnName} v padajočem vrstnem redu`,
|
|
426
|
+
"select": `Izberite`,
|
|
427
|
+
"selectAll": `Izberite vse`,
|
|
428
|
+
"sortable": `razvrstljivi stolpec`
|
|
429
|
+
};
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
var $cedee0e66b175529$exports = {};
|
|
433
|
+
$cedee0e66b175529$exports = {
|
|
434
|
+
"ascending": `rastući`,
|
|
435
|
+
"ascendingSort": (args)=>`sortirano po kolonama ${args.columnName} rastućim redosledom`,
|
|
436
|
+
"descending": `padajući`,
|
|
437
|
+
"descendingSort": (args)=>`sortirano po kolonama ${args.columnName} padajućim redosledom`,
|
|
438
|
+
"select": `Izaberite`,
|
|
439
|
+
"selectAll": `Izaberite sve`,
|
|
440
|
+
"sortable": `kolona koja se može sortirati`
|
|
441
|
+
};
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
var $6db19998ba4427da$exports = {};
|
|
445
|
+
$6db19998ba4427da$exports = {
|
|
446
|
+
"ascending": `stigande`,
|
|
447
|
+
"ascendingSort": (args)=>`sorterat på kolumn ${args.columnName} i stigande ordning`,
|
|
448
|
+
"columnSize": (args)=>`${args.value} pixlar`,
|
|
449
|
+
"descending": `fallande`,
|
|
450
|
+
"descendingSort": (args)=>`sorterat på kolumn ${args.columnName} i fallande ordning`,
|
|
451
|
+
"select": `Markera`,
|
|
452
|
+
"selectAll": `Markera allt`,
|
|
453
|
+
"sortable": `sorterbar kolumn`
|
|
454
|
+
};
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
var $166b7c9cc1adb1a1$exports = {};
|
|
458
|
+
$166b7c9cc1adb1a1$exports = {
|
|
459
|
+
"ascending": `artan sırada`,
|
|
460
|
+
"ascendingSort": (args)=>`${args.columnName} sütuna göre artan düzende sırala`,
|
|
461
|
+
"columnSize": (args)=>`${args.value} piksel`,
|
|
462
|
+
"descending": `azalan sırada`,
|
|
463
|
+
"descendingSort": (args)=>`${args.columnName} sütuna göre azalan düzende sırala`,
|
|
464
|
+
"select": `Seç`,
|
|
465
|
+
"selectAll": `Tümünü Seç`,
|
|
466
|
+
"sortable": `Sıralanabilir sütun`
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
var $c7ab180b401e49ff$exports = {};
|
|
471
|
+
$c7ab180b401e49ff$exports = {
|
|
472
|
+
"ascending": `висхідний`,
|
|
473
|
+
"ascendingSort": (args)=>`відсортовано за стовпцем ${args.columnName} у висхідному порядку`,
|
|
474
|
+
"columnSize": (args)=>`${args.value} пікс.`,
|
|
475
|
+
"descending": `низхідний`,
|
|
476
|
+
"descendingSort": (args)=>`відсортовано за стовпцем ${args.columnName} у низхідному порядку`,
|
|
477
|
+
"select": `Вибрати`,
|
|
478
|
+
"selectAll": `Вибрати все`,
|
|
479
|
+
"sortable": `сортувальний стовпець`
|
|
480
|
+
};
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
var $1648ec00941567f3$exports = {};
|
|
484
|
+
$1648ec00941567f3$exports = {
|
|
485
|
+
"ascending": `升序`,
|
|
486
|
+
"ascendingSort": (args)=>`按列 ${args.columnName} 升序排序`,
|
|
487
|
+
"columnSize": (args)=>`${args.value} 像素`,
|
|
488
|
+
"descending": `降序`,
|
|
489
|
+
"descendingSort": (args)=>`按列 ${args.columnName} 降序排序`,
|
|
490
|
+
"select": `选择`,
|
|
491
|
+
"selectAll": `全选`,
|
|
492
|
+
"sortable": `可排序的列`
|
|
493
|
+
};
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
var $b26f22384b3c1526$exports = {};
|
|
497
|
+
$b26f22384b3c1526$exports = {
|
|
498
|
+
"ascending": `遞增`,
|
|
499
|
+
"ascendingSort": (args)=>`已依據「${args.columnName}」欄遞增排序`,
|
|
500
|
+
"columnSize": (args)=>`${args.value} 像素`,
|
|
501
|
+
"descending": `遞減`,
|
|
502
|
+
"descendingSort": (args)=>`已依據「${args.columnName}」欄遞減排序`,
|
|
503
|
+
"select": `選取`,
|
|
504
|
+
"selectAll": `全選`,
|
|
505
|
+
"sortable": `可排序的欄`
|
|
506
|
+
};
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
$ae7e9c471762b4d3$exports = {
|
|
510
|
+
"ar-AE": $ce3de3ff2fd66848$exports,
|
|
511
|
+
"bg-BG": $cb80dcce530985b9$exports,
|
|
512
|
+
"cs-CZ": $68ac86749db4c0fb$exports,
|
|
513
|
+
"da-DK": $9a6cbac08487e661$exports,
|
|
514
|
+
"de-DE": $c963661d89486e72$exports,
|
|
515
|
+
"el-GR": $ac03861c6e8605f4$exports,
|
|
516
|
+
"en-US": $09e6b82e0d6e466a$exports,
|
|
517
|
+
"es-ES": $8cc39eb66c2bf220$exports,
|
|
518
|
+
"et-EE": $4e11db3c25a38112$exports,
|
|
519
|
+
"fi-FI": $da1e751a92575e02$exports,
|
|
520
|
+
"fr-FR": $1b5d6c6c47d55106$exports,
|
|
521
|
+
"he-IL": $7c18ba27b86d3308$exports,
|
|
522
|
+
"hr-HR": $2cb40998e20e8a46$exports,
|
|
523
|
+
"hu-HU": $189e23eec1d6aa3a$exports,
|
|
524
|
+
"it-IT": $3c5ec8e4f015dfd0$exports,
|
|
525
|
+
"ja-JP": $d021d50e6b315ebb$exports,
|
|
526
|
+
"ko-KR": $52535c35c24ec937$exports,
|
|
527
|
+
"lt-LT": $b37ee03672edfd1d$exports,
|
|
528
|
+
"lv-LV": $c7df6686b4189d56$exports,
|
|
529
|
+
"nb-NO": $da07fe8ec87e6b68$exports,
|
|
530
|
+
"nl-NL": $64b7e390f5791490$exports,
|
|
531
|
+
"pl-PL": $2a03621e773f1678$exports,
|
|
532
|
+
"pt-BR": $0a79c0aba9e5ecc6$exports,
|
|
533
|
+
"pt-PT": $de7b4d0f7dc86fc8$exports,
|
|
534
|
+
"ro-RO": $28ea7e849d77bd1c$exports,
|
|
535
|
+
"ru-RU": $9a09321cf046b187$exports,
|
|
536
|
+
"sk-SK": $5afe469a63fcac7b$exports,
|
|
537
|
+
"sl-SI": $2956757ac31a7ce2$exports,
|
|
538
|
+
"sr-SP": $cedee0e66b175529$exports,
|
|
539
|
+
"sv-SE": $6db19998ba4427da$exports,
|
|
540
|
+
"tr-TR": $166b7c9cc1adb1a1$exports,
|
|
541
|
+
"uk-UA": $c7ab180b401e49ff$exports,
|
|
542
|
+
"zh-CN": $1648ec00941567f3$exports,
|
|
543
|
+
"zh-TW": $b26f22384b3c1526$exports
|
|
544
|
+
};
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
/*
|
|
550
|
+
* Copyright 2022 Adobe. All rights reserved.
|
|
551
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
552
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
553
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
554
|
+
*
|
|
555
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
556
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
557
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
558
|
+
* governing permissions and limitations under the License.
|
|
559
|
+
*/
|
|
560
|
+
class $0ba3c81c7f1caedd$export$da43f8f5cb04028d extends (0, $lJcFS$GridKeyboardDelegate) {
|
|
561
|
+
isCell(node) {
|
|
562
|
+
return node.type === "cell" || node.type === "rowheader" || node.type === "column";
|
|
563
|
+
}
|
|
564
|
+
getKeyBelow(key) {
|
|
565
|
+
let startItem = this.collection.getItem(key);
|
|
566
|
+
if (!startItem) return;
|
|
567
|
+
// If focus was on a column, then focus the first child column if any,
|
|
568
|
+
// or find the corresponding cell in the first row.
|
|
569
|
+
if (startItem.type === "column") {
|
|
570
|
+
let child = [
|
|
571
|
+
...startItem.childNodes
|
|
572
|
+
][0];
|
|
573
|
+
if (child) return child.key;
|
|
574
|
+
let firstKey = this.getFirstKey();
|
|
575
|
+
if (firstKey == null) return;
|
|
576
|
+
let firstItem = this.collection.getItem(firstKey);
|
|
577
|
+
return [
|
|
578
|
+
...firstItem.childNodes
|
|
579
|
+
][startItem.index].key;
|
|
580
|
+
}
|
|
581
|
+
return super.getKeyBelow(key);
|
|
582
|
+
}
|
|
583
|
+
getKeyAbove(key) {
|
|
584
|
+
let startItem = this.collection.getItem(key);
|
|
585
|
+
if (!startItem) return;
|
|
586
|
+
// If focus was on a column, focus the parent column if any
|
|
587
|
+
if (startItem.type === "column") {
|
|
588
|
+
let parent = this.collection.getItem(startItem.parentKey);
|
|
589
|
+
if (parent && parent.type === "column") return parent.key;
|
|
590
|
+
return;
|
|
591
|
+
}
|
|
592
|
+
// only return above row key if not header row
|
|
593
|
+
let superKey = super.getKeyAbove(key);
|
|
594
|
+
if (superKey != null && this.collection.getItem(superKey).type !== "headerrow") return superKey;
|
|
595
|
+
// If no item was found, and focus was on a cell, then focus the
|
|
596
|
+
// corresponding column header.
|
|
597
|
+
if (this.isCell(startItem)) return this.collection.columns[startItem.index].key;
|
|
598
|
+
// If focus was on a row, then focus the first column header.
|
|
599
|
+
return this.collection.columns[0].key;
|
|
600
|
+
}
|
|
601
|
+
findNextColumnKey(column) {
|
|
602
|
+
// Search following columns
|
|
603
|
+
let key = this.findNextKey(column.key, (item)=>item.type === "column");
|
|
604
|
+
if (key != null) return key;
|
|
605
|
+
// Wrap around to the first column
|
|
606
|
+
let row = this.collection.headerRows[column.level];
|
|
607
|
+
for (let item of row.childNodes){
|
|
608
|
+
if (item.type === "column") return item.key;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
findPreviousColumnKey(column) {
|
|
612
|
+
// Search previous columns
|
|
613
|
+
let key = this.findPreviousKey(column.key, (item)=>item.type === "column");
|
|
614
|
+
if (key != null) return key;
|
|
615
|
+
// Wrap around to the last column
|
|
616
|
+
let row = this.collection.headerRows[column.level];
|
|
617
|
+
let childNodes = [
|
|
618
|
+
...row.childNodes
|
|
619
|
+
];
|
|
620
|
+
for(let i = childNodes.length - 1; i >= 0; i--){
|
|
621
|
+
let item = childNodes[i];
|
|
622
|
+
if (item.type === "column") return item.key;
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
getKeyRightOf(key) {
|
|
626
|
+
let item = this.collection.getItem(key);
|
|
627
|
+
if (!item) return;
|
|
628
|
+
// If focus was on a column, then focus the next column
|
|
629
|
+
if (item.type === "column") return this.direction === "rtl" ? this.findPreviousColumnKey(item) : this.findNextColumnKey(item);
|
|
630
|
+
return super.getKeyRightOf(key);
|
|
631
|
+
}
|
|
632
|
+
getKeyLeftOf(key) {
|
|
633
|
+
let item = this.collection.getItem(key);
|
|
634
|
+
if (!item) return;
|
|
635
|
+
// If focus was on a column, then focus the previous column
|
|
636
|
+
if (item.type === "column") return this.direction === "rtl" ? this.findNextColumnKey(item) : this.findPreviousColumnKey(item);
|
|
637
|
+
return super.getKeyLeftOf(key);
|
|
638
|
+
}
|
|
639
|
+
getKeyForSearch(search, fromKey) {
|
|
640
|
+
if (!this.collator) return null;
|
|
641
|
+
let collection = this.collection;
|
|
642
|
+
let key = fromKey !== null && fromKey !== void 0 ? fromKey : this.getFirstKey();
|
|
643
|
+
if (key == null) return null;
|
|
644
|
+
// If the starting key is a cell, search from its parent row.
|
|
645
|
+
let startItem = collection.getItem(key);
|
|
646
|
+
if (startItem.type === "cell") key = startItem.parentKey;
|
|
647
|
+
let hasWrapped = false;
|
|
648
|
+
while(key != null){
|
|
649
|
+
let item = collection.getItem(key);
|
|
650
|
+
// Check each of the row header cells in this row for a match
|
|
651
|
+
for (let cell of item.childNodes){
|
|
652
|
+
let column = collection.columns[cell.index];
|
|
653
|
+
if (collection.rowHeaderColumnKeys.has(column.key) && cell.textValue) {
|
|
654
|
+
let substring = cell.textValue.slice(0, search.length);
|
|
655
|
+
if (this.collator.compare(substring, search) === 0) {
|
|
656
|
+
// If we started on a cell, end on the matching cell. Otherwise, end on the row.
|
|
657
|
+
let fromItem = fromKey != null ? collection.getItem(fromKey) : startItem;
|
|
658
|
+
return fromItem.type === "cell" ? cell.key : item.key;
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
key = this.getKeyBelow(key);
|
|
663
|
+
// Wrap around when reaching the end of the collection
|
|
664
|
+
if (key == null && !hasWrapped) {
|
|
665
|
+
key = this.getFirstKey();
|
|
666
|
+
hasWrapped = true;
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
return null;
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
function $6e31608fbba75bab$export$25bceaac3c7e4dc7(props, state, ref) {
|
|
677
|
+
let { keyboardDelegate: keyboardDelegate , isVirtualized: isVirtualized , layout: layout } = props;
|
|
678
|
+
// By default, a KeyboardDelegate is provided which uses the DOM to query layout information (e.g. for page up/page down).
|
|
679
|
+
// When virtualized, the layout object will be passed in as a prop and override this.
|
|
680
|
+
let collator = (0, $lJcFS$useCollator)({
|
|
681
|
+
usage: "search",
|
|
682
|
+
sensitivity: "base"
|
|
683
|
+
});
|
|
684
|
+
let { direction: direction } = (0, $lJcFS$useLocale)();
|
|
685
|
+
let delegate = (0, $lJcFS$useMemo)(()=>keyboardDelegate || new (0, $0ba3c81c7f1caedd$export$da43f8f5cb04028d)({
|
|
686
|
+
collection: state.collection,
|
|
687
|
+
disabledKeys: state.disabledKeys,
|
|
688
|
+
ref: ref,
|
|
689
|
+
direction: direction,
|
|
690
|
+
collator: collator,
|
|
691
|
+
layout: layout
|
|
692
|
+
}), [
|
|
693
|
+
keyboardDelegate,
|
|
694
|
+
state.collection,
|
|
695
|
+
state.disabledKeys,
|
|
696
|
+
ref,
|
|
697
|
+
direction,
|
|
698
|
+
collator,
|
|
699
|
+
layout
|
|
700
|
+
]);
|
|
701
|
+
let id = (0, $lJcFS$useId)(props.id);
|
|
702
|
+
(0, $2140fb2337097f2d$export$552312adfd451dab).set(state, id);
|
|
703
|
+
let { gridProps: gridProps } = (0, $lJcFS$useGrid)({
|
|
704
|
+
...props,
|
|
705
|
+
id: id,
|
|
706
|
+
keyboardDelegate: delegate,
|
|
707
|
+
getRowText (key) {
|
|
708
|
+
let added = state.collection.getItem(key);
|
|
709
|
+
if (!added) return "";
|
|
710
|
+
// If the row has a textValue, use that.
|
|
711
|
+
if (added.textValue != null) return added.textValue;
|
|
712
|
+
// Otherwise combine the text of each of the row header columns.
|
|
713
|
+
let rowHeaderColumnKeys = state.collection.rowHeaderColumnKeys;
|
|
714
|
+
if (rowHeaderColumnKeys) {
|
|
715
|
+
let text = [];
|
|
716
|
+
for (let cell of added.childNodes){
|
|
717
|
+
let column = state.collection.columns[cell.index];
|
|
718
|
+
if (rowHeaderColumnKeys.has(column.key) && cell.textValue) text.push(cell.textValue);
|
|
719
|
+
if (text.length === rowHeaderColumnKeys.size) break;
|
|
720
|
+
}
|
|
721
|
+
return text.join(" ");
|
|
722
|
+
}
|
|
723
|
+
return "";
|
|
724
|
+
}
|
|
725
|
+
}, state, ref);
|
|
726
|
+
// Override to include header rows
|
|
727
|
+
if (isVirtualized) gridProps["aria-rowcount"] = state.collection.size + state.collection.headerRows.length;
|
|
728
|
+
let { column: column , direction: sortDirection } = state.sortDescriptor || {};
|
|
729
|
+
let stringFormatter = (0, $lJcFS$useLocalizedStringFormatter)((0, (/*@__PURE__*/$parcel$interopDefault($ae7e9c471762b4d3$exports))));
|
|
730
|
+
let sortDescription = (0, $lJcFS$useMemo)(()=>{
|
|
731
|
+
var _state_collection_columns_find;
|
|
732
|
+
let columnName = (_state_collection_columns_find = state.collection.columns.find((c)=>c.key === column)) === null || _state_collection_columns_find === void 0 ? void 0 : _state_collection_columns_find.textValue;
|
|
733
|
+
return sortDirection && column ? stringFormatter.format(`${sortDirection}Sort`, {
|
|
734
|
+
columnName: columnName
|
|
735
|
+
}) : undefined;
|
|
736
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
737
|
+
}, [
|
|
738
|
+
sortDirection,
|
|
739
|
+
column,
|
|
740
|
+
state.collection.columns
|
|
741
|
+
]);
|
|
742
|
+
let descriptionProps = (0, $lJcFS$useDescription)(sortDescription);
|
|
743
|
+
// Only announce after initial render, tabbing to the table will tell you the initial sort info already
|
|
744
|
+
(0, $lJcFS$useUpdateEffect)(()=>{
|
|
745
|
+
(0, $lJcFS$announce)(sortDescription, "assertive", 500);
|
|
746
|
+
}, [
|
|
747
|
+
sortDescription
|
|
748
|
+
]);
|
|
749
|
+
return {
|
|
750
|
+
gridProps: (0, $lJcFS$mergeProps)(gridProps, descriptionProps, // If table is empty, make sure the table is tabbable
|
|
751
|
+
state.collection.size === 0 && {
|
|
752
|
+
tabIndex: 0
|
|
753
|
+
}, {
|
|
754
|
+
// merge sort description with long press information
|
|
755
|
+
"aria-describedby": [
|
|
756
|
+
descriptionProps["aria-describedby"],
|
|
757
|
+
gridProps["aria-describedby"]
|
|
758
|
+
].filter(Boolean).join(" ")
|
|
759
|
+
})
|
|
760
|
+
};
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
/*
|
|
765
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
766
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
767
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
768
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
769
|
+
*
|
|
770
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
771
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
772
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
773
|
+
* governing permissions and limitations under the License.
|
|
774
|
+
*/
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
function $f329116d8ad0aba0$export$9514819a8c81e960(props, state, ref) {
|
|
782
|
+
var _state_sortDescriptor, _state_sortDescriptor1;
|
|
783
|
+
let { node: node } = props;
|
|
784
|
+
let allowsSorting = node.props.allowsSorting;
|
|
785
|
+
// if there are no focusable children, the column header will focus the cell
|
|
786
|
+
let { gridCellProps: gridCellProps } = (0, $lJcFS$useGridCell)({
|
|
787
|
+
...props,
|
|
788
|
+
focusMode: "child"
|
|
789
|
+
}, state, ref);
|
|
790
|
+
let isSelectionCellDisabled = node.props.isSelectionCell && state.selectionManager.selectionMode === "single";
|
|
791
|
+
let { pressProps: pressProps } = (0, $lJcFS$usePress)({
|
|
792
|
+
isDisabled: !allowsSorting || isSelectionCellDisabled,
|
|
793
|
+
onPress () {
|
|
794
|
+
state.sort(node.key);
|
|
795
|
+
},
|
|
796
|
+
ref: ref
|
|
797
|
+
});
|
|
798
|
+
// Needed to pick up the focusable context, enabling things like Tooltips for example
|
|
799
|
+
let { focusableProps: focusableProps } = (0, $lJcFS$useFocusable)({}, ref);
|
|
800
|
+
let ariaSort = null;
|
|
801
|
+
let isSortedColumn = ((_state_sortDescriptor = state.sortDescriptor) === null || _state_sortDescriptor === void 0 ? void 0 : _state_sortDescriptor.column) === node.key;
|
|
802
|
+
let sortDirection = (_state_sortDescriptor1 = state.sortDescriptor) === null || _state_sortDescriptor1 === void 0 ? void 0 : _state_sortDescriptor1.direction;
|
|
803
|
+
// aria-sort not supported in Android Talkback
|
|
804
|
+
if (node.props.allowsSorting && !(0, $lJcFS$isAndroid)()) ariaSort = isSortedColumn ? sortDirection : "none";
|
|
805
|
+
let stringFormatter = (0, $lJcFS$useLocalizedStringFormatter)((0, (/*@__PURE__*/$parcel$interopDefault($ae7e9c471762b4d3$exports))));
|
|
806
|
+
let sortDescription;
|
|
807
|
+
if (allowsSorting) {
|
|
808
|
+
sortDescription = `${stringFormatter.format("sortable")}`;
|
|
809
|
+
// Android Talkback doesn't support aria-sort so we add sort order details to the aria-described by here
|
|
810
|
+
if (isSortedColumn && sortDirection && (0, $lJcFS$isAndroid)()) sortDescription = `${sortDescription}, ${stringFormatter.format(sortDirection)}`;
|
|
811
|
+
}
|
|
812
|
+
let descriptionProps = (0, $lJcFS$useDescription)(sortDescription);
|
|
813
|
+
return {
|
|
814
|
+
columnHeaderProps: {
|
|
815
|
+
...(0, $lJcFS$mergeProps)(gridCellProps, pressProps, focusableProps, descriptionProps, // If the table is empty, make all column headers untabbable or programatically focusable
|
|
816
|
+
state.collection.size === 0 && {
|
|
817
|
+
tabIndex: null
|
|
818
|
+
}),
|
|
819
|
+
role: "columnheader",
|
|
820
|
+
id: (0, $2140fb2337097f2d$export$37cd4213f2ad742e)(state, node.key),
|
|
821
|
+
"aria-colspan": node.colspan && node.colspan > 1 ? node.colspan : null,
|
|
822
|
+
"aria-sort": ariaSort
|
|
823
|
+
}
|
|
824
|
+
};
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
/*
|
|
829
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
830
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
831
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
832
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
833
|
+
*
|
|
834
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
835
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
836
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
837
|
+
* governing permissions and limitations under the License.
|
|
838
|
+
*/
|
|
839
|
+
|
|
840
|
+
function $b2db214c022798eb$export$7f2f6ae19e707aa5(props, state, ref) {
|
|
841
|
+
let { node: node } = props;
|
|
842
|
+
let { rowProps: rowProps , isPressed: isPressed } = (0, $lJcFS$useGridRow)(props, state, ref);
|
|
843
|
+
return {
|
|
844
|
+
rowProps: {
|
|
845
|
+
...rowProps,
|
|
846
|
+
"aria-labelledby": (0, $2140fb2337097f2d$export$85069b70317f543)(state, node.key)
|
|
847
|
+
},
|
|
848
|
+
isPressed: isPressed
|
|
849
|
+
};
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
/*
|
|
854
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
855
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
856
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
857
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
858
|
+
*
|
|
859
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
860
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
861
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
862
|
+
* governing permissions and limitations under the License.
|
|
863
|
+
*/ function $f917ee10f4c32dab$export$1b95a7d2d517b841(props, state, ref) {
|
|
864
|
+
let { node: node , isVirtualized: isVirtualized } = props;
|
|
865
|
+
let rowProps = {
|
|
866
|
+
role: "row"
|
|
867
|
+
};
|
|
868
|
+
if (isVirtualized) rowProps["aria-rowindex"] = node.index + 1; // aria-rowindex is 1 based
|
|
869
|
+
return {
|
|
870
|
+
rowProps: rowProps
|
|
871
|
+
};
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
/*
|
|
876
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
877
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
878
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
879
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
880
|
+
*
|
|
881
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
882
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
883
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
884
|
+
* governing permissions and limitations under the License.
|
|
885
|
+
*/
|
|
886
|
+
|
|
887
|
+
function $7713593715703b24$export$49571c903d73624c(props, state, ref) {
|
|
888
|
+
let { gridCellProps: gridCellProps , isPressed: isPressed } = (0, $lJcFS$useGridCell)(props, state, ref);
|
|
889
|
+
let columnKey = props.node.column.key;
|
|
890
|
+
if (state.collection.rowHeaderColumnKeys.has(columnKey)) {
|
|
891
|
+
gridCellProps.role = "rowheader";
|
|
892
|
+
gridCellProps.id = (0, $2140fb2337097f2d$export$19baff3266315d44)(state, props.node.parentKey, columnKey);
|
|
893
|
+
}
|
|
894
|
+
return {
|
|
895
|
+
gridCellProps: gridCellProps,
|
|
896
|
+
isPressed: isPressed
|
|
897
|
+
};
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
/*
|
|
902
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
903
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
904
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
905
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
906
|
+
*
|
|
907
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
908
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
909
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
910
|
+
* governing permissions and limitations under the License.
|
|
911
|
+
*/
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
function $2a795c53a101c542$export$16ea7f650bd7c1bb(props, state) {
|
|
916
|
+
let { key: key } = props;
|
|
917
|
+
const { checkboxProps: checkboxProps } = (0, $lJcFS$useGridSelectionCheckbox)(props, state);
|
|
918
|
+
return {
|
|
919
|
+
checkboxProps: {
|
|
920
|
+
...checkboxProps,
|
|
921
|
+
"aria-labelledby": `${checkboxProps.id} ${(0, $2140fb2337097f2d$export$85069b70317f543)(state, key)}`
|
|
922
|
+
}
|
|
923
|
+
};
|
|
924
|
+
}
|
|
925
|
+
function $2a795c53a101c542$export$1003db6a7e384b99(state) {
|
|
926
|
+
let { isEmpty: isEmpty , isSelectAll: isSelectAll , selectionMode: selectionMode } = state.selectionManager;
|
|
927
|
+
const stringFormatter = (0, $lJcFS$useLocalizedStringFormatter)((0, (/*@__PURE__*/$parcel$interopDefault($ae7e9c471762b4d3$exports))));
|
|
928
|
+
return {
|
|
929
|
+
checkboxProps: {
|
|
930
|
+
"aria-label": stringFormatter.format(selectionMode === "single" ? "select" : "selectAll"),
|
|
931
|
+
isSelected: isSelectAll,
|
|
932
|
+
isDisabled: selectionMode !== "multiple" || state.collection.size === 0,
|
|
933
|
+
isIndeterminate: !isEmpty && !isSelectAll,
|
|
934
|
+
onChange: ()=>state.selectionManager.toggleSelectAll()
|
|
935
|
+
}
|
|
936
|
+
};
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
/*
|
|
941
|
+
* Copyright 2020 Adobe. All rights reserved.
|
|
942
|
+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
943
|
+
* you may not use this file except in compliance with the License. You may obtain a copy
|
|
944
|
+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
945
|
+
*
|
|
946
|
+
* Unless required by applicable law or agreed to in writing, software distributed under
|
|
947
|
+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
948
|
+
* OF ANY KIND, either express or implied. See the License for the specific language
|
|
949
|
+
* governing permissions and limitations under the License.
|
|
950
|
+
*/
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
function $e91ef4e5004e3774$export$52994e973806c219(props, state, ref) {
|
|
958
|
+
let { column: item , triggerRef: triggerRef , isDisabled: isDisabled , onResizeStart: onResizeStart , onResize: onResize , onResizeEnd: onResizeEnd } = props;
|
|
959
|
+
const stringFormatter = (0, $lJcFS$useLocalizedStringFormatter)((0, (/*@__PURE__*/$parcel$interopDefault($ae7e9c471762b4d3$exports))));
|
|
960
|
+
let id = (0, $lJcFS$useId)();
|
|
961
|
+
let isResizing = (0, $lJcFS$useRef)(false);
|
|
962
|
+
let lastSize = (0, $lJcFS$useRef)(null);
|
|
963
|
+
let { direction: direction } = (0, $lJcFS$useLocale)();
|
|
964
|
+
let { keyboardProps: keyboardProps } = (0, $lJcFS$useKeyboard)({
|
|
965
|
+
onKeyDown: (e)=>{
|
|
966
|
+
if ((triggerRef === null || triggerRef === void 0 ? void 0 : triggerRef.current) && (e.key === "Escape" || e.key === "Enter" || e.key === " " || e.key === "Tab")) {
|
|
967
|
+
e.preventDefault();
|
|
968
|
+
// switch focus back to the column header on anything that ends edit mode
|
|
969
|
+
(0, $lJcFS$focusSafely)(triggerRef.current);
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
});
|
|
973
|
+
let startResize = (0, $lJcFS$useCallback)((item)=>{
|
|
974
|
+
if (!isResizing.current) {
|
|
975
|
+
lastSize.current = state.updateResizedColumns(item.key, state.getColumnWidth(item.key));
|
|
976
|
+
state.startResize(item.key);
|
|
977
|
+
onResizeStart === null || onResizeStart === void 0 ? void 0 : onResizeStart(lastSize.current);
|
|
978
|
+
}
|
|
979
|
+
isResizing.current = true;
|
|
980
|
+
}, [
|
|
981
|
+
isResizing,
|
|
982
|
+
onResizeStart,
|
|
983
|
+
state
|
|
984
|
+
]);
|
|
985
|
+
let resize = (0, $lJcFS$useCallback)((item, newWidth)=>{
|
|
986
|
+
let sizes = state.updateResizedColumns(item.key, newWidth);
|
|
987
|
+
onResize === null || onResize === void 0 ? void 0 : onResize(sizes);
|
|
988
|
+
lastSize.current = sizes;
|
|
989
|
+
}, [
|
|
990
|
+
onResize,
|
|
991
|
+
state
|
|
992
|
+
]);
|
|
993
|
+
let endResize = (0, $lJcFS$useCallback)((item)=>{
|
|
994
|
+
if (lastSize.current == null) lastSize.current = state.updateResizedColumns(item.key, state.getColumnWidth(item.key));
|
|
995
|
+
if (isResizing.current) {
|
|
996
|
+
state.endResize();
|
|
997
|
+
onResizeEnd === null || onResizeEnd === void 0 ? void 0 : onResizeEnd(lastSize.current);
|
|
998
|
+
}
|
|
999
|
+
isResizing.current = false;
|
|
1000
|
+
lastSize.current = null;
|
|
1001
|
+
}, [
|
|
1002
|
+
isResizing,
|
|
1003
|
+
onResizeEnd,
|
|
1004
|
+
state
|
|
1005
|
+
]);
|
|
1006
|
+
const columnResizeWidthRef = (0, $lJcFS$useRef)(0);
|
|
1007
|
+
const { moveProps: moveProps } = (0, $lJcFS$useMove)({
|
|
1008
|
+
onMoveStart () {
|
|
1009
|
+
columnResizeWidthRef.current = state.getColumnWidth(item.key);
|
|
1010
|
+
startResize(item);
|
|
1011
|
+
},
|
|
1012
|
+
onMove (e) {
|
|
1013
|
+
let { deltaX: deltaX , deltaY: deltaY , pointerType: pointerType } = e;
|
|
1014
|
+
if (direction === "rtl") deltaX *= -1;
|
|
1015
|
+
if (pointerType === "keyboard") {
|
|
1016
|
+
if (deltaY !== 0 && deltaX === 0) deltaX = deltaY * -1;
|
|
1017
|
+
deltaX *= 10;
|
|
1018
|
+
}
|
|
1019
|
+
// if moving up/down only, no need to resize
|
|
1020
|
+
if (deltaX !== 0) {
|
|
1021
|
+
columnResizeWidthRef.current += deltaX;
|
|
1022
|
+
resize(item, columnResizeWidthRef.current);
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
onMoveEnd (e) {
|
|
1026
|
+
let { pointerType: pointerType } = e;
|
|
1027
|
+
columnResizeWidthRef.current = 0;
|
|
1028
|
+
if (pointerType === "mouse") endResize(item);
|
|
1029
|
+
}
|
|
1030
|
+
});
|
|
1031
|
+
let min = Math.floor(state.getColumnMinWidth(item.key));
|
|
1032
|
+
let max = Math.floor(state.getColumnMaxWidth(item.key));
|
|
1033
|
+
if (max === Infinity) max = Number.MAX_SAFE_INTEGER;
|
|
1034
|
+
let value = Math.floor(state.getColumnWidth(item.key));
|
|
1035
|
+
let ariaProps = {
|
|
1036
|
+
"aria-label": props.label,
|
|
1037
|
+
"aria-orientation": "horizontal",
|
|
1038
|
+
"aria-labelledby": `${id} ${(0, $2140fb2337097f2d$export$37cd4213f2ad742e)(state.tableState, item.key)}`,
|
|
1039
|
+
"aria-valuetext": stringFormatter.format("columnSize", {
|
|
1040
|
+
value: value
|
|
1041
|
+
}),
|
|
1042
|
+
"type": "range",
|
|
1043
|
+
min: min,
|
|
1044
|
+
max: max,
|
|
1045
|
+
value: value
|
|
1046
|
+
};
|
|
1047
|
+
const focusInput = (0, $lJcFS$useCallback)(()=>{
|
|
1048
|
+
if (ref.current) (0, $lJcFS$focusWithoutScrolling)(ref.current);
|
|
1049
|
+
}, [
|
|
1050
|
+
ref
|
|
1051
|
+
]);
|
|
1052
|
+
let onChange = (e)=>{
|
|
1053
|
+
let currentWidth = state.getColumnWidth(item.key);
|
|
1054
|
+
let nextValue = parseFloat(e.target.value);
|
|
1055
|
+
if (nextValue > currentWidth) nextValue = currentWidth + 10;
|
|
1056
|
+
else nextValue = currentWidth - 10;
|
|
1057
|
+
resize(item, nextValue);
|
|
1058
|
+
};
|
|
1059
|
+
let { pressProps: pressProps } = (0, $lJcFS$usePress)({
|
|
1060
|
+
onPressStart: (e)=>{
|
|
1061
|
+
if (e.ctrlKey || e.altKey || e.metaKey || e.shiftKey || e.pointerType === "keyboard") return;
|
|
1062
|
+
if (e.pointerType === "virtual" && state.resizingColumn != null) {
|
|
1063
|
+
endResize(item);
|
|
1064
|
+
if (triggerRef === null || triggerRef === void 0 ? void 0 : triggerRef.current) (0, $lJcFS$focusSafely)(triggerRef.current);
|
|
1065
|
+
return;
|
|
1066
|
+
}
|
|
1067
|
+
focusInput();
|
|
1068
|
+
},
|
|
1069
|
+
onPress: (e)=>{
|
|
1070
|
+
if (e.pointerType === "touch") focusInput();
|
|
1071
|
+
else if (e.pointerType !== "virtual") {
|
|
1072
|
+
if (triggerRef === null || triggerRef === void 0 ? void 0 : triggerRef.current) (0, $lJcFS$focusSafely)(triggerRef.current);
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
});
|
|
1076
|
+
return {
|
|
1077
|
+
resizerProps: (0, $lJcFS$mergeProps)(keyboardProps, moveProps, pressProps),
|
|
1078
|
+
inputProps: (0, $lJcFS$mergeProps)({
|
|
1079
|
+
id: id,
|
|
1080
|
+
onFocus: ()=>{
|
|
1081
|
+
// useMove calls onMoveStart for every keypress, but we want resize start to only be called when we start resize mode
|
|
1082
|
+
// call instead during focus and blur
|
|
1083
|
+
startResize(item);
|
|
1084
|
+
state.tableState.setKeyboardNavigationDisabled(true);
|
|
1085
|
+
},
|
|
1086
|
+
onBlur: ()=>{
|
|
1087
|
+
endResize(item);
|
|
1088
|
+
state.tableState.setKeyboardNavigationDisabled(false);
|
|
1089
|
+
},
|
|
1090
|
+
onChange: onChange,
|
|
1091
|
+
disabled: isDisabled
|
|
1092
|
+
}, ariaProps)
|
|
1093
|
+
};
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
function $0047e6c294ea075f$export$6fb1613bd7b28198() {
|
|
1099
|
+
return (0, $lJcFS$useGridRowGroup)();
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
|
|
1103
|
+
export {$0047e6c294ea075f$export$6fb1613bd7b28198 as useTableRowGroup, $6e31608fbba75bab$export$25bceaac3c7e4dc7 as useTable, $f329116d8ad0aba0$export$9514819a8c81e960 as useTableColumnHeader, $b2db214c022798eb$export$7f2f6ae19e707aa5 as useTableRow, $f917ee10f4c32dab$export$1b95a7d2d517b841 as useTableHeaderRow, $7713593715703b24$export$49571c903d73624c as useTableCell, $2a795c53a101c542$export$16ea7f650bd7c1bb as useTableSelectionCheckbox, $2a795c53a101c542$export$1003db6a7e384b99 as useTableSelectAllCheckbox, $e91ef4e5004e3774$export$52994e973806c219 as useTableColumnResize};
|
|
1104
|
+
//# sourceMappingURL=module.js.map
|