@rusticarcade/palette 0.3.1 → 0.7.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 CHANGED
@@ -15,7 +15,7 @@ them.
15
15
  - ✅ Browser-standard Web Components
16
16
  - ✅ Zero build required
17
17
  - ✅ Zero external dependencies
18
- - ✅ ~7.5kb production build (gzipped)
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
@@ -43,7 +43,7 @@ define("counting-button", {
43
43
  </button>
44
44
  `,
45
45
 
46
- styles: css`
46
+ style: css
47
47
  button {
48
48
  color: black;
49
49
  background-color: white;
@@ -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)