You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Overview
The changes were not significant, so I included them in a single PR. If
you think the PR title is inappropriate, please feel free to change it.
- Improve type inference for atom
- Improved to ensure the same type inference as the original Jotai
package.
- Add test cases
- Remove experimental tag
- in suspensive.org docs
- in jotai interface
I have tested in the local environment to ensure that it behaves the
same as Jotai (across all features). Fortunately, it works well, and I
believe it is production-ready, just like Jotai.
With these improvements, I think the Jotai package is ready to be
released as version `1.0.0`.
## PR Checklist
- [x] I did below actions if need
1. I read the [Contributing
Guide](https://github.com/toss/suspensive/blob/main/CONTRIBUTING.md)
2. I added documents and tests.
---------
Co-authored-by: Jonghyeon Ko <[email protected]>
Copy file name to clipboardExpand all lines: docs/suspensive.org/src/pages/docs/jotai/Atom.en.mdx
-6
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,6 @@ import { Callout } from '@/components'
2
2
3
3
# Atom
4
4
5
-
<Callouttype='experimental'>
6
-
7
-
`<Atom/>` is an experimental feature, so this interface may change.
8
-
9
-
</Callout>
10
-
11
5
The Atom component provides an interface similar to Jotai's [useAtom](https://jotai.org/docs/core/use-atom#useatom) hook as props, allowing declarative usage.
Copy file name to clipboardExpand all lines: docs/suspensive.org/src/pages/docs/jotai/AtomValue.en.mdx
-6
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,6 @@ import { Callout } from '@/components'
2
2
3
3
# AtomValue
4
4
5
-
<Callouttype='experimental'>
6
-
7
-
`<AtomValue/>` is an experimental feature, so this interface may change.
8
-
9
-
</Callout>
10
-
11
5
The AtomValue component provides an interface similar to Jotai's [useAtomValue](https://jotai.org/docs/core/use-atom#useatomvalue) hook as props, allowing declarative usage.
Copy file name to clipboardExpand all lines: docs/suspensive.org/src/pages/docs/jotai/SetAtom.en.mdx
-6
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,6 @@ import { Callout } from '@/components'
2
2
3
3
# SetAtom
4
4
5
-
<Callouttype='experimental'>
6
-
7
-
`<SetAtom/>` is an experimental feature, so this interface may change.
8
-
9
-
</Callout>
10
-
11
5
The SetAtom component provides an interface similar to Jotai's [useSetAtom](https://jotai.org/docs/core/use-atom#usesetatom) hook as props, allowing declarative usage.
0 commit comments