@e280/sly 0.0.0-2 → 0.0.0-3
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 +4 -6
- package/package.json +1 -1
- package/s/index.html.ts +3 -3
- package/x/index.html +4 -4
- package/x/index.html.js +3 -3
- package/x/index.html.js.map +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
<br/>
|
|
13
13
|
|
|
14
|
-
##
|
|
14
|
+
## 🦝 INSTALL SLY AND PEERS
|
|
15
15
|
they all super work together.
|
|
16
16
|
|
|
17
17
|
```sh
|
|
@@ -20,7 +20,7 @@ npm install @e280/sly @e280/stz @e280/strata lit
|
|
|
20
20
|
|
|
21
21
|
<br/>
|
|
22
22
|
|
|
23
|
-
##
|
|
23
|
+
## 🦝 VIEWS ARE LEAN
|
|
24
24
|
views are the crown jewel of sly. shadow-dom'd. hooks-based. fancy ergonomics. not components.
|
|
25
25
|
|
|
26
26
|
views are leaner than web components.. no dom registration, string tag names.. just import 'em, and the types work.. web components are fine, but they're for providing html authors with entrypoints to your cool widgets.. whereas views are the building blocks for frontend app devs.
|
|
@@ -171,7 +171,7 @@ render(content, document.body)
|
|
|
171
171
|
|
|
172
172
|
<br/>
|
|
173
173
|
|
|
174
|
-
##
|
|
174
|
+
## 🦝 OPS LOADING INDICATORS
|
|
175
175
|
> ***TODO*** *implemented but not yet documented, lol*
|
|
176
176
|
- `Pod` is a type for (loading/ready/error states)
|
|
177
177
|
- `Op` class wraps a pod signal and has some ergonomic fns
|
|
@@ -179,9 +179,7 @@ render(content, document.body)
|
|
|
179
179
|
|
|
180
180
|
<br/>
|
|
181
181
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
## 💖 PROJECT BY e280
|
|
182
|
+
## 🧑💻 PROJECT BY e280
|
|
185
183
|
reward us with github stars
|
|
186
184
|
build with us at https://e280.org/ but only if you're cool
|
|
187
185
|
|
package/package.json
CHANGED
package/s/index.html.ts
CHANGED
|
@@ -13,11 +13,11 @@ export default ssg.page(import.meta.url, async orb => ({
|
|
|
13
13
|
favicon,
|
|
14
14
|
dark: true,
|
|
15
15
|
socialCard: {
|
|
16
|
-
themeColor: "#
|
|
16
|
+
themeColor: "#95ff7b",
|
|
17
17
|
title,
|
|
18
18
|
description,
|
|
19
|
-
siteName:
|
|
20
|
-
image: domain + favicon,
|
|
19
|
+
siteName: "@e280/sly",
|
|
20
|
+
image: "https://" + domain + favicon,
|
|
21
21
|
},
|
|
22
22
|
|
|
23
23
|
head: html`
|
package/x/index.html
CHANGED
|
@@ -104,12 +104,12 @@ body {
|
|
|
104
104
|
<script type=module src="demo/demo.bundle.min.js?v=252198297896"></script>
|
|
105
105
|
<link rel="icon" href="assets/favicon.png?v=4dc161ed79b3"/>
|
|
106
106
|
|
|
107
|
-
<meta name="theme-color" content="#
|
|
107
|
+
<meta name="theme-color" content="#95ff7b">
|
|
108
108
|
<meta property="og:type" content="website">
|
|
109
|
-
<meta property="og:site_name" content="sly
|
|
109
|
+
<meta property="og:site_name" content="@e280/sly">
|
|
110
110
|
<meta property="og:title" content="sly">
|
|
111
111
|
<meta property="og:description" content="shadow views lit framework">
|
|
112
|
-
<meta property="og:image" content="sly.e280.org/assets/favicon.png">
|
|
112
|
+
<meta property="og:image" content="https://sly.e280.org/assets/favicon.png">
|
|
113
113
|
|
|
114
114
|
|
|
115
115
|
|
|
@@ -120,7 +120,7 @@ body {
|
|
|
120
120
|
|
|
121
121
|
<img class=icon alt="" src="/assets/favicon.png"/>
|
|
122
122
|
<h1>sly</h1>
|
|
123
|
-
<p class=lil>v0.0.0-
|
|
123
|
+
<p class=lil>v0.0.0-3</p>
|
|
124
124
|
<div class=demo></div>
|
|
125
125
|
<p><a href="https://github.com/e280/sly">github.com/e280/sly</a></p>
|
|
126
126
|
|
package/x/index.html.js
CHANGED
|
@@ -10,11 +10,11 @@ export default ssg.page(import.meta.url, async (orb) => ({
|
|
|
10
10
|
favicon,
|
|
11
11
|
dark: true,
|
|
12
12
|
socialCard: {
|
|
13
|
-
themeColor: "#
|
|
13
|
+
themeColor: "#95ff7b",
|
|
14
14
|
title,
|
|
15
15
|
description,
|
|
16
|
-
siteName:
|
|
17
|
-
image: domain + favicon,
|
|
16
|
+
siteName: "@e280/sly",
|
|
17
|
+
image: "https://" + domain + favicon,
|
|
18
18
|
},
|
|
19
19
|
head: html `
|
|
20
20
|
<meta name="example" value="whatever"/>
|
package/x/index.html.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.html.js","sourceRoot":"","sources":["../s/index.html.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,GAAG,EAAE,IAAI,EAAC,MAAM,aAAa,CAAA;AAErC,MAAM,KAAK,GAAG,KAAK,CAAA;AACnB,MAAM,WAAW,GAAG,4BAA4B,CAAA;AAChD,MAAM,MAAM,GAAG,cAAc,CAAA;AAC7B,MAAM,OAAO,GAAG,qBAAqB,CAAA;AAErC,eAAe,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,KAAK,EAAC,GAAG,EAAC,EAAE,CAAC,CAAC;IACtD,KAAK;IACL,EAAE,EAAE,yBAAyB;IAC7B,GAAG,EAAE,eAAe;IACpB,OAAO;IACP,IAAI,EAAE,IAAI;IACV,UAAU,EAAE;QACX,UAAU,EAAE,SAAS;QACrB,KAAK;QACL,WAAW;QACX,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"index.html.js","sourceRoot":"","sources":["../s/index.html.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,GAAG,EAAE,IAAI,EAAC,MAAM,aAAa,CAAA;AAErC,MAAM,KAAK,GAAG,KAAK,CAAA;AACnB,MAAM,WAAW,GAAG,4BAA4B,CAAA;AAChD,MAAM,MAAM,GAAG,cAAc,CAAA;AAC7B,MAAM,OAAO,GAAG,qBAAqB,CAAA;AAErC,eAAe,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,KAAK,EAAC,GAAG,EAAC,EAAE,CAAC,CAAC;IACtD,KAAK;IACL,EAAE,EAAE,yBAAyB;IAC7B,GAAG,EAAE,eAAe;IACpB,OAAO;IACP,IAAI,EAAE,IAAI;IACV,UAAU,EAAE;QACX,UAAU,EAAE,SAAS;QACrB,KAAK;QACL,WAAW;QACX,QAAQ,EAAE,WAAW;QACrB,KAAK,EAAE,UAAU,GAAG,MAAM,GAAG,OAAO;KACpC;IAED,IAAI,EAAE,IAAI,CAAA;;EAET;IAED,IAAI,EAAE,IAAI,CAAA;;;kBAGO,GAAG,CAAC,cAAc,EAAE;;;EAGpC;CACD,CAAC,CAAC,CAAA"}
|