Skip to content

Commit 260b5e5

Browse files
committed
change undeveloped warning text
1 parent 64432b2 commit 260b5e5

13 files changed

+40
-16
lines changed

docs/src/learn/add-react-to-an-existing-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!!! warning "In Progress"
1+
!!! warning "Planned / Undeveloped"
22

33
This feature is planned, but not yet developed.
44

docs/src/learn/python-in-psx-with-curly-braces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!!! warning "In Progress"
1+
!!! warning "Planned / Undeveloped"
22

33
This feature is planned, but not yet developed.
44

docs/src/learn/react-developer-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!!! warning "In Progress"
1+
!!! warning "Planned / Undeveloped"
22

33
This feature is planned, but not yet developed.
44

docs/src/learn/tutorial-material-ui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!!! warning "In Progress"
1+
!!! warning "Planned / Undeveloped"
22

33
This tutorial is planned, but is missing a key feature before this page can be written.
44

docs/src/learn/tutorial-react-bootstrap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!!! warning "In Progress"
1+
!!! warning "Planned / Undeveloped"
22

33
This tutorial is planned, but is missing a key feature before this page can be written.
44

docs/src/learn/writing-markup-with-psx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!!! warning "In Progress"
1+
!!! warning "Planned / Undeveloped"
22

33
This feature is planned, but not yet developed.
44

docs/src/reference/use-deferred-value.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
!!! warning "Planned / Undeveloped"
2+
3+
This feature is planned, but not yet developed.
4+
<!--
15
## Overview
26
37
<p class="intro" markdown>
@@ -988,4 +992,4 @@ Also, unlike with debouncing or throttling, deferred re-renders done by `useDefe
988992
989993
If the work you're optimizing doesn't happen during rendering, debouncing and throttling are still useful. For example, they can let you fire fewer network requests. You can also use these techniques together.
990994
991-
</DeepDive>
995+
</DeepDive> -->

docs/src/reference/use-id.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
!!! warning "In Progress"
1+
!!! warning "Planned / Undeveloped"
22

33
This feature is planned, but not yet developed.
44

55
See [this issue](https://github.com/reactive-python/reactpy/issues/985) for more details.
6-
6+
<!--
77
## Overview
88
99
<p class="intro" markdown>
@@ -285,4 +285,4 @@ root2.render(<App />);
285285
input {
286286
margin: 5px;
287287
}
288-
```
288+
``` -->

docs/src/reference/use-imperative-handle.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## Overview
1+
!!! warning "Planned / Undeveloped"
2+
3+
This feature is planned, but not yet developed.
4+
5+
<!-- ## Overview
26
37
<p class="intro" markdown>
48
@@ -290,4 +294,4 @@ export default AddComment;
290294
291295
**If you can express something as a prop, you should not use a ref.** For example, instead of exposing an imperative handle like `{ open, close }` from a `Modal` component, it is better to take `isOpen` as a prop like `<Modal isOpen={isOpen} />`. [Effects](/learn/synchronizing-with-effects) can help you expose imperative behaviors via props.
292296
293-
</Pitfall>
297+
</Pitfall> -->

docs/src/reference/use-insertion-effect.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
!!! warning "Planned / Undeveloped"
2+
3+
This feature is planned, but not yet developed.
4+
<!--
15
<Pitfall>
26
37
`useInsertionEffect` is for CSS-in-JS library authors. Unless you are working on a CSS-in-JS library and need a place to inject the styles, you probably want [`useEffect`](/reference/react/useEffect) or [`useLayoutEffect`](/reference/react/useLayoutEffect) instead.
@@ -132,4 +136,4 @@ If you insert styles during rendering and React is processing a [non-blocking up
132136
133137
`useInsertionEffect` is better than inserting styles during [`useLayoutEffect`](/reference/react/useLayoutEffect) or [`useEffect`](/reference/react/useEffect) because it ensures that by the time other Effects run in your components, the `<style>` tags have already been inserted. Otherwise, layout calculations in regular Effects would be wrong due to outdated styles.
134138
135-
</DeepDive>
139+
</DeepDive> -->

0 commit comments

Comments
 (0)