@react-spectrum/card 3.0.0-alpha.32 → 3.0.0-alpha.33

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.
Files changed (62) hide show
  1. package/dist/BaseLayout.main.js +12 -12
  2. package/dist/BaseLayout.mjs +13 -13
  3. package/dist/BaseLayout.module.js +12 -12
  4. package/dist/Card.main.js +2 -2
  5. package/dist/Card.mjs +3 -3
  6. package/dist/Card.module.js +2 -2
  7. package/dist/CardBase.main.js +36 -36
  8. package/dist/CardBase.mjs +37 -37
  9. package/dist/CardBase.module.js +36 -36
  10. package/dist/CardView.main.js +21 -21
  11. package/dist/CardView.mjs +22 -22
  12. package/dist/CardView.module.js +21 -21
  13. package/dist/CardViewContext.mjs +1 -1
  14. package/dist/GalleryLayout.main.js +10 -10
  15. package/dist/GalleryLayout.main.js.map +1 -1
  16. package/dist/GalleryLayout.mjs +11 -11
  17. package/dist/GalleryLayout.module.js +10 -10
  18. package/dist/GalleryLayout.module.js.map +1 -1
  19. package/dist/GridLayout.main.js +19 -19
  20. package/dist/GridLayout.mjs +20 -20
  21. package/dist/GridLayout.module.js +19 -19
  22. package/dist/WaterfallLayout.main.js +7 -7
  23. package/dist/WaterfallLayout.mjs +8 -8
  24. package/dist/WaterfallLayout.module.js +7 -7
  25. package/dist/ar-AE.mjs +1 -1
  26. package/dist/bg-BG.mjs +1 -1
  27. package/dist/card_vars_css.mjs +1 -1
  28. package/dist/cs-CZ.mjs +1 -1
  29. package/dist/da-DK.mjs +1 -1
  30. package/dist/de-DE.mjs +1 -1
  31. package/dist/el-GR.mjs +1 -1
  32. package/dist/en-US.mjs +1 -1
  33. package/dist/es-ES.mjs +1 -1
  34. package/dist/et-EE.mjs +1 -1
  35. package/dist/fi-FI.mjs +1 -1
  36. package/dist/fr-FR.mjs +1 -1
  37. package/dist/he-IL.mjs +1 -1
  38. package/dist/hr-HR.mjs +1 -1
  39. package/dist/hu-HU.mjs +1 -1
  40. package/dist/intlStrings.mjs +1 -1
  41. package/dist/it-IT.mjs +1 -1
  42. package/dist/ja-JP.mjs +1 -1
  43. package/dist/ko-KR.mjs +1 -1
  44. package/dist/lt-LT.mjs +1 -1
  45. package/dist/lv-LV.mjs +1 -1
  46. package/dist/nb-NO.mjs +1 -1
  47. package/dist/nl-NL.mjs +1 -1
  48. package/dist/pl-PL.mjs +1 -1
  49. package/dist/pt-BR.mjs +1 -1
  50. package/dist/pt-PT.mjs +1 -1
  51. package/dist/ro-RO.mjs +1 -1
  52. package/dist/ru-RU.mjs +1 -1
  53. package/dist/sk-SK.mjs +1 -1
  54. package/dist/sl-SI.mjs +1 -1
  55. package/dist/sr-SP.mjs +1 -1
  56. package/dist/sv-SE.mjs +1 -1
  57. package/dist/tr-TR.mjs +1 -1
  58. package/dist/uk-UA.mjs +1 -1
  59. package/dist/zh-CN.mjs +1 -1
  60. package/dist/zh-TW.mjs +1 -1
  61. package/package.json +18 -18
  62. package/src/GalleryLayout.tsx +2 -2
@@ -23,7 +23,7 @@ $parcel$export(module.exports, "WaterfallLayout", () => $632abf8fbf0ad57b$export
23
23
 
24
24
  class $632abf8fbf0ad57b$export$e9f7cda058ba8df8 extends (0, $5ee605f09afaa4de$exports.BaseLayout) {
25
25
  get layoutType() {
26
- return "waterfall";
26
+ return 'waterfall';
27
27
  }
28
28
  buildCollection(invalidationContext) {
29
29
  // Compute the number of columns needed to display the content
@@ -89,14 +89,14 @@ class $632abf8fbf0ad57b$export$e9f7cda058ba8df8 extends (0, $5ee605f09afaa4de$ex
89
89
  loaderHeight = this.virtualizer.visibleRect.height || 60;
90
90
  }
91
91
  let rect = new (0, $eKgYB$reactstatelyvirtualizer.Rect)(0, loaderY, this.virtualizer.visibleRect.width, loaderHeight);
92
- let loader = new (0, $eKgYB$reactstatelyvirtualizer.LayoutInfo)("loader", "loader", rect);
93
- this.layoutInfos.set("loader", loader);
92
+ let loader = new (0, $eKgYB$reactstatelyvirtualizer.LayoutInfo)('loader', 'loader', rect);
93
+ this.layoutInfos.set('loader', loader);
94
94
  y = loader.rect.maxY;
95
95
  }
96
96
  if (this.collection.size === 0 && !this.isLoading) {
97
97
  let rect = new (0, $eKgYB$reactstatelyvirtualizer.Rect)(0, 0, this.virtualizer.visibleRect.width, this.virtualizer.visibleRect.height);
98
- let placeholder = new (0, $eKgYB$reactstatelyvirtualizer.LayoutInfo)("placeholder", "placeholder", rect);
99
- this.layoutInfos.set("placeholder", placeholder);
98
+ let placeholder = new (0, $eKgYB$reactstatelyvirtualizer.LayoutInfo)('placeholder', 'placeholder', rect);
99
+ this.layoutInfos.set('placeholder', placeholder);
100
100
  y = placeholder.rect.maxY;
101
101
  }
102
102
  this.contentSize = new (0, $eKgYB$reactstatelyvirtualizer.Size)(this.virtualizer.visibleRect.width, y);
@@ -154,12 +154,12 @@ class $632abf8fbf0ad57b$export$e9f7cda058ba8df8 extends (0, $5ee605f09afaa4de$ex
154
154
  getKeyRightOf(key) {
155
155
  // Expected key is the currently focused cell so we need the parent row key
156
156
  let parentRowKey = this.collection.getItem(key).parentKey;
157
- return this.direction === "rtl" ? this.getClosestLeft(parentRowKey) : this.getClosestRight(parentRowKey);
157
+ return this.direction === 'rtl' ? this.getClosestLeft(parentRowKey) : this.getClosestRight(parentRowKey);
158
158
  }
159
159
  getKeyLeftOf(key) {
160
160
  // Expected key is the currently focused cell so we need the parent row key
161
161
  let parentRowKey = this.collection.getItem(key).parentKey;
162
- return this.direction === "rtl" ? this.getClosestRight(parentRowKey) : this.getClosestLeft(parentRowKey);
162
+ return this.direction === 'rtl' ? this.getClosestRight(parentRowKey) : this.getClosestLeft(parentRowKey);
163
163
  }
164
164
  constructor(options = {}){
165
165
  // TODO: WaterfallLayout doesn't use card size in v2, but perhaps it should support it? Perhaps it would modify
@@ -17,7 +17,7 @@ import {Rect as $bRzF0$Rect, LayoutInfo as $bRzF0$LayoutInfo, Size as $bRzF0$Siz
17
17
 
18
18
  class $03278f8d0f6860bb$export$e9f7cda058ba8df8 extends (0, $3d424c147206bac9$export$64943d2e59d72a29) {
19
19
  get layoutType() {
20
- return "waterfall";
20
+ return 'waterfall';
21
21
  }
22
22
  buildCollection(invalidationContext) {
23
23
  // Compute the number of columns needed to display the content
@@ -83,14 +83,14 @@ class $03278f8d0f6860bb$export$e9f7cda058ba8df8 extends (0, $3d424c147206bac9$ex
83
83
  loaderHeight = this.virtualizer.visibleRect.height || 60;
84
84
  }
85
85
  let rect = new (0, $bRzF0$Rect)(0, loaderY, this.virtualizer.visibleRect.width, loaderHeight);
86
- let loader = new (0, $bRzF0$LayoutInfo)("loader", "loader", rect);
87
- this.layoutInfos.set("loader", loader);
86
+ let loader = new (0, $bRzF0$LayoutInfo)('loader', 'loader', rect);
87
+ this.layoutInfos.set('loader', loader);
88
88
  y = loader.rect.maxY;
89
89
  }
90
90
  if (this.collection.size === 0 && !this.isLoading) {
91
91
  let rect = new (0, $bRzF0$Rect)(0, 0, this.virtualizer.visibleRect.width, this.virtualizer.visibleRect.height);
92
- let placeholder = new (0, $bRzF0$LayoutInfo)("placeholder", "placeholder", rect);
93
- this.layoutInfos.set("placeholder", placeholder);
92
+ let placeholder = new (0, $bRzF0$LayoutInfo)('placeholder', 'placeholder', rect);
93
+ this.layoutInfos.set('placeholder', placeholder);
94
94
  y = placeholder.rect.maxY;
95
95
  }
96
96
  this.contentSize = new (0, $bRzF0$Size)(this.virtualizer.visibleRect.width, y);
@@ -148,12 +148,12 @@ class $03278f8d0f6860bb$export$e9f7cda058ba8df8 extends (0, $3d424c147206bac9$ex
148
148
  getKeyRightOf(key) {
149
149
  // Expected key is the currently focused cell so we need the parent row key
150
150
  let parentRowKey = this.collection.getItem(key).parentKey;
151
- return this.direction === "rtl" ? this.getClosestLeft(parentRowKey) : this.getClosestRight(parentRowKey);
151
+ return this.direction === 'rtl' ? this.getClosestLeft(parentRowKey) : this.getClosestRight(parentRowKey);
152
152
  }
153
153
  getKeyLeftOf(key) {
154
154
  // Expected key is the currently focused cell so we need the parent row key
155
155
  let parentRowKey = this.collection.getItem(key).parentKey;
156
- return this.direction === "rtl" ? this.getClosestRight(parentRowKey) : this.getClosestLeft(parentRowKey);
156
+ return this.direction === 'rtl' ? this.getClosestRight(parentRowKey) : this.getClosestLeft(parentRowKey);
157
157
  }
158
158
  constructor(options = {}){
159
159
  // TODO: WaterfallLayout doesn't use card size in v2, but perhaps it should support it? Perhaps it would modify
@@ -173,4 +173,4 @@ class $03278f8d0f6860bb$export$e9f7cda058ba8df8 extends (0, $3d424c147206bac9$ex
173
173
 
174
174
 
175
175
  export {$03278f8d0f6860bb$export$e9f7cda058ba8df8 as WaterfallLayout};
176
- //# sourceMappingURL=WaterfallLayout.mjs.map
176
+ //# sourceMappingURL=WaterfallLayout.module.js.map
@@ -17,7 +17,7 @@ import {Rect as $bRzF0$Rect, LayoutInfo as $bRzF0$LayoutInfo, Size as $bRzF0$Siz
17
17
 
18
18
  class $03278f8d0f6860bb$export$e9f7cda058ba8df8 extends (0, $3d424c147206bac9$export$64943d2e59d72a29) {
19
19
  get layoutType() {
20
- return "waterfall";
20
+ return 'waterfall';
21
21
  }
22
22
  buildCollection(invalidationContext) {
23
23
  // Compute the number of columns needed to display the content
@@ -83,14 +83,14 @@ class $03278f8d0f6860bb$export$e9f7cda058ba8df8 extends (0, $3d424c147206bac9$ex
83
83
  loaderHeight = this.virtualizer.visibleRect.height || 60;
84
84
  }
85
85
  let rect = new (0, $bRzF0$Rect)(0, loaderY, this.virtualizer.visibleRect.width, loaderHeight);
86
- let loader = new (0, $bRzF0$LayoutInfo)("loader", "loader", rect);
87
- this.layoutInfos.set("loader", loader);
86
+ let loader = new (0, $bRzF0$LayoutInfo)('loader', 'loader', rect);
87
+ this.layoutInfos.set('loader', loader);
88
88
  y = loader.rect.maxY;
89
89
  }
90
90
  if (this.collection.size === 0 && !this.isLoading) {
91
91
  let rect = new (0, $bRzF0$Rect)(0, 0, this.virtualizer.visibleRect.width, this.virtualizer.visibleRect.height);
92
- let placeholder = new (0, $bRzF0$LayoutInfo)("placeholder", "placeholder", rect);
93
- this.layoutInfos.set("placeholder", placeholder);
92
+ let placeholder = new (0, $bRzF0$LayoutInfo)('placeholder', 'placeholder', rect);
93
+ this.layoutInfos.set('placeholder', placeholder);
94
94
  y = placeholder.rect.maxY;
95
95
  }
96
96
  this.contentSize = new (0, $bRzF0$Size)(this.virtualizer.visibleRect.width, y);
@@ -148,12 +148,12 @@ class $03278f8d0f6860bb$export$e9f7cda058ba8df8 extends (0, $3d424c147206bac9$ex
148
148
  getKeyRightOf(key) {
149
149
  // Expected key is the currently focused cell so we need the parent row key
150
150
  let parentRowKey = this.collection.getItem(key).parentKey;
151
- return this.direction === "rtl" ? this.getClosestLeft(parentRowKey) : this.getClosestRight(parentRowKey);
151
+ return this.direction === 'rtl' ? this.getClosestLeft(parentRowKey) : this.getClosestRight(parentRowKey);
152
152
  }
153
153
  getKeyLeftOf(key) {
154
154
  // Expected key is the currently focused cell so we need the parent row key
155
155
  let parentRowKey = this.collection.getItem(key).parentKey;
156
- return this.direction === "rtl" ? this.getClosestRight(parentRowKey) : this.getClosestLeft(parentRowKey);
156
+ return this.direction === 'rtl' ? this.getClosestRight(parentRowKey) : this.getClosestLeft(parentRowKey);
157
157
  }
158
158
  constructor(options = {}){
159
159
  // TODO: WaterfallLayout doesn't use card size in v2, but perhaps it should support it? Perhaps it would modify
package/dist/ar-AE.mjs CHANGED
@@ -6,4 +6,4 @@ $6cb102354c06de53$exports = {
6
6
 
7
7
 
8
8
  export {$6cb102354c06de53$exports as default};
9
- //# sourceMappingURL=ar-AE.mjs.map
9
+ //# sourceMappingURL=ar-AE.module.js.map
package/dist/bg-BG.mjs CHANGED
@@ -6,4 +6,4 @@ $17b8c838d83f13fc$exports = {
6
6
 
7
7
 
8
8
  export {$17b8c838d83f13fc$exports as default};
9
- //# sourceMappingURL=bg-BG.mjs.map
9
+ //# sourceMappingURL=bg-BG.module.js.map
@@ -115,4 +115,4 @@ $408a78e5068502c2$export$fb184b623420d9be = `dqWSla_title`;
115
115
 
116
116
 
117
117
  export {$408a78e5068502c2$exports as default};
118
- //# sourceMappingURL=card_vars_css.mjs.map
118
+ //# sourceMappingURL=card_vars_css.module.js.map
package/dist/cs-CZ.mjs CHANGED
@@ -6,4 +6,4 @@ $1ddb4e1a3e8b15a5$exports = {
6
6
 
7
7
 
8
8
  export {$1ddb4e1a3e8b15a5$exports as default};
9
- //# sourceMappingURL=cs-CZ.mjs.map
9
+ //# sourceMappingURL=cs-CZ.module.js.map
package/dist/da-DK.mjs CHANGED
@@ -6,4 +6,4 @@ $44b7f17cd1f1db7f$exports = {
6
6
 
7
7
 
8
8
  export {$44b7f17cd1f1db7f$exports as default};
9
- //# sourceMappingURL=da-DK.mjs.map
9
+ //# sourceMappingURL=da-DK.module.js.map
package/dist/de-DE.mjs CHANGED
@@ -6,4 +6,4 @@ $ffa85bef2c730318$exports = {
6
6
 
7
7
 
8
8
  export {$ffa85bef2c730318$exports as default};
9
- //# sourceMappingURL=de-DE.mjs.map
9
+ //# sourceMappingURL=de-DE.module.js.map
package/dist/el-GR.mjs CHANGED
@@ -6,4 +6,4 @@ $1904be2ca25ad4ef$exports = {
6
6
 
7
7
 
8
8
  export {$1904be2ca25ad4ef$exports as default};
9
- //# sourceMappingURL=el-GR.mjs.map
9
+ //# sourceMappingURL=el-GR.module.js.map
package/dist/en-US.mjs CHANGED
@@ -6,4 +6,4 @@ $d120e7d3833466fb$exports = {
6
6
 
7
7
 
8
8
  export {$d120e7d3833466fb$exports as default};
9
- //# sourceMappingURL=en-US.mjs.map
9
+ //# sourceMappingURL=en-US.module.js.map
package/dist/es-ES.mjs CHANGED
@@ -6,4 +6,4 @@ $fe39ef3292597d11$exports = {
6
6
 
7
7
 
8
8
  export {$fe39ef3292597d11$exports as default};
9
- //# sourceMappingURL=es-ES.mjs.map
9
+ //# sourceMappingURL=es-ES.module.js.map
package/dist/et-EE.mjs CHANGED
@@ -6,4 +6,4 @@ $3204c020860ca192$exports = {
6
6
 
7
7
 
8
8
  export {$3204c020860ca192$exports as default};
9
- //# sourceMappingURL=et-EE.mjs.map
9
+ //# sourceMappingURL=et-EE.module.js.map
package/dist/fi-FI.mjs CHANGED
@@ -6,4 +6,4 @@ $5ced2ee930f1d61a$exports = {
6
6
 
7
7
 
8
8
  export {$5ced2ee930f1d61a$exports as default};
9
- //# sourceMappingURL=fi-FI.mjs.map
9
+ //# sourceMappingURL=fi-FI.module.js.map
package/dist/fr-FR.mjs CHANGED
@@ -6,4 +6,4 @@ $bd751114db2e8872$exports = {
6
6
 
7
7
 
8
8
  export {$bd751114db2e8872$exports as default};
9
- //# sourceMappingURL=fr-FR.mjs.map
9
+ //# sourceMappingURL=fr-FR.module.js.map
package/dist/he-IL.mjs CHANGED
@@ -6,4 +6,4 @@ $6291b4a5eb5146c5$exports = {
6
6
 
7
7
 
8
8
  export {$6291b4a5eb5146c5$exports as default};
9
- //# sourceMappingURL=he-IL.mjs.map
9
+ //# sourceMappingURL=he-IL.module.js.map
package/dist/hr-HR.mjs CHANGED
@@ -6,4 +6,4 @@ $cdc3f7b2aa8b1879$exports = {
6
6
 
7
7
 
8
8
  export {$cdc3f7b2aa8b1879$exports as default};
9
- //# sourceMappingURL=hr-HR.mjs.map
9
+ //# sourceMappingURL=hr-HR.module.js.map
package/dist/hu-HU.mjs CHANGED
@@ -6,4 +6,4 @@ $1a69968dcbcabdff$exports = {
6
6
 
7
7
 
8
8
  export {$1a69968dcbcabdff$exports as default};
9
- //# sourceMappingURL=hu-HU.mjs.map
9
+ //# sourceMappingURL=hu-HU.module.js.map
@@ -107,4 +107,4 @@ $49aba923a95704ba$exports = {
107
107
 
108
108
 
109
109
  export {$49aba923a95704ba$exports as default};
110
- //# sourceMappingURL=intlStrings.mjs.map
110
+ //# sourceMappingURL=intlStrings.module.js.map
package/dist/it-IT.mjs CHANGED
@@ -6,4 +6,4 @@ $fe72420090e5e44f$exports = {
6
6
 
7
7
 
8
8
  export {$fe72420090e5e44f$exports as default};
9
- //# sourceMappingURL=it-IT.mjs.map
9
+ //# sourceMappingURL=it-IT.module.js.map
package/dist/ja-JP.mjs CHANGED
@@ -6,4 +6,4 @@ $8643fac062a08b30$exports = {
6
6
 
7
7
 
8
8
  export {$8643fac062a08b30$exports as default};
9
- //# sourceMappingURL=ja-JP.mjs.map
9
+ //# sourceMappingURL=ja-JP.module.js.map
package/dist/ko-KR.mjs CHANGED
@@ -6,4 +6,4 @@ $41f4de1d2f63c8f4$exports = {
6
6
 
7
7
 
8
8
  export {$41f4de1d2f63c8f4$exports as default};
9
- //# sourceMappingURL=ko-KR.mjs.map
9
+ //# sourceMappingURL=ko-KR.module.js.map
package/dist/lt-LT.mjs CHANGED
@@ -6,4 +6,4 @@ $9819c3a9877418b0$exports = {
6
6
 
7
7
 
8
8
  export {$9819c3a9877418b0$exports as default};
9
- //# sourceMappingURL=lt-LT.mjs.map
9
+ //# sourceMappingURL=lt-LT.module.js.map
package/dist/lv-LV.mjs CHANGED
@@ -6,4 +6,4 @@ $3e8ad6b78b8cc064$exports = {
6
6
 
7
7
 
8
8
  export {$3e8ad6b78b8cc064$exports as default};
9
- //# sourceMappingURL=lv-LV.mjs.map
9
+ //# sourceMappingURL=lv-LV.module.js.map
package/dist/nb-NO.mjs CHANGED
@@ -6,4 +6,4 @@ $baa4fb210e65a6c5$exports = {
6
6
 
7
7
 
8
8
  export {$baa4fb210e65a6c5$exports as default};
9
- //# sourceMappingURL=nb-NO.mjs.map
9
+ //# sourceMappingURL=nb-NO.module.js.map
package/dist/nl-NL.mjs CHANGED
@@ -6,4 +6,4 @@ $ee123eda5b089b7d$exports = {
6
6
 
7
7
 
8
8
  export {$ee123eda5b089b7d$exports as default};
9
- //# sourceMappingURL=nl-NL.mjs.map
9
+ //# sourceMappingURL=nl-NL.module.js.map
package/dist/pl-PL.mjs CHANGED
@@ -6,4 +6,4 @@ $36a325cd1c9e414f$exports = {
6
6
 
7
7
 
8
8
  export {$36a325cd1c9e414f$exports as default};
9
- //# sourceMappingURL=pl-PL.mjs.map
9
+ //# sourceMappingURL=pl-PL.module.js.map
package/dist/pt-BR.mjs CHANGED
@@ -6,4 +6,4 @@ $52d4fd0f211d7e51$exports = {
6
6
 
7
7
 
8
8
  export {$52d4fd0f211d7e51$exports as default};
9
- //# sourceMappingURL=pt-BR.mjs.map
9
+ //# sourceMappingURL=pt-BR.module.js.map
package/dist/pt-PT.mjs CHANGED
@@ -6,4 +6,4 @@ $ad1f55e36e4e9241$exports = {
6
6
 
7
7
 
8
8
  export {$ad1f55e36e4e9241$exports as default};
9
- //# sourceMappingURL=pt-PT.mjs.map
9
+ //# sourceMappingURL=pt-PT.module.js.map
package/dist/ro-RO.mjs CHANGED
@@ -6,4 +6,4 @@ $bfc201ee55c5f26f$exports = {
6
6
 
7
7
 
8
8
  export {$bfc201ee55c5f26f$exports as default};
9
- //# sourceMappingURL=ro-RO.mjs.map
9
+ //# sourceMappingURL=ro-RO.module.js.map
package/dist/ru-RU.mjs CHANGED
@@ -6,4 +6,4 @@ $5773113377d944b4$exports = {
6
6
 
7
7
 
8
8
  export {$5773113377d944b4$exports as default};
9
- //# sourceMappingURL=ru-RU.mjs.map
9
+ //# sourceMappingURL=ru-RU.module.js.map
package/dist/sk-SK.mjs CHANGED
@@ -6,4 +6,4 @@ $75167f0b339049be$exports = {
6
6
 
7
7
 
8
8
  export {$75167f0b339049be$exports as default};
9
- //# sourceMappingURL=sk-SK.mjs.map
9
+ //# sourceMappingURL=sk-SK.module.js.map
package/dist/sl-SI.mjs CHANGED
@@ -6,4 +6,4 @@ $83a887ec3d5f2028$exports = {
6
6
 
7
7
 
8
8
  export {$83a887ec3d5f2028$exports as default};
9
- //# sourceMappingURL=sl-SI.mjs.map
9
+ //# sourceMappingURL=sl-SI.module.js.map
package/dist/sr-SP.mjs CHANGED
@@ -6,4 +6,4 @@ $8352707b2eadbfb4$exports = {
6
6
 
7
7
 
8
8
  export {$8352707b2eadbfb4$exports as default};
9
- //# sourceMappingURL=sr-SP.mjs.map
9
+ //# sourceMappingURL=sr-SP.module.js.map
package/dist/sv-SE.mjs CHANGED
@@ -6,4 +6,4 @@ $212352f469058747$exports = {
6
6
 
7
7
 
8
8
  export {$212352f469058747$exports as default};
9
- //# sourceMappingURL=sv-SE.mjs.map
9
+ //# sourceMappingURL=sv-SE.module.js.map
package/dist/tr-TR.mjs CHANGED
@@ -6,4 +6,4 @@ $334510787f8a69f9$exports = {
6
6
 
7
7
 
8
8
  export {$334510787f8a69f9$exports as default};
9
- //# sourceMappingURL=tr-TR.mjs.map
9
+ //# sourceMappingURL=tr-TR.module.js.map
package/dist/uk-UA.mjs CHANGED
@@ -6,4 +6,4 @@ $1b8fd2890c177825$exports = {
6
6
 
7
7
 
8
8
  export {$1b8fd2890c177825$exports as default};
9
- //# sourceMappingURL=uk-UA.mjs.map
9
+ //# sourceMappingURL=uk-UA.module.js.map
package/dist/zh-CN.mjs CHANGED
@@ -6,4 +6,4 @@ $88c83d794a7a062b$exports = {
6
6
 
7
7
 
8
8
  export {$88c83d794a7a062b$exports as default};
9
- //# sourceMappingURL=zh-CN.mjs.map
9
+ //# sourceMappingURL=zh-CN.module.js.map
package/dist/zh-TW.mjs CHANGED
@@ -6,4 +6,4 @@ $b7e2865acb74a940$exports = {
6
6
 
7
7
 
8
8
  export {$b7e2865acb74a940$exports as default};
9
- //# sourceMappingURL=zh-TW.mjs.map
9
+ //# sourceMappingURL=zh-TW.module.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-spectrum/card",
3
- "version": "3.0.0-alpha.32",
3
+ "version": "3.0.0-alpha.33",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
@@ -36,22 +36,22 @@
36
36
  "url": "https://github.com/adobe/react-spectrum"
37
37
  },
38
38
  "dependencies": {
39
- "@react-aria/focus": "^3.17.0",
40
- "@react-aria/grid": "^3.9.0",
41
- "@react-aria/i18n": "^3.11.0",
42
- "@react-aria/interactions": "^3.21.2",
43
- "@react-aria/utils": "^3.24.0",
44
- "@react-aria/virtualizer": "^3.10.0",
45
- "@react-spectrum/checkbox": "^3.9.5",
46
- "@react-spectrum/progress": "^3.7.6",
47
- "@react-spectrum/utils": "^3.11.6",
48
- "@react-stately/collections": "^3.10.6",
49
- "@react-stately/grid": "^3.8.6",
50
- "@react-stately/list": "^3.10.4",
51
- "@react-stately/virtualizer": "^3.7.0",
52
- "@react-types/card": "3.0.0-alpha.25",
53
- "@react-types/provider": "^3.8.0",
54
- "@react-types/shared": "^3.23.0",
39
+ "@react-aria/focus": "^3.17.1",
40
+ "@react-aria/grid": "^3.9.1",
41
+ "@react-aria/i18n": "^3.11.1",
42
+ "@react-aria/interactions": "^3.21.3",
43
+ "@react-aria/utils": "^3.24.1",
44
+ "@react-aria/virtualizer": "^3.10.1",
45
+ "@react-spectrum/checkbox": "^3.9.6",
46
+ "@react-spectrum/progress": "^3.7.7",
47
+ "@react-spectrum/utils": "^3.11.7",
48
+ "@react-stately/collections": "^3.10.7",
49
+ "@react-stately/grid": "^3.8.7",
50
+ "@react-stately/list": "^3.10.5",
51
+ "@react-stately/virtualizer": "^3.7.1",
52
+ "@react-types/card": "3.0.0-alpha.26",
53
+ "@react-types/provider": "^3.8.1",
54
+ "@react-types/shared": "^3.23.1",
55
55
  "@swc/helpers": "^0.5.0"
56
56
  },
57
57
  "devDependencies": {
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "f645f29edc1322153fd60af4640cbcab1d992dbd"
68
+ "gitHead": "b77d7d594dff4dcfb5359bffbcfd18142b146433"
69
69
  }
@@ -139,7 +139,7 @@ export class GalleryLayout<T> extends BaseLayout<T> {
139
139
  let y = this.margin;
140
140
  let availableWidth = visibleWidth - this.margin * 2;
141
141
 
142
- // If avaliable width is not greater than 0, skip node layout calculations
142
+ // If available width is not greater than 0, skip node layout calculations
143
143
  if (availableWidth > 0) {
144
144
  // Compute aspect ratios for all of the items, and the total width if all items were on in a single row.
145
145
  let ratios = [];
@@ -220,7 +220,7 @@ export class GalleryLayout<T> extends BaseLayout<T> {
220
220
  if (this.isLoading) {
221
221
  let loaderY = y;
222
222
  let loaderHeight = 60;
223
- // If there aren't any items, make loader take all avaliable room and remove margin from y calculation
223
+ // If there aren't any items, make loader take all available room and remove margin from y calculation
224
224
  // so it doesn't scroll
225
225
  if (this.collection.size === 0) {
226
226
  loaderY = 0;