@solidjs/signals 0.0.1
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/LICENSE +21 -0
- package/README.md +5 -0
- package/dist/dev.js +1404 -0
- package/dist/node.cjs +1452 -0
- package/dist/prod.js +1403 -0
- package/dist/types/core/constants.d.ts +14 -0
- package/dist/types/core/core.d.ts +157 -0
- package/dist/types/core/effect.d.ts +27 -0
- package/dist/types/core/error.d.ts +11 -0
- package/dist/types/core/flags.d.ts +8 -0
- package/dist/types/core/index.d.ts +7 -0
- package/dist/types/core/owner.d.ts +90 -0
- package/dist/types/core/scheduler.d.ts +26 -0
- package/dist/types/core/suspense.d.ts +11 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/types/map.d.ts +12 -0
- package/dist/types/signals.d.ts +56 -0
- package/dist/types/store/index.d.ts +5 -0
- package/dist/types/store/reconcile.d.ts +1 -0
- package/dist/types/store/store.d.ts +40 -0
- package/dist/types/store/utilities.d.ts +29 -0
- package/dist/types/utils.d.ts +1 -0
- package/package.json +48 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023-2025 Ryan Carniato
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# @solidjs/signals
|
|
2
|
+
|
|
3
|
+
Standalone Reactive implementation to serve as the basis of future (post 1.x) versions of SolidJS. This package aims to be core for Signals library made with rendering in mind so it may have more features and opinions than common Signals libraries, but are still necessary core to accomplish the type of capabilities we intend.
|
|
4
|
+
|
|
5
|
+
This is not ready for production and should be considered pre-alpha. This package is completely experimental and every release may be breaking. It is also not tuned for performance as of yet as we are still focusing on capability.
|