@seahax/elemental 0.3.0 → 0.4.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 +13 -21
- package/README.md +6 -2
- package/package.json +2 -2
package/LICENSE
CHANGED
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
MIT No Attribution
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
distribute this software, either in source code form or as a compiled
|
|
5
|
-
binary, for any purpose, commercial or non-commercial, and by any
|
|
6
|
-
means.
|
|
3
|
+
Copyright 2026 Chris Ackerman
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
relinquishment in perpetuity of all present and future rights to this
|
|
14
|
-
software under copyright law.
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
|
6
|
+
software and associated documentation files (the "Software"), to deal in the Software
|
|
7
|
+
without restriction, including without limitation the rights to use, copy, modify,
|
|
8
|
+
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
|
|
9
|
+
permit persons to whom the Software is furnished to do so.
|
|
15
10
|
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
-
|
|
24
|
-
For more information, please refer to <https://unlicense.org>
|
|
11
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
12
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
13
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
14
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
15
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
16
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Functional, reactive, web component base library.
|
|
4
4
|
|
|
5
|
-
Contains everything you need to build anything from a single component up to a full reactive application, with
|
|
5
|
+
Contains everything you need to build anything from a single component up to a full reactive application, with minimal overhead.
|
|
6
6
|
|
|
7
|
-
- [](https://bundlejs.com/?q=%40seahax%2Felemental%40latest&treeshake=%5B*%5D)
|
|
8
7
|
- Create fully portable web components
|
|
9
8
|
- Direct and safe access to the DOM (no virtual DOM)
|
|
10
9
|
- React-style list rendering using unique keys
|
|
@@ -13,6 +12,11 @@ Contains everything you need to build anything from a single component up to a f
|
|
|
13
12
|
- Client-side routing
|
|
14
13
|
- No Build Tooling
|
|
15
14
|
- No Dependencies
|
|
15
|
+
- Tiny Bundle Size
|
|
16
|
+
|
|
17
|
+

|
|
18
|
+
[](https://bundlejs.com/?q=%40seahax%2Felemental%40latest&treeshake=%5B*%5D)
|
|
19
|
+
|
|
16
20
|
|
|
17
21
|
## Define A Web Component
|
|
18
22
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seahax/elemental",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Functional, reactive, web component base library.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/seahax/elemental.git"
|
|
8
8
|
},
|
|
9
|
-
"license": "
|
|
9
|
+
"license": "MIT-0",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|