aptechka 0.1.7 → 0.1.8
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/lib/abstract-elements/index.cjs +1 -1
- package/lib/abstract-elements/index.js +10 -14
- package/lib/accordion/AccordionElement.d.ts +1 -1
- package/lib/accordion/index.cjs +1 -1
- package/lib/accordion/index.js +25 -26
- package/lib/canvas/index.cjs +1 -1
- package/lib/canvas/index.js +15 -15
- package/lib/connector/index.cjs +1 -1
- package/lib/connector/index.d.ts +1 -2
- package/lib/connector/index.js +31 -31
- package/lib/{createStylesheet-C1rimcGc.cjs → createStylesheet-BsVHqHhr.cjs} +1 -1
- package/lib/{createStylesheet-BSXZrWW6.js → createStylesheet-ITfBHk7A.js} +1 -1
- package/lib/element-constructor/ElementConstructor.d.ts +12 -15
- package/lib/element-constructor/index.cjs +1 -1
- package/lib/element-constructor/index.js +91 -89
- package/lib/element-constructor/tags.d.ts +3 -1
- package/lib/events-Crwi8fz6.cjs +1 -0
- package/lib/{events-CoqmkUxo.js → events-_C2CztxR.js} +1 -1
- package/lib/index-Bt91QUTY.cjs +9 -0
- package/lib/{index-dBwVZz_v.js → index-COirQu7j.js} +66 -75
- package/lib/modal/index.cjs +1 -1
- package/lib/modal/index.js +33 -39
- package/lib/scroll/index.cjs +1 -1
- package/lib/scroll/index.js +66 -68
- package/lib/select/SelectElement.d.ts +1 -1
- package/lib/select/index.cjs +1 -1
- package/lib/select/index.d.ts +1 -1
- package/lib/select/index.js +1 -1
- package/lib/store/index.cjs +1 -1
- package/lib/store/index.js +111 -48
- package/lib/studio/index.cjs +6 -6
- package/lib/studio/index.js +313 -360
- package/lib/{tags-D-lzPz_v.js → tags-8Y7LSTwg.js} +385 -354
- package/lib/tags-pcim-Cws.cjs +1 -0
- package/lib/theme/index.cjs +1 -1
- package/lib/theme/index.js +1 -1
- package/lib/utils/events.d.ts +1 -1
- package/lib/utils/index.cjs +1 -1
- package/lib/utils/index.d.ts +1 -1
- package/lib/utils/index.js +1 -1
- package/lib/utils/ts-utility.d.ts +2 -2
- package/package.json +1 -9
- package/lib/Composed-C2Vv1xxR.cjs +0 -1
- package/lib/Composed-DhtYBEmo.js +0 -79
- package/lib/events-D68xg4dy.cjs +0 -1
- package/lib/index-vI4hmrI8.cjs +0 -9
- package/lib/jsx/ComponentElement.d.ts +0 -17
- package/lib/jsx/h.d.ts +0 -8
- package/lib/jsx/hooks/animation-frame.d.ts +0 -5
- package/lib/jsx/hooks/animation.d.ts +0 -3
- package/lib/jsx/hooks/basic.d.ts +0 -4
- package/lib/jsx/hooks/element-resize.d.ts +0 -3
- package/lib/jsx/hooks/intersection.d.ts +0 -3
- package/lib/jsx/hooks/store.d.ts +0 -6
- package/lib/jsx/hooks/style.d.ts +0 -2
- package/lib/jsx/hooks/utils.d.ts +0 -4
- package/lib/jsx/hooks/window-resize.d.ts +0 -2
- package/lib/jsx/index.cjs +0 -1
- package/lib/jsx/index.d.ts +0 -11
- package/lib/jsx/index.js +0 -193
- package/lib/jsx/render.d.ts +0 -2
- package/lib/jsx/type.d.ts +0 -187
- package/lib/tags-DkAbVUQP.cjs +0 -1
package/lib/jsx/type.d.ts
DELETED
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
import type { ElementConstructor, ElementConstructorClass, ElementConstructorEventMap, ElementConstructorStyle, ElementConstructorTagNames } from '../element-constructor';
|
|
2
|
-
import type { Store } from '../store';
|
|
3
|
-
import type { Split } from '../utils';
|
|
4
|
-
type StoreOr<T> = T | Store<T | null | undefined>;
|
|
5
|
-
declare global {
|
|
6
|
-
namespace JSX {
|
|
7
|
-
type ComponentChild = Node | string | number | boolean | undefined | null | void | Store<any> | ElementConstructor;
|
|
8
|
-
type ComponentChildren = ComponentChild | ComponentChild[];
|
|
9
|
-
interface BaseProps {
|
|
10
|
-
children?: ComponentChildren;
|
|
11
|
-
}
|
|
12
|
-
type Component<TProps extends object = object> = (props?: BaseProps & TProps) => Element;
|
|
13
|
-
type Element = ComponentChild;
|
|
14
|
-
interface ElementAttributesProperty {
|
|
15
|
-
props: any;
|
|
16
|
-
}
|
|
17
|
-
interface ElementChildrenAttribute {
|
|
18
|
-
children: any;
|
|
19
|
-
}
|
|
20
|
-
type HTMLOrSVGEvents = Partial<{
|
|
21
|
-
[K in `on${Capitalize<keyof ElementConstructorEventMap>}`]: (event: ElementConstructorEventMap[Extract<Uncapitalize<Split<K, 'on'>[1]>, keyof ElementConstructorEventMap>]) => void;
|
|
22
|
-
}>;
|
|
23
|
-
interface DOMAttributes {
|
|
24
|
-
children?: ComponentChildren;
|
|
25
|
-
ref?: {
|
|
26
|
-
current: any;
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
interface HTMLAttributes extends DOMAttributes {
|
|
30
|
-
accept?: StoreOr<string>;
|
|
31
|
-
acceptCharset?: StoreOr<string>;
|
|
32
|
-
accessKey?: StoreOr<string>;
|
|
33
|
-
action?: StoreOr<string>;
|
|
34
|
-
allowFullScreen?: StoreOr<boolean>;
|
|
35
|
-
allowTransparency?: StoreOr<boolean>;
|
|
36
|
-
alt?: StoreOr<string>;
|
|
37
|
-
as?: StoreOr<string>;
|
|
38
|
-
async?: StoreOr<boolean>;
|
|
39
|
-
autocomplete?: StoreOr<string>;
|
|
40
|
-
autoComplete?: StoreOr<string>;
|
|
41
|
-
autocorrect?: StoreOr<string>;
|
|
42
|
-
autoCorrect?: StoreOr<string>;
|
|
43
|
-
autofocus?: StoreOr<boolean>;
|
|
44
|
-
autoFocus?: StoreOr<boolean>;
|
|
45
|
-
autoPlay?: StoreOr<boolean>;
|
|
46
|
-
capture?: StoreOr<boolean | string>;
|
|
47
|
-
cellPadding?: StoreOr<number | string>;
|
|
48
|
-
cellSpacing?: StoreOr<number | string>;
|
|
49
|
-
charSet?: StoreOr<string>;
|
|
50
|
-
challenge?: StoreOr<string>;
|
|
51
|
-
checked?: StoreOr<boolean>;
|
|
52
|
-
class?: ElementConstructorClass;
|
|
53
|
-
cols?: StoreOr<number>;
|
|
54
|
-
colSpan?: StoreOr<number>;
|
|
55
|
-
content?: StoreOr<string>;
|
|
56
|
-
contentEditable?: StoreOr<boolean>;
|
|
57
|
-
contextMenu?: StoreOr<string>;
|
|
58
|
-
controls?: StoreOr<boolean>;
|
|
59
|
-
controlsList?: StoreOr<string>;
|
|
60
|
-
coords?: StoreOr<string>;
|
|
61
|
-
crossOrigin?: StoreOr<string>;
|
|
62
|
-
data?: StoreOr<string>;
|
|
63
|
-
dateTime?: StoreOr<string>;
|
|
64
|
-
default?: StoreOr<boolean>;
|
|
65
|
-
defer?: StoreOr<boolean>;
|
|
66
|
-
dir?: StoreOr<'auto' | 'rtl' | 'ltr'>;
|
|
67
|
-
disabled?: StoreOr<boolean>;
|
|
68
|
-
disableRemotePlayback?: StoreOr<boolean>;
|
|
69
|
-
download?: StoreOr<string>;
|
|
70
|
-
draggable?: StoreOr<boolean>;
|
|
71
|
-
encType?: StoreOr<string>;
|
|
72
|
-
form?: StoreOr<string>;
|
|
73
|
-
formAction?: StoreOr<string>;
|
|
74
|
-
formEncType?: StoreOr<string>;
|
|
75
|
-
formMethod?: StoreOr<string>;
|
|
76
|
-
formNoValidate?: StoreOr<boolean>;
|
|
77
|
-
formTarget?: StoreOr<string>;
|
|
78
|
-
frameBorder?: StoreOr<number | string>;
|
|
79
|
-
headers?: StoreOr<string>;
|
|
80
|
-
height?: StoreOr<number | string>;
|
|
81
|
-
hidden?: StoreOr<boolean>;
|
|
82
|
-
high?: StoreOr<number>;
|
|
83
|
-
href?: StoreOr<string>;
|
|
84
|
-
hrefLang?: StoreOr<string>;
|
|
85
|
-
for?: StoreOr<string>;
|
|
86
|
-
htmlFor?: StoreOr<string>;
|
|
87
|
-
httpEquiv?: StoreOr<string>;
|
|
88
|
-
icon?: StoreOr<string>;
|
|
89
|
-
id?: StoreOr<string>;
|
|
90
|
-
inputMode?: StoreOr<string>;
|
|
91
|
-
integrity?: StoreOr<string>;
|
|
92
|
-
is?: StoreOr<string>;
|
|
93
|
-
keyParams?: StoreOr<string>;
|
|
94
|
-
keyType?: StoreOr<string>;
|
|
95
|
-
kind?: StoreOr<string>;
|
|
96
|
-
label?: StoreOr<string>;
|
|
97
|
-
lang?: StoreOr<string>;
|
|
98
|
-
list?: StoreOr<string>;
|
|
99
|
-
loading?: StoreOr<'eager' | 'lazy'>;
|
|
100
|
-
loop?: StoreOr<boolean>;
|
|
101
|
-
low?: StoreOr<number>;
|
|
102
|
-
manifest?: StoreOr<string>;
|
|
103
|
-
marginHeight?: StoreOr<number>;
|
|
104
|
-
marginWidth?: StoreOr<number>;
|
|
105
|
-
max?: StoreOr<number | string>;
|
|
106
|
-
maxLength?: StoreOr<number>;
|
|
107
|
-
media?: StoreOr<string>;
|
|
108
|
-
mediaGroup?: StoreOr<string>;
|
|
109
|
-
method?: StoreOr<string>;
|
|
110
|
-
min?: StoreOr<number | string>;
|
|
111
|
-
minLength?: StoreOr<number>;
|
|
112
|
-
multiple?: StoreOr<boolean>;
|
|
113
|
-
muted?: StoreOr<boolean>;
|
|
114
|
-
name?: StoreOr<string>;
|
|
115
|
-
nonce?: StoreOr<string>;
|
|
116
|
-
noValidate?: StoreOr<boolean>;
|
|
117
|
-
open?: StoreOr<boolean>;
|
|
118
|
-
optimum?: StoreOr<number>;
|
|
119
|
-
pattern?: StoreOr<string>;
|
|
120
|
-
placeholder?: StoreOr<string>;
|
|
121
|
-
playsInline?: StoreOr<boolean>;
|
|
122
|
-
poster?: StoreOr<string>;
|
|
123
|
-
preload?: StoreOr<string>;
|
|
124
|
-
radioGroup?: StoreOr<string>;
|
|
125
|
-
readOnly?: StoreOr<boolean>;
|
|
126
|
-
rel?: StoreOr<string>;
|
|
127
|
-
required?: StoreOr<boolean>;
|
|
128
|
-
role?: StoreOr<string>;
|
|
129
|
-
rows?: StoreOr<number>;
|
|
130
|
-
rowSpan?: StoreOr<number>;
|
|
131
|
-
sandbox?: StoreOr<string>;
|
|
132
|
-
scope?: StoreOr<string>;
|
|
133
|
-
scoped?: StoreOr<boolean>;
|
|
134
|
-
scrolling?: StoreOr<string>;
|
|
135
|
-
seamless?: StoreOr<boolean>;
|
|
136
|
-
selected?: StoreOr<boolean>;
|
|
137
|
-
shape?: StoreOr<string>;
|
|
138
|
-
size?: StoreOr<number>;
|
|
139
|
-
sizes?: StoreOr<string>;
|
|
140
|
-
slot?: StoreOr<string>;
|
|
141
|
-
span?: StoreOr<number>;
|
|
142
|
-
spellcheck?: StoreOr<boolean>;
|
|
143
|
-
src?: StoreOr<string>;
|
|
144
|
-
srcset?: StoreOr<string>;
|
|
145
|
-
srcDoc?: StoreOr<string>;
|
|
146
|
-
srcLang?: StoreOr<string>;
|
|
147
|
-
srcSet?: StoreOr<string>;
|
|
148
|
-
start?: StoreOr<number>;
|
|
149
|
-
step?: StoreOr<number | string>;
|
|
150
|
-
style?: ElementConstructorStyle;
|
|
151
|
-
summary?: StoreOr<string>;
|
|
152
|
-
tabIndex?: StoreOr<number>;
|
|
153
|
-
target?: StoreOr<string>;
|
|
154
|
-
title?: StoreOr<string>;
|
|
155
|
-
type?: StoreOr<string>;
|
|
156
|
-
useMap?: StoreOr<string>;
|
|
157
|
-
value?: StoreOr<string | string[] | number>;
|
|
158
|
-
volume?: StoreOr<string | number>;
|
|
159
|
-
width?: StoreOr<number | string>;
|
|
160
|
-
wmode?: StoreOr<string>;
|
|
161
|
-
wrap?: StoreOr<string>;
|
|
162
|
-
about?: StoreOr<string>;
|
|
163
|
-
datatype?: StoreOr<string>;
|
|
164
|
-
inlist?: StoreOr<boolean>;
|
|
165
|
-
prefix?: StoreOr<string>;
|
|
166
|
-
property?: StoreOr<string>;
|
|
167
|
-
resource?: StoreOr<string>;
|
|
168
|
-
typeof?: StoreOr<string>;
|
|
169
|
-
vocab?: StoreOr<string>;
|
|
170
|
-
itemProp?: StoreOr<string>;
|
|
171
|
-
itemScope?: StoreOr<boolean>;
|
|
172
|
-
itemType?: StoreOr<string>;
|
|
173
|
-
itemID?: StoreOr<string>;
|
|
174
|
-
itemRef?: StoreOr<string>;
|
|
175
|
-
shadow?: boolean;
|
|
176
|
-
forceSvg?: boolean;
|
|
177
|
-
}
|
|
178
|
-
type UnknownAttributes = {
|
|
179
|
-
[key: string]: any;
|
|
180
|
-
};
|
|
181
|
-
type IntrinsicElementsHTML = {
|
|
182
|
-
[TKey in ElementConstructorTagNames | 'component']?: UnknownAttributes & HTMLAttributes & HTMLOrSVGEvents;
|
|
183
|
-
};
|
|
184
|
-
type IntrinsicElements = IntrinsicElementsHTML;
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
export {};
|
package/lib/tags-DkAbVUQP.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";var re=Object.defineProperty;var ie=(e,n,r)=>n in e?re(e,n,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[n]=r;var K=(e,n,r)=>(ie(e,typeof n!="symbol"?n+"":n,r),r),F=(e,n,r)=>{if(!n.has(e))throw TypeError("Cannot "+r)};var u=(e,n,r)=>(F(e,n,"read from private field"),r?r.call(e):n.get(e)),c=(e,n,r)=>{if(n.has(e))throw TypeError("Cannot add the same private member more than once");n instanceof WeakSet?n.add(e):n.set(e,r)},G=(e,n,r,i)=>(F(e,n,"write to private field"),i?i.call(e,r):n.set(e,r),r);var s=(e,n,r)=>(F(e,n,"access private method"),r);const d=require("./Store-D0_rDIsE.cjs"),W=require("./string-DzUwFYSS.cjs"),oe=new Set(["animate","animateMotion","animateTransform","circle","clipPath","defs","desc","ellipse","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","filter","foreignObject","g","image","line","linearGradient","listener","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialGradient","rect","set","solidColor","stop","svg","switch","symbol","text","textPath","title","tspan","view"]);var a,l,E,I,k,U,v,Y,m,H,C,z,L,Q,N,X,T,Z,p,V,b,$,x,O,A,_,g,D,y,J,q,j,M,ee,P,ne,S,R,B,te;const w=class w{constructor(...n){c(this,E);c(this,k);c(this,v);c(this,m);c(this,C);c(this,L);c(this,N);c(this,T);c(this,p);c(this,b);c(this,x);c(this,A);c(this,g);c(this,y);c(this,q);c(this,M);c(this,P);c(this,S);c(this,B);c(this,a,void 0);c(this,l,[]);K(this,"destroy",()=>{u(this,l).forEach(n=>{n()}),G(this,l,[])});const r=n[0],i=n[1];G(this,a,s(this,E,I).call(this,r,i==null?void 0:i.forceSvg)),s(this,v,Y).call(this,i)}get unsubscribeCallbacks(){return u(this,l)}get node(){return u(this,a)}};a=new WeakMap,l=new WeakMap,E=new WeakSet,I=function(n,r){let i=null;if(n instanceof Node)i=n;else if(typeof n=="string")if(!n.includes("<")&&n.includes("-"))i=new(customElements.get(n));else if(n.includes("<")){const o=document.createElement("div");o.innerHTML=n,i=o.firstElementChild}else oe.has(n)||r?i=document.createElementNS("http://www.w3.org/2000/svg",n):i=document.createElement(n);else i=document.createElement("div");return i},k=new WeakSet,U=function(n){return n instanceof HTMLElement||n instanceof SVGElement},v=new WeakSet,Y=function(n){const r=s(this,k,U).call(this,u(this,a));for(const i in n){const o=i;o==="class"&&r?s(this,m,H).call(this,n[o]):o==="style"&&r?s(this,N,X).call(this,n[o]):o==="events"&&r?s(this,x,O).call(this,n[o]):o==="attributes"&&r?s(this,A,_).call(this,n[o]):o==="children"?s(this,y,J).call(this,u(this,a),n[o]):o==="shadowChildren"?s(this,y,J).call(this,u(this,a)instanceof Element?u(this,a).shadowRoot||u(this,a):u(this,a),n[o]):o==="parent"&&s(this,B,te).call(this,n[o])}n!=null&&n.ref&&(typeof(n==null?void 0:n.ref)=="function"?n.ref(u(this,a)):n.ref.current=u(this,a))},m=new WeakSet,H=function(n){const r=u(this,a);if(n){if(typeof n=="string")r.classList.add(n);else if(Array.isArray(n))n.forEach(i=>{s(this,m,H).call(this,i)});else if(typeof n=="object")if(n instanceof d.Store)s(this,C,z).call(this,n);else for(const i in n){const o=n[i];o instanceof d.Store?s(this,L,Q).call(this,i,o):o?r.classList.add(i):r.classList.remove(i)}}else return},C=new WeakSet,z=function(n){const r=u(this,a);u(this,l).push(n.subscribe(({current:i,previous:o})=>{o&&[o].flat().forEach(f=>{f&&r.classList.remove(f)}),i&&[i].flat().forEach(f=>{f&&r.classList.add(f)})}))},L=new WeakSet,Q=function(n,r){const i=u(this,a);u(this,l).push(r.subscribe(({current:o})=>{o?i.classList.add(n):i.classList.remove(n)}))},N=new WeakSet,X=function(n){if(!n)return;const r=u(this,a);r.tagName==="style"||r.tagName==="STYLE"?s(this,p,V).call(this,n):s(this,T,Z).call(this,n)},T=new WeakSet,Z=function(n){for(const r in n){const i=r,o=n[i];o instanceof d.Store?u(this,l).push(o.subscribe(({current:f})=>{s(this,b,$).call(this,i,f)})):s(this,b,$).call(this,i,o)}},p=new WeakSet,V=function(n){const r=u(this,a);for(const i in n){const o=n[i];if(typeof o=="object"&&!(o instanceof d.Store))r.appendChild(new Text(`${i} {`)),s(this,p,V).call(this,o),r.appendChild(new Text("}"));else if(o instanceof d.Store){const f=new Text;u(this,l).push(o.subscribe(h=>{h.current?f.nodeValue=`${W.camelToKebab(i)}: ${h.current};`:f.nodeValue=""})),r.appendChild(f)}else r.appendChild(new Text(`${W.camelToKebab(i)}: ${o};`))}},b=new WeakSet,$=function(n,r){const i=u(this,a);n.includes("--")?r?i.style.setProperty(n,r):i.style.removeProperty(n):r?i.style[n]=r:i.style[n]=""},x=new WeakSet,O=function(n){if(!n)return;const r=u(this,a);for(const i in n){const o=i,f=n[o];typeof f=="object"?r.addEventListener(o,f.callback,f.options):typeof f=="function"&&r.addEventListener(o,f)}},A=new WeakSet,_=function(n){for(const r in n){const i=n[r];i instanceof d.Store?u(this,l).push(i.subscribe(({current:o})=>{s(this,g,D).call(this,r,o)})):s(this,g,D).call(this,r,i)}},g=new WeakSet,D=function(n,r){var o,f;const i=u(this,a);n in i&&!((f=(o=i.constructor)==null?void 0:o.observedAttributes)!=null&&f.includes(n))?r!=null&&(i[n]=r.toString()):r!=null&&i.setAttribute(n,r.toString())},y=new WeakSet,J=function(n,r){r&&(r=[r].flat(),r.forEach(i=>{if(i instanceof d.Store){const o=document.createElement("div");o.style.display="contents",n.appendChild(o),u(this,l).push(i.subscribe(({current:f})=>{s(this,M,ee).call(this,o,s(this,q,j).call(this,f),Array.from(o.childNodes))}))}else if(i instanceof w)u(this,l).push(i.destroy),n.appendChild(i.node);else{const o=s(this,S,R).call(this,i);o instanceof Node&&n.appendChild(o)}}))},q=new WeakSet,j=function(n){return[n].flat().map(i=>i instanceof w?i.node:s(this,S,R).call(this,i)).flat().filter(Boolean)},M=new WeakSet,ee=function(n,r,i){i.forEach((o,f)=>{if(f<r.length){const h=r[f];s(this,P,ne).call(this,o,h)||n.replaceChild(h,o)}else n.removeChild(o)});for(let o=i.length;o<r.length;o++)n.appendChild(r[o])},P=new WeakSet,ne=function(n,r){return r?r instanceof Node?n.isEqualNode(r):n.textContent===r.toString():!1},S=new WeakSet,R=function(n){if(n instanceof Node)return n;if(n!=null){const r=String(n);if(r.trim().startsWith("<")&&r.trim().endsWith(">")){const i=document.createElement("div");return i.innerHTML=r,i.firstElementChild}else return new Text(r)}else return},B=new WeakSet,te=function(n){if(!n)return;(n instanceof w?n.node:n).appendChild(u(this,a))};let t=w;function ue(...e){return new t(...e)}function se(e){return new t("a",e)}function fe(e){return new t("abbr",e)}function ce(e){return new t("address",e)}function ae(e){return new t("area",e)}function le(e){return new t("article",e)}function de(e){return new t("aside",e)}function he(e){return new t("audio",e)}function we(e){return new t("b",e)}function me(e){return new t("base",e)}function pe(e){return new t("bdi",e)}function be(e){return new t("bdo",e)}function ge(e){return new t("blockquote",e)}function ye(e){return new t("body",e)}function Se(e){return new t("br",e)}function Ee(e){return new t("button",e)}function ke(e){return new t("canvas",e)}function ve(e){return new t("caption",e)}function Ce(e){return new t("cite",e)}function Le(e){return new t("code",e)}function Ne(e){return new t("col",e)}function Te(e){return new t("colgroup",e)}function xe(e){return new t("data",e)}function Ae(e){return new t("datalist",e)}function qe(e){return new t("dd",e)}function Me(e){return new t("del",e)}function Pe(e){return new t("details",e)}function Be(e){return new t("dfn",e)}function Fe(e){return new t("dialog",e)}function Ge(e){return new t("div",e)}function He(e){return new t("dl",e)}function Ve(e){return new t("dt",e)}function $e(e){return new t("em",e)}function De(e){return new t("embed",e)}function Je(e){return new t("fieldset",e)}function Re(e){return new t("figcaption",e)}function Ke(e){return new t("figure",e)}function We(e){return new t("footer",e)}function Ie(e){return new t("form",e)}function Ue(e){return new t("h1",e)}function Ye(e){return new t("h2",e)}function ze(e){return new t("h3",e)}function Qe(e){return new t("h4",e)}function Xe(e){return new t("h5",e)}function Ze(e){return new t("h6",e)}function Oe(e){return new t("head",e)}function _e(e){return new t("header",e)}function je(e){return new t("hgroup",e)}function en(e){return new t("hr",e)}function nn(e){return new t("html",e)}function tn(e){return new t("i",e)}function rn(e){return new t("iframe",e)}function on(e){return new t("img",e)}function un(e){return new t("input",e)}function sn(e){return new t("ins",e)}function fn(e){return new t("kbd",e)}function cn(e){return new t("label",e)}function an(e){return new t("legend",e)}function ln(e){return new t("li",e)}function dn(e){return new t("link",e)}function hn(e){return new t("main",e)}function wn(e){return new t("map",e)}function mn(e){return new t("mark",e)}function pn(e){return new t("menu",e)}function bn(e){return new t("meta",e)}function gn(e){return new t("meter",e)}function yn(e){return new t("nav",e)}function Sn(e){return new t("noscript",e)}function En(e){return new t("object",e)}function kn(e){return new t("ol",e)}function vn(e){return new t("optgroup",e)}function Cn(e){return new t("option",e)}function Ln(e){return new t("output",e)}function Nn(e){return new t("p",e)}function Tn(e){return new t("picture",e)}function xn(e){return new t("pre",e)}function An(e){return new t("progress",e)}function qn(e){return new t("q",e)}function Mn(e){return new t("rp",e)}function Pn(e){return new t("rt",e)}function Bn(e){return new t("ruby",e)}function Fn(e){return new t("s",e)}function Gn(e){return new t("samp",e)}function Hn(e){return new t("script",e)}function Vn(e){return new t("search",e)}function $n(e){return new t("section",e)}function Dn(e){return new t("select",e)}function Jn(e){return new t("slot",e)}function Rn(e){return new t("small",e)}function Kn(e){return new t("source",e)}function Wn(e){return new t("span",e)}function In(e){return new t("strong",e)}function Un(e){return new t("style",{style:e})}function Yn(e){return new t("sub",e)}function zn(e){return new t("summary",e)}function Qn(e){return new t("sup",e)}function Xn(e){return new t("table",e)}function Zn(e){return new t("tbody",e)}function On(e){return new t("td",e)}function _n(e){return new t("template",e)}function jn(e){return new t("textarea",e)}function et(e){return new t("tfoot",e)}function nt(e){return new t("th",e)}function tt(e){return new t("thead",e)}function rt(e){return new t("time",e)}function it(e){return new t("title",e)}function ot(e){return new t("tr",e)}function ut(e){return new t("track",e)}function st(e){return new t("u",e)}function ft(e){return new t("ul",e)}function ct(e){return new t("var",e)}function at(e){return new t("video",e)}function lt(e){return new t("wbr",e)}function dt(e,n){return new t(e,n)}exports.ElementConstructor=t;exports.a=se;exports.abbr=fe;exports.address=ce;exports.area=ae;exports.article=le;exports.aside=de;exports.audio=he;exports.b=we;exports.base=me;exports.bdi=pe;exports.bdo=be;exports.blockquote=ge;exports.body=ye;exports.br=Se;exports.button=Ee;exports.canvas=ke;exports.caption=ve;exports.cite=Ce;exports.code=Le;exports.col=Ne;exports.colgroup=Te;exports.custom=dt;exports.data=xe;exports.datalist=Ae;exports.dd=qe;exports.del=Me;exports.details=Pe;exports.dfn=Be;exports.dialog=Fe;exports.div=Ge;exports.dl=He;exports.dt=Ve;exports.element=ue;exports.em=$e;exports.embed=De;exports.fieldset=Je;exports.figcaption=Re;exports.figure=Ke;exports.footer=We;exports.form=Ie;exports.h1=Ue;exports.h2=Ye;exports.h3=ze;exports.h4=Qe;exports.h5=Xe;exports.h6=Ze;exports.head=Oe;exports.header=_e;exports.hgroup=je;exports.hr=en;exports.html=nn;exports.htmlVar=ct;exports.i=tn;exports.iframe=rn;exports.img=on;exports.input=un;exports.ins=sn;exports.kbd=fn;exports.label=cn;exports.legend=an;exports.li=ln;exports.link=dn;exports.main=hn;exports.map=wn;exports.mark=mn;exports.menu=pn;exports.meta=bn;exports.meter=gn;exports.nav=yn;exports.noscript=Sn;exports.object=En;exports.ol=kn;exports.optgroup=vn;exports.option=Cn;exports.output=Ln;exports.p=Nn;exports.picture=Tn;exports.pre=xn;exports.progress=An;exports.q=qn;exports.rp=Mn;exports.rt=Pn;exports.ruby=Bn;exports.s=Fn;exports.samp=Gn;exports.script=Hn;exports.search=Vn;exports.section=$n;exports.select=Dn;exports.slot=Jn;exports.small=Rn;exports.source=Kn;exports.span=Wn;exports.strong=In;exports.style=Un;exports.sub=Yn;exports.summary=zn;exports.sup=Qn;exports.table=Xn;exports.tbody=Zn;exports.td=On;exports.template=_n;exports.textarea=jn;exports.tfoot=et;exports.th=nt;exports.thead=tt;exports.time=rt;exports.title=it;exports.tr=ot;exports.track=ut;exports.u=st;exports.ul=ft;exports.video=at;exports.wbr=lt;
|