@react-aria/tag 3.0.0-alpha.8 → 3.0.0-beta.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/dist/main.js CHANGED
@@ -19,20 +19,16 @@ class $d3d7c73f2e3f4edb$export$b00754732e683b92 extends $bSzeT$reactariagrid.Gri
19
19
  getFirstKey() {
20
20
  let key = this.collection.getFirstKey();
21
21
  let item = this.collection.getItem(key);
22
- let newKey = [
22
+ return [
23
23
  ...item.childNodes
24
24
  ][0].key;
25
- if (this.disabledKeys.has(newKey)) newKey = this.getKeyBelow(newKey);
26
- return newKey;
27
25
  }
28
26
  getLastKey() {
29
27
  let key = this.collection.getLastKey();
30
28
  let item = this.collection.getItem(key);
31
- let newKey = [
29
+ return [
32
30
  ...item.childNodes
33
31
  ][0].key;
34
- if (this.disabledKeys.has(newKey)) newKey = this.getKeyAbove(newKey);
35
- return newKey;
36
32
  }
37
33
  getKeyRightOf(key) {
38
34
  return this.direction === 'rtl' ? this.getKeyAbove(key) : this.getKeyBelow(key);
@@ -51,12 +47,9 @@ class $d3d7c73f2e3f4edb$export$b00754732e683b92 extends $bSzeT$reactariagrid.Gri
51
47
  // If focus was on a cell, focus the cell with the same index in the next row.
52
48
  if (this.isCell(startItem)) {
53
49
  let item = this.collection.getItem(key);
54
- let newKey = [
50
+ return [
55
51
  ...item.childNodes
56
52
  ][startItem.index].key;
57
- // Ignore disabled tags
58
- if (this.disabledKeys.has(newKey)) return this.getKeyBelow(newKey);
59
- return newKey;
60
53
  }
61
54
  // Otherwise, focus the next row
62
55
  if (this.focusMode === 'row') return key;
@@ -73,12 +66,9 @@ class $d3d7c73f2e3f4edb$export$b00754732e683b92 extends $bSzeT$reactariagrid.Gri
73
66
  // If focus was on a cell, focus the cell with the same index in the previous row.
74
67
  if (this.isCell(startItem)) {
75
68
  let item = this.collection.getItem(key);
76
- let newKey = [
69
+ return [
77
70
  ...item.childNodes
78
71
  ][startItem.index].key;
79
- // ignore disabled tags
80
- if (this.disabledKeys.has(newKey)) return this.getKeyAbove(newKey);
81
- return newKey;
82
72
  }
83
73
  // Otherwise, focus the previous row
84
74
  if (this.focusMode === 'row') return key;
@@ -341,7 +331,7 @@ $29abb9209b62cd49$exports = {
341
331
 
342
332
  function $a442534c81d8ad16$export$3f568fff7dff2f03(props, state) {
343
333
  let { isFocused: isFocused } = props;
344
- const { isDisabled: isDisabled , isRemovable: isRemovable , onRemove: onRemove , children: children , item: item , tagRef: tagRef , tagRowRef: tagRowRef } = props;
334
+ const { allowsRemoving: allowsRemoving , onRemove: onRemove , item: item , tagRef: tagRef , tagRowRef: tagRowRef } = props;
345
335
  const stringFormatter = $bSzeT$reactariai18n.useLocalizedStringFormatter((/*@__PURE__*/$parcel$interopDefault($29abb9209b62cd49$exports)));
346
336
  const removeString = stringFormatter.format('remove');
347
337
  const labelId = $bSzeT$reactariautils.useId();
@@ -360,13 +350,13 @@ function $a442534c81d8ad16$export$3f568fff7dff2f03(props, state) {
360
350
  }, state, tagRef);
361
351
  function onKeyDown(e) {
362
352
  if (e.key === 'Delete' || e.key === 'Backspace' || e.key === ' ') {
363
- onRemove(children, e);
353
+ onRemove(item.childNodes[0].key);
364
354
  e.preventDefault();
365
355
  }
366
356
  }
367
357
  const pressProps = {
368
- onPress: (e)=>{
369
- return onRemove === null || onRemove === void 0 ? void 0 : onRemove(children, e);
358
+ onPress: ()=>{
359
+ return onRemove === null || onRemove === void 0 ? void 0 : onRemove(item.childNodes[0].key);
370
360
  }
371
361
  };
372
362
  isFocused = isFocused || state.selectionManager.focusedKey === item.childNodes[0].key;
@@ -375,19 +365,17 @@ function $a442534c81d8ad16$export$3f568fff7dff2f03(props, state) {
375
365
  clearButtonProps: $bSzeT$reactariautils.mergeProps(pressProps, {
376
366
  'aria-label': removeString,
377
367
  'aria-labelledby': `${buttonId} ${labelId}`,
378
- id: buttonId,
379
- isDisabled: isDisabled
368
+ id: buttonId
380
369
  }),
381
370
  labelProps: {
382
371
  id: labelId
383
372
  },
384
373
  tagRowProps: otherRowProps,
385
374
  tagProps: $bSzeT$reactariautils.mergeProps(domProps, gridCellProps, {
386
- 'aria-disabled': isDisabled,
387
375
  'aria-errormessage': props['aria-errormessage'],
388
376
  'aria-label': props['aria-label'],
389
- onKeyDown: !isDisabled && isRemovable ? onKeyDown : null,
390
- tabIndex: (isFocused || state.selectionManager.focusedKey == null) && !isDisabled ? 0 : -1
377
+ onKeyDown: allowsRemoving ? onKeyDown : null,
378
+ tabIndex: isFocused || state.selectionManager.focusedKey == null ? 0 : -1
391
379
  })
392
380
  };
393
381
  }
@@ -396,24 +384,17 @@ function $a442534c81d8ad16$export$3f568fff7dff2f03(props, state) {
396
384
 
397
385
 
398
386
 
399
- function $09704b0efefe5140$export$4f8b5cda58b7e8ff(props, listState) {
400
- let { isDisabled: isDisabled } = props;
387
+ function $09704b0efefe5140$export$4f8b5cda58b7e8ff(props) {
401
388
  let [isFocusWithin, setFocusWithin] = $bSzeT$react.useState(false);
402
389
  let { focusWithinProps: focusWithinProps } = $bSzeT$reactariainteractions.useFocusWithin({
403
390
  onFocusWithinChange: setFocusWithin
404
391
  });
405
- let allKeys = [
406
- ...listState.collection.getKeys()
407
- ];
408
- if (!allKeys.some((key)=>!listState.disabledKeys.has(key)
409
- )) isDisabled = true;
410
392
  let domProps = $bSzeT$reactariautils.filterDOMProps(props);
411
393
  return {
412
394
  tagGroupProps: $bSzeT$reactariautils.mergeProps(domProps, {
413
395
  'aria-atomic': false,
414
396
  'aria-relevant': 'additions',
415
397
  'aria-live': isFocusWithin ? 'polite' : 'off',
416
- 'aria-disabled': isDisabled === true,
417
398
  ...focusWithinProps
418
399
  })
419
400
  };
package/dist/main.js.map CHANGED
@@ -1 +1 @@
1
- {"mappings":";;;;;;;;;;;;;;;;;MCgBa,yCAAmB,SAAY,yCAAoB;IAC9D,WAAW,GAAG,CAAC;QACb,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,WAAW;QACrC,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;QACtC,GAAG,CAAC,MAAM,GAAG,CAAC;eAAG,IAAI,CAAC,UAAU;QAAA,CAAC,CAAC,CAAC,EAAE,GAAG;QAExC,EAAE,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,GAC9B,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM;QAElC,MAAM,CAAC,MAAM;IACf,CAAC;IAED,UAAU,GAAG,CAAC;QACZ,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,UAAU;QACpC,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;QACtC,GAAG,CAAC,MAAM,GAAG,CAAC;eAAG,IAAI,CAAC,UAAU;QAAA,CAAC,CAAC,CAAC,EAAE,GAAG;QAExC,EAAE,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,GAC9B,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM;QAElC,MAAM,CAAC,MAAM;IACf,CAAC;IAED,aAAa,CAAC,GAAQ,EAAE,CAAC;QACvB,MAAM,CAAC,IAAI,CAAC,SAAS,KAAK,CAAK,OAAG,IAAI,CAAC,WAAW,CAAC,GAAG,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG;IAChF,CAAC;IAED,YAAY,CAAC,GAAQ,EAAE,CAAC;QACtB,MAAM,CAAC,IAAI,CAAC,SAAS,KAAK,CAAK,OAAG,IAAI,CAAC,WAAW,CAAC,GAAG,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG;IAChF,CAAC;IAED,WAAW,CAAC,GAAG,EAAE,CAAC;QAChB,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;QAC3C,EAAE,GAAG,SAAS,EACZ,MAAM;QAGR,EAA8D,AAA9D,4DAA8D;QAC9D,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,GACvB,GAAG,GAAG,SAAS,CAAC,SAAS;QAG3B,EAAqB,AAArB,mBAAqB;QACrB,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG;QAC1B,EAAE,EAAE,GAAG,IAAI,IAAI,EAAE,CAAC;YAChB,EAA8E,AAA9E,4EAA8E;YAC9E,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC;gBAC3B,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;gBACtC,GAAG,CAAC,MAAM,GAAG,CAAC;uBAAG,IAAI,CAAC,UAAU;gBAAA,CAAC,CAAC,SAAS,CAAC,KAAK,EAAE,GAAG;gBAEtD,EAAuB,AAAvB,qBAAuB;gBACvB,EAAE,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,GAC9B,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM;gBAEhC,MAAM,CAAC,MAAM;YACf,CAAC;YAED,EAAgC,AAAhC,8BAAgC;YAChC,EAAE,EAAE,IAAI,CAAC,SAAS,KAAK,CAAK,MAC1B,MAAM,CAAC,GAAG;QAEd,CAAC,MACC,MAAM,CAAC,IAAI,CAAC,WAAW;IAE3B,CAAC;IAED,WAAW,CAAC,GAAG,EAAE,CAAC;QAChB,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;QAC3C,EAAE,GAAG,SAAS,EACZ,MAAM;QAGR,EAA6D,AAA7D,2DAA6D;QAC7D,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,GACvB,GAAG,GAAG,SAAS,CAAC,SAAS;QAG3B,EAAyB,AAAzB,uBAAyB;QACzB,GAAG,GAAG,IAAI,CAAC,eAAe,CAAC,GAAG;QAC9B,EAAE,EAAE,GAAG,IAAI,IAAI,EAAE,CAAC;YAChB,EAAkF,AAAlF,gFAAkF;YAClF,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC;gBAC3B,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;gBACtC,GAAG,CAAC,MAAM,GAAG,CAAC;uBAAG,IAAI,CAAC,UAAU;gBAAA,CAAC,CAAC,SAAS,CAAC,KAAK,EAAE,GAAG;gBAEtD,EAAuB,AAAvB,qBAAuB;gBACvB,EAAE,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,GAC9B,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM;gBAEhC,MAAM,CAAC,MAAM;YACf,CAAC;YAED,EAAoC,AAApC,kCAAoC;YACpC,EAAE,EAAE,IAAI,CAAC,SAAS,KAAK,CAAK,MAC1B,MAAM,CAAC,GAAG;QAEd,CAAC,MACC,MAAM,CAAC,IAAI,CAAC,UAAU;IAE1B,CAAC;IAED,eAAe,CAAC,GAAG,EAAE,CAAC;QACpB,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG;IAC7B,CAAC;IAED,eAAe,CAAC,GAAG,EAAE,CAAC;QACpB,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG;IAC7B,CAAC;;;;;;;AG3HH,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,UAAK;AACpC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,oBAAU;AACzC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,KAAK;AACpC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,SAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,kBAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,SAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAG;AAClC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,cAAW;AAC1C,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAE;AACjC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAE;AACjC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,UAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,KAAK;AACpC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,WAAW;AAC1C,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,KAAI;AACnC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,QAAQ;AACvC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,cAAW;AAC1C,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,cAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,WAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,QAAQ;AACvC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,gBAAQ;AACvC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAE;AACjC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAE;AACjC,CAAC;;;AlCiCD,yBAAc,GAAG,CAAC;IAChB,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;AAClB,CAAC;;;;;SDvCe,yCAAM,CAAC,KAAoB,EAAE,KAA0B,EAAW,CAAC;IACjF,GAAG,CAAC,CAAC,YAAA,SAAS,EAAA,CAAC,GAAG,KAAK;IACvB,KAAK,CAAC,CAAC,aACL,UAAU,gBACV,WAAW,aACX,QAAQ,aACR,QAAQ,SACR,IAAI,WACJ,MAAM,cACN,SAAS,EACX,CAAC,GAAG,KAAK;IACT,KAAK,CAAC,eAAe,GAAG,gDAA2B,CAAC,gEAAY;IAChE,KAAK,CAAC,YAAY,GAAG,eAAe,CAAC,MAAM,CAAC,CAAQ;IACpD,KAAK,CAAC,OAAO,GAAG,2BAAK;IACrB,KAAK,CAAC,QAAQ,GAAG,2BAAK;IAEtB,GAAG,CAAC,CAAC,WAAA,QAAQ,EAAA,CAAC,GAAG,+BAAU,CAAC,CAAC;QAC3B,IAAI,EAAE,IAAI;IACZ,CAAC,EAAE,KAAK,EAAE,SAAS;IACnB,EAAgE,AAAhE,8DAAgE;IAChE,EAA6D,AAA7D,2DAA6D;IAC7D,GAAG,CAAC,CAAC,WAAA,QAAQ,MAAK,aAAa,CAAA,CAAC,GAAG,QAAQ;IAE3C,GAAG,CAAC,CAAC,gBAAA,aAAa,EAAA,CAAC,GAAG,gCAAW,CAAC,CAAC;QACjC,IAAI,EAAE,CAAC;eAAG,IAAI,CAAC,UAAU;QAAA,CAAC,CAAC,CAAC;QAC5B,SAAS,EAAE,CAAM;IACnB,CAAC,EAAE,KAAK,EAAE,MAAM;aAEP,SAAS,CAAC,CAAyB,EAAE,CAAC;QAC7C,EAAE,EAAE,CAAC,CAAC,GAAG,KAAK,CAAQ,WAAI,CAAC,CAAC,GAAG,KAAK,CAAW,cAAI,CAAC,CAAC,GAAG,KAAK,CAAG,IAAE,CAAC;YACjE,QAAQ,CAAC,QAAQ,EAAE,CAAC;YACpB,CAAC,CAAC,cAAc;QAClB,CAAC;IACH,CAAC;IACD,KAAK,CAAC,UAAU,GAAG,CAAC;QAClB,OAAO,GAAE,CAAC;mBAAI,QAAQ,aAAR,QAAQ,KAAR,IAAI,CAAJ,CAAuB,GAAvB,IAAI,CAAJ,CAAuB,GAAvB,QAAQ,CAAG,QAAQ,EAAE,CAAC;;IACtC,CAAC;IAED,SAAS,GAAG,SAAS,IAAI,KAAK,CAAC,gBAAgB,CAAC,UAAU,KAAK,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,GAAG;IACrF,GAAG,CAAC,QAAQ,GAAG,oCAAc,CAAC,KAAK;IACnC,MAAM,CAAC,CAAC;QACN,gBAAgB,EAAE,gCAAU,CAAC,UAAU,EAAE,CAAC;YACxC,CAAY,aAAE,YAAY;YAC1B,CAAiB,qBAAK,QAAQ,CAAC,CAAC,EAAE,OAAO;YACzC,EAAE,EAAE,QAAQ;wBACZ,UAAU;QACZ,CAAC;QACD,UAAU,EAAE,CAAC;YACX,EAAE,EAAE,OAAO;QACb,CAAC;QACD,WAAW,EAAE,aAAa;QAC1B,QAAQ,EAAE,gCAAU,CAAC,QAAQ,EAAE,aAAa,EAAE,CAAC;YAC7C,CAAe,gBAAE,UAAU;YAC3B,CAAmB,oBAAE,KAAK,CAAC,CAAmB;YAC9C,CAAY,aAAE,KAAK,CAAC,CAAY;YAChC,SAAS,GAAG,UAAU,IAAI,WAAW,GAAG,SAAS,GAAG,IAAI;YACxD,QAAQ,GAAG,SAAS,IAAI,KAAK,CAAC,gBAAgB,CAAC,UAAU,IAAI,IAAI,MAAM,UAAU,GAAG,CAAC,GAAG,EAAE;QAC5F,CAAC;IACH,CAAC;AACH,CAAC;;;;;;SoC5De,yCAAW,CAAC,KAAwB,EAAE,SAAS,EAAgB,CAAC;IAC9E,GAAG,CAAC,CAAC,aAAA,UAAU,EAAA,CAAC,GAAG,KAAK;IACxB,GAAG,EAAE,aAAa,EAAE,cAAc,IAAI,qBAAQ,CAAC,KAAK;IACpD,GAAG,CAAC,CAAC,mBAAA,gBAAgB,EAAA,CAAC,GAAG,2CAAc,CAAC,CAAC;QACvC,mBAAmB,EAAE,cAAc;IACrC,CAAC;IACD,GAAG,CAAC,OAAO,GAAG,CAAC;WAAG,SAAS,CAAC,UAAU,CAAC,OAAO;IAAE,CAAC;IACjD,EAAE,GAAG,OAAO,CAAC,IAAI,EAAC,GAAG,IAAK,SAAS,CAAC,YAAY,CAAC,GAAG,CAAC,GAAG;OACtD,UAAU,GAAG,IAAI;IAEnB,GAAG,CAAC,QAAQ,GAAG,oCAAc,CAAC,KAAK;IACnC,MAAM,CAAC,CAAC;QACN,aAAa,EAAE,gCAAU,CAAC,QAAQ,EAAE,CAAC;YACnC,CAAa,cAAE,KAAK;YACpB,CAAe,gBAAE,CAAW;YAC5B,CAAW,YAAE,aAAa,GAAG,CAAQ,UAAG,CAAK;YAC7C,CAAe,gBAAE,UAAU,KAAK,IAAI;eACjC,gBAAgB;QACrB,CAAC;IACH,CAAC;AACH,CAAC;","sources":["packages/@react-aria/tag/src/index.ts","packages/@react-aria/tag/src/TagKeyboardDelegate.ts","packages/@react-aria/tag/src/useTag.ts","packages/@react-aria/tag/intl/*.js","packages/@react-aria/tag/intl/ar-AE.json","packages/@react-aria/tag/intl/bg-BG.json","packages/@react-aria/tag/intl/cs-CZ.json","packages/@react-aria/tag/intl/da-DK.json","packages/@react-aria/tag/intl/de-DE.json","packages/@react-aria/tag/intl/el-GR.json","packages/@react-aria/tag/intl/en-US.json","packages/@react-aria/tag/intl/es-ES.json","packages/@react-aria/tag/intl/et-EE.json","packages/@react-aria/tag/intl/fi-FI.json","packages/@react-aria/tag/intl/fr-FR.json","packages/@react-aria/tag/intl/he-IL.json","packages/@react-aria/tag/intl/hr-HR.json","packages/@react-aria/tag/intl/hu-HU.json","packages/@react-aria/tag/intl/it-IT.json","packages/@react-aria/tag/intl/ja-JP.json","packages/@react-aria/tag/intl/ko-KR.json","packages/@react-aria/tag/intl/lt-LT.json","packages/@react-aria/tag/intl/lv-LV.json","packages/@react-aria/tag/intl/nb-NO.json","packages/@react-aria/tag/intl/nl-NL.json","packages/@react-aria/tag/intl/pl-PL.json","packages/@react-aria/tag/intl/pt-BR.json","packages/@react-aria/tag/intl/pt-PT.json","packages/@react-aria/tag/intl/ro-RO.json","packages/@react-aria/tag/intl/ru-RU.json","packages/@react-aria/tag/intl/sk-SK.json","packages/@react-aria/tag/intl/sl-SI.json","packages/@react-aria/tag/intl/sr-SP.json","packages/@react-aria/tag/intl/sv-SE.json","packages/@react-aria/tag/intl/tr-TR.json","packages/@react-aria/tag/intl/uk-UA.json","packages/@react-aria/tag/intl/zh-CN.json","packages/@react-aria/tag/intl/zh-TW.json","packages/@react-aria/tag/src/useTagGroup.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport {TagKeyboardDelegate} from './TagKeyboardDelegate';\nexport {useTag} from './useTag';\nexport {useTagGroup} from './useTagGroup';\n\nexport type {TagProps} from '@react-types/tag';\nexport type {AriaTagGroupProps, TagGroupAria} from './useTagGroup';\nexport type {TagAria} from './useTag';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {GridCollection} from '@react-types/grid';\nimport {GridKeyboardDelegate} from '@react-aria/grid';\nimport {Key} from 'react';\n\nexport class TagKeyboardDelegate<T> extends GridKeyboardDelegate<T, GridCollection<T>> {\n getFirstKey() {\n let key = this.collection.getFirstKey();\n let item = this.collection.getItem(key);\n let newKey = [...item.childNodes][0].key;\n\n if (this.disabledKeys.has(newKey)) {\n newKey = this.getKeyBelow(newKey);\n }\n return newKey;\n }\n\n getLastKey() {\n let key = this.collection.getLastKey();\n let item = this.collection.getItem(key);\n let newKey = [...item.childNodes][0].key;\n\n if (this.disabledKeys.has(newKey)) {\n newKey = this.getKeyAbove(newKey);\n }\n return newKey;\n }\n\n getKeyRightOf(key: Key) {\n return this.direction === 'rtl' ? this.getKeyAbove(key) : this.getKeyBelow(key);\n }\n\n getKeyLeftOf(key: Key) {\n return this.direction === 'rtl' ? this.getKeyBelow(key) : this.getKeyAbove(key);\n }\n\n getKeyBelow(key) {\n let startItem = this.collection.getItem(key);\n if (!startItem) {\n return;\n }\n\n // If focus was on a cell, start searching from the parent row\n if (this.isCell(startItem)) {\n key = startItem.parentKey;\n }\n\n // Find the next item\n key = this.findNextKey(key);\n if (key != null) {\n // If focus was on a cell, focus the cell with the same index in the next row.\n if (this.isCell(startItem)) {\n let item = this.collection.getItem(key);\n let newKey = [...item.childNodes][startItem.index].key;\n\n // Ignore disabled tags\n if (this.disabledKeys.has(newKey)) {\n return this.getKeyBelow(newKey);\n }\n return newKey;\n }\n\n // Otherwise, focus the next row\n if (this.focusMode === 'row') {\n return key;\n }\n } else {\n return this.getFirstKey();\n }\n }\n\n getKeyAbove(key) {\n let startItem = this.collection.getItem(key);\n if (!startItem) {\n return;\n }\n\n // If focus is on a cell, start searching from the parent row\n if (this.isCell(startItem)) {\n key = startItem.parentKey;\n }\n\n // Find the previous item\n key = this.findPreviousKey(key);\n if (key != null) {\n // If focus was on a cell, focus the cell with the same index in the previous row.\n if (this.isCell(startItem)) {\n let item = this.collection.getItem(key);\n let newKey = [...item.childNodes][startItem.index].key;\n\n // ignore disabled tags\n if (this.disabledKeys.has(newKey)) {\n return this.getKeyAbove(newKey);\n }\n return newKey;\n }\n\n // Otherwise, focus the previous row\n if (this.focusMode === 'row') {\n return key;\n }\n } else {\n return this.getLastKey();\n }\n }\n\n getKeyPageAbove(key) {\n return this.getKeyAbove(key);\n }\n\n getKeyPageBelow(key) {\n return this.getKeyBelow(key);\n }\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {ButtonHTMLAttributes, KeyboardEvent} from 'react';\nimport {DOMAttributes} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, useId} from '@react-aria/utils';\nimport {GridState} from '@react-stately/grid';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {TagProps} from '@react-types/tag';\nimport {useGridCell, useGridRow} from '@react-aria/grid';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\n\n\nexport interface TagAria {\n labelProps: DOMAttributes,\n tagProps: DOMAttributes,\n tagRowProps: DOMAttributes,\n clearButtonProps: ButtonHTMLAttributes<HTMLButtonElement>\n}\n\nexport function useTag(props: TagProps<any>, state: GridState<any, any>): TagAria {\n let {isFocused} = props;\n const {\n isDisabled,\n isRemovable,\n onRemove,\n children,\n item,\n tagRef,\n tagRowRef\n } = props;\n const stringFormatter = useLocalizedStringFormatter(intlMessages);\n const removeString = stringFormatter.format('remove');\n const labelId = useId();\n const buttonId = useId();\n\n let {rowProps} = useGridRow({\n node: item\n }, state, tagRowRef);\n // Don't want the row to be focusable or accessible via keyboard\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n let {tabIndex, ...otherRowProps} = rowProps;\n\n let {gridCellProps} = useGridCell({\n node: [...item.childNodes][0],\n focusMode: 'cell'\n }, state, tagRef);\n\n function onKeyDown(e: KeyboardEvent<Element>) {\n if (e.key === 'Delete' || e.key === 'Backspace' || e.key === ' ') {\n onRemove(children, e);\n e.preventDefault();\n }\n }\n const pressProps = {\n onPress: e => onRemove?.(children, e)\n };\n\n isFocused = isFocused || state.selectionManager.focusedKey === item.childNodes[0].key;\n let domProps = filterDOMProps(props);\n return {\n clearButtonProps: mergeProps(pressProps, {\n 'aria-label': removeString,\n 'aria-labelledby': `${buttonId} ${labelId}`,\n id: buttonId,\n isDisabled\n }),\n labelProps: {\n id: labelId\n },\n tagRowProps: otherRowProps,\n tagProps: mergeProps(domProps, gridCellProps, {\n 'aria-disabled': isDisabled,\n 'aria-errormessage': props['aria-errormessage'],\n 'aria-label': props['aria-label'],\n onKeyDown: !isDisabled && isRemovable ? onKeyDown : null,\n tabIndex: (isFocused || state.selectionManager.focusedKey == null) && !isDisabled ? 0 : -1\n })\n };\n}\n","const _temp0 = require(\"./ar-AE.json\");\nconst _temp1 = require(\"./bg-BG.json\");\nconst _temp2 = require(\"./cs-CZ.json\");\nconst _temp3 = require(\"./da-DK.json\");\nconst _temp4 = require(\"./de-DE.json\");\nconst _temp5 = require(\"./el-GR.json\");\nconst _temp6 = require(\"./en-US.json\");\nconst _temp7 = require(\"./es-ES.json\");\nconst _temp8 = require(\"./et-EE.json\");\nconst _temp9 = require(\"./fi-FI.json\");\nconst _temp10 = require(\"./fr-FR.json\");\nconst _temp11 = require(\"./he-IL.json\");\nconst _temp12 = require(\"./hr-HR.json\");\nconst _temp13 = require(\"./hu-HU.json\");\nconst _temp14 = require(\"./it-IT.json\");\nconst _temp15 = require(\"./ja-JP.json\");\nconst _temp16 = require(\"./ko-KR.json\");\nconst _temp17 = require(\"./lt-LT.json\");\nconst _temp18 = require(\"./lv-LV.json\");\nconst _temp19 = require(\"./nb-NO.json\");\nconst _temp20 = require(\"./nl-NL.json\");\nconst _temp21 = require(\"./pl-PL.json\");\nconst _temp22 = require(\"./pt-BR.json\");\nconst _temp23 = require(\"./pt-PT.json\");\nconst _temp24 = require(\"./ro-RO.json\");\nconst _temp25 = require(\"./ru-RU.json\");\nconst _temp26 = require(\"./sk-SK.json\");\nconst _temp27 = require(\"./sl-SI.json\");\nconst _temp28 = require(\"./sr-SP.json\");\nconst _temp29 = require(\"./sv-SE.json\");\nconst _temp30 = require(\"./tr-TR.json\");\nconst _temp31 = require(\"./uk-UA.json\");\nconst _temp32 = require(\"./zh-CN.json\");\nconst _temp33 = require(\"./zh-TW.json\");\nmodule.exports = {\n \"ar-AE\": _temp0,\n \"bg-BG\": _temp1,\n \"cs-CZ\": _temp2,\n \"da-DK\": _temp3,\n \"de-DE\": _temp4,\n \"el-GR\": _temp5,\n \"en-US\": _temp6,\n \"es-ES\": _temp7,\n \"et-EE\": _temp8,\n \"fi-FI\": _temp9,\n \"fr-FR\": _temp10,\n \"he-IL\": _temp11,\n \"hr-HR\": _temp12,\n \"hu-HU\": _temp13,\n \"it-IT\": _temp14,\n \"ja-JP\": _temp15,\n \"ko-KR\": _temp16,\n \"lt-LT\": _temp17,\n \"lv-LV\": _temp18,\n \"nb-NO\": _temp19,\n \"nl-NL\": _temp20,\n \"pl-PL\": _temp21,\n \"pt-BR\": _temp22,\n \"pt-PT\": _temp23,\n \"ro-RO\": _temp24,\n \"ru-RU\": _temp25,\n \"sk-SK\": _temp26,\n \"sl-SI\": _temp27,\n \"sr-SP\": _temp28,\n \"sv-SE\": _temp29,\n \"tr-TR\": _temp30,\n \"uk-UA\": _temp31,\n \"zh-CN\": _temp32,\n \"zh-TW\": _temp33\n}","{\n \"remove\": \"إزالة\"\n}\n","{\n \"remove\": \"Премахване\"\n}\n","{\n \"remove\": \"Odebrat\"\n}\n","{\n \"remove\": \"Fjern\"\n}\n","{\n \"remove\": \"Entfernen\"\n}\n","{\n \"remove\": \"Κατάργηση\"\n}\n","{\n \"remove\": \"Remove\"\n}\n","{\n \"remove\": \"Quitar\"\n}\n","{\n \"remove\": \"Eemalda\"\n}\n","{\n \"remove\": \"Poista\"\n}\n","{\n \"remove\": \"Supprimer\"\n}\n","{\n \"remove\": \"הסר\"\n}\n","{\n \"remove\": \"Ukloni\"\n}\n","{\n \"remove\": \"Eltávolítás\"\n}\n","{\n \"remove\": \"Rimuovi\"\n}\n","{\n \"remove\": \"削除\"\n}\n","{\n \"remove\": \"제거\"\n}\n","{\n \"remove\": \"Pašalinti\"\n}\n","{\n \"remove\": \"Noņemt\"\n}\n","{\n \"remove\": \"Fjern\"\n}\n","{\n \"remove\": \"Verwijderen\"\n}\n","{\n \"remove\": \"Usuń\"\n}\n","{\n \"remove\": \"Remover\"\n}\n","{\n \"remove\": \"Eliminar\"\n}\n","{\n \"remove\": \"Îndepărtaţi\"\n}\n","{\n \"remove\": \"Удалить\"\n}\n","{\n \"remove\": \"Odstrániť\"\n}\n","{\n \"remove\": \"Odstrani\"\n}\n","{\n \"remove\": \"Ukloni\"\n}\n","{\n \"remove\": \"Ta bort\"\n}\n","{\n \"remove\": \"Kaldır\"\n}\n","{\n \"remove\": \"Видалити\"\n}\n","{\n \"remove\": \"删除\"\n}\n","{\n \"remove\": \"移除\"\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {DOMAttributes, DOMProps} from '@react-types/shared';\nimport {filterDOMProps, mergeProps} from '@react-aria/utils';\nimport {Key, ReactNode, useState} from 'react';\nimport {useFocusWithin} from '@react-aria/interactions';\n\nexport interface AriaTagGroupProps extends DOMProps {\n children: ReactNode,\n disabledKeys?: Iterable<Key>,\n isDisabled?: boolean,\n isReadOnly?: boolean, // removes close button\n validationState?: 'valid' | 'invalid'\n}\n\nexport interface TagGroupAria {\n tagGroupProps: DOMAttributes\n}\n\nexport function useTagGroup(props: AriaTagGroupProps, listState): TagGroupAria {\n let {isDisabled} = props;\n let [isFocusWithin, setFocusWithin] = useState(false);\n let {focusWithinProps} = useFocusWithin({\n onFocusWithinChange: setFocusWithin\n });\n let allKeys = [...listState.collection.getKeys()];\n if (!allKeys.some(key => !listState.disabledKeys.has(key))) {\n isDisabled = true;\n }\n let domProps = filterDOMProps(props);\n return {\n tagGroupProps: mergeProps(domProps, {\n 'aria-atomic': false,\n 'aria-relevant': 'additions',\n 'aria-live': isFocusWithin ? 'polite' : 'off',\n 'aria-disabled': isDisabled === true,\n ...focusWithinProps\n } as DOMAttributes)\n };\n}\n"],"names":[],"version":3,"file":"main.js.map"}
1
+ {"mappings":"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","sources":["packages/@react-aria/tag/src/index.ts","packages/@react-aria/tag/src/TagKeyboardDelegate.ts","packages/@react-aria/tag/src/useTag.ts","packages/@react-aria/tag/intl/*.js","packages/@react-aria/tag/intl/ar-AE.json","packages/@react-aria/tag/intl/bg-BG.json","packages/@react-aria/tag/intl/cs-CZ.json","packages/@react-aria/tag/intl/da-DK.json","packages/@react-aria/tag/intl/de-DE.json","packages/@react-aria/tag/intl/el-GR.json","packages/@react-aria/tag/intl/en-US.json","packages/@react-aria/tag/intl/es-ES.json","packages/@react-aria/tag/intl/et-EE.json","packages/@react-aria/tag/intl/fi-FI.json","packages/@react-aria/tag/intl/fr-FR.json","packages/@react-aria/tag/intl/he-IL.json","packages/@react-aria/tag/intl/hr-HR.json","packages/@react-aria/tag/intl/hu-HU.json","packages/@react-aria/tag/intl/it-IT.json","packages/@react-aria/tag/intl/ja-JP.json","packages/@react-aria/tag/intl/ko-KR.json","packages/@react-aria/tag/intl/lt-LT.json","packages/@react-aria/tag/intl/lv-LV.json","packages/@react-aria/tag/intl/nb-NO.json","packages/@react-aria/tag/intl/nl-NL.json","packages/@react-aria/tag/intl/pl-PL.json","packages/@react-aria/tag/intl/pt-BR.json","packages/@react-aria/tag/intl/pt-PT.json","packages/@react-aria/tag/intl/ro-RO.json","packages/@react-aria/tag/intl/ru-RU.json","packages/@react-aria/tag/intl/sk-SK.json","packages/@react-aria/tag/intl/sl-SI.json","packages/@react-aria/tag/intl/sr-SP.json","packages/@react-aria/tag/intl/sv-SE.json","packages/@react-aria/tag/intl/tr-TR.json","packages/@react-aria/tag/intl/uk-UA.json","packages/@react-aria/tag/intl/zh-CN.json","packages/@react-aria/tag/intl/zh-TW.json","packages/@react-aria/tag/src/useTagGroup.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport {TagKeyboardDelegate} from './TagKeyboardDelegate';\nexport {useTag} from './useTag';\nexport {useTagGroup} from './useTagGroup';\n\nexport type {TagProps} from '@react-types/tag';\nexport type {AriaTagGroupProps, TagGroupAria} from './useTagGroup';\nexport type {TagAria} from './useTag';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {GridCollection} from '@react-types/grid';\nimport {GridKeyboardDelegate} from '@react-aria/grid';\nimport {Key} from 'react';\n\nexport class TagKeyboardDelegate<T> extends GridKeyboardDelegate<T, GridCollection<T>> {\n getFirstKey() {\n let key = this.collection.getFirstKey();\n let item = this.collection.getItem(key);\n\n return [...item.childNodes][0].key;\n }\n\n getLastKey() {\n let key = this.collection.getLastKey();\n let item = this.collection.getItem(key);\n\n return [...item.childNodes][0].key;\n }\n\n getKeyRightOf(key: Key) {\n return this.direction === 'rtl' ? this.getKeyAbove(key) : this.getKeyBelow(key);\n }\n\n getKeyLeftOf(key: Key) {\n return this.direction === 'rtl' ? this.getKeyBelow(key) : this.getKeyAbove(key);\n }\n\n getKeyBelow(key) {\n let startItem = this.collection.getItem(key);\n if (!startItem) {\n return;\n }\n\n // If focus was on a cell, start searching from the parent row\n if (this.isCell(startItem)) {\n key = startItem.parentKey;\n }\n\n // Find the next item\n key = this.findNextKey(key);\n if (key != null) {\n // If focus was on a cell, focus the cell with the same index in the next row.\n if (this.isCell(startItem)) {\n let item = this.collection.getItem(key);\n\n return [...item.childNodes][startItem.index].key;\n }\n\n // Otherwise, focus the next row\n if (this.focusMode === 'row') {\n return key;\n }\n } else {\n return this.getFirstKey();\n }\n }\n\n getKeyAbove(key) {\n let startItem = this.collection.getItem(key);\n if (!startItem) {\n return;\n }\n\n // If focus is on a cell, start searching from the parent row\n if (this.isCell(startItem)) {\n key = startItem.parentKey;\n }\n\n // Find the previous item\n key = this.findPreviousKey(key);\n if (key != null) {\n // If focus was on a cell, focus the cell with the same index in the previous row.\n if (this.isCell(startItem)) {\n let item = this.collection.getItem(key);\n return [...item.childNodes][startItem.index].key;\n }\n\n // Otherwise, focus the previous row\n if (this.focusMode === 'row') {\n return key;\n }\n } else {\n return this.getLastKey();\n }\n }\n\n getKeyPageAbove(key) {\n return this.getKeyAbove(key);\n }\n\n getKeyPageBelow(key) {\n return this.getKeyBelow(key);\n }\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {ButtonHTMLAttributes, KeyboardEvent} from 'react';\nimport {DOMAttributes} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, useId} from '@react-aria/utils';\nimport {GridState} from '@react-stately/grid';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {TagProps} from '@react-types/tag';\nimport {useGridCell, useGridRow} from '@react-aria/grid';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\n\n\nexport interface TagAria {\n labelProps: DOMAttributes,\n tagProps: DOMAttributes,\n tagRowProps: DOMAttributes,\n clearButtonProps: ButtonHTMLAttributes<HTMLButtonElement>\n}\n\nexport function useTag(props: TagProps<any>, state: GridState<any, any>): TagAria {\n let {isFocused} = props;\n const {\n allowsRemoving,\n onRemove,\n item,\n tagRef,\n tagRowRef\n } = props;\n const stringFormatter = useLocalizedStringFormatter(intlMessages);\n const removeString = stringFormatter.format('remove');\n const labelId = useId();\n const buttonId = useId();\n\n let {rowProps} = useGridRow({\n node: item\n }, state, tagRowRef);\n // Don't want the row to be focusable or accessible via keyboard\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n let {tabIndex, ...otherRowProps} = rowProps;\n\n let {gridCellProps} = useGridCell({\n node: [...item.childNodes][0],\n focusMode: 'cell'\n }, state, tagRef);\n\n function onKeyDown(e: KeyboardEvent) {\n if (e.key === 'Delete' || e.key === 'Backspace' || e.key === ' ') {\n onRemove(item.childNodes[0].key);\n e.preventDefault();\n }\n }\n const pressProps = {\n onPress: () => onRemove?.(item.childNodes[0].key)\n };\n\n isFocused = isFocused || state.selectionManager.focusedKey === item.childNodes[0].key;\n let domProps = filterDOMProps(props);\n return {\n clearButtonProps: mergeProps(pressProps, {\n 'aria-label': removeString,\n 'aria-labelledby': `${buttonId} ${labelId}`,\n id: buttonId\n }),\n labelProps: {\n id: labelId\n },\n tagRowProps: otherRowProps,\n tagProps: mergeProps(domProps, gridCellProps, {\n 'aria-errormessage': props['aria-errormessage'],\n 'aria-label': props['aria-label'],\n onKeyDown: allowsRemoving ? onKeyDown : null,\n tabIndex: (isFocused || state.selectionManager.focusedKey == null) ? 0 : -1\n })\n };\n}\n","const _temp0 = require(\"./ar-AE.json\");\nconst _temp1 = require(\"./bg-BG.json\");\nconst _temp2 = require(\"./cs-CZ.json\");\nconst _temp3 = require(\"./da-DK.json\");\nconst _temp4 = require(\"./de-DE.json\");\nconst _temp5 = require(\"./el-GR.json\");\nconst _temp6 = require(\"./en-US.json\");\nconst _temp7 = require(\"./es-ES.json\");\nconst _temp8 = require(\"./et-EE.json\");\nconst _temp9 = require(\"./fi-FI.json\");\nconst _temp10 = require(\"./fr-FR.json\");\nconst _temp11 = require(\"./he-IL.json\");\nconst _temp12 = require(\"./hr-HR.json\");\nconst _temp13 = require(\"./hu-HU.json\");\nconst _temp14 = require(\"./it-IT.json\");\nconst _temp15 = require(\"./ja-JP.json\");\nconst _temp16 = require(\"./ko-KR.json\");\nconst _temp17 = require(\"./lt-LT.json\");\nconst _temp18 = require(\"./lv-LV.json\");\nconst _temp19 = require(\"./nb-NO.json\");\nconst _temp20 = require(\"./nl-NL.json\");\nconst _temp21 = require(\"./pl-PL.json\");\nconst _temp22 = require(\"./pt-BR.json\");\nconst _temp23 = require(\"./pt-PT.json\");\nconst _temp24 = require(\"./ro-RO.json\");\nconst _temp25 = require(\"./ru-RU.json\");\nconst _temp26 = require(\"./sk-SK.json\");\nconst _temp27 = require(\"./sl-SI.json\");\nconst _temp28 = require(\"./sr-SP.json\");\nconst _temp29 = require(\"./sv-SE.json\");\nconst _temp30 = require(\"./tr-TR.json\");\nconst _temp31 = require(\"./uk-UA.json\");\nconst _temp32 = require(\"./zh-CN.json\");\nconst _temp33 = require(\"./zh-TW.json\");\nmodule.exports = {\n \"ar-AE\": _temp0,\n \"bg-BG\": _temp1,\n \"cs-CZ\": _temp2,\n \"da-DK\": _temp3,\n \"de-DE\": _temp4,\n \"el-GR\": _temp5,\n \"en-US\": _temp6,\n \"es-ES\": _temp7,\n \"et-EE\": _temp8,\n \"fi-FI\": _temp9,\n \"fr-FR\": _temp10,\n \"he-IL\": _temp11,\n \"hr-HR\": _temp12,\n \"hu-HU\": _temp13,\n \"it-IT\": _temp14,\n \"ja-JP\": _temp15,\n \"ko-KR\": _temp16,\n \"lt-LT\": _temp17,\n \"lv-LV\": _temp18,\n \"nb-NO\": _temp19,\n \"nl-NL\": _temp20,\n \"pl-PL\": _temp21,\n \"pt-BR\": _temp22,\n \"pt-PT\": _temp23,\n \"ro-RO\": _temp24,\n \"ru-RU\": _temp25,\n \"sk-SK\": _temp26,\n \"sl-SI\": _temp27,\n \"sr-SP\": _temp28,\n \"sv-SE\": _temp29,\n \"tr-TR\": _temp30,\n \"uk-UA\": _temp31,\n \"zh-CN\": _temp32,\n \"zh-TW\": _temp33\n}","{\n \"remove\": \"إزالة\"\n}\n","{\n \"remove\": \"Премахване\"\n}\n","{\n \"remove\": \"Odebrat\"\n}\n","{\n \"remove\": \"Fjern\"\n}\n","{\n \"remove\": \"Entfernen\"\n}\n","{\n \"remove\": \"Κατάργηση\"\n}\n","{\n \"remove\": \"Remove\"\n}\n","{\n \"remove\": \"Quitar\"\n}\n","{\n \"remove\": \"Eemalda\"\n}\n","{\n \"remove\": \"Poista\"\n}\n","{\n \"remove\": \"Supprimer\"\n}\n","{\n \"remove\": \"הסר\"\n}\n","{\n \"remove\": \"Ukloni\"\n}\n","{\n \"remove\": \"Eltávolítás\"\n}\n","{\n \"remove\": \"Rimuovi\"\n}\n","{\n \"remove\": \"削除\"\n}\n","{\n \"remove\": \"제거\"\n}\n","{\n \"remove\": \"Pašalinti\"\n}\n","{\n \"remove\": \"Noņemt\"\n}\n","{\n \"remove\": \"Fjern\"\n}\n","{\n \"remove\": \"Verwijderen\"\n}\n","{\n \"remove\": \"Usuń\"\n}\n","{\n \"remove\": \"Remover\"\n}\n","{\n \"remove\": \"Eliminar\"\n}\n","{\n \"remove\": \"Îndepărtaţi\"\n}\n","{\n \"remove\": \"Удалить\"\n}\n","{\n \"remove\": \"Odstrániť\"\n}\n","{\n \"remove\": \"Odstrani\"\n}\n","{\n \"remove\": \"Ukloni\"\n}\n","{\n \"remove\": \"Ta bort\"\n}\n","{\n \"remove\": \"Kaldır\"\n}\n","{\n \"remove\": \"Видалити\"\n}\n","{\n \"remove\": \"删除\"\n}\n","{\n \"remove\": \"移除\"\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {DOMAttributes, DOMProps} from '@react-types/shared';\nimport {filterDOMProps, mergeProps} from '@react-aria/utils';\nimport {ReactNode, useState} from 'react';\nimport {useFocusWithin} from '@react-aria/interactions';\n\nexport interface AriaTagGroupProps extends DOMProps {\n children: ReactNode,\n isReadOnly?: boolean, // removes close button\n validationState?: 'valid' | 'invalid'\n}\n\nexport interface TagGroupAria {\n tagGroupProps: DOMAttributes\n}\n\nexport function useTagGroup(props: AriaTagGroupProps): TagGroupAria {\n let [isFocusWithin, setFocusWithin] = useState(false);\n let {focusWithinProps} = useFocusWithin({\n onFocusWithinChange: setFocusWithin\n });\n let domProps = filterDOMProps(props);\n return {\n tagGroupProps: mergeProps(domProps, {\n 'aria-atomic': false,\n 'aria-relevant': 'additions',\n 'aria-live': isFocusWithin ? 'polite' : 'off',\n ...focusWithinProps\n } as DOMAttributes)\n };\n}\n"],"names":[],"version":3,"file":"main.js.map"}
package/dist/module.js CHANGED
@@ -12,20 +12,16 @@ class $542448901dbd2c36$export$b00754732e683b92 extends $aIvin$GridKeyboardDeleg
12
12
  getFirstKey() {
13
13
  let key = this.collection.getFirstKey();
14
14
  let item = this.collection.getItem(key);
15
- let newKey = [
15
+ return [
16
16
  ...item.childNodes
17
17
  ][0].key;
18
- if (this.disabledKeys.has(newKey)) newKey = this.getKeyBelow(newKey);
19
- return newKey;
20
18
  }
21
19
  getLastKey() {
22
20
  let key = this.collection.getLastKey();
23
21
  let item = this.collection.getItem(key);
24
- let newKey = [
22
+ return [
25
23
  ...item.childNodes
26
24
  ][0].key;
27
- if (this.disabledKeys.has(newKey)) newKey = this.getKeyAbove(newKey);
28
- return newKey;
29
25
  }
30
26
  getKeyRightOf(key) {
31
27
  return this.direction === 'rtl' ? this.getKeyAbove(key) : this.getKeyBelow(key);
@@ -44,12 +40,9 @@ class $542448901dbd2c36$export$b00754732e683b92 extends $aIvin$GridKeyboardDeleg
44
40
  // If focus was on a cell, focus the cell with the same index in the next row.
45
41
  if (this.isCell(startItem)) {
46
42
  let item = this.collection.getItem(key);
47
- let newKey = [
43
+ return [
48
44
  ...item.childNodes
49
45
  ][startItem.index].key;
50
- // Ignore disabled tags
51
- if (this.disabledKeys.has(newKey)) return this.getKeyBelow(newKey);
52
- return newKey;
53
46
  }
54
47
  // Otherwise, focus the next row
55
48
  if (this.focusMode === 'row') return key;
@@ -66,12 +59,9 @@ class $542448901dbd2c36$export$b00754732e683b92 extends $aIvin$GridKeyboardDeleg
66
59
  // If focus was on a cell, focus the cell with the same index in the previous row.
67
60
  if (this.isCell(startItem)) {
68
61
  let item = this.collection.getItem(key);
69
- let newKey = [
62
+ return [
70
63
  ...item.childNodes
71
64
  ][startItem.index].key;
72
- // ignore disabled tags
73
- if (this.disabledKeys.has(newKey)) return this.getKeyAbove(newKey);
74
- return newKey;
75
65
  }
76
66
  // Otherwise, focus the previous row
77
67
  if (this.focusMode === 'row') return key;
@@ -334,7 +324,7 @@ $4d1b62e0e67c00a4$exports = {
334
324
 
335
325
  function $fc6126c82a4601f1$export$3f568fff7dff2f03(props, state) {
336
326
  let { isFocused: isFocused } = props;
337
- const { isDisabled: isDisabled , isRemovable: isRemovable , onRemove: onRemove , children: children , item: item , tagRef: tagRef , tagRowRef: tagRowRef } = props;
327
+ const { allowsRemoving: allowsRemoving , onRemove: onRemove , item: item , tagRef: tagRef , tagRowRef: tagRowRef } = props;
338
328
  const stringFormatter = $aIvin$useLocalizedStringFormatter((/*@__PURE__*/$parcel$interopDefault($4d1b62e0e67c00a4$exports)));
339
329
  const removeString = stringFormatter.format('remove');
340
330
  const labelId = $aIvin$useId();
@@ -353,13 +343,13 @@ function $fc6126c82a4601f1$export$3f568fff7dff2f03(props, state) {
353
343
  }, state, tagRef);
354
344
  function onKeyDown(e) {
355
345
  if (e.key === 'Delete' || e.key === 'Backspace' || e.key === ' ') {
356
- onRemove(children, e);
346
+ onRemove(item.childNodes[0].key);
357
347
  e.preventDefault();
358
348
  }
359
349
  }
360
350
  const pressProps = {
361
- onPress: (e)=>{
362
- return onRemove === null || onRemove === void 0 ? void 0 : onRemove(children, e);
351
+ onPress: ()=>{
352
+ return onRemove === null || onRemove === void 0 ? void 0 : onRemove(item.childNodes[0].key);
363
353
  }
364
354
  };
365
355
  isFocused = isFocused || state.selectionManager.focusedKey === item.childNodes[0].key;
@@ -368,19 +358,17 @@ function $fc6126c82a4601f1$export$3f568fff7dff2f03(props, state) {
368
358
  clearButtonProps: $aIvin$mergeProps(pressProps, {
369
359
  'aria-label': removeString,
370
360
  'aria-labelledby': `${buttonId} ${labelId}`,
371
- id: buttonId,
372
- isDisabled: isDisabled
361
+ id: buttonId
373
362
  }),
374
363
  labelProps: {
375
364
  id: labelId
376
365
  },
377
366
  tagRowProps: otherRowProps,
378
367
  tagProps: $aIvin$mergeProps(domProps, gridCellProps, {
379
- 'aria-disabled': isDisabled,
380
368
  'aria-errormessage': props['aria-errormessage'],
381
369
  'aria-label': props['aria-label'],
382
- onKeyDown: !isDisabled && isRemovable ? onKeyDown : null,
383
- tabIndex: (isFocused || state.selectionManager.focusedKey == null) && !isDisabled ? 0 : -1
370
+ onKeyDown: allowsRemoving ? onKeyDown : null,
371
+ tabIndex: isFocused || state.selectionManager.focusedKey == null ? 0 : -1
384
372
  })
385
373
  };
386
374
  }
@@ -389,24 +377,17 @@ function $fc6126c82a4601f1$export$3f568fff7dff2f03(props, state) {
389
377
 
390
378
 
391
379
 
392
- function $d7323bca8d074eeb$export$4f8b5cda58b7e8ff(props, listState) {
393
- let { isDisabled: isDisabled } = props;
380
+ function $d7323bca8d074eeb$export$4f8b5cda58b7e8ff(props) {
394
381
  let [isFocusWithin, setFocusWithin] = $aIvin$useState(false);
395
382
  let { focusWithinProps: focusWithinProps } = $aIvin$useFocusWithin({
396
383
  onFocusWithinChange: setFocusWithin
397
384
  });
398
- let allKeys = [
399
- ...listState.collection.getKeys()
400
- ];
401
- if (!allKeys.some((key)=>!listState.disabledKeys.has(key)
402
- )) isDisabled = true;
403
385
  let domProps = $aIvin$filterDOMProps(props);
404
386
  return {
405
387
  tagGroupProps: $aIvin$mergeProps(domProps, {
406
388
  'aria-atomic': false,
407
389
  'aria-relevant': 'additions',
408
390
  'aria-live': isFocusWithin ? 'polite' : 'off',
409
- 'aria-disabled': isDisabled === true,
410
391
  ...focusWithinProps
411
392
  })
412
393
  };
@@ -1 +1 @@
1
- {"mappings":";;;;;;;;;;MCgBa,yCAAmB,SAAY,2BAAoB;IAC9D,WAAW,GAAG,CAAC;QACb,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,WAAW;QACrC,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;QACtC,GAAG,CAAC,MAAM,GAAG,CAAC;eAAG,IAAI,CAAC,UAAU;QAAA,CAAC,CAAC,CAAC,EAAE,GAAG;QAExC,EAAE,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,GAC9B,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM;QAElC,MAAM,CAAC,MAAM;IACf,CAAC;IAED,UAAU,GAAG,CAAC;QACZ,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,UAAU;QACpC,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;QACtC,GAAG,CAAC,MAAM,GAAG,CAAC;eAAG,IAAI,CAAC,UAAU;QAAA,CAAC,CAAC,CAAC,EAAE,GAAG;QAExC,EAAE,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,GAC9B,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM;QAElC,MAAM,CAAC,MAAM;IACf,CAAC;IAED,aAAa,CAAC,GAAQ,EAAE,CAAC;QACvB,MAAM,CAAC,IAAI,CAAC,SAAS,KAAK,CAAK,OAAG,IAAI,CAAC,WAAW,CAAC,GAAG,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG;IAChF,CAAC;IAED,YAAY,CAAC,GAAQ,EAAE,CAAC;QACtB,MAAM,CAAC,IAAI,CAAC,SAAS,KAAK,CAAK,OAAG,IAAI,CAAC,WAAW,CAAC,GAAG,IAAI,IAAI,CAAC,WAAW,CAAC,GAAG;IAChF,CAAC;IAED,WAAW,CAAC,GAAG,EAAE,CAAC;QAChB,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;QAC3C,EAAE,GAAG,SAAS,EACZ,MAAM;QAGR,EAA8D,AAA9D,4DAA8D;QAC9D,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,GACvB,GAAG,GAAG,SAAS,CAAC,SAAS;QAG3B,EAAqB,AAArB,mBAAqB;QACrB,GAAG,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG;QAC1B,EAAE,EAAE,GAAG,IAAI,IAAI,EAAE,CAAC;YAChB,EAA8E,AAA9E,4EAA8E;YAC9E,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC;gBAC3B,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;gBACtC,GAAG,CAAC,MAAM,GAAG,CAAC;uBAAG,IAAI,CAAC,UAAU;gBAAA,CAAC,CAAC,SAAS,CAAC,KAAK,EAAE,GAAG;gBAEtD,EAAuB,AAAvB,qBAAuB;gBACvB,EAAE,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,GAC9B,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM;gBAEhC,MAAM,CAAC,MAAM;YACf,CAAC;YAED,EAAgC,AAAhC,8BAAgC;YAChC,EAAE,EAAE,IAAI,CAAC,SAAS,KAAK,CAAK,MAC1B,MAAM,CAAC,GAAG;QAEd,CAAC,MACC,MAAM,CAAC,IAAI,CAAC,WAAW;IAE3B,CAAC;IAED,WAAW,CAAC,GAAG,EAAE,CAAC;QAChB,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;QAC3C,EAAE,GAAG,SAAS,EACZ,MAAM;QAGR,EAA6D,AAA7D,2DAA6D;QAC7D,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,GACvB,GAAG,GAAG,SAAS,CAAC,SAAS;QAG3B,EAAyB,AAAzB,uBAAyB;QACzB,GAAG,GAAG,IAAI,CAAC,eAAe,CAAC,GAAG;QAC9B,EAAE,EAAE,GAAG,IAAI,IAAI,EAAE,CAAC;YAChB,EAAkF,AAAlF,gFAAkF;YAClF,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,CAAC;gBAC3B,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG;gBACtC,GAAG,CAAC,MAAM,GAAG,CAAC;uBAAG,IAAI,CAAC,UAAU;gBAAA,CAAC,CAAC,SAAS,CAAC,KAAK,EAAE,GAAG;gBAEtD,EAAuB,AAAvB,qBAAuB;gBACvB,EAAE,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,GAC9B,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM;gBAEhC,MAAM,CAAC,MAAM;YACf,CAAC;YAED,EAAoC,AAApC,kCAAoC;YACpC,EAAE,EAAE,IAAI,CAAC,SAAS,KAAK,CAAK,MAC1B,MAAM,CAAC,GAAG;QAEd,CAAC,MACC,MAAM,CAAC,IAAI,CAAC,UAAU;IAE1B,CAAC;IAED,eAAe,CAAC,GAAG,EAAE,CAAC;QACpB,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG;IAC7B,CAAC;IAED,eAAe,CAAC,GAAG,EAAE,CAAC;QACpB,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG;IAC7B,CAAC;;;;;;;AG3HH,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,UAAK;AACpC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,oBAAU;AACzC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,KAAK;AACpC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,SAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,kBAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,SAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAG;AAClC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,cAAW;AAC1C,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAE;AACjC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAE;AACjC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,UAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,KAAK;AACpC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,WAAW;AAC1C,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,KAAI;AACnC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,QAAQ;AACvC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,cAAW;AAC1C,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,cAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,WAAS;AACxC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,QAAQ;AACvC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAO;AACtC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,OAAM;AACrC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,gBAAQ;AACvC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAE;AACjC,CAAC;;;;ACDD,yBAAc,GAAG,CAAC;IAAE,CAAQ,UAAG,MAAE;AACjC,CAAC;;;AlCiCD,yBAAc,GAAG,CAAC;IAChB,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAM;IACf,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;IAChB,CAAO,QAAE,yBAAO;AAClB,CAAC;;;;;SDvCe,yCAAM,CAAC,KAAoB,EAAE,KAA0B,EAAW,CAAC;IACjF,GAAG,CAAC,CAAC,YAAA,SAAS,EAAA,CAAC,GAAG,KAAK;IACvB,KAAK,CAAC,CAAC,aACL,UAAU,gBACV,WAAW,aACX,QAAQ,aACR,QAAQ,SACR,IAAI,WACJ,MAAM,cACN,SAAS,EACX,CAAC,GAAG,KAAK;IACT,KAAK,CAAC,eAAe,GAAG,kCAA2B,CAAC,gEAAY;IAChE,KAAK,CAAC,YAAY,GAAG,eAAe,CAAC,MAAM,CAAC,CAAQ;IACpD,KAAK,CAAC,OAAO,GAAG,YAAK;IACrB,KAAK,CAAC,QAAQ,GAAG,YAAK;IAEtB,GAAG,CAAC,CAAC,WAAA,QAAQ,EAAA,CAAC,GAAG,iBAAU,CAAC,CAAC;QAC3B,IAAI,EAAE,IAAI;IACZ,CAAC,EAAE,KAAK,EAAE,SAAS;IACnB,EAAgE,AAAhE,8DAAgE;IAChE,EAA6D,AAA7D,2DAA6D;IAC7D,GAAG,CAAC,CAAC,WAAA,QAAQ,MAAK,aAAa,CAAA,CAAC,GAAG,QAAQ;IAE3C,GAAG,CAAC,CAAC,gBAAA,aAAa,EAAA,CAAC,GAAG,kBAAW,CAAC,CAAC;QACjC,IAAI,EAAE,CAAC;eAAG,IAAI,CAAC,UAAU;QAAA,CAAC,CAAC,CAAC;QAC5B,SAAS,EAAE,CAAM;IACnB,CAAC,EAAE,KAAK,EAAE,MAAM;aAEP,SAAS,CAAC,CAAyB,EAAE,CAAC;QAC7C,EAAE,EAAE,CAAC,CAAC,GAAG,KAAK,CAAQ,WAAI,CAAC,CAAC,GAAG,KAAK,CAAW,cAAI,CAAC,CAAC,GAAG,KAAK,CAAG,IAAE,CAAC;YACjE,QAAQ,CAAC,QAAQ,EAAE,CAAC;YACpB,CAAC,CAAC,cAAc;QAClB,CAAC;IACH,CAAC;IACD,KAAK,CAAC,UAAU,GAAG,CAAC;QAClB,OAAO,GAAE,CAAC;mBAAI,QAAQ,aAAR,QAAQ,KAAR,IAAI,CAAJ,CAAuB,GAAvB,IAAI,CAAJ,CAAuB,GAAvB,QAAQ,CAAG,QAAQ,EAAE,CAAC;;IACtC,CAAC;IAED,SAAS,GAAG,SAAS,IAAI,KAAK,CAAC,gBAAgB,CAAC,UAAU,KAAK,IAAI,CAAC,UAAU,CAAC,CAAC,EAAE,GAAG;IACrF,GAAG,CAAC,QAAQ,GAAG,qBAAc,CAAC,KAAK;IACnC,MAAM,CAAC,CAAC;QACN,gBAAgB,EAAE,iBAAU,CAAC,UAAU,EAAE,CAAC;YACxC,CAAY,aAAE,YAAY;YAC1B,CAAiB,qBAAK,QAAQ,CAAC,CAAC,EAAE,OAAO;YACzC,EAAE,EAAE,QAAQ;wBACZ,UAAU;QACZ,CAAC;QACD,UAAU,EAAE,CAAC;YACX,EAAE,EAAE,OAAO;QACb,CAAC;QACD,WAAW,EAAE,aAAa;QAC1B,QAAQ,EAAE,iBAAU,CAAC,QAAQ,EAAE,aAAa,EAAE,CAAC;YAC7C,CAAe,gBAAE,UAAU;YAC3B,CAAmB,oBAAE,KAAK,CAAC,CAAmB;YAC9C,CAAY,aAAE,KAAK,CAAC,CAAY;YAChC,SAAS,GAAG,UAAU,IAAI,WAAW,GAAG,SAAS,GAAG,IAAI;YACxD,QAAQ,GAAG,SAAS,IAAI,KAAK,CAAC,gBAAgB,CAAC,UAAU,IAAI,IAAI,MAAM,UAAU,GAAG,CAAC,GAAG,EAAE;QAC5F,CAAC;IACH,CAAC;AACH,CAAC;;;;;;SoC5De,yCAAW,CAAC,KAAwB,EAAE,SAAS,EAAgB,CAAC;IAC9E,GAAG,CAAC,CAAC,aAAA,UAAU,EAAA,CAAC,GAAG,KAAK;IACxB,GAAG,EAAE,aAAa,EAAE,cAAc,IAAI,eAAQ,CAAC,KAAK;IACpD,GAAG,CAAC,CAAC,mBAAA,gBAAgB,EAAA,CAAC,GAAG,qBAAc,CAAC,CAAC;QACvC,mBAAmB,EAAE,cAAc;IACrC,CAAC;IACD,GAAG,CAAC,OAAO,GAAG,CAAC;WAAG,SAAS,CAAC,UAAU,CAAC,OAAO;IAAE,CAAC;IACjD,EAAE,GAAG,OAAO,CAAC,IAAI,EAAC,GAAG,IAAK,SAAS,CAAC,YAAY,CAAC,GAAG,CAAC,GAAG;OACtD,UAAU,GAAG,IAAI;IAEnB,GAAG,CAAC,QAAQ,GAAG,qBAAc,CAAC,KAAK;IACnC,MAAM,CAAC,CAAC;QACN,aAAa,EAAE,iBAAU,CAAC,QAAQ,EAAE,CAAC;YACnC,CAAa,cAAE,KAAK;YACpB,CAAe,gBAAE,CAAW;YAC5B,CAAW,YAAE,aAAa,GAAG,CAAQ,UAAG,CAAK;YAC7C,CAAe,gBAAE,UAAU,KAAK,IAAI;eACjC,gBAAgB;QACrB,CAAC;IACH,CAAC;AACH,CAAC;","sources":["packages/@react-aria/tag/src/index.ts","packages/@react-aria/tag/src/TagKeyboardDelegate.ts","packages/@react-aria/tag/src/useTag.ts","packages/@react-aria/tag/intl/*.js","packages/@react-aria/tag/intl/ar-AE.json","packages/@react-aria/tag/intl/bg-BG.json","packages/@react-aria/tag/intl/cs-CZ.json","packages/@react-aria/tag/intl/da-DK.json","packages/@react-aria/tag/intl/de-DE.json","packages/@react-aria/tag/intl/el-GR.json","packages/@react-aria/tag/intl/en-US.json","packages/@react-aria/tag/intl/es-ES.json","packages/@react-aria/tag/intl/et-EE.json","packages/@react-aria/tag/intl/fi-FI.json","packages/@react-aria/tag/intl/fr-FR.json","packages/@react-aria/tag/intl/he-IL.json","packages/@react-aria/tag/intl/hr-HR.json","packages/@react-aria/tag/intl/hu-HU.json","packages/@react-aria/tag/intl/it-IT.json","packages/@react-aria/tag/intl/ja-JP.json","packages/@react-aria/tag/intl/ko-KR.json","packages/@react-aria/tag/intl/lt-LT.json","packages/@react-aria/tag/intl/lv-LV.json","packages/@react-aria/tag/intl/nb-NO.json","packages/@react-aria/tag/intl/nl-NL.json","packages/@react-aria/tag/intl/pl-PL.json","packages/@react-aria/tag/intl/pt-BR.json","packages/@react-aria/tag/intl/pt-PT.json","packages/@react-aria/tag/intl/ro-RO.json","packages/@react-aria/tag/intl/ru-RU.json","packages/@react-aria/tag/intl/sk-SK.json","packages/@react-aria/tag/intl/sl-SI.json","packages/@react-aria/tag/intl/sr-SP.json","packages/@react-aria/tag/intl/sv-SE.json","packages/@react-aria/tag/intl/tr-TR.json","packages/@react-aria/tag/intl/uk-UA.json","packages/@react-aria/tag/intl/zh-CN.json","packages/@react-aria/tag/intl/zh-TW.json","packages/@react-aria/tag/src/useTagGroup.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport {TagKeyboardDelegate} from './TagKeyboardDelegate';\nexport {useTag} from './useTag';\nexport {useTagGroup} from './useTagGroup';\n\nexport type {TagProps} from '@react-types/tag';\nexport type {AriaTagGroupProps, TagGroupAria} from './useTagGroup';\nexport type {TagAria} from './useTag';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {GridCollection} from '@react-types/grid';\nimport {GridKeyboardDelegate} from '@react-aria/grid';\nimport {Key} from 'react';\n\nexport class TagKeyboardDelegate<T> extends GridKeyboardDelegate<T, GridCollection<T>> {\n getFirstKey() {\n let key = this.collection.getFirstKey();\n let item = this.collection.getItem(key);\n let newKey = [...item.childNodes][0].key;\n\n if (this.disabledKeys.has(newKey)) {\n newKey = this.getKeyBelow(newKey);\n }\n return newKey;\n }\n\n getLastKey() {\n let key = this.collection.getLastKey();\n let item = this.collection.getItem(key);\n let newKey = [...item.childNodes][0].key;\n\n if (this.disabledKeys.has(newKey)) {\n newKey = this.getKeyAbove(newKey);\n }\n return newKey;\n }\n\n getKeyRightOf(key: Key) {\n return this.direction === 'rtl' ? this.getKeyAbove(key) : this.getKeyBelow(key);\n }\n\n getKeyLeftOf(key: Key) {\n return this.direction === 'rtl' ? this.getKeyBelow(key) : this.getKeyAbove(key);\n }\n\n getKeyBelow(key) {\n let startItem = this.collection.getItem(key);\n if (!startItem) {\n return;\n }\n\n // If focus was on a cell, start searching from the parent row\n if (this.isCell(startItem)) {\n key = startItem.parentKey;\n }\n\n // Find the next item\n key = this.findNextKey(key);\n if (key != null) {\n // If focus was on a cell, focus the cell with the same index in the next row.\n if (this.isCell(startItem)) {\n let item = this.collection.getItem(key);\n let newKey = [...item.childNodes][startItem.index].key;\n\n // Ignore disabled tags\n if (this.disabledKeys.has(newKey)) {\n return this.getKeyBelow(newKey);\n }\n return newKey;\n }\n\n // Otherwise, focus the next row\n if (this.focusMode === 'row') {\n return key;\n }\n } else {\n return this.getFirstKey();\n }\n }\n\n getKeyAbove(key) {\n let startItem = this.collection.getItem(key);\n if (!startItem) {\n return;\n }\n\n // If focus is on a cell, start searching from the parent row\n if (this.isCell(startItem)) {\n key = startItem.parentKey;\n }\n\n // Find the previous item\n key = this.findPreviousKey(key);\n if (key != null) {\n // If focus was on a cell, focus the cell with the same index in the previous row.\n if (this.isCell(startItem)) {\n let item = this.collection.getItem(key);\n let newKey = [...item.childNodes][startItem.index].key;\n\n // ignore disabled tags\n if (this.disabledKeys.has(newKey)) {\n return this.getKeyAbove(newKey);\n }\n return newKey;\n }\n\n // Otherwise, focus the previous row\n if (this.focusMode === 'row') {\n return key;\n }\n } else {\n return this.getLastKey();\n }\n }\n\n getKeyPageAbove(key) {\n return this.getKeyAbove(key);\n }\n\n getKeyPageBelow(key) {\n return this.getKeyBelow(key);\n }\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {ButtonHTMLAttributes, KeyboardEvent} from 'react';\nimport {DOMAttributes} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, useId} from '@react-aria/utils';\nimport {GridState} from '@react-stately/grid';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {TagProps} from '@react-types/tag';\nimport {useGridCell, useGridRow} from '@react-aria/grid';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\n\n\nexport interface TagAria {\n labelProps: DOMAttributes,\n tagProps: DOMAttributes,\n tagRowProps: DOMAttributes,\n clearButtonProps: ButtonHTMLAttributes<HTMLButtonElement>\n}\n\nexport function useTag(props: TagProps<any>, state: GridState<any, any>): TagAria {\n let {isFocused} = props;\n const {\n isDisabled,\n isRemovable,\n onRemove,\n children,\n item,\n tagRef,\n tagRowRef\n } = props;\n const stringFormatter = useLocalizedStringFormatter(intlMessages);\n const removeString = stringFormatter.format('remove');\n const labelId = useId();\n const buttonId = useId();\n\n let {rowProps} = useGridRow({\n node: item\n }, state, tagRowRef);\n // Don't want the row to be focusable or accessible via keyboard\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n let {tabIndex, ...otherRowProps} = rowProps;\n\n let {gridCellProps} = useGridCell({\n node: [...item.childNodes][0],\n focusMode: 'cell'\n }, state, tagRef);\n\n function onKeyDown(e: KeyboardEvent<Element>) {\n if (e.key === 'Delete' || e.key === 'Backspace' || e.key === ' ') {\n onRemove(children, e);\n e.preventDefault();\n }\n }\n const pressProps = {\n onPress: e => onRemove?.(children, e)\n };\n\n isFocused = isFocused || state.selectionManager.focusedKey === item.childNodes[0].key;\n let domProps = filterDOMProps(props);\n return {\n clearButtonProps: mergeProps(pressProps, {\n 'aria-label': removeString,\n 'aria-labelledby': `${buttonId} ${labelId}`,\n id: buttonId,\n isDisabled\n }),\n labelProps: {\n id: labelId\n },\n tagRowProps: otherRowProps,\n tagProps: mergeProps(domProps, gridCellProps, {\n 'aria-disabled': isDisabled,\n 'aria-errormessage': props['aria-errormessage'],\n 'aria-label': props['aria-label'],\n onKeyDown: !isDisabled && isRemovable ? onKeyDown : null,\n tabIndex: (isFocused || state.selectionManager.focusedKey == null) && !isDisabled ? 0 : -1\n })\n };\n}\n","const _temp0 = require(\"./ar-AE.json\");\nconst _temp1 = require(\"./bg-BG.json\");\nconst _temp2 = require(\"./cs-CZ.json\");\nconst _temp3 = require(\"./da-DK.json\");\nconst _temp4 = require(\"./de-DE.json\");\nconst _temp5 = require(\"./el-GR.json\");\nconst _temp6 = require(\"./en-US.json\");\nconst _temp7 = require(\"./es-ES.json\");\nconst _temp8 = require(\"./et-EE.json\");\nconst _temp9 = require(\"./fi-FI.json\");\nconst _temp10 = require(\"./fr-FR.json\");\nconst _temp11 = require(\"./he-IL.json\");\nconst _temp12 = require(\"./hr-HR.json\");\nconst _temp13 = require(\"./hu-HU.json\");\nconst _temp14 = require(\"./it-IT.json\");\nconst _temp15 = require(\"./ja-JP.json\");\nconst _temp16 = require(\"./ko-KR.json\");\nconst _temp17 = require(\"./lt-LT.json\");\nconst _temp18 = require(\"./lv-LV.json\");\nconst _temp19 = require(\"./nb-NO.json\");\nconst _temp20 = require(\"./nl-NL.json\");\nconst _temp21 = require(\"./pl-PL.json\");\nconst _temp22 = require(\"./pt-BR.json\");\nconst _temp23 = require(\"./pt-PT.json\");\nconst _temp24 = require(\"./ro-RO.json\");\nconst _temp25 = require(\"./ru-RU.json\");\nconst _temp26 = require(\"./sk-SK.json\");\nconst _temp27 = require(\"./sl-SI.json\");\nconst _temp28 = require(\"./sr-SP.json\");\nconst _temp29 = require(\"./sv-SE.json\");\nconst _temp30 = require(\"./tr-TR.json\");\nconst _temp31 = require(\"./uk-UA.json\");\nconst _temp32 = require(\"./zh-CN.json\");\nconst _temp33 = require(\"./zh-TW.json\");\nmodule.exports = {\n \"ar-AE\": _temp0,\n \"bg-BG\": _temp1,\n \"cs-CZ\": _temp2,\n \"da-DK\": _temp3,\n \"de-DE\": _temp4,\n \"el-GR\": _temp5,\n \"en-US\": _temp6,\n \"es-ES\": _temp7,\n \"et-EE\": _temp8,\n \"fi-FI\": _temp9,\n \"fr-FR\": _temp10,\n \"he-IL\": _temp11,\n \"hr-HR\": _temp12,\n \"hu-HU\": _temp13,\n \"it-IT\": _temp14,\n \"ja-JP\": _temp15,\n \"ko-KR\": _temp16,\n \"lt-LT\": _temp17,\n \"lv-LV\": _temp18,\n \"nb-NO\": _temp19,\n \"nl-NL\": _temp20,\n \"pl-PL\": _temp21,\n \"pt-BR\": _temp22,\n \"pt-PT\": _temp23,\n \"ro-RO\": _temp24,\n \"ru-RU\": _temp25,\n \"sk-SK\": _temp26,\n \"sl-SI\": _temp27,\n \"sr-SP\": _temp28,\n \"sv-SE\": _temp29,\n \"tr-TR\": _temp30,\n \"uk-UA\": _temp31,\n \"zh-CN\": _temp32,\n \"zh-TW\": _temp33\n}","{\n \"remove\": \"إزالة\"\n}\n","{\n \"remove\": \"Премахване\"\n}\n","{\n \"remove\": \"Odebrat\"\n}\n","{\n \"remove\": \"Fjern\"\n}\n","{\n \"remove\": \"Entfernen\"\n}\n","{\n \"remove\": \"Κατάργηση\"\n}\n","{\n \"remove\": \"Remove\"\n}\n","{\n \"remove\": \"Quitar\"\n}\n","{\n \"remove\": \"Eemalda\"\n}\n","{\n \"remove\": \"Poista\"\n}\n","{\n \"remove\": \"Supprimer\"\n}\n","{\n \"remove\": \"הסר\"\n}\n","{\n \"remove\": \"Ukloni\"\n}\n","{\n \"remove\": \"Eltávolítás\"\n}\n","{\n \"remove\": \"Rimuovi\"\n}\n","{\n \"remove\": \"削除\"\n}\n","{\n \"remove\": \"제거\"\n}\n","{\n \"remove\": \"Pašalinti\"\n}\n","{\n \"remove\": \"Noņemt\"\n}\n","{\n \"remove\": \"Fjern\"\n}\n","{\n \"remove\": \"Verwijderen\"\n}\n","{\n \"remove\": \"Usuń\"\n}\n","{\n \"remove\": \"Remover\"\n}\n","{\n \"remove\": \"Eliminar\"\n}\n","{\n \"remove\": \"Îndepărtaţi\"\n}\n","{\n \"remove\": \"Удалить\"\n}\n","{\n \"remove\": \"Odstrániť\"\n}\n","{\n \"remove\": \"Odstrani\"\n}\n","{\n \"remove\": \"Ukloni\"\n}\n","{\n \"remove\": \"Ta bort\"\n}\n","{\n \"remove\": \"Kaldır\"\n}\n","{\n \"remove\": \"Видалити\"\n}\n","{\n \"remove\": \"删除\"\n}\n","{\n \"remove\": \"移除\"\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {DOMAttributes, DOMProps} from '@react-types/shared';\nimport {filterDOMProps, mergeProps} from '@react-aria/utils';\nimport {Key, ReactNode, useState} from 'react';\nimport {useFocusWithin} from '@react-aria/interactions';\n\nexport interface AriaTagGroupProps extends DOMProps {\n children: ReactNode,\n disabledKeys?: Iterable<Key>,\n isDisabled?: boolean,\n isReadOnly?: boolean, // removes close button\n validationState?: 'valid' | 'invalid'\n}\n\nexport interface TagGroupAria {\n tagGroupProps: DOMAttributes\n}\n\nexport function useTagGroup(props: AriaTagGroupProps, listState): TagGroupAria {\n let {isDisabled} = props;\n let [isFocusWithin, setFocusWithin] = useState(false);\n let {focusWithinProps} = useFocusWithin({\n onFocusWithinChange: setFocusWithin\n });\n let allKeys = [...listState.collection.getKeys()];\n if (!allKeys.some(key => !listState.disabledKeys.has(key))) {\n isDisabled = true;\n }\n let domProps = filterDOMProps(props);\n return {\n tagGroupProps: mergeProps(domProps, {\n 'aria-atomic': false,\n 'aria-relevant': 'additions',\n 'aria-live': isFocusWithin ? 'polite' : 'off',\n 'aria-disabled': isDisabled === true,\n ...focusWithinProps\n } as DOMAttributes)\n };\n}\n"],"names":[],"version":3,"file":"module.js.map"}
1
+ {"mappings":"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","sources":["packages/@react-aria/tag/src/index.ts","packages/@react-aria/tag/src/TagKeyboardDelegate.ts","packages/@react-aria/tag/src/useTag.ts","packages/@react-aria/tag/intl/*.js","packages/@react-aria/tag/intl/ar-AE.json","packages/@react-aria/tag/intl/bg-BG.json","packages/@react-aria/tag/intl/cs-CZ.json","packages/@react-aria/tag/intl/da-DK.json","packages/@react-aria/tag/intl/de-DE.json","packages/@react-aria/tag/intl/el-GR.json","packages/@react-aria/tag/intl/en-US.json","packages/@react-aria/tag/intl/es-ES.json","packages/@react-aria/tag/intl/et-EE.json","packages/@react-aria/tag/intl/fi-FI.json","packages/@react-aria/tag/intl/fr-FR.json","packages/@react-aria/tag/intl/he-IL.json","packages/@react-aria/tag/intl/hr-HR.json","packages/@react-aria/tag/intl/hu-HU.json","packages/@react-aria/tag/intl/it-IT.json","packages/@react-aria/tag/intl/ja-JP.json","packages/@react-aria/tag/intl/ko-KR.json","packages/@react-aria/tag/intl/lt-LT.json","packages/@react-aria/tag/intl/lv-LV.json","packages/@react-aria/tag/intl/nb-NO.json","packages/@react-aria/tag/intl/nl-NL.json","packages/@react-aria/tag/intl/pl-PL.json","packages/@react-aria/tag/intl/pt-BR.json","packages/@react-aria/tag/intl/pt-PT.json","packages/@react-aria/tag/intl/ro-RO.json","packages/@react-aria/tag/intl/ru-RU.json","packages/@react-aria/tag/intl/sk-SK.json","packages/@react-aria/tag/intl/sl-SI.json","packages/@react-aria/tag/intl/sr-SP.json","packages/@react-aria/tag/intl/sv-SE.json","packages/@react-aria/tag/intl/tr-TR.json","packages/@react-aria/tag/intl/uk-UA.json","packages/@react-aria/tag/intl/zh-CN.json","packages/@react-aria/tag/intl/zh-TW.json","packages/@react-aria/tag/src/useTagGroup.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport {TagKeyboardDelegate} from './TagKeyboardDelegate';\nexport {useTag} from './useTag';\nexport {useTagGroup} from './useTagGroup';\n\nexport type {TagProps} from '@react-types/tag';\nexport type {AriaTagGroupProps, TagGroupAria} from './useTagGroup';\nexport type {TagAria} from './useTag';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {GridCollection} from '@react-types/grid';\nimport {GridKeyboardDelegate} from '@react-aria/grid';\nimport {Key} from 'react';\n\nexport class TagKeyboardDelegate<T> extends GridKeyboardDelegate<T, GridCollection<T>> {\n getFirstKey() {\n let key = this.collection.getFirstKey();\n let item = this.collection.getItem(key);\n\n return [...item.childNodes][0].key;\n }\n\n getLastKey() {\n let key = this.collection.getLastKey();\n let item = this.collection.getItem(key);\n\n return [...item.childNodes][0].key;\n }\n\n getKeyRightOf(key: Key) {\n return this.direction === 'rtl' ? this.getKeyAbove(key) : this.getKeyBelow(key);\n }\n\n getKeyLeftOf(key: Key) {\n return this.direction === 'rtl' ? this.getKeyBelow(key) : this.getKeyAbove(key);\n }\n\n getKeyBelow(key) {\n let startItem = this.collection.getItem(key);\n if (!startItem) {\n return;\n }\n\n // If focus was on a cell, start searching from the parent row\n if (this.isCell(startItem)) {\n key = startItem.parentKey;\n }\n\n // Find the next item\n key = this.findNextKey(key);\n if (key != null) {\n // If focus was on a cell, focus the cell with the same index in the next row.\n if (this.isCell(startItem)) {\n let item = this.collection.getItem(key);\n\n return [...item.childNodes][startItem.index].key;\n }\n\n // Otherwise, focus the next row\n if (this.focusMode === 'row') {\n return key;\n }\n } else {\n return this.getFirstKey();\n }\n }\n\n getKeyAbove(key) {\n let startItem = this.collection.getItem(key);\n if (!startItem) {\n return;\n }\n\n // If focus is on a cell, start searching from the parent row\n if (this.isCell(startItem)) {\n key = startItem.parentKey;\n }\n\n // Find the previous item\n key = this.findPreviousKey(key);\n if (key != null) {\n // If focus was on a cell, focus the cell with the same index in the previous row.\n if (this.isCell(startItem)) {\n let item = this.collection.getItem(key);\n return [...item.childNodes][startItem.index].key;\n }\n\n // Otherwise, focus the previous row\n if (this.focusMode === 'row') {\n return key;\n }\n } else {\n return this.getLastKey();\n }\n }\n\n getKeyPageAbove(key) {\n return this.getKeyAbove(key);\n }\n\n getKeyPageBelow(key) {\n return this.getKeyBelow(key);\n }\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {ButtonHTMLAttributes, KeyboardEvent} from 'react';\nimport {DOMAttributes} from '@react-types/shared';\nimport {filterDOMProps, mergeProps, useId} from '@react-aria/utils';\nimport {GridState} from '@react-stately/grid';\n// @ts-ignore\nimport intlMessages from '../intl/*.json';\nimport {TagProps} from '@react-types/tag';\nimport {useGridCell, useGridRow} from '@react-aria/grid';\nimport {useLocalizedStringFormatter} from '@react-aria/i18n';\n\n\nexport interface TagAria {\n labelProps: DOMAttributes,\n tagProps: DOMAttributes,\n tagRowProps: DOMAttributes,\n clearButtonProps: ButtonHTMLAttributes<HTMLButtonElement>\n}\n\nexport function useTag(props: TagProps<any>, state: GridState<any, any>): TagAria {\n let {isFocused} = props;\n const {\n allowsRemoving,\n onRemove,\n item,\n tagRef,\n tagRowRef\n } = props;\n const stringFormatter = useLocalizedStringFormatter(intlMessages);\n const removeString = stringFormatter.format('remove');\n const labelId = useId();\n const buttonId = useId();\n\n let {rowProps} = useGridRow({\n node: item\n }, state, tagRowRef);\n // Don't want the row to be focusable or accessible via keyboard\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n let {tabIndex, ...otherRowProps} = rowProps;\n\n let {gridCellProps} = useGridCell({\n node: [...item.childNodes][0],\n focusMode: 'cell'\n }, state, tagRef);\n\n function onKeyDown(e: KeyboardEvent) {\n if (e.key === 'Delete' || e.key === 'Backspace' || e.key === ' ') {\n onRemove(item.childNodes[0].key);\n e.preventDefault();\n }\n }\n const pressProps = {\n onPress: () => onRemove?.(item.childNodes[0].key)\n };\n\n isFocused = isFocused || state.selectionManager.focusedKey === item.childNodes[0].key;\n let domProps = filterDOMProps(props);\n return {\n clearButtonProps: mergeProps(pressProps, {\n 'aria-label': removeString,\n 'aria-labelledby': `${buttonId} ${labelId}`,\n id: buttonId\n }),\n labelProps: {\n id: labelId\n },\n tagRowProps: otherRowProps,\n tagProps: mergeProps(domProps, gridCellProps, {\n 'aria-errormessage': props['aria-errormessage'],\n 'aria-label': props['aria-label'],\n onKeyDown: allowsRemoving ? onKeyDown : null,\n tabIndex: (isFocused || state.selectionManager.focusedKey == null) ? 0 : -1\n })\n };\n}\n","const _temp0 = require(\"./ar-AE.json\");\nconst _temp1 = require(\"./bg-BG.json\");\nconst _temp2 = require(\"./cs-CZ.json\");\nconst _temp3 = require(\"./da-DK.json\");\nconst _temp4 = require(\"./de-DE.json\");\nconst _temp5 = require(\"./el-GR.json\");\nconst _temp6 = require(\"./en-US.json\");\nconst _temp7 = require(\"./es-ES.json\");\nconst _temp8 = require(\"./et-EE.json\");\nconst _temp9 = require(\"./fi-FI.json\");\nconst _temp10 = require(\"./fr-FR.json\");\nconst _temp11 = require(\"./he-IL.json\");\nconst _temp12 = require(\"./hr-HR.json\");\nconst _temp13 = require(\"./hu-HU.json\");\nconst _temp14 = require(\"./it-IT.json\");\nconst _temp15 = require(\"./ja-JP.json\");\nconst _temp16 = require(\"./ko-KR.json\");\nconst _temp17 = require(\"./lt-LT.json\");\nconst _temp18 = require(\"./lv-LV.json\");\nconst _temp19 = require(\"./nb-NO.json\");\nconst _temp20 = require(\"./nl-NL.json\");\nconst _temp21 = require(\"./pl-PL.json\");\nconst _temp22 = require(\"./pt-BR.json\");\nconst _temp23 = require(\"./pt-PT.json\");\nconst _temp24 = require(\"./ro-RO.json\");\nconst _temp25 = require(\"./ru-RU.json\");\nconst _temp26 = require(\"./sk-SK.json\");\nconst _temp27 = require(\"./sl-SI.json\");\nconst _temp28 = require(\"./sr-SP.json\");\nconst _temp29 = require(\"./sv-SE.json\");\nconst _temp30 = require(\"./tr-TR.json\");\nconst _temp31 = require(\"./uk-UA.json\");\nconst _temp32 = require(\"./zh-CN.json\");\nconst _temp33 = require(\"./zh-TW.json\");\nmodule.exports = {\n \"ar-AE\": _temp0,\n \"bg-BG\": _temp1,\n \"cs-CZ\": _temp2,\n \"da-DK\": _temp3,\n \"de-DE\": _temp4,\n \"el-GR\": _temp5,\n \"en-US\": _temp6,\n \"es-ES\": _temp7,\n \"et-EE\": _temp8,\n \"fi-FI\": _temp9,\n \"fr-FR\": _temp10,\n \"he-IL\": _temp11,\n \"hr-HR\": _temp12,\n \"hu-HU\": _temp13,\n \"it-IT\": _temp14,\n \"ja-JP\": _temp15,\n \"ko-KR\": _temp16,\n \"lt-LT\": _temp17,\n \"lv-LV\": _temp18,\n \"nb-NO\": _temp19,\n \"nl-NL\": _temp20,\n \"pl-PL\": _temp21,\n \"pt-BR\": _temp22,\n \"pt-PT\": _temp23,\n \"ro-RO\": _temp24,\n \"ru-RU\": _temp25,\n \"sk-SK\": _temp26,\n \"sl-SI\": _temp27,\n \"sr-SP\": _temp28,\n \"sv-SE\": _temp29,\n \"tr-TR\": _temp30,\n \"uk-UA\": _temp31,\n \"zh-CN\": _temp32,\n \"zh-TW\": _temp33\n}","{\n \"remove\": \"إزالة\"\n}\n","{\n \"remove\": \"Премахване\"\n}\n","{\n \"remove\": \"Odebrat\"\n}\n","{\n \"remove\": \"Fjern\"\n}\n","{\n \"remove\": \"Entfernen\"\n}\n","{\n \"remove\": \"Κατάργηση\"\n}\n","{\n \"remove\": \"Remove\"\n}\n","{\n \"remove\": \"Quitar\"\n}\n","{\n \"remove\": \"Eemalda\"\n}\n","{\n \"remove\": \"Poista\"\n}\n","{\n \"remove\": \"Supprimer\"\n}\n","{\n \"remove\": \"הסר\"\n}\n","{\n \"remove\": \"Ukloni\"\n}\n","{\n \"remove\": \"Eltávolítás\"\n}\n","{\n \"remove\": \"Rimuovi\"\n}\n","{\n \"remove\": \"削除\"\n}\n","{\n \"remove\": \"제거\"\n}\n","{\n \"remove\": \"Pašalinti\"\n}\n","{\n \"remove\": \"Noņemt\"\n}\n","{\n \"remove\": \"Fjern\"\n}\n","{\n \"remove\": \"Verwijderen\"\n}\n","{\n \"remove\": \"Usuń\"\n}\n","{\n \"remove\": \"Remover\"\n}\n","{\n \"remove\": \"Eliminar\"\n}\n","{\n \"remove\": \"Îndepărtaţi\"\n}\n","{\n \"remove\": \"Удалить\"\n}\n","{\n \"remove\": \"Odstrániť\"\n}\n","{\n \"remove\": \"Odstrani\"\n}\n","{\n \"remove\": \"Ukloni\"\n}\n","{\n \"remove\": \"Ta bort\"\n}\n","{\n \"remove\": \"Kaldır\"\n}\n","{\n \"remove\": \"Видалити\"\n}\n","{\n \"remove\": \"删除\"\n}\n","{\n \"remove\": \"移除\"\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {DOMAttributes, DOMProps} from '@react-types/shared';\nimport {filterDOMProps, mergeProps} from '@react-aria/utils';\nimport {ReactNode, useState} from 'react';\nimport {useFocusWithin} from '@react-aria/interactions';\n\nexport interface AriaTagGroupProps extends DOMProps {\n children: ReactNode,\n isReadOnly?: boolean, // removes close button\n validationState?: 'valid' | 'invalid'\n}\n\nexport interface TagGroupAria {\n tagGroupProps: DOMAttributes\n}\n\nexport function useTagGroup(props: AriaTagGroupProps): TagGroupAria {\n let [isFocusWithin, setFocusWithin] = useState(false);\n let {focusWithinProps} = useFocusWithin({\n onFocusWithinChange: setFocusWithin\n });\n let domProps = filterDOMProps(props);\n return {\n tagGroupProps: mergeProps(domProps, {\n 'aria-atomic': false,\n 'aria-relevant': 'additions',\n 'aria-live': isFocusWithin ? 'polite' : 'off',\n ...focusWithinProps\n } as DOMAttributes)\n };\n}\n"],"names":[],"version":3,"file":"module.js.map"}
package/dist/types.d.ts CHANGED
@@ -5,8 +5,8 @@ import { DOMAttributes, DOMProps } from "@react-types/shared";
5
5
  import { GridState } from "@react-stately/grid";
6
6
  import { TagProps } from "@react-types/tag";
7
7
  export class TagKeyboardDelegate<T> extends GridKeyboardDelegate<T, GridCollection<T>> {
8
- getFirstKey(): any;
9
- getLastKey(): any;
8
+ getFirstKey(): Key;
9
+ getLastKey(): Key;
10
10
  getKeyRightOf(key: Key): any;
11
11
  getKeyLeftOf(key: Key): any;
12
12
  getKeyBelow(key: any): any;
@@ -23,15 +23,13 @@ export interface TagAria {
23
23
  export function useTag(props: TagProps<any>, state: GridState<any, any>): TagAria;
24
24
  export interface AriaTagGroupProps extends DOMProps {
25
25
  children: ReactNode;
26
- disabledKeys?: Iterable<Key>;
27
- isDisabled?: boolean;
28
26
  isReadOnly?: boolean;
29
27
  validationState?: 'valid' | 'invalid';
30
28
  }
31
29
  export interface TagGroupAria {
32
30
  tagGroupProps: DOMAttributes;
33
31
  }
34
- export function useTagGroup(props: AriaTagGroupProps, listState: any): TagGroupAria;
32
+ export function useTagGroup(props: AriaTagGroupProps): TagGroupAria;
35
33
  export type { TagProps } from '@react-types/tag';
36
34
 
37
35
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"mappings":";;;;;;AAgBA,iCAAiC,CAAC,CAAE,SAAQ,qBAAqB,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC;IACpF,WAAW;IAWX,UAAU;IAWV,aAAa,CAAC,GAAG,EAAE,GAAG;IAItB,YAAY,CAAC,GAAG,EAAE,GAAG;IAIrB,WAAW,CAAC,GAAG,KAAA;IAmCf,WAAW,CAAC,GAAG,KAAA;IAmCf,eAAe,CAAC,GAAG,KAAA;IAInB,eAAe,CAAC,GAAG,KAAA;CAGpB;ACrGD;IACE,UAAU,EAAE,aAAa,CAAC;IAC1B,QAAQ,EAAE,aAAa,CAAC;IACxB,WAAW,EAAE,aAAa,CAAC;IAC3B,gBAAgB,EAAE,qBAAqB,iBAAiB,CAAC,CAAA;CAC1D;AAED,uBAAuB,KAAK,EAAE,SAAS,GAAG,CAAC,EAAE,KAAK,EAAE,UAAU,GAAG,EAAE,GAAG,CAAC,GAAG,OAAO,CA2DhF;ACxED,kCAAmC,SAAQ,QAAQ;IACjD,QAAQ,EAAE,SAAS,CAAC;IACpB,YAAY,CAAC,EAAE,QAAQ,CAAC,GAAG,CAAC,CAAC;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,eAAe,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;CACtC;AAED;IACE,aAAa,EAAE,aAAa,CAAA;CAC7B;AAED,4BAA4B,KAAK,EAAE,iBAAiB,EAAE,SAAS,KAAA,GAAG,YAAY,CAoB7E;ACjCD,YAAY,EAAC,QAAQ,EAAC,MAAM,kBAAkB,CAAC","sources":["packages/@react-aria/tag/src/packages/@react-aria/tag/src/TagKeyboardDelegate.ts","packages/@react-aria/tag/src/packages/@react-aria/tag/src/useTag.ts","packages/@react-aria/tag/src/packages/@react-aria/tag/src/useTagGroup.ts","packages/@react-aria/tag/src/packages/@react-aria/tag/src/index.ts","packages/@react-aria/tag/src/index.ts"],"sourcesContent":[null,null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport {TagKeyboardDelegate} from './TagKeyboardDelegate';\nexport {useTag} from './useTag';\nexport {useTagGroup} from './useTagGroup';\n\nexport type {TagProps} from '@react-types/tag';\nexport type {AriaTagGroupProps, TagGroupAria} from './useTagGroup';\nexport type {TagAria} from './useTag';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
1
+ {"mappings":";;;;;;AAgBA,iCAAiC,CAAC,CAAE,SAAQ,qBAAqB,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC;IACpF,WAAW;IAOX,UAAU;IAOV,aAAa,CAAC,GAAG,EAAE,GAAG;IAItB,YAAY,CAAC,GAAG,EAAE,GAAG;IAIrB,WAAW,CAAC,GAAG,KAAA;IA8Bf,WAAW,CAAC,GAAG,KAAA;IA6Bf,eAAe,CAAC,GAAG,KAAA;IAInB,eAAe,CAAC,GAAG,KAAA;CAGpB;AClFD;IACE,UAAU,EAAE,aAAa,CAAC;IAC1B,QAAQ,EAAE,aAAa,CAAC;IACxB,WAAW,EAAE,aAAa,CAAC;IAC3B,gBAAgB,EAAE,qBAAqB,iBAAiB,CAAC,CAAA;CAC1D;AAED,uBAAuB,KAAK,EAAE,SAAS,GAAG,CAAC,EAAE,KAAK,EAAE,UAAU,GAAG,EAAE,GAAG,CAAC,GAAG,OAAO,CAuDhF;ACpED,kCAAmC,SAAQ,QAAQ;IACjD,QAAQ,EAAE,SAAS,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,eAAe,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;CACtC;AAED;IACE,aAAa,EAAE,aAAa,CAAA;CAC7B;AAED,4BAA4B,KAAK,EAAE,iBAAiB,GAAG,YAAY,CAclE;ACzBD,YAAY,EAAC,QAAQ,EAAC,MAAM,kBAAkB,CAAC","sources":["packages/@react-aria/tag/src/packages/@react-aria/tag/src/TagKeyboardDelegate.ts","packages/@react-aria/tag/src/packages/@react-aria/tag/src/useTag.ts","packages/@react-aria/tag/src/packages/@react-aria/tag/src/useTagGroup.ts","packages/@react-aria/tag/src/packages/@react-aria/tag/src/index.ts","packages/@react-aria/tag/src/index.ts"],"sourcesContent":[null,null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport {TagKeyboardDelegate} from './TagKeyboardDelegate';\nexport {useTag} from './useTag';\nexport {useTagGroup} from './useTagGroup';\n\nexport type {TagProps} from '@react-types/tag';\nexport type {AriaTagGroupProps, TagGroupAria} from './useTagGroup';\nexport type {TagAria} from './useTag';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-aria/tag",
3
- "version": "3.0.0-alpha.8",
3
+ "version": "3.0.0-beta.0",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
@@ -18,14 +18,14 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@babel/runtime": "^7.6.2",
21
- "@react-aria/grid": "^3.4.0",
22
- "@react-aria/i18n": "^3.5.0",
23
- "@react-aria/interactions": "^3.10.0",
24
- "@react-aria/utils": "^3.13.2",
25
- "@react-stately/grid": "^3.3.0",
26
- "@react-types/grid": "^3.1.2",
27
- "@react-types/shared": "^3.14.0",
28
- "@react-types/tag": "3.0.0-alpha.6"
21
+ "@react-aria/grid": "^3.5.1",
22
+ "@react-aria/i18n": "^3.6.2",
23
+ "@react-aria/interactions": "^3.13.0",
24
+ "@react-aria/utils": "^3.14.1",
25
+ "@react-stately/grid": "^3.4.1",
26
+ "@react-types/grid": "^3.1.5",
27
+ "@react-types/shared": "^3.16.0",
28
+ "@react-types/tag": "3.0.0-beta.0"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
@@ -33,5 +33,5 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "cd7c0ec917122c7612f653c22f8ed558f8b66ecd"
36
+ "gitHead": "2954307ddbefe149241685440c81f80ece6b2c83"
37
37
  }
@@ -18,23 +18,15 @@ export class TagKeyboardDelegate<T> extends GridKeyboardDelegate<T, GridCollecti
18
18
  getFirstKey() {
19
19
  let key = this.collection.getFirstKey();
20
20
  let item = this.collection.getItem(key);
21
- let newKey = [...item.childNodes][0].key;
22
21
 
23
- if (this.disabledKeys.has(newKey)) {
24
- newKey = this.getKeyBelow(newKey);
25
- }
26
- return newKey;
22
+ return [...item.childNodes][0].key;
27
23
  }
28
24
 
29
25
  getLastKey() {
30
26
  let key = this.collection.getLastKey();
31
27
  let item = this.collection.getItem(key);
32
- let newKey = [...item.childNodes][0].key;
33
28
 
34
- if (this.disabledKeys.has(newKey)) {
35
- newKey = this.getKeyAbove(newKey);
36
- }
37
- return newKey;
29
+ return [...item.childNodes][0].key;
38
30
  }
39
31
 
40
32
  getKeyRightOf(key: Key) {
@@ -62,13 +54,8 @@ export class TagKeyboardDelegate<T> extends GridKeyboardDelegate<T, GridCollecti
62
54
  // If focus was on a cell, focus the cell with the same index in the next row.
63
55
  if (this.isCell(startItem)) {
64
56
  let item = this.collection.getItem(key);
65
- let newKey = [...item.childNodes][startItem.index].key;
66
57
 
67
- // Ignore disabled tags
68
- if (this.disabledKeys.has(newKey)) {
69
- return this.getKeyBelow(newKey);
70
- }
71
- return newKey;
58
+ return [...item.childNodes][startItem.index].key;
72
59
  }
73
60
 
74
61
  // Otherwise, focus the next row
@@ -97,13 +84,7 @@ export class TagKeyboardDelegate<T> extends GridKeyboardDelegate<T, GridCollecti
97
84
  // If focus was on a cell, focus the cell with the same index in the previous row.
98
85
  if (this.isCell(startItem)) {
99
86
  let item = this.collection.getItem(key);
100
- let newKey = [...item.childNodes][startItem.index].key;
101
-
102
- // ignore disabled tags
103
- if (this.disabledKeys.has(newKey)) {
104
- return this.getKeyAbove(newKey);
105
- }
106
- return newKey;
87
+ return [...item.childNodes][startItem.index].key;
107
88
  }
108
89
 
109
90
  // Otherwise, focus the previous row
package/src/useTag.ts CHANGED
@@ -31,10 +31,8 @@ export interface TagAria {
31
31
  export function useTag(props: TagProps<any>, state: GridState<any, any>): TagAria {
32
32
  let {isFocused} = props;
33
33
  const {
34
- isDisabled,
35
- isRemovable,
34
+ allowsRemoving,
36
35
  onRemove,
37
- children,
38
36
  item,
39
37
  tagRef,
40
38
  tagRowRef
@@ -56,14 +54,14 @@ export function useTag(props: TagProps<any>, state: GridState<any, any>): TagAri
56
54
  focusMode: 'cell'
57
55
  }, state, tagRef);
58
56
 
59
- function onKeyDown(e: KeyboardEvent<Element>) {
57
+ function onKeyDown(e: KeyboardEvent) {
60
58
  if (e.key === 'Delete' || e.key === 'Backspace' || e.key === ' ') {
61
- onRemove(children, e);
59
+ onRemove(item.childNodes[0].key);
62
60
  e.preventDefault();
63
61
  }
64
62
  }
65
63
  const pressProps = {
66
- onPress: e => onRemove?.(children, e)
64
+ onPress: () => onRemove?.(item.childNodes[0].key)
67
65
  };
68
66
 
69
67
  isFocused = isFocused || state.selectionManager.focusedKey === item.childNodes[0].key;
@@ -72,19 +70,17 @@ export function useTag(props: TagProps<any>, state: GridState<any, any>): TagAri
72
70
  clearButtonProps: mergeProps(pressProps, {
73
71
  'aria-label': removeString,
74
72
  'aria-labelledby': `${buttonId} ${labelId}`,
75
- id: buttonId,
76
- isDisabled
73
+ id: buttonId
77
74
  }),
78
75
  labelProps: {
79
76
  id: labelId
80
77
  },
81
78
  tagRowProps: otherRowProps,
82
79
  tagProps: mergeProps(domProps, gridCellProps, {
83
- 'aria-disabled': isDisabled,
84
80
  'aria-errormessage': props['aria-errormessage'],
85
81
  'aria-label': props['aria-label'],
86
- onKeyDown: !isDisabled && isRemovable ? onKeyDown : null,
87
- tabIndex: (isFocused || state.selectionManager.focusedKey == null) && !isDisabled ? 0 : -1
82
+ onKeyDown: allowsRemoving ? onKeyDown : null,
83
+ tabIndex: (isFocused || state.selectionManager.focusedKey == null) ? 0 : -1
88
84
  })
89
85
  };
90
86
  }
@@ -12,13 +12,11 @@
12
12
 
13
13
  import {DOMAttributes, DOMProps} from '@react-types/shared';
14
14
  import {filterDOMProps, mergeProps} from '@react-aria/utils';
15
- import {Key, ReactNode, useState} from 'react';
15
+ import {ReactNode, useState} from 'react';
16
16
  import {useFocusWithin} from '@react-aria/interactions';
17
17
 
18
18
  export interface AriaTagGroupProps extends DOMProps {
19
19
  children: ReactNode,
20
- disabledKeys?: Iterable<Key>,
21
- isDisabled?: boolean,
22
20
  isReadOnly?: boolean, // removes close button
23
21
  validationState?: 'valid' | 'invalid'
24
22
  }
@@ -27,23 +25,17 @@ export interface TagGroupAria {
27
25
  tagGroupProps: DOMAttributes
28
26
  }
29
27
 
30
- export function useTagGroup(props: AriaTagGroupProps, listState): TagGroupAria {
31
- let {isDisabled} = props;
28
+ export function useTagGroup(props: AriaTagGroupProps): TagGroupAria {
32
29
  let [isFocusWithin, setFocusWithin] = useState(false);
33
30
  let {focusWithinProps} = useFocusWithin({
34
31
  onFocusWithinChange: setFocusWithin
35
32
  });
36
- let allKeys = [...listState.collection.getKeys()];
37
- if (!allKeys.some(key => !listState.disabledKeys.has(key))) {
38
- isDisabled = true;
39
- }
40
33
  let domProps = filterDOMProps(props);
41
34
  return {
42
35
  tagGroupProps: mergeProps(domProps, {
43
36
  'aria-atomic': false,
44
37
  'aria-relevant': 'additions',
45
38
  'aria-live': isFocusWithin ? 'polite' : 'off',
46
- 'aria-disabled': isDisabled === true,
47
39
  ...focusWithinProps
48
40
  } as DOMAttributes)
49
41
  };