mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-04 12:45:54 +02:00
⚡ 🔤
This commit is contained in:
parent
7ed2856298
commit
2fcec0551c
@ -95,7 +95,8 @@ into existing projects.
|
|||||||
|
|
||||||
#### CDN / Direct Script
|
#### CDN / Direct Script
|
||||||
|
|
||||||
For CDN links and various build formats (ESM/IIFE, with/without signals, minified/unminified), see the [interactive format selector](https://jaandrle.github.io/deka-dom-el/) on the documentation site.
|
For CDN links and various build formats (ESM/IIFE, with/without signals, minified/unminified), see the [interactive
|
||||||
|
format selector](https://jaandrle.github.io/deka-dom-el/) on the documentation site.
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<!-- Example with IIFE build (creates a global DDE object) -->
|
<!-- Example with IIFE build (creates a global DDE object) -->
|
||||||
|
@ -70,3 +70,14 @@ styles.css`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
import { el } from "deka-dom-el";
|
||||||
|
import { ireland } from "./ireland.html.js";
|
||||||
|
|
||||||
|
export function getLibraryUrl({ page_id }){
|
||||||
|
return el(ireland, {
|
||||||
|
src: new URL("./getLibraryUrl.js.js", import.meta.url),
|
||||||
|
exportName: "getLibraryUrl",
|
||||||
|
page_id,
|
||||||
|
});
|
||||||
|
}
|
@ -37,3 +37,14 @@ styles.css`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
import { el } from "deka-dom-el";
|
||||||
|
import { ireland } from "./ireland.html.js";
|
||||||
|
|
||||||
|
export function scrollTop(){
|
||||||
|
return el(ireland, {
|
||||||
|
src: new URL("./scrollTop.js.js", import.meta.url),
|
||||||
|
exportName: "scrollTop",
|
||||||
|
page_id: "*",
|
||||||
|
});
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
import "./components/getLibraryUrl.css.js";
|
import "./components/getLibraryUrl.html.js";
|
||||||
import { t, T } from "./utils/index.js";
|
import { t, T } from "./utils/index.js";
|
||||||
export const info= {
|
export const info= {
|
||||||
href: "./",
|
href: "./",
|
||||||
@ -12,7 +12,7 @@ import { simplePage } from "./layout/simplePage.html.js";
|
|||||||
import { h3 } from "./components/pageUtils.html.js";
|
import { h3 } from "./components/pageUtils.html.js";
|
||||||
import { example } from "./components/example.html.js";
|
import { example } from "./components/example.html.js";
|
||||||
import { code } from "./components/code.html.js";
|
import { code } from "./components/code.html.js";
|
||||||
import { ireland } from "./components/ireland.html.js";
|
import { getLibraryUrl } from "./components/getLibraryUrl.html.js";
|
||||||
/** @param {string} url */
|
/** @param {string} url */
|
||||||
const fileURL= url=> new URL(url, import.meta.url);
|
const fileURL= url=> new URL(url, import.meta.url);
|
||||||
const references= {
|
const references= {
|
||||||
@ -110,11 +110,7 @@ export function page({ pkg, info }){
|
|||||||
el("p").append(T`
|
el("p").append(T`
|
||||||
Use the interactive selector below to choose your preferred format:
|
Use the interactive selector below to choose your preferred format:
|
||||||
`),
|
`),
|
||||||
el(ireland, {
|
el(getLibraryUrl, { page_id }),
|
||||||
src: fileURL("./components/getLibraryUrl.js.js"),
|
|
||||||
exportName: "getLibraryUrl",
|
|
||||||
page_id,
|
|
||||||
}),
|
|
||||||
el("div", { className: "note" }).append(
|
el("div", { className: "note" }).append(
|
||||||
el("p").append(T`
|
el("p").append(T`
|
||||||
Based on your selection, you can use dd<el> in your project like this:
|
Based on your selection, you can use dd<el> in your project like this:
|
||||||
|
@ -3,10 +3,7 @@ import { el, simulateSlots } from "deka-dom-el";
|
|||||||
|
|
||||||
import { header } from "./head.html.js";
|
import { header } from "./head.html.js";
|
||||||
import { prevNext } from "../components/pageUtils.html.js";
|
import { prevNext } from "../components/pageUtils.html.js";
|
||||||
import { ireland } from "../components/ireland.html.js";
|
import { scrollTop } from "../components/scrollTop.html.js";
|
||||||
import "../components/scrollTop.css.js";
|
|
||||||
/** @param {string} url */
|
|
||||||
const fileURL= url=> new URL(url, import.meta.url);
|
|
||||||
|
|
||||||
/** @param {Pick<import("../types.d.ts").PageAttrs, "pkg" | "info">} attrs */
|
/** @param {Pick<import("../types.d.ts").PageAttrs, "pkg" | "info">} attrs */
|
||||||
export function simplePage({ pkg, info }){
|
export function simplePage({ pkg, info }){
|
||||||
@ -33,6 +30,6 @@ export function simplePage({ pkg, info }){
|
|||||||
),
|
),
|
||||||
|
|
||||||
// Scroll to top button
|
// Scroll to top button
|
||||||
el(ireland, { src: fileURL("../components/scrollTop.js.js"), exportName: "scrollTop" })
|
el(scrollTop),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
@ -165,9 +165,10 @@ export function page({ pkg, info }){
|
|||||||
|
|
||||||
el("dt", t`on.disconnected(callback)`),
|
el("dt", t`on.disconnected(callback)`),
|
||||||
el("dd", t`Fires when the element is removed from the DOM`),
|
el("dd", t`Fires when the element is removed from the DOM`),
|
||||||
|
|
||||||
el("dt", t`on.host(callback, host?)`),
|
el("dt", t`on.host(callback, host?)`),
|
||||||
el("dd", t`Fires when the host element is "ready" and allows applying properties based on the fully built template`),
|
el("dd", t`Fires when the host element is "ready" and allows applying properties based on the fully
|
||||||
|
built template`),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
el(example, { src: fileURL("./components/examples/events/live-cycle.js"), page_id }),
|
el(example, { src: fileURL("./components/examples/events/live-cycle.js"), page_id }),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user