@bgub/fig-dom 0.0.1 → 0.1.0-alpha.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.
package/dist/index.d.ts CHANGED
@@ -1,295 +1,63 @@
1
- import { FigAssetResource, FigNode, FigPortal, Key } from "@bgub/fig";
1
+ import { a as Bind, i as HostStyle, n as EmptyPropValue, o as composeBind, r as HostProps, t as HostIntrinsicElements } from "./jsx-C3owhMDw.js";
2
+ import { AwaitedFigNode, DataResource, DataResourceKey, DataResourceKeyInput, FigAssetResource, FigNode, FigPortal, Key, MixinDescriptor } from "@bgub/fig";
2
3
  import { FigRoot, FigRootOptions, RecoverableErrorInfo } from "@bgub/fig-reconciler";
3
- //#region src/bind.d.ts
4
- type Bind<T extends Element = Element> = (node: T, signal: AbortSignal) => void;
5
- declare function composeBind<T extends Element = Element>(...binds: Array<Bind<T> | false | null | undefined>): Bind<T>;
6
- //#endregion
7
- //#region src/events.d.ts
8
- type Container = Element | DocumentFragment;
4
+ import { PayloadDecodeOptions } from "@bgub/fig/payload";
5
+ //#region src/event-descriptor.d.ts
9
6
  type EventOptions = Pick<AddEventListenerOptions, "capture" | "passive">;
10
7
  type EventCallback<E extends Event = Event> = (event: E, signal: AbortSignal) => void;
11
- interface EventDescriptor<E extends Event = Event> {
12
- readonly $$typeof: symbol;
13
- readonly type: string;
14
- readonly callback: EventCallback<E>;
15
- readonly options?: EventOptions;
16
- }
17
8
  /**
18
- * Declares a listener for the `events` prop. Events keep their native
19
- * semantics: bubbling events are delegated through the Fig tree (including
20
- * portals), while non-bubbling events — `focus` and `blur` included attach
21
- * directly to the element and fire only there. Fig does not emulate React's
22
- * bubbling `focus`/`blur`; to observe focus changes from an ancestor, use
23
- * the platform's bubbling variants, `focusin` and `focusout`.
9
+ * Declares one native listener for an element's `mix` prop. Bubbling
10
+ * events follow the logical Fig tree through portals; non-bubbling events,
11
+ * including `focus` and `blur`, attach directly with native semantics.
24
12
  */
25
- declare function on<K extends keyof HTMLElementEventMap>(type: K, callback: EventCallback<HTMLElementEventMap[K]>, options?: EventOptions): EventDescriptor<HTMLElementEventMap[K]>;
26
- declare function on<E extends Event = Event>(type: string, callback: EventCallback<E>, options?: EventOptions): EventDescriptor<E>;
13
+ declare function on<K extends keyof HTMLElementEventMap>(type: K, callback: EventCallback<HTMLElementEventMap[K]>, options?: EventOptions): MixinDescriptor;
14
+ declare function on<E extends Event = Event>(type: string, callback: EventCallback<E>, options?: EventOptions): MixinDescriptor;
27
15
  //#endregion
28
- //#region src/jsx-attributes.generated.d.ts
29
- type HtmlGlobalAttributeName = "accesskey" | "autocapitalize" | "autocorrect" | "autofocus" | "class" | "contenteditable" | "dir" | "draggable" | "enterkeyhint" | "exportparts" | "hidden" | "id" | "inert" | "inputmode" | "is" | "itemid" | "itemprop" | "itemref" | "itemscope" | "itemtype" | "lang" | "nonce" | "part" | "popover" | "slot" | "spellcheck" | "style" | "tabindex" | "title" | "translate" | "writingsuggestions";
30
- interface HtmlAttributeNameByTag {
31
- a: HtmlGlobalAttributeName | "charset" | "coords" | "download" | "href" | "hreflang" | "name" | "ping" | "referrerpolicy" | "rel" | "rev" | "shape" | "target" | "type";
32
- applet: HtmlGlobalAttributeName | "align" | "alt" | "archive" | "code" | "codebase" | "height" | "hspace" | "name" | "object" | "vspace" | "width";
33
- area: HtmlGlobalAttributeName | "alt" | "coords" | "download" | "href" | "hreflang" | "nohref" | "ping" | "referrerpolicy" | "rel" | "shape" | "target" | "type";
34
- audio: HtmlGlobalAttributeName | "autoplay" | "controls" | "crossorigin" | "loop" | "muted" | "preload" | "src";
35
- base: HtmlGlobalAttributeName | "href" | "target";
36
- basefont: HtmlGlobalAttributeName | "color" | "face" | "size";
37
- blockquote: HtmlGlobalAttributeName | "cite";
38
- body: HtmlGlobalAttributeName | "alink" | "background" | "bgcolor" | "link" | "text" | "vlink";
39
- br: HtmlGlobalAttributeName | "clear";
40
- button: HtmlGlobalAttributeName | "command" | "commandfor" | "disabled" | "form" | "formaction" | "formenctype" | "formmethod" | "formnovalidate" | "formtarget" | "name" | "popovertarget" | "popovertargetaction" | "type" | "value";
41
- canvas: HtmlGlobalAttributeName | "height" | "width";
42
- caption: HtmlGlobalAttributeName | "align";
43
- col: HtmlGlobalAttributeName | "align" | "char" | "charoff" | "span" | "valign" | "width";
44
- colgroup: HtmlGlobalAttributeName | "align" | "char" | "charoff" | "span" | "valign" | "width";
45
- data: HtmlGlobalAttributeName | "value";
46
- del: HtmlGlobalAttributeName | "cite" | "datetime";
47
- details: HtmlGlobalAttributeName | "name" | "open";
48
- dialog: HtmlGlobalAttributeName | "closedby" | "open";
49
- dir: HtmlGlobalAttributeName | "compact";
50
- div: HtmlGlobalAttributeName | "align";
51
- dl: HtmlGlobalAttributeName | "compact";
52
- embed: HtmlGlobalAttributeName | "height" | "src" | "type" | "width";
53
- fieldset: HtmlGlobalAttributeName | "disabled" | "form" | "name";
54
- font: HtmlGlobalAttributeName | "color" | "face" | "size";
55
- form: HtmlGlobalAttributeName | "accept" | "accept-charset" | "action" | "autocomplete" | "enctype" | "method" | "name" | "novalidate" | "target";
56
- frame: HtmlGlobalAttributeName | "frameborder" | "longdesc" | "marginheight" | "marginwidth" | "name" | "noresize" | "scrolling" | "src";
57
- frameset: HtmlGlobalAttributeName | "cols" | "rows";
58
- h1: HtmlGlobalAttributeName | "align";
59
- h2: HtmlGlobalAttributeName | "align";
60
- h3: HtmlGlobalAttributeName | "align";
61
- h4: HtmlGlobalAttributeName | "align";
62
- h5: HtmlGlobalAttributeName | "align";
63
- h6: HtmlGlobalAttributeName | "align";
64
- head: HtmlGlobalAttributeName | "profile";
65
- hr: HtmlGlobalAttributeName | "align" | "noshade" | "size" | "width";
66
- html: HtmlGlobalAttributeName | "manifest" | "version";
67
- iframe: HtmlGlobalAttributeName | "align" | "allow" | "allowfullscreen" | "allowpaymentrequest" | "allowusermedia" | "frameborder" | "height" | "loading" | "longdesc" | "marginheight" | "marginwidth" | "name" | "referrerpolicy" | "sandbox" | "scrolling" | "src" | "srcdoc" | "width";
68
- img: HtmlGlobalAttributeName | "align" | "alt" | "border" | "crossorigin" | "decoding" | "fetchpriority" | "height" | "hspace" | "ismap" | "loading" | "longdesc" | "name" | "referrerpolicy" | "sizes" | "src" | "srcset" | "usemap" | "vspace" | "width";
69
- input: HtmlGlobalAttributeName | "accept" | "align" | "alpha" | "alt" | "autocomplete" | "checked" | "colorspace" | "dirname" | "disabled" | "form" | "formaction" | "formenctype" | "formmethod" | "formnovalidate" | "formtarget" | "height" | "ismap" | "list" | "max" | "maxlength" | "min" | "minlength" | "multiple" | "name" | "pattern" | "placeholder" | "popovertarget" | "popovertargetaction" | "readonly" | "required" | "size" | "src" | "step" | "type" | "usemap" | "value" | "width";
70
- ins: HtmlGlobalAttributeName | "cite" | "datetime";
71
- isindex: HtmlGlobalAttributeName | "prompt";
72
- label: HtmlGlobalAttributeName | "for" | "form";
73
- legend: HtmlGlobalAttributeName | "align";
74
- li: HtmlGlobalAttributeName | "type" | "value";
75
- link: HtmlGlobalAttributeName | "as" | "blocking" | "charset" | "color" | "crossorigin" | "disabled" | "fetchpriority" | "href" | "hreflang" | "imagesizes" | "imagesrcset" | "integrity" | "media" | "referrerpolicy" | "rel" | "rev" | "sizes" | "target" | "type";
76
- map: HtmlGlobalAttributeName | "name";
77
- menu: HtmlGlobalAttributeName | "compact";
78
- meta: HtmlGlobalAttributeName | "charset" | "content" | "http-equiv" | "media" | "name" | "scheme";
79
- meter: HtmlGlobalAttributeName | "high" | "low" | "max" | "min" | "optimum" | "value";
80
- object: HtmlGlobalAttributeName | "align" | "archive" | "border" | "classid" | "codebase" | "codetype" | "data" | "declare" | "form" | "height" | "hspace" | "name" | "standby" | "type" | "typemustmatch" | "usemap" | "vspace" | "width";
81
- ol: HtmlGlobalAttributeName | "compact" | "reversed" | "start" | "type";
82
- optgroup: HtmlGlobalAttributeName | "disabled" | "label";
83
- option: HtmlGlobalAttributeName | "disabled" | "label" | "selected" | "value";
84
- output: HtmlGlobalAttributeName | "for" | "form" | "name";
85
- p: HtmlGlobalAttributeName | "align";
86
- param: HtmlGlobalAttributeName | "name" | "type" | "value" | "valuetype";
87
- pre: HtmlGlobalAttributeName | "width";
88
- progress: HtmlGlobalAttributeName | "max" | "value";
89
- q: HtmlGlobalAttributeName | "cite";
90
- script: HtmlGlobalAttributeName | "async" | "blocking" | "charset" | "crossorigin" | "defer" | "fetchpriority" | "integrity" | "language" | "nomodule" | "referrerpolicy" | "src" | "type";
91
- select: HtmlGlobalAttributeName | "autocomplete" | "disabled" | "form" | "multiple" | "name" | "required" | "size";
92
- slot: HtmlGlobalAttributeName | "name";
93
- source: HtmlGlobalAttributeName | "height" | "media" | "sizes" | "src" | "srcset" | "type" | "width";
94
- style: HtmlGlobalAttributeName | "blocking" | "media" | "type";
95
- table: HtmlGlobalAttributeName | "align" | "bgcolor" | "border" | "cellpadding" | "cellspacing" | "frame" | "rules" | "summary" | "width";
96
- tbody: HtmlGlobalAttributeName | "align" | "char" | "charoff" | "valign";
97
- td: HtmlGlobalAttributeName | "abbr" | "align" | "axis" | "bgcolor" | "char" | "charoff" | "colspan" | "headers" | "height" | "nowrap" | "rowspan" | "scope" | "valign" | "width";
98
- template: HtmlGlobalAttributeName | "shadowrootclonable" | "shadowrootcustomelementregistry" | "shadowrootdelegatesfocus" | "shadowrootmode" | "shadowrootserializable";
99
- textarea: HtmlGlobalAttributeName | "autocomplete" | "cols" | "dirname" | "disabled" | "form" | "maxlength" | "minlength" | "name" | "placeholder" | "readonly" | "required" | "rows" | "wrap";
100
- tfoot: HtmlGlobalAttributeName | "align" | "char" | "charoff" | "valign";
101
- th: HtmlGlobalAttributeName | "abbr" | "align" | "axis" | "bgcolor" | "char" | "charoff" | "colspan" | "headers" | "height" | "nowrap" | "rowspan" | "scope" | "valign" | "width";
102
- thead: HtmlGlobalAttributeName | "align" | "char" | "charoff" | "valign";
103
- time: HtmlGlobalAttributeName | "datetime";
104
- tr: HtmlGlobalAttributeName | "align" | "bgcolor" | "char" | "charoff" | "valign";
105
- track: HtmlGlobalAttributeName | "default" | "kind" | "label" | "src" | "srclang";
106
- ul: HtmlGlobalAttributeName | "compact" | "type";
107
- video: HtmlGlobalAttributeName | "autoplay" | "controls" | "crossorigin" | "height" | "loop" | "muted" | "playsinline" | "poster" | "preload" | "src" | "width";
108
- }
109
- type SvgGlobalAttributeName = "about" | "class" | "content" | "datatype" | "id" | "lang" | "property" | "rel" | "resource" | "rev" | "style" | "tabindex" | "typeof";
110
- interface SvgAttributeNameByTag {
111
- a: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "download" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "href" | "hreflang" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "ping" | "pointer-events" | "referrerpolicy" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "target" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "type" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
112
- altGlyph: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "dx" | "dy" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "format" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "glyphRef" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "rotate" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode" | "x" | "y";
113
- altGlyphDef: SvgGlobalAttributeName;
114
- altGlyphItem: SvgGlobalAttributeName;
115
- animate: SvgGlobalAttributeName | "accumulate" | "additive" | "alignment-baseline" | "attributeName" | "attributeType" | "baseline-shift" | "begin" | "by" | "calcMode" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "dur" | "enable-background" | "end" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "from" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "href" | "image-rendering" | "kerning" | "keySplines" | "keyTimes" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "max" | "min" | "opacity" | "overflow" | "pointer-events" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "restart" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "to" | "unicode-bidi" | "values" | "visibility" | "word-spacing" | "writing-mode";
116
- animateColor: SvgGlobalAttributeName | "accumulate" | "additive" | "alignment-baseline" | "attributeName" | "attributeType" | "baseline-shift" | "begin" | "by" | "calcMode" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "dur" | "enable-background" | "end" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "from" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "keySplines" | "keyTimes" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "max" | "min" | "opacity" | "overflow" | "pointer-events" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "restart" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "to" | "unicode-bidi" | "values" | "visibility" | "word-spacing" | "writing-mode";
117
- animateMotion: SvgGlobalAttributeName | "accumulate" | "additive" | "begin" | "by" | "calcMode" | "dur" | "end" | "externalResourcesRequired" | "fill" | "from" | "href" | "keyPoints" | "keySplines" | "keyTimes" | "max" | "min" | "origin" | "path" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "restart" | "rotate" | "systemLanguage" | "to" | "values";
118
- animateTransform: SvgGlobalAttributeName | "accumulate" | "additive" | "attributeName" | "attributeType" | "begin" | "by" | "calcMode" | "dur" | "end" | "externalResourcesRequired" | "fill" | "from" | "href" | "keySplines" | "keyTimes" | "max" | "min" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "restart" | "systemLanguage" | "to" | "type" | "values";
119
- animation: SvgGlobalAttributeName | "begin" | "dur" | "end" | "externalResourcesRequired" | "fill" | "focusable" | "focusHighlight" | "height" | "initialVisibility" | "max" | "min" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "preserveAspectRatio" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "restart" | "syncBehavior" | "syncMaster" | "syncTolerance" | "systemLanguage" | "transform" | "width" | "x" | "y";
120
- audio: SvgGlobalAttributeName | "begin" | "dur" | "end" | "externalResourcesRequired" | "fill" | "max" | "min" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "restart" | "syncBehavior" | "syncMaster" | "syncTolerance" | "systemLanguage" | "type";
121
- canvas: SvgGlobalAttributeName | "preserveAspectRatio" | "requiredExtensions" | "systemLanguage";
122
- circle: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "cx" | "cy" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pathLength" | "pointer-events" | "r" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
123
- clipPath: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "clipPathUnits" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
124
- "color-profile": SvgGlobalAttributeName | "local" | "name" | "rendering-intent";
125
- cursor: SvgGlobalAttributeName | "externalResourcesRequired" | "requiredExtensions" | "requiredFeatures" | "systemLanguage" | "x" | "y";
126
- defs: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
127
- desc: SvgGlobalAttributeName | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "systemLanguage";
128
- discard: SvgGlobalAttributeName | "begin" | "href" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "systemLanguage";
129
- ellipse: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "cx" | "cy" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pathLength" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "rx" | "ry" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
130
- feBlend: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "in2" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "mode" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
131
- feColorMatrix: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "type" | "unicode-bidi" | "values" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
132
- feComponentTransfer: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
133
- feComposite: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "in2" | "k1" | "k2" | "k3" | "k4" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "operator" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
134
- feConvolveMatrix: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "bias" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "divisor" | "dominant-baseline" | "edgeMode" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "order" | "overflow" | "pointer-events" | "preserveAlpha" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "targetX" | "targetY" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
135
- feDiffuseLighting: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "diffuseConstant" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kernelUnitLength" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "surfaceScale" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
136
- feDisplacementMap: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "in2" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "scale" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "xChannelSelector" | "y" | "yChannelSelector";
137
- feDistantLight: SvgGlobalAttributeName | "azimuth" | "elevation";
138
- feDropShadow: SvgGlobalAttributeName | "dx" | "dy" | "height" | "in" | "result" | "stdDeviation" | "width" | "x" | "y";
139
- feFlood: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
140
- feFuncA: SvgGlobalAttributeName | "amplitude" | "exponent" | "intercept" | "offset" | "slope" | "tableValues" | "type";
141
- feFuncB: SvgGlobalAttributeName | "amplitude" | "exponent" | "intercept" | "offset" | "slope" | "tableValues" | "type";
142
- feFuncG: SvgGlobalAttributeName | "amplitude" | "exponent" | "intercept" | "offset" | "slope" | "tableValues" | "type";
143
- feFuncR: SvgGlobalAttributeName | "amplitude" | "exponent" | "intercept" | "offset" | "slope" | "tableValues" | "type";
144
- feGaussianBlur: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "edgeMode" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stdDeviation" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
145
- feImage: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "crossorigin" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "href" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "preserveAspectRatio" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
146
- feMerge: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
147
- feMergeNode: SvgGlobalAttributeName | "in";
148
- feMorphology: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "operator" | "overflow" | "pointer-events" | "radius" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
149
- feOffset: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "dx" | "dy" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
150
- fePointLight: SvgGlobalAttributeName | "x" | "y" | "z";
151
- feSpecularLighting: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kernelUnitLength" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "specularConstant" | "specularExponent" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "surfaceScale" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
152
- feSpotLight: SvgGlobalAttributeName | "limitingConeAngle" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "specularExponent" | "x" | "y" | "z";
153
- feTile: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "in" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "result" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
154
- feTurbulence: SvgGlobalAttributeName | "alignment-baseline" | "baseFrequency" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "numOctaves" | "opacity" | "overflow" | "pointer-events" | "result" | "seed" | "shape-rendering" | "stitchTiles" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "type" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
155
- filter: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "filterRes" | "filterUnits" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "primitiveUnits" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
156
- font: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "horiz-adv-x" | "horiz-origin-x" | "horiz-origin-y" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "vert-adv-y" | "vert-origin-x" | "vert-origin-y" | "visibility" | "word-spacing" | "writing-mode";
157
- "font-face": SvgGlobalAttributeName | "accent-height" | "alphabetic" | "ascent" | "bbox" | "cap-height" | "descent" | "externalResourcesRequired" | "font-family" | "font-size" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "hanging" | "ideographic" | "mathematical" | "overline-position" | "overline-thickness" | "panose-1" | "slope" | "stemh" | "stemv" | "strikethrough-position" | "strikethrough-thickness" | "underline-position" | "underline-thickness" | "unicode-range" | "units-per-em" | "v-alphabetic" | "v-hanging" | "v-ideographic" | "v-mathematical" | "widths" | "x-height";
158
- "font-face-format": SvgGlobalAttributeName | "string";
159
- "font-face-name": SvgGlobalAttributeName | "name";
160
- "font-face-src": SvgGlobalAttributeName;
161
- "font-face-uri": SvgGlobalAttributeName | "externalResourcesRequired";
162
- foreignObject: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
163
- g: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
164
- glyph: SvgGlobalAttributeName | "alignment-baseline" | "arabic-form" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "d" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-name" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "horiz-adv-x" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "orientation" | "overflow" | "pointer-events" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode" | "unicode-bidi" | "vert-adv-y" | "vert-origin-x" | "vert-origin-y" | "visibility" | "word-spacing" | "writing-mode";
165
- glyphRef: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "dx" | "dy" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "format" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "glyphRef" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode" | "x" | "y";
166
- handler: SvgGlobalAttributeName | "externalResourcesRequired" | "type";
167
- hkern: SvgGlobalAttributeName | "g1" | "g2" | "k" | "u1" | "u2";
168
- iframe: SvgGlobalAttributeName | "requiredExtensions" | "systemLanguage";
169
- image: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "crossorigin" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "href" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pointer-events" | "preserveAspectRatio" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "type" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
170
- line: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pathLength" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode" | "x1" | "x2" | "y1" | "y2";
171
- linearGradient: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "gradientTransform" | "gradientUnits" | "href" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "shape-rendering" | "spreadMethod" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode" | "x1" | "x2" | "y1" | "y2";
172
- listener: SvgGlobalAttributeName | "defaultAction" | "event" | "handler" | "observer" | "phase" | "propagate" | "target";
173
- marker: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "markerHeight" | "markerUnits" | "markerWidth" | "mask" | "opacity" | "orient" | "overflow" | "pointer-events" | "preserveAspectRatio" | "refX" | "refY" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "viewBox" | "visibility" | "word-spacing" | "writing-mode";
174
- mask: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "maskContentUnits" | "maskUnits" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
175
- metadata: SvgGlobalAttributeName | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "systemLanguage";
176
- "missing-glyph": SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "d" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "horiz-adv-x" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "vert-adv-y" | "vert-origin-x" | "vert-origin-y" | "visibility" | "word-spacing" | "writing-mode";
177
- mpath: SvgGlobalAttributeName | "externalResourcesRequired" | "href";
178
- path: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "d" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pathLength" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
179
- pattern: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "href" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointer-events" | "preserveAspectRatio" | "requiredExtensions" | "requiredFeatures" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "viewBox" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
180
- polygon: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pathLength" | "pointer-events" | "points" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
181
- polyline: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pathLength" | "pointer-events" | "points" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
182
- prefetch: SvgGlobalAttributeName | "bandwidth" | "mediaCharacterEncoding" | "mediaContentEncodings" | "mediaSize" | "mediaTime";
183
- radialGradient: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "cx" | "cy" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "fr" | "fx" | "fy" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "gradientTransform" | "gradientUnits" | "href" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "r" | "shape-rendering" | "spreadMethod" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
184
- rect: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pathLength" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "rx" | "ry" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
185
- script: SvgGlobalAttributeName | "crossorigin" | "externalResourcesRequired" | "href" | "type";
186
- set: SvgGlobalAttributeName | "attributeName" | "attributeType" | "begin" | "dur" | "end" | "externalResourcesRequired" | "fill" | "href" | "max" | "min" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "restart" | "systemLanguage" | "to";
187
- solidColor: SvgGlobalAttributeName;
188
- stop: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "offset" | "opacity" | "overflow" | "pointer-events" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
189
- style: SvgGlobalAttributeName | "media" | "title" | "type";
190
- svg: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "baseProfile" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "contentScriptType" | "contentStyleType" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "playbackorder" | "playbackOrder" | "pointer-events" | "preserveAspectRatio" | "requiredExtensions" | "requiredFeatures" | "shape-rendering" | "snapshotTime" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "syncBehaviorDefault" | "syncToleranceDefault" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "timelinebegin" | "timelineBegin" | "transform" | "unicode-bidi" | "version" | "viewBox" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y" | "zoomAndPan";
191
- switch: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
192
- symbol: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "preserveAspectRatio" | "refX" | "refY" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "text-anchor" | "text-decoration" | "text-rendering" | "unicode-bidi" | "viewBox" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
193
- tbreak: SvgGlobalAttributeName | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "systemLanguage";
194
- text: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "dx" | "dy" | "editable" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "lengthAdjust" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "rotate" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "textLength" | "transform" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode" | "x" | "y";
195
- textArea: SvgGlobalAttributeName | "editable" | "focusable" | "focusHighlight" | "height" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "systemLanguage" | "transform" | "width" | "x" | "y";
196
- textPath: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "href" | "image-rendering" | "kerning" | "lengthAdjust" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "method" | "opacity" | "overflow" | "path" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "shape-rendering" | "side" | "spacing" | "startOffset" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "textLength" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode";
197
- title: SvgGlobalAttributeName | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "systemLanguage";
198
- tref: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "dx" | "dy" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "lengthAdjust" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "rotate" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "textLength" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode" | "x" | "y";
199
- tspan: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "dx" | "dy" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "image-rendering" | "kerning" | "lengthAdjust" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "rotate" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "textLength" | "unicode-bidi" | "visibility" | "word-spacing" | "writing-mode" | "x" | "y";
200
- unknown: SvgGlobalAttributeName | "requiredExtensions" | "systemLanguage";
201
- use: SvgGlobalAttributeName | "alignment-baseline" | "baseline-shift" | "clip" | "clip-path" | "clip-rule" | "color" | "color-interpolation" | "color-interpolation-filters" | "color-profile" | "color-rendering" | "cursor" | "direction" | "display" | "dominant-baseline" | "enable-background" | "externalResourcesRequired" | "fill" | "fill-opacity" | "fill-rule" | "filter" | "flood-color" | "flood-opacity" | "focusable" | "focusHighlight" | "font-family" | "font-size" | "font-size-adjust" | "font-stretch" | "font-style" | "font-variant" | "font-weight" | "glyph-orientation-horizontal" | "glyph-orientation-vertical" | "height" | "href" | "image-rendering" | "kerning" | "letter-spacing" | "lighting-color" | "marker-end" | "marker-mid" | "marker-start" | "mask" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "opacity" | "overflow" | "pointer-events" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "shape-rendering" | "stop-color" | "stop-opacity" | "stroke" | "stroke-dasharray" | "stroke-dashoffset" | "stroke-linecap" | "stroke-linejoin" | "stroke-miterlimit" | "stroke-opacity" | "stroke-width" | "systemLanguage" | "text-anchor" | "text-decoration" | "text-rendering" | "transform" | "unicode-bidi" | "visibility" | "width" | "word-spacing" | "writing-mode" | "x" | "y";
202
- video: SvgGlobalAttributeName | "begin" | "dur" | "end" | "externalResourcesRequired" | "fill" | "focusable" | "focusHighlight" | "height" | "initialVisibility" | "max" | "min" | "nav-down" | "nav-down-left" | "nav-down-right" | "nav-left" | "nav-next" | "nav-prev" | "nav-right" | "nav-up" | "nav-up-left" | "nav-up-right" | "overlay" | "preserveAspectRatio" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "requiredFonts" | "requiredFormats" | "restart" | "syncBehavior" | "syncMaster" | "syncTolerance" | "systemLanguage" | "transform" | "transformBehavior" | "type" | "width" | "x" | "y";
203
- view: SvgGlobalAttributeName | "externalResourcesRequired" | "preserveAspectRatio" | "viewBox" | "viewTarget" | "zoomAndPan";
204
- vkern: SvgGlobalAttributeName | "g1" | "g2" | "k" | "u1" | "u2";
205
- }
16
+ //#region src/events.d.ts
17
+ type Container = Document | DocumentFragment | Element;
206
18
  //#endregion
207
- //#region src/jsx-attribute-policy.d.ts
208
- type EmptyPropValue = false | null | undefined;
209
- type AttributeValue = string | number | true | EmptyPropValue;
210
- type HostStyle = Readonly<Record<string, string | EmptyPropValue>>;
211
- type HostEvents = ReadonlyArray<EventDescriptor<any> | EmptyPropValue>;
212
- interface FigHostProps<E extends Element> {
213
- bind?: Bind<E> | EmptyPropValue;
214
- children?: FigNode;
215
- events?: HostEvents | EmptyPropValue;
216
- key?: Key | null;
217
- style?: HostStyle | EmptyPropValue;
218
- suppressHydrationWarning?: boolean | null;
219
- unsafeHTML?: string | EmptyPropValue;
220
- }
221
- interface ReactHabitTraps {
222
- className?: never;
223
- dangerouslySetInnerHTML?: never;
224
- htmlFor?: never;
225
- ref?: never;
226
- [handler: `on${string}`]: never;
19
+ //#region src/asset-resources.d.ts
20
+ /**
21
+ * Inserts render-discovered asset resources into the document head. Returns a
22
+ * promise that settles when every newly discovered critical stylesheet loads
23
+ * or errors; hints, scripts, fonts, and non-blocking styles never gate reveal.
24
+ */
25
+ declare function insertAssetResources(resources: readonly FigAssetResource[]): Promise<void>;
26
+ //#endregion
27
+ //#region src/payload-decoder.d.ts
28
+ type PayloadDecoderOptions = Pick<PayloadDecodeOptions, "prepareAssets" | "resolveClientReference" | "retainAssets">;
29
+ //#endregion
30
+ //#region src/payload-component.d.ts
31
+ type PayloadSource = Response | {
32
+ contentType: string;
33
+ stream: ReadableStream<Uint8Array>;
34
+ };
35
+ interface PayloadComponentLoadContext {
36
+ key: DataResourceKey;
37
+ signal: AbortSignal;
227
38
  }
228
- type FigOwnedPropName = keyof FigHostProps<Element> | keyof ReactHabitTraps;
229
- type FormValue = string | number | EmptyPropValue;
230
- type SelectValue = string | number | ReadonlyArray<string | number>;
231
- interface FormStatePropsByTag {
232
- input: {
233
- checked?: boolean | null | undefined;
234
- defaultChecked?: boolean | null | undefined;
235
- defaultValue?: FormValue;
236
- value?: FormValue;
237
- };
238
- select: {
239
- defaultValue?: SelectValue | EmptyPropValue;
240
- value?: SelectValue | EmptyPropValue;
241
- };
242
- textarea: {
243
- defaultValue?: FormValue;
244
- value?: FormValue;
245
- };
39
+ interface PayloadComponentLoader<TProps extends object> extends PayloadDecoderOptions {
40
+ (props: TProps, context: PayloadComponentLoadContext): PayloadSource | PromiseLike<PayloadSource>;
246
41
  }
247
- type FormStateProps<Tag extends string> = Tag extends keyof FormStatePropsByTag ? FormStatePropsByTag[Tag] : unknown;
248
- type FormStatePropName<Tag> = Tag extends keyof FormStatePropsByTag ? keyof FormStatePropsByTag[Tag] : never;
249
- type FigGlobalAttributeName = `aria-${string}` | `data-${string}` | "role";
250
- type SvgLegacyAttributeName = "xlink:href" | "xml:space" | "xmlns:xlink";
251
- type HostAttributeProps<AttributeName extends string> = { [Name in Exclude<AttributeName, FigOwnedPropName>]?: AttributeValue; };
252
- type HtmlAttributes<Tag extends keyof HtmlAttributeNameByTag> = Exclude<HtmlAttributeNameByTag[Tag], FormStatePropName<Tag>> | FigGlobalAttributeName;
253
- type SvgAttributes<Tag extends keyof SvgAttributeNameByTag> = SvgAttributeNameByTag[Tag] | FigGlobalAttributeName | SvgLegacyAttributeName;
254
- type HostProps<E extends Element, AttributeName extends string = never> = FigHostProps<E> & ReactHabitTraps & HostAttributeProps<AttributeName>;
255
- type HtmlHostProps<Tag extends string, E extends Element> = HostProps<E, Tag extends keyof HtmlAttributeNameByTag ? HtmlAttributes<Tag> : HtmlGlobalAttributeName | FigGlobalAttributeName> & FormStateProps<Tag>;
256
- type SvgHostProps<Tag extends string, E extends Element> = HostProps<E, Tag extends keyof SvgAttributeNameByTag ? SvgAttributes<Tag> : SvgGlobalAttributeName | FigGlobalAttributeName | SvgLegacyAttributeName>;
257
- type OpenHtmlHostProps<E extends Element> = HostProps<E, HtmlGlobalAttributeName | FigGlobalAttributeName>;
258
- interface OpenHostProps<E extends Element> extends FigHostProps<E>, ReactHabitTraps {
259
- [attribute: string]: FigNode | HostStyle | HostEvents | Bind<E>;
42
+ interface PayloadComponentOptions<TProps extends object> extends PayloadDecoderOptions {
43
+ cacheKey?: (props: TProps) => DataResourceKeyInput;
44
+ key: DataResourceKey;
45
+ load: PayloadComponentLoader<TProps>;
260
46
  }
261
- //#endregion
262
- //#region src/jsx.d.ts
263
- type HtmlHostPropsByTag<TagNameMap> = { [Tag in keyof TagNameMap]: Tag extends string ? HtmlHostProps<Tag, TagNameMap[Tag] & Element> : OpenHtmlHostProps<TagNameMap[Tag] & Element>; };
264
- type SvgHostPropsByTag<TagNameMap> = { [Tag in keyof TagNameMap]: Tag extends string ? SvgHostProps<Tag, TagNameMap[Tag] & Element> : OpenHostProps<TagNameMap[Tag] & Element>; };
265
- type OpenHostPropsByTag<TagNameMap> = { [Tag in keyof TagNameMap]: OpenHostProps<TagNameMap[Tag] & Element>; };
266
- type HostIntrinsicElements = HtmlHostPropsByTag<HTMLElementTagNameMap> & SvgHostPropsByTag<Omit<SVGElementTagNameMap, keyof HTMLElementTagNameMap>> & OpenHostPropsByTag<Omit<MathMLElementTagNameMap, keyof HTMLElementTagNameMap | keyof SVGElementTagNameMap>> & {
267
- [customElement: `${string}-${string}`]: OpenHostProps<HTMLElement>;
268
- };
269
- //#endregion
270
- //#region src/jsx-augmentation.d.ts
271
- declare module "@bgub/fig/jsx-runtime" {
272
- namespace JSX {
273
- interface IntrinsicElements extends HostIntrinsicElements {}
274
- }
47
+ interface PayloadComponent<TProps extends object> extends DataResource<[TProps], AwaitedFigNode> {
48
+ (props: TProps & {
49
+ children?: FigNode;
50
+ }): FigNode;
275
51
  }
276
- //#endregion
277
- //#region src/asset-resources.d.ts
278
52
  /**
279
- * Insert render-discovered asset resources (e.g. from a payload response's
280
- * `getAssetResources()`) into the document head, deduped against resources
281
- * already inserted by SSR, a host-rendered element, or an earlier call — using
282
- * the same key semantics as host resources. Returns a promise that resolves once
283
- * every freshly inserted *critical* stylesheet has loaded or errored, so callers
284
- * can gate revealing the dependent content. Non-critical hints (preload,
285
- * preconnect, scripts, fonts, `blocking: "none"` stylesheets) never block.
53
+ * Creates a renderable Payload tree backed by Fig's ordinary data store.
286
54
  */
287
- declare function insertAssetResources(resources: readonly FigAssetResource[]): Promise<void>;
55
+ declare function createPayloadComponent<TProps extends object>(options: PayloadComponentOptions<TProps>): PayloadComponent<TProps>;
288
56
  //#endregion
289
57
  //#region src/index.d.ts
290
58
  declare const flushSync: <T>(this: void, callback: () => T) => T;
291
59
  declare function createRoot(container: Container, options?: FigRootOptions): FigRoot;
292
60
  declare function hydrateRoot(container: Container, children: FigNode, options?: FigRootOptions): FigRoot;
293
- declare function createPortal(children: FigNode, container: Container, key?: Key | null): FigPortal;
61
+ declare function createPortal(children: FigNode, container: Container, key?: Key | null): FigPortal<Container>;
294
62
  //#endregion
295
- export { type Bind, type Container, type EmptyPropValue, type EventCallback, type EventDescriptor, type EventOptions, type FigRoot, type FigRootOptions, type HostEvents, type HostIntrinsicElements, type HostProps, type HostStyle, type RecoverableErrorInfo, composeBind, createPortal, createRoot, flushSync, hydrateRoot, insertAssetResources, on };
63
+ export { type Bind, type Container, type EmptyPropValue, type EventCallback, type EventOptions, type FigRoot, type FigRootOptions, type HostIntrinsicElements, type HostProps, type HostStyle, type PayloadComponent, type PayloadComponentLoadContext, type PayloadComponentLoader, type PayloadComponentOptions, type PayloadSource, type RecoverableErrorInfo, composeBind, createPayloadComponent, createPortal, createRoot, flushSync, hydrateRoot, insertAssetResources, on };