@pingux/astro 2.62.0-alpha.0 → 2.62.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.
@@ -44,4 +44,22 @@ This component uses the following attributes to assist screen readers:
|
|
44
44
|
- Each item also uses the aria-label, **`aria-colindex`** attributes to indicate the component’s column position and aria-selected to indicate the currently selected state.
|
45
45
|
|
46
46
|
#### NOTES:
|
47
|
-
- See the [ListAndPanel](./?path=/docs/recipes-listandpanel--docs) and [ScrollableListView](./?path=/docs/recipes-scrollablelistview--docs) recipes for more detailed examples.
|
47
|
+
- See the [ListAndPanel](./?path=/docs/recipes-listandpanel--docs) and [ScrollableListView](./?path=/docs/recipes-scrollablelistview--docs) recipes for more detailed examples.
|
48
|
+
|
49
|
+
#### KNOWN ISSUES:
|
50
|
+
Error Message: **`ResizeObserver loop completed with undelivered notifications.`**
|
51
|
+
|
52
|
+
The ListView's ResizeObserver exhibits a rendering bug specifically in development mode. This issue originates from @react-aria/virtualizer and is expected to be resolved upon upgrading to React 18.
|
53
|
+
|
54
|
+
Refer to issue [!1924](https://github.com/adobe/react-spectrum/issues/1924) for further details.
|
55
|
+
|
56
|
+
To address this issue, add the following CSS code to hide the error:
|
57
|
+
|
58
|
+
`#webpack-dev-server-client-overlay {
|
59
|
+
display: none !important;
|
60
|
+
}`
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
|
@@ -44,4 +44,22 @@ This component uses the following attributes to assist screen readers:
|
|
44
44
|
- Each item also uses the aria-label, **`aria-colindex`** attributes to indicate the component’s column position and aria-selected to indicate the currently selected state.
|
45
45
|
|
46
46
|
#### NOTES:
|
47
|
-
- See the [ListAndPanel](./?path=/docs/recipes-listandpanel--docs) and [ScrollableListView](./?path=/docs/recipes-scrollablelistview--docs) recipes for more detailed examples.
|
47
|
+
- See the [ListAndPanel](./?path=/docs/recipes-listandpanel--docs) and [ScrollableListView](./?path=/docs/recipes-scrollablelistview--docs) recipes for more detailed examples.
|
48
|
+
|
49
|
+
#### KNOWN ISSUES:
|
50
|
+
Error Message: **`ResizeObserver loop completed with undelivered notifications.`**
|
51
|
+
|
52
|
+
The ListView's ResizeObserver exhibits a rendering bug specifically in development mode. This issue originates from @react-aria/virtualizer and is expected to be resolved upon upgrading to React 18.
|
53
|
+
|
54
|
+
Refer to issue [!1924](https://github.com/adobe/react-spectrum/issues/1924) for further details.
|
55
|
+
|
56
|
+
To address this issue, add the following CSS code to hide the error:
|
57
|
+
|
58
|
+
`#webpack-dev-server-client-overlay {
|
59
|
+
display: none !important;
|
60
|
+
}`
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
|