@rusticarcade/palette 0.3.1 → 0.4.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.
- package/README.md +1 -16
- package/dist/dev/index.js +738 -478
- package/dist/prod/index.d.ts +149 -245
- package/dist/prod/index.js +1 -3
- package/dist/test/index.d.ts +122 -212
- package/dist/test/index.js +44 -29
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ them.
|
|
|
15
15
|
- ✅ Browser-standard Web Components
|
|
16
16
|
- ✅ Zero build required
|
|
17
17
|
- ✅ Zero external dependencies
|
|
18
|
-
- ✅
|
|
18
|
+
- ✅ <10kb production build (gzipped)
|
|
19
19
|
- ✅ Works out of the box with native JavaScript
|
|
20
20
|
- ✅ Strict TypeScript support throughout
|
|
21
21
|
- ✅ Optimized Template rendering with surgical DOM updates
|
|
@@ -72,18 +72,3 @@ define("counting-button", {
|
|
|
72
72
|
}
|
|
73
73
|
});
|
|
74
74
|
```
|
|
75
|
-
|
|
76
|
-
## Guides
|
|
77
|
-
|
|
78
|
-
- [Overview](https://docs.palette.camp/documents/Overview.html)
|
|
79
|
-
- [Getting Started](https://docs.palette.camp/documents/Getting_Started.html)
|
|
80
|
-
- [Creating Components](https://docs.palette.camp/documents/Creating_Components.html)
|
|
81
|
-
- [Component Lifecycle](https://docs.palette.camp/documents/Component_Lifecycle.html)
|
|
82
|
-
- [Templating](https://docs.palette.camp/documents/Templating.html)
|
|
83
|
-
- [TypeScript Support](https://docs.palette.camp/documents/TypeScript_Support.html)
|
|
84
|
-
|
|
85
|
-
## API
|
|
86
|
-
|
|
87
|
-
- [Component class](https://docs.palette.camp/classes/Palette.Component.html)
|
|
88
|
-
- [Template class](https://docs.palette.camp/classes/Palette.Template.html)
|
|
89
|
-
- [State class](https://docs.palette.camp/classses/Palette.State.html)
|