@webqit/oohtml 1.8.34 → 1.8.35
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 +7 -7
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/namespaced-html.js +1 -1
- package/dist/namespaced-html.js.map +1 -1
- package/dist/state-api.js +1 -1
- package/dist/state-api.js.map +1 -1
- package/dist/subscript.js +1 -1
- package/dist/subscript.js.map +1 -1
- package/package.json +2 -2
- package/src/subscript/index.js +6 -2
package/README.md
CHANGED
|
@@ -95,7 +95,7 @@ Taking things further, template elements may reference remote content using the
|
|
|
95
95
|
|
|
96
96
|
The contents of the remote file automatically become the template's content on load.
|
|
97
97
|
|
|
98
|
-
**Details are in the [HTML Modules](https://webqit.io/tooling/
|
|
98
|
+
**Details are in the [HTML Modules](https://webqit.io/tooling/oohtml/docs/spec/html-modules) specification. Learn more about the convention, API, events, and the polyfill support.**
|
|
99
99
|
|
|
100
100
|
## HTML Imports
|
|
101
101
|
|
|
@@ -158,7 +158,7 @@ document.querySelector('div[template="module1"]').setAttribute('template', 'modu
|
|
|
158
158
|
|
|
159
159
|
This opens up new simple ways to create very dynamic applications.
|
|
160
160
|
|
|
161
|
-
**Details are in the [HTML Imports](https://webqit.io/tooling/
|
|
161
|
+
**Details are in the [HTML Imports](https://webqit.io/tooling/oohtml/docs/spec/html-imports) specification. Learn more about the convention, dynamicity, Slot Inheritance, isomorphic rendering, and the polyfill support.**
|
|
162
162
|
|
|
163
163
|
## Namespaced HTML
|
|
164
164
|
|
|
@@ -209,7 +209,7 @@ We get a document structure that translates to a bankable API for building great
|
|
|
209
209
|
|
|
210
210
|
> Much of our code in the examples below will now use the `namespace` attribute in markup and the `.namespace` property in JavaScript.
|
|
211
211
|
|
|
212
|
-
**Details are in the [Namespaced HTML](https://webqit.io/tooling/
|
|
212
|
+
**Details are in the [Namespaced HTML](https://webqit.io/tooling/oohtml/docs/spec/namespaced-html) specification. Learn more about the convention, Namespaced Selectors, API, observability, and the polyfill support.**
|
|
213
213
|
|
|
214
214
|
## The State API
|
|
215
215
|
|
|
@@ -282,7 +282,7 @@ Observer.observe(collapsible.state, 'collapsed', e => {
|
|
|
282
282
|
});
|
|
283
283
|
```
|
|
284
284
|
|
|
285
|
-
**Details are in the [State API](https://webqit.io/tooling/
|
|
285
|
+
**Details are in the [State API](https://webqit.io/tooling/oohtml/docs/spec/the-state-api) specification. Learn more about the API, deep observability, and the polyfill support.**
|
|
286
286
|
|
|
287
287
|
## Subscript
|
|
288
288
|
|
|
@@ -377,15 +377,15 @@ Leveraging this reactivity, we could reimplement the `<my-collapsible>` componen
|
|
|
377
377
|
</div>
|
|
378
378
|
```
|
|
379
379
|
|
|
380
|
-
**Details are in the [Subscript](https://webqit.io/tooling/
|
|
380
|
+
**Details are in the [Subscript](https://webqit.io/tooling/oohtml/docs/spec/subscript) specification. Learn more about the event-based runtime, deep observability, bindings, the API, error handling, and the polyfill support.**
|
|
381
381
|
|
|
382
382
|
## Getting Started
|
|
383
383
|
|
|
384
384
|
[Go to project homepage](https://webqit.io/tooling/oohtml).
|
|
385
385
|
|
|
386
|
-
You definitely want to visit the documentation for each of OOHTML's features and try everything out by pasting the code examples and running them right in your browser. Simply include the [OOHTML polyfill](https://webqit.io/tooling/
|
|
386
|
+
You definitely want to visit the documentation for each of OOHTML's features and try everything out by pasting the code examples and running them right in your browser. Simply include the [OOHTML polyfill](https://webqit.io/tooling/oohtml/docs/getting-started/polyfill) on your page and get away with writing modular, reusable, reactive HTML without a tool!
|
|
387
387
|
|
|
388
|
-
We're putting together a collection of examples in the [examples](https://webqit.io/tooling/
|
|
388
|
+
We're putting together a collection of examples in the [examples](https://webqit.io/tooling/oohtml/docs/learn/examples) section.
|
|
389
389
|
|
|
390
390
|
## Issues
|
|
391
391
|
|