@davidsouther/jiffies 2026.26.0 → 2026.26.1

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.
@@ -6,17 +6,34 @@ export declare const CLEAR: unique symbol;
6
6
  export type EventHandler = EventListenerOrEventListenerObject;
7
7
  export type DenormChildren = Node | string | typeof CLEAR | null | undefined | false;
8
8
  export type DOMElement = Element & ElementCSSInlineStyle;
9
+ export type AriaRole = "alert" | "alertdialog" | "application" | "article" | "banner" | "button" | "cell" | "checkbox" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "dialog" | "directory" | "document" | "feed" | "figure" | "form" | "grid" | "gridcell" | "group" | "heading" | "img" | "link" | "list" | "listbox" | "listitem" | "log" | "main" | "marquee" | "math" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "option" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "search" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "switch" | "tab" | "table" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem";
9
10
  export type DomAttrs = {
10
11
  class: string | string[];
11
12
  style: Partial<SVGProperties> | string;
12
- role: "button" | "list" | "listbox";
13
+ role: AriaRole;
13
14
  events: Partial<{
14
15
  [K in keyof HTMLElementEventMap]: EventHandler | null;
15
16
  }>;
16
17
  };
18
+ /**
19
+ * Jiffies intrinsic DataSet attributes.
20
+ *
21
+ * DOM types don't include data- and aria- properties, they come from JSX intrinsics.
22
+ */
23
+ export type GlobalAttrs = {
24
+ [key: `data-${string}`]: string | number | boolean;
25
+ [key: `aria-${string}`]: string | number | boolean;
26
+ for: string;
27
+ };
28
+ /**
29
+ * Attributes accepted by a builder / `up()` for element `E`. The element's own
30
+ * string/number/boolean DOM properties, the framework `DomAttrs`
31
+ * (class/style/role/events), the `GlobalAttrs` aliases, and the optional
32
+ * supplemental set `S`.
33
+ */
17
34
  export type Attrs<E extends Omit<Element, "update">, S = object> = Partial<Omit<{
18
35
  [k in keyof E]: string | number | boolean;
19
- }, "style" | "toString"> & S & DomAttrs>;
36
+ }, "style" | "toString"> & S & DomAttrs & GlobalAttrs>;
20
37
  export type DenormAttrs<E extends Omit<Element, "update">, S = object> = Attrs<E, S> | DenormChildren;
21
38
  declare global {
22
39
  interface Element {
@@ -26,7 +43,7 @@ declare global {
26
43
  }
27
44
  export type DOMUpdates<E extends Element = Element> = [DenormAttrs<E>, ...DenormChildren[]] | DenormChildren[];
28
45
  export declare function normalizeArguments<E extends Element>(attrs?: DenormAttrs<E>, children?: DenormChildren[], defaultAttrs?: Attrs<E>): [Attrs<E>, DenormChildren[]];
29
- export declare function up<E extends Element>(element: Omit<E, "update">, attrs?: DenormAttrs<E>, ...children: DenormChildren[]): E;
46
+ export declare function up<E extends Element, S = object>(element: Omit<E, "update">, attrs?: DenormAttrs<E, S>, ...children: DenormChildren[]): E;
30
47
  export declare function update(element: Omit<Element, "update">, attrs: Attrs<Element>, children: DenormChildren[]): Element;
31
48
  /**
32
49
  * Reconcile `element`'s mounted children against expected `children`, mutating the live DOM in place.
@@ -9,9 +9,7 @@ export const Form = (attrs, ...children) => {
9
9
  }
10
10
  return form(attrs, ...children);
11
11
  };
12
- export const Input = (attrs, ...children) => label(input(
13
- // @ts-expect-error
14
- attrs), ...children);
12
+ export const Input = (attrs, ...children) => label(input(attrs), ...children);
15
13
  export const Select = (attrs) => label({ style: attrs.style ?? {} }, select({ events: attrs.events ?? {} }, ...prepareOptions(attrs.options, attrs.selected).map(Option)));
16
14
  // Button emits button[type=button] so it never accidentally submits a form. The
17
15
  // optional variant maps to the matching sanctioned jiffies-css class.
@@ -1,112 +1,112 @@
1
1
  import { type DenormAttrs, type DenormChildren } from "./dom.ts";
2
- export declare const a: (attrs?: DenormAttrs<HTMLAnchorElement>, ...children: DenormChildren[]) => HTMLAnchorElement;
3
- export declare const abbr: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
4
- export declare const address: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
5
- export declare const area: (attrs?: DenormAttrs<HTMLAreaElement>, ...children: DenormChildren[]) => HTMLAreaElement;
6
- export declare const article: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
7
- export declare const aside: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
8
- export declare const audio: (attrs?: DenormAttrs<HTMLAudioElement>, ...children: DenormChildren[]) => HTMLAudioElement;
9
- export declare const b: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
10
- export declare const base: (attrs?: DenormAttrs<HTMLBaseElement>, ...children: DenormChildren[]) => HTMLBaseElement;
11
- export declare const bdi: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
12
- export declare const bdo: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
13
- export declare const blockquote: (attrs?: DenormAttrs<HTMLQuoteElement>, ...children: DenormChildren[]) => HTMLQuoteElement;
14
- export declare const body: (attrs?: DenormAttrs<HTMLBodyElement>, ...children: DenormChildren[]) => HTMLBodyElement;
15
- export declare const br: (attrs?: DenormAttrs<HTMLBRElement>, ...children: DenormChildren[]) => HTMLBRElement;
16
- export declare const button: (attrs?: DenormAttrs<HTMLButtonElement>, ...children: DenormChildren[]) => HTMLButtonElement;
17
- export declare const canvas: (attrs?: DenormAttrs<HTMLCanvasElement>, ...children: DenormChildren[]) => HTMLCanvasElement;
18
- export declare const caption: (attrs?: DenormAttrs<HTMLTableCaptionElement>, ...children: DenormChildren[]) => HTMLTableCaptionElement;
19
- export declare const cite: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
20
- export declare const code: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
21
- export declare const col: (attrs?: DenormAttrs<HTMLTableColElement>, ...children: DenormChildren[]) => HTMLTableColElement;
22
- export declare const colgroup: (attrs?: DenormAttrs<HTMLTableColElement>, ...children: DenormChildren[]) => HTMLTableColElement;
23
- export declare const data: (attrs?: DenormAttrs<HTMLDataElement>, ...children: DenormChildren[]) => HTMLDataElement;
24
- export declare const datalist: (attrs?: DenormAttrs<HTMLDataListElement>, ...children: DenormChildren[]) => HTMLDataListElement;
25
- export declare const dd: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
26
- export declare const del: (attrs?: DenormAttrs<HTMLModElement>, ...children: DenormChildren[]) => HTMLModElement;
27
- export declare const details: (attrs?: DenormAttrs<HTMLDetailsElement>, ...children: DenormChildren[]) => HTMLDetailsElement;
28
- export declare const dfn: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
29
- export declare const dialog: (attrs?: DenormAttrs<HTMLDialogElement>, ...children: DenormChildren[]) => HTMLDialogElement;
30
- export declare const div: (attrs?: DenormAttrs<HTMLDivElement>, ...children: DenormChildren[]) => HTMLDivElement;
31
- export declare const dl: (attrs?: DenormAttrs<HTMLDListElement>, ...children: DenormChildren[]) => HTMLDListElement;
32
- export declare const dt: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
33
- export declare const em: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
34
- export declare const embed: (attrs?: DenormAttrs<HTMLEmbedElement>, ...children: DenormChildren[]) => HTMLEmbedElement;
35
- export declare const fieldset: (attrs?: DenormAttrs<HTMLFieldSetElement>, ...children: DenormChildren[]) => HTMLFieldSetElement;
36
- export declare const figcaption: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
37
- export declare const figure: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
38
- export declare const footer: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
39
- export declare const form: (attrs?: DenormAttrs<HTMLFormElement>, ...children: DenormChildren[]) => HTMLFormElement;
40
- export declare const h1: (attrs?: DenormAttrs<HTMLHeadingElement>, ...children: DenormChildren[]) => HTMLHeadingElement;
41
- export declare const h2: (attrs?: DenormAttrs<HTMLHeadingElement>, ...children: DenormChildren[]) => HTMLHeadingElement;
42
- export declare const h3: (attrs?: DenormAttrs<HTMLHeadingElement>, ...children: DenormChildren[]) => HTMLHeadingElement;
43
- export declare const h4: (attrs?: DenormAttrs<HTMLHeadingElement>, ...children: DenormChildren[]) => HTMLHeadingElement;
44
- export declare const h5: (attrs?: DenormAttrs<HTMLHeadingElement>, ...children: DenormChildren[]) => HTMLHeadingElement;
45
- export declare const h6: (attrs?: DenormAttrs<HTMLHeadingElement>, ...children: DenormChildren[]) => HTMLHeadingElement;
46
- export declare const head: (attrs?: DenormAttrs<HTMLHeadElement>, ...children: DenormChildren[]) => HTMLHeadElement;
47
- export declare const header: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
48
- export declare const hgroup: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
49
- export declare const hr: (attrs?: DenormAttrs<HTMLHRElement>, ...children: DenormChildren[]) => HTMLHRElement;
50
- export declare const html: (attrs?: DenormAttrs<HTMLHtmlElement>, ...children: DenormChildren[]) => HTMLHtmlElement;
51
- export declare const i: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
52
- export declare const iframe: (attrs?: DenormAttrs<HTMLIFrameElement>, ...children: DenormChildren[]) => HTMLIFrameElement;
53
- export declare const img: (attrs?: DenormAttrs<HTMLImageElement>, ...children: DenormChildren[]) => HTMLImageElement;
54
- export declare const input: (attrs?: DenormAttrs<HTMLInputElement>, ...children: DenormChildren[]) => HTMLInputElement;
55
- export declare const ins: (attrs?: DenormAttrs<HTMLModElement>, ...children: DenormChildren[]) => HTMLModElement;
56
- export declare const kbd: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
57
- export declare const label: (attrs?: DenormAttrs<HTMLLabelElement>, ...children: DenormChildren[]) => HTMLLabelElement;
58
- export declare const legend: (attrs?: DenormAttrs<HTMLLegendElement>, ...children: DenormChildren[]) => HTMLLegendElement;
59
- export declare const li: (attrs?: DenormAttrs<HTMLLIElement>, ...children: DenormChildren[]) => HTMLLIElement;
60
- export declare const link: (attrs?: DenormAttrs<HTMLLinkElement>, ...children: DenormChildren[]) => HTMLLinkElement;
61
- export declare const main: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
62
- export declare const map: (attrs?: DenormAttrs<HTMLMapElement>, ...children: DenormChildren[]) => HTMLMapElement;
63
- export declare const mark: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
64
- export declare const menu: (attrs?: DenormAttrs<HTMLMenuElement>, ...children: DenormChildren[]) => HTMLMenuElement;
65
- export declare const meta: (attrs?: DenormAttrs<HTMLMetaElement>, ...children: DenormChildren[]) => HTMLMetaElement;
66
- export declare const meter: (attrs?: DenormAttrs<HTMLMeterElement>, ...children: DenormChildren[]) => HTMLMeterElement;
67
- export declare const nav: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
68
- export declare const noscript: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
69
- export declare const object: (attrs?: DenormAttrs<HTMLObjectElement>, ...children: DenormChildren[]) => HTMLObjectElement;
70
- export declare const ol: (attrs?: DenormAttrs<HTMLOListElement>, ...children: DenormChildren[]) => HTMLOListElement;
71
- export declare const optgroup: (attrs?: DenormAttrs<HTMLOptGroupElement>, ...children: DenormChildren[]) => HTMLOptGroupElement;
72
- export declare const option: (attrs?: DenormAttrs<HTMLOptionElement>, ...children: DenormChildren[]) => HTMLOptionElement;
73
- export declare const output: (attrs?: DenormAttrs<HTMLOutputElement>, ...children: DenormChildren[]) => HTMLOutputElement;
74
- export declare const p: (attrs?: DenormAttrs<HTMLParagraphElement>, ...children: DenormChildren[]) => HTMLParagraphElement;
75
- export declare const picture: (attrs?: DenormAttrs<HTMLPictureElement>, ...children: DenormChildren[]) => HTMLPictureElement;
76
- export declare const pre: (attrs?: DenormAttrs<HTMLPreElement>, ...children: DenormChildren[]) => HTMLPreElement;
77
- export declare const progress: (attrs?: DenormAttrs<HTMLProgressElement>, ...children: DenormChildren[]) => HTMLProgressElement;
78
- export declare const q: (attrs?: DenormAttrs<HTMLQuoteElement>, ...children: DenormChildren[]) => HTMLQuoteElement;
79
- export declare const rp: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
80
- export declare const rt: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
81
- export declare const ruby: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
82
- export declare const s: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
83
- export declare const samp: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
84
- export declare const script: (attrs?: DenormAttrs<HTMLScriptElement>, ...children: DenormChildren[]) => HTMLScriptElement;
85
- export declare const section: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
86
- export declare const select: (attrs?: DenormAttrs<HTMLSelectElement>, ...children: DenormChildren[]) => HTMLSelectElement;
87
- export declare const slot: (attrs?: DenormAttrs<HTMLSlotElement>, ...children: DenormChildren[]) => HTMLSlotElement;
88
- export declare const small: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
89
- export declare const source: (attrs?: DenormAttrs<HTMLSourceElement>, ...children: DenormChildren[]) => HTMLSourceElement;
90
- export declare const span: (attrs?: DenormAttrs<HTMLSpanElement>, ...children: DenormChildren[]) => HTMLSpanElement;
91
- export declare const strong: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
92
- export declare const style: (attrs?: DenormAttrs<HTMLStyleElement>, ...children: DenormChildren[]) => HTMLStyleElement;
93
- export declare const sub: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
94
- export declare const summary: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
95
- export declare const sup: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
96
- export declare const table: (attrs?: DenormAttrs<HTMLTableElement>, ...children: DenormChildren[]) => HTMLTableElement;
97
- export declare const tbody: (attrs?: DenormAttrs<HTMLTableSectionElement>, ...children: DenormChildren[]) => HTMLTableSectionElement;
98
- export declare const td: (attrs?: DenormAttrs<HTMLTableCellElement>, ...children: DenormChildren[]) => HTMLTableCellElement;
99
- export declare const template: (attrs?: DenormAttrs<HTMLTemplateElement>, ...children: DenormChildren[]) => HTMLTemplateElement;
100
- export declare const textarea: (attrs?: DenormAttrs<HTMLTextAreaElement>, ...children: DenormChildren[]) => HTMLTextAreaElement;
101
- export declare const tfoot: (attrs?: DenormAttrs<HTMLTableSectionElement>, ...children: DenormChildren[]) => HTMLTableSectionElement;
102
- export declare const th: (attrs?: DenormAttrs<HTMLTableCellElement>, ...children: DenormChildren[]) => HTMLTableCellElement;
103
- export declare const thead: (attrs?: DenormAttrs<HTMLTableSectionElement>, ...children: DenormChildren[]) => HTMLTableSectionElement;
104
- export declare const time: (attrs?: DenormAttrs<HTMLTimeElement>, ...children: DenormChildren[]) => HTMLTimeElement;
105
- export declare const title: (attrs?: DenormAttrs<HTMLTitleElement>, ...children: DenormChildren[]) => HTMLTitleElement;
106
- export declare const tr: (attrs?: DenormAttrs<HTMLTableRowElement>, ...children: DenormChildren[]) => HTMLTableRowElement;
107
- export declare const track: (attrs?: DenormAttrs<HTMLTrackElement>, ...children: DenormChildren[]) => HTMLTrackElement;
108
- export declare const u: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
109
- export declare const ul: (attrs?: DenormAttrs<HTMLUListElement>, ...children: DenormChildren[]) => HTMLUListElement;
110
- export declare const htmlvar: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
111
- export declare const video: (attrs?: DenormAttrs<HTMLVideoElement>, ...children: DenormChildren[]) => HTMLVideoElement;
112
- export declare const wbr: (attrs?: DenormAttrs<HTMLElement>, ...children: DenormChildren[]) => HTMLElement;
2
+ export declare const a: <S = object>(attrs?: DenormAttrs<HTMLAnchorElement, S>, ...children: DenormChildren[]) => HTMLAnchorElement;
3
+ export declare const abbr: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
4
+ export declare const address: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
5
+ export declare const area: <S = object>(attrs?: DenormAttrs<HTMLAreaElement, S>, ...children: DenormChildren[]) => HTMLAreaElement;
6
+ export declare const article: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
7
+ export declare const aside: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
8
+ export declare const audio: <S = object>(attrs?: DenormAttrs<HTMLAudioElement, S>, ...children: DenormChildren[]) => HTMLAudioElement;
9
+ export declare const b: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
10
+ export declare const base: <S = object>(attrs?: DenormAttrs<HTMLBaseElement, S>, ...children: DenormChildren[]) => HTMLBaseElement;
11
+ export declare const bdi: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
12
+ export declare const bdo: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
13
+ export declare const blockquote: <S = object>(attrs?: DenormAttrs<HTMLQuoteElement, S>, ...children: DenormChildren[]) => HTMLQuoteElement;
14
+ export declare const body: <S = object>(attrs?: DenormAttrs<HTMLBodyElement, S>, ...children: DenormChildren[]) => HTMLBodyElement;
15
+ export declare const br: <S = object>(attrs?: DenormAttrs<HTMLBRElement, S>, ...children: DenormChildren[]) => HTMLBRElement;
16
+ export declare const button: <S = object>(attrs?: DenormAttrs<HTMLButtonElement, S>, ...children: DenormChildren[]) => HTMLButtonElement;
17
+ export declare const canvas: <S = object>(attrs?: DenormAttrs<HTMLCanvasElement, S>, ...children: DenormChildren[]) => HTMLCanvasElement;
18
+ export declare const caption: <S = object>(attrs?: DenormAttrs<HTMLTableCaptionElement, S>, ...children: DenormChildren[]) => HTMLTableCaptionElement;
19
+ export declare const cite: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
20
+ export declare const code: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
21
+ export declare const col: <S = object>(attrs?: DenormAttrs<HTMLTableColElement, S>, ...children: DenormChildren[]) => HTMLTableColElement;
22
+ export declare const colgroup: <S = object>(attrs?: DenormAttrs<HTMLTableColElement, S>, ...children: DenormChildren[]) => HTMLTableColElement;
23
+ export declare const data: <S = object>(attrs?: DenormAttrs<HTMLDataElement, S>, ...children: DenormChildren[]) => HTMLDataElement;
24
+ export declare const datalist: <S = object>(attrs?: DenormAttrs<HTMLDataListElement, S>, ...children: DenormChildren[]) => HTMLDataListElement;
25
+ export declare const dd: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
26
+ export declare const del: <S = object>(attrs?: DenormAttrs<HTMLModElement, S>, ...children: DenormChildren[]) => HTMLModElement;
27
+ export declare const details: <S = object>(attrs?: DenormAttrs<HTMLDetailsElement, S>, ...children: DenormChildren[]) => HTMLDetailsElement;
28
+ export declare const dfn: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
29
+ export declare const dialog: <S = object>(attrs?: DenormAttrs<HTMLDialogElement, S>, ...children: DenormChildren[]) => HTMLDialogElement;
30
+ export declare const div: <S = object>(attrs?: DenormAttrs<HTMLDivElement, S>, ...children: DenormChildren[]) => HTMLDivElement;
31
+ export declare const dl: <S = object>(attrs?: DenormAttrs<HTMLDListElement, S>, ...children: DenormChildren[]) => HTMLDListElement;
32
+ export declare const dt: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
33
+ export declare const em: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
34
+ export declare const embed: <S = object>(attrs?: DenormAttrs<HTMLEmbedElement, S>, ...children: DenormChildren[]) => HTMLEmbedElement;
35
+ export declare const fieldset: <S = object>(attrs?: DenormAttrs<HTMLFieldSetElement, S>, ...children: DenormChildren[]) => HTMLFieldSetElement;
36
+ export declare const figcaption: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
37
+ export declare const figure: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
38
+ export declare const footer: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
39
+ export declare const form: <S = object>(attrs?: DenormAttrs<HTMLFormElement, S>, ...children: DenormChildren[]) => HTMLFormElement;
40
+ export declare const h1: <S = object>(attrs?: DenormAttrs<HTMLHeadingElement, S>, ...children: DenormChildren[]) => HTMLHeadingElement;
41
+ export declare const h2: <S = object>(attrs?: DenormAttrs<HTMLHeadingElement, S>, ...children: DenormChildren[]) => HTMLHeadingElement;
42
+ export declare const h3: <S = object>(attrs?: DenormAttrs<HTMLHeadingElement, S>, ...children: DenormChildren[]) => HTMLHeadingElement;
43
+ export declare const h4: <S = object>(attrs?: DenormAttrs<HTMLHeadingElement, S>, ...children: DenormChildren[]) => HTMLHeadingElement;
44
+ export declare const h5: <S = object>(attrs?: DenormAttrs<HTMLHeadingElement, S>, ...children: DenormChildren[]) => HTMLHeadingElement;
45
+ export declare const h6: <S = object>(attrs?: DenormAttrs<HTMLHeadingElement, S>, ...children: DenormChildren[]) => HTMLHeadingElement;
46
+ export declare const head: <S = object>(attrs?: DenormAttrs<HTMLHeadElement, S>, ...children: DenormChildren[]) => HTMLHeadElement;
47
+ export declare const header: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
48
+ export declare const hgroup: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
49
+ export declare const hr: <S = object>(attrs?: DenormAttrs<HTMLHRElement, S>, ...children: DenormChildren[]) => HTMLHRElement;
50
+ export declare const html: <S = object>(attrs?: DenormAttrs<HTMLHtmlElement, S>, ...children: DenormChildren[]) => HTMLHtmlElement;
51
+ export declare const i: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
52
+ export declare const iframe: <S = object>(attrs?: DenormAttrs<HTMLIFrameElement, S>, ...children: DenormChildren[]) => HTMLIFrameElement;
53
+ export declare const img: <S = object>(attrs?: DenormAttrs<HTMLImageElement, S>, ...children: DenormChildren[]) => HTMLImageElement;
54
+ export declare const input: <S = object>(attrs?: DenormAttrs<HTMLInputElement, S>, ...children: DenormChildren[]) => HTMLInputElement;
55
+ export declare const ins: <S = object>(attrs?: DenormAttrs<HTMLModElement, S>, ...children: DenormChildren[]) => HTMLModElement;
56
+ export declare const kbd: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
57
+ export declare const label: <S = object>(attrs?: DenormAttrs<HTMLLabelElement, S>, ...children: DenormChildren[]) => HTMLLabelElement;
58
+ export declare const legend: <S = object>(attrs?: DenormAttrs<HTMLLegendElement, S>, ...children: DenormChildren[]) => HTMLLegendElement;
59
+ export declare const li: <S = object>(attrs?: DenormAttrs<HTMLLIElement, S>, ...children: DenormChildren[]) => HTMLLIElement;
60
+ export declare const link: <S = object>(attrs?: DenormAttrs<HTMLLinkElement, S>, ...children: DenormChildren[]) => HTMLLinkElement;
61
+ export declare const main: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
62
+ export declare const map: <S = object>(attrs?: DenormAttrs<HTMLMapElement, S>, ...children: DenormChildren[]) => HTMLMapElement;
63
+ export declare const mark: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
64
+ export declare const menu: <S = object>(attrs?: DenormAttrs<HTMLMenuElement, S>, ...children: DenormChildren[]) => HTMLMenuElement;
65
+ export declare const meta: <S = object>(attrs?: DenormAttrs<HTMLMetaElement, S>, ...children: DenormChildren[]) => HTMLMetaElement;
66
+ export declare const meter: <S = object>(attrs?: DenormAttrs<HTMLMeterElement, S>, ...children: DenormChildren[]) => HTMLMeterElement;
67
+ export declare const nav: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
68
+ export declare const noscript: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
69
+ export declare const object: <S = object>(attrs?: DenormAttrs<HTMLObjectElement, S>, ...children: DenormChildren[]) => HTMLObjectElement;
70
+ export declare const ol: <S = object>(attrs?: DenormAttrs<HTMLOListElement, S>, ...children: DenormChildren[]) => HTMLOListElement;
71
+ export declare const optgroup: <S = object>(attrs?: DenormAttrs<HTMLOptGroupElement, S>, ...children: DenormChildren[]) => HTMLOptGroupElement;
72
+ export declare const option: <S = object>(attrs?: DenormAttrs<HTMLOptionElement, S>, ...children: DenormChildren[]) => HTMLOptionElement;
73
+ export declare const output: <S = object>(attrs?: DenormAttrs<HTMLOutputElement, S>, ...children: DenormChildren[]) => HTMLOutputElement;
74
+ export declare const p: <S = object>(attrs?: DenormAttrs<HTMLParagraphElement, S>, ...children: DenormChildren[]) => HTMLParagraphElement;
75
+ export declare const picture: <S = object>(attrs?: DenormAttrs<HTMLPictureElement, S>, ...children: DenormChildren[]) => HTMLPictureElement;
76
+ export declare const pre: <S = object>(attrs?: DenormAttrs<HTMLPreElement, S>, ...children: DenormChildren[]) => HTMLPreElement;
77
+ export declare const progress: <S = object>(attrs?: DenormAttrs<HTMLProgressElement, S>, ...children: DenormChildren[]) => HTMLProgressElement;
78
+ export declare const q: <S = object>(attrs?: DenormAttrs<HTMLQuoteElement, S>, ...children: DenormChildren[]) => HTMLQuoteElement;
79
+ export declare const rp: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
80
+ export declare const rt: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
81
+ export declare const ruby: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
82
+ export declare const s: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
83
+ export declare const samp: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
84
+ export declare const script: <S = object>(attrs?: DenormAttrs<HTMLScriptElement, S>, ...children: DenormChildren[]) => HTMLScriptElement;
85
+ export declare const section: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
86
+ export declare const select: <S = object>(attrs?: DenormAttrs<HTMLSelectElement, S>, ...children: DenormChildren[]) => HTMLSelectElement;
87
+ export declare const slot: <S = object>(attrs?: DenormAttrs<HTMLSlotElement, S>, ...children: DenormChildren[]) => HTMLSlotElement;
88
+ export declare const small: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
89
+ export declare const source: <S = object>(attrs?: DenormAttrs<HTMLSourceElement, S>, ...children: DenormChildren[]) => HTMLSourceElement;
90
+ export declare const span: <S = object>(attrs?: DenormAttrs<HTMLSpanElement, S>, ...children: DenormChildren[]) => HTMLSpanElement;
91
+ export declare const strong: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
92
+ export declare const style: <S = object>(attrs?: DenormAttrs<HTMLStyleElement, S>, ...children: DenormChildren[]) => HTMLStyleElement;
93
+ export declare const sub: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
94
+ export declare const summary: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
95
+ export declare const sup: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
96
+ export declare const table: <S = object>(attrs?: DenormAttrs<HTMLTableElement, S>, ...children: DenormChildren[]) => HTMLTableElement;
97
+ export declare const tbody: <S = object>(attrs?: DenormAttrs<HTMLTableSectionElement, S>, ...children: DenormChildren[]) => HTMLTableSectionElement;
98
+ export declare const td: <S = object>(attrs?: DenormAttrs<HTMLTableCellElement, S>, ...children: DenormChildren[]) => HTMLTableCellElement;
99
+ export declare const template: <S = object>(attrs?: DenormAttrs<HTMLTemplateElement, S>, ...children: DenormChildren[]) => HTMLTemplateElement;
100
+ export declare const textarea: <S = object>(attrs?: DenormAttrs<HTMLTextAreaElement, S>, ...children: DenormChildren[]) => HTMLTextAreaElement;
101
+ export declare const tfoot: <S = object>(attrs?: DenormAttrs<HTMLTableSectionElement, S>, ...children: DenormChildren[]) => HTMLTableSectionElement;
102
+ export declare const th: <S = object>(attrs?: DenormAttrs<HTMLTableCellElement, S>, ...children: DenormChildren[]) => HTMLTableCellElement;
103
+ export declare const thead: <S = object>(attrs?: DenormAttrs<HTMLTableSectionElement, S>, ...children: DenormChildren[]) => HTMLTableSectionElement;
104
+ export declare const time: <S = object>(attrs?: DenormAttrs<HTMLTimeElement, S>, ...children: DenormChildren[]) => HTMLTimeElement;
105
+ export declare const title: <S = object>(attrs?: DenormAttrs<HTMLTitleElement, S>, ...children: DenormChildren[]) => HTMLTitleElement;
106
+ export declare const tr: <S = object>(attrs?: DenormAttrs<HTMLTableRowElement, S>, ...children: DenormChildren[]) => HTMLTableRowElement;
107
+ export declare const track: <S = object>(attrs?: DenormAttrs<HTMLTrackElement, S>, ...children: DenormChildren[]) => HTMLTrackElement;
108
+ export declare const u: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
109
+ export declare const ul: <S = object>(attrs?: DenormAttrs<HTMLUListElement, S>, ...children: DenormChildren[]) => HTMLUListElement;
110
+ export declare const htmlvar: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
111
+ export declare const video: <S = object>(attrs?: DenormAttrs<HTMLVideoElement, S>, ...children: DenormChildren[]) => HTMLVideoElement;
112
+ export declare const wbr: <S = object>(attrs?: DenormAttrs<HTMLElement, S>, ...children: DenormChildren[]) => HTMLElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@davidsouther/jiffies",
3
- "version": "2026.26.0",
3
+ "version": "2026.26.1",
4
4
  "private": false,
5
5
  "displayName": "JEFRi Jiffies",
6
6
  "type": "module",