@vue-jsx-vapor/runtime 3.0.2 → 3.0.4
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/{component-HwEQ3NVf.cjs → component-DGRkjdbo.cjs} +15 -12
- package/dist/{component-BwobbDXG.js → component-pVAwQvtd.js} +15 -12
- package/dist/component.cjs +1 -1
- package/dist/component.js +1 -1
- package/dist/{h-BSBmQ5xG.cjs → h-BIh3D_lt.cjs} +1 -1
- package/dist/{h-H2pnsSY9.js → h-CJ77uHHG.js} +1 -1
- package/dist/h.cjs +2 -2
- package/dist/h.js +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/{jsx-BPKSHIm5.d.ts → jsx-DcR6l_MD.d.ts} +2 -2
- package/dist/{jsx-DyFytwAs.d.cts → jsx-fC1dHUHK.d.cts} +2 -2
- package/dist/jsx.d.cts +1 -1
- package/dist/jsx.d.ts +1 -1
- package/package.json +1 -1
|
@@ -24,19 +24,22 @@ const createProxyComponent = (createComponent$1, type, props, ...args) => {
|
|
|
24
24
|
props = null;
|
|
25
25
|
}
|
|
26
26
|
const i = require_helpers.getCurrentInstance();
|
|
27
|
-
if (
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
if (!type.__proxyed) {
|
|
28
|
+
if (typeof type === "function") type = new Proxy(type, {
|
|
29
|
+
apply(target, ctx, args$1) {
|
|
30
|
+
if (typeof target.__setup === "function") target.__setup.apply(ctx, args$1);
|
|
31
|
+
return require_block.normalizeNode(Reflect.apply(target, ctx, args$1));
|
|
32
|
+
},
|
|
33
|
+
get(target, p, receiver) {
|
|
34
|
+
if ((i && i.appContext).vapor && p === "__vapor") return true;
|
|
35
|
+
return Reflect.get(target, p, receiver);
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
else if (type.__vapor && type.setup) type.setup = new Proxy(type.setup, { apply(target, ctx, args$1) {
|
|
30
39
|
return require_block.normalizeNode(Reflect.apply(target, ctx, args$1));
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
return Reflect.get(target, p, receiver);
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
else if (type.__vapor && type.setup) type.setup = new Proxy(type.setup, { apply(target, ctx, args$1) {
|
|
38
|
-
return require_block.normalizeNode(Reflect.apply(target, ctx, args$1));
|
|
39
|
-
} });
|
|
40
|
+
} });
|
|
41
|
+
type.__proxyed = true;
|
|
42
|
+
}
|
|
40
43
|
return createComponent$1(type, props, ...args);
|
|
41
44
|
};
|
|
42
45
|
|
|
@@ -22,19 +22,22 @@ const createProxyComponent = (createComponent$2, type, props, ...args) => {
|
|
|
22
22
|
props = null;
|
|
23
23
|
}
|
|
24
24
|
const i = getCurrentInstance$1();
|
|
25
|
-
if (
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
if (!type.__proxyed) {
|
|
26
|
+
if (typeof type === "function") type = new Proxy(type, {
|
|
27
|
+
apply(target, ctx, args$1) {
|
|
28
|
+
if (typeof target.__setup === "function") target.__setup.apply(ctx, args$1);
|
|
29
|
+
return normalizeNode(Reflect.apply(target, ctx, args$1));
|
|
30
|
+
},
|
|
31
|
+
get(target, p, receiver) {
|
|
32
|
+
if ((i && i.appContext).vapor && p === "__vapor") return true;
|
|
33
|
+
return Reflect.get(target, p, receiver);
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
else if (type.__vapor && type.setup) type.setup = new Proxy(type.setup, { apply(target, ctx, args$1) {
|
|
28
37
|
return normalizeNode(Reflect.apply(target, ctx, args$1));
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
return Reflect.get(target, p, receiver);
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
else if (type.__vapor && type.setup) type.setup = new Proxy(type.setup, { apply(target, ctx, args$1) {
|
|
36
|
-
return normalizeNode(Reflect.apply(target, ctx, args$1));
|
|
37
|
-
} });
|
|
38
|
+
} });
|
|
39
|
+
type.__proxyed = true;
|
|
40
|
+
}
|
|
38
41
|
return createComponent$2(type, props, ...args);
|
|
39
42
|
};
|
|
40
43
|
|
package/dist/component.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require('./block-sF5z9ijJ.cjs');
|
|
2
2
|
require('./helpers-Ie9fa1JX.cjs');
|
|
3
|
-
const require_component = require('./component-
|
|
3
|
+
const require_component = require('./component-DGRkjdbo.cjs');
|
|
4
4
|
|
|
5
5
|
exports.createComponent = require_component.createComponent;
|
|
6
6
|
exports.createComponentWithFallback = require_component.createComponentWithFallback;
|
package/dist/component.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "./block-BZYKbYTH.js";
|
|
2
2
|
import "./helpers-C6cGsX4q.js";
|
|
3
|
-
import { n as createComponentWithFallback, t as createComponent } from "./component-
|
|
3
|
+
import { n as createComponentWithFallback, t as createComponent } from "./component-pVAwQvtd.js";
|
|
4
4
|
|
|
5
5
|
export { createComponent, createComponentWithFallback };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as isBlock } from "./block-BZYKbYTH.js";
|
|
2
|
-
import { n as createComponentWithFallback } from "./component-
|
|
2
|
+
import { n as createComponentWithFallback } from "./component-pVAwQvtd.js";
|
|
3
3
|
|
|
4
4
|
//#region src/h.ts
|
|
5
5
|
function h(type, propsOrChildren, children) {
|
package/dist/h.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require('./block-sF5z9ijJ.cjs');
|
|
2
2
|
require('./helpers-Ie9fa1JX.cjs');
|
|
3
|
-
require('./component-
|
|
4
|
-
const require_h = require('./h-
|
|
3
|
+
require('./component-DGRkjdbo.cjs');
|
|
4
|
+
const require_h = require('./h-BIh3D_lt.cjs');
|
|
5
5
|
|
|
6
6
|
exports.h = require_h.h;
|
package/dist/h.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const require_chunk = require('./chunk-CUT6urMc.cjs');
|
|
2
2
|
const require_block = require('./block-sF5z9ijJ.cjs');
|
|
3
3
|
const require_helpers = require('./helpers-Ie9fa1JX.cjs');
|
|
4
|
-
const require_component = require('./component-
|
|
5
|
-
const require_h = require('./h-
|
|
4
|
+
const require_component = require('./component-DGRkjdbo.cjs');
|
|
5
|
+
const require_h = require('./h-BIh3D_lt.cjs');
|
|
6
6
|
require('./jsx-CTAfwhvm.cjs');
|
|
7
7
|
const require_node = require('./node-B6xwqC0_.cjs');
|
|
8
8
|
const require_vue = require('./vue-DN14pNs9.cjs');
|
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ import { i as normalizeNode, n as NodeChild, r as isBlock, t as NodeArrayChildre
|
|
|
2
2
|
import { n as createComponentWithFallback, t as createComponent } from "./component-C13Oo-p0.cjs";
|
|
3
3
|
import { t as h } from "./h-BiyYwTqr.cjs";
|
|
4
4
|
import { n as useFullProps, r as useProps, t as getCurrentInstance } from "./helpers-CABYlIBX.cjs";
|
|
5
|
-
import { $ as MapHTMLAttributes, A as EventHandler, At as TransitionEvent, B as HtmlHTMLAttributes, C as DataHTMLAttributes, Ct as SyntheticEvent, D as DragEvent, Dt as ThHTMLAttributes, E as DialogHTMLAttributes, Et as TextareaHTMLAttributes, F as FocusEventHandler, Ft as WebViewHTMLAttributes, G as InsHTMLAttributes, H as ImgHTMLAttributes, I as FormEvent, It as WheelEvent, J as KeyboardEventHandler, K as IntrinsicElementAttributes, L as FormEventHandler, Lt as WheelEventHandler, M as Events, Mt as UIEvent, N as FieldsetHTMLAttributes, Nt as UIEventHandler, O as DragEventHandler, Ot as TimeHTMLAttributes, P as FocusEvent, Pt as VideoHTMLAttributes, Q as LinkHTMLAttributes, R as FormHTMLAttributes, S as CompositionEventHandler, St as StyleValue, T as DetailsHTMLAttributes, Tt as TdHTMLAttributes, U as InputHTMLAttributes, V as IframeHTMLAttributes, W as InputTypeHTMLAttribute, X as LabelHTMLAttributes, Y as KeygenHTMLAttributes, Z as LiHTMLAttributes, _ as ClipboardEvent, _t as SVGAttributes, a as AreaHTMLAttributes, at as MouseEvent, b as ColgroupHTMLAttributes, bt as SourceHTMLAttributes, c as BaseEventHandler, ct as ObjectHTMLAttributes, d as BlockquoteHTMLAttributes, dt as OptionHTMLAttributes, et as MediaHTMLAttributes, f as ButtonHTMLAttributes, ft as OutputHTMLAttributes, g as ChangeEventHandler, gt as ReservedProps, h as ChangeEvent, ht as QuoteHTMLAttributes, i as AnimationEventHandler, it as ModifierKey, j as EventHandlers, jt as TransitionEventHandler, k as EmbedHTMLAttributes, kt as TrackHTMLAttributes, l as BaseHTMLAttributes, lt as OlHTMLAttributes, m as CanvasHTMLAttributes, mt as ProgressHTMLAttributes, n as AnchorHTMLAttributes, nt as MetaHTMLAttributes, o as AriaAttributes, ot as MouseEventHandler, p as CSSProperties, pt as ParamHTMLAttributes, q as KeyboardEvent, r as AnimationEvent, rt as MeterHTMLAttributes, s as AudioHTMLAttributes, st as NativeElements, t as AbstractView, tt as MenuHTMLAttributes, u as BaseSyntheticEvent, ut as OptgroupHTMLAttributes, v as ClipboardEventHandler, vt as ScriptHTMLAttributes, w as DelHTMLAttributes, wt as TableHTMLAttributes, x as CompositionEvent, xt as StyleHTMLAttributes, y as ColHTMLAttributes, yt as SelectHTMLAttributes, z as HTMLAttributes } from "./jsx-
|
|
5
|
+
import { $ as MapHTMLAttributes, A as EventHandler, At as TransitionEvent, B as HtmlHTMLAttributes, C as DataHTMLAttributes, Ct as SyntheticEvent, D as DragEvent, Dt as ThHTMLAttributes, E as DialogHTMLAttributes, Et as TextareaHTMLAttributes, F as FocusEventHandler, Ft as WebViewHTMLAttributes, G as InsHTMLAttributes, H as ImgHTMLAttributes, I as FormEvent, It as WheelEvent, J as KeyboardEventHandler, K as IntrinsicElementAttributes, L as FormEventHandler, Lt as WheelEventHandler, M as Events, Mt as UIEvent, N as FieldsetHTMLAttributes, Nt as UIEventHandler, O as DragEventHandler, Ot as TimeHTMLAttributes, P as FocusEvent, Pt as VideoHTMLAttributes, Q as LinkHTMLAttributes, R as FormHTMLAttributes, S as CompositionEventHandler, St as StyleValue, T as DetailsHTMLAttributes, Tt as TdHTMLAttributes, U as InputHTMLAttributes, V as IframeHTMLAttributes, W as InputTypeHTMLAttribute, X as LabelHTMLAttributes, Y as KeygenHTMLAttributes, Z as LiHTMLAttributes, _ as ClipboardEvent, _t as SVGAttributes, a as AreaHTMLAttributes, at as MouseEvent, b as ColgroupHTMLAttributes, bt as SourceHTMLAttributes, c as BaseEventHandler, ct as ObjectHTMLAttributes, d as BlockquoteHTMLAttributes, dt as OptionHTMLAttributes, et as MediaHTMLAttributes, f as ButtonHTMLAttributes, ft as OutputHTMLAttributes, g as ChangeEventHandler, gt as ReservedProps, h as ChangeEvent, ht as QuoteHTMLAttributes, i as AnimationEventHandler, it as ModifierKey, j as EventHandlers, jt as TransitionEventHandler, k as EmbedHTMLAttributes, kt as TrackHTMLAttributes, l as BaseHTMLAttributes, lt as OlHTMLAttributes, m as CanvasHTMLAttributes, mt as ProgressHTMLAttributes, n as AnchorHTMLAttributes, nt as MetaHTMLAttributes, o as AriaAttributes, ot as MouseEventHandler, p as CSSProperties, pt as ParamHTMLAttributes, q as KeyboardEvent, r as AnimationEvent, rt as MeterHTMLAttributes, s as AudioHTMLAttributes, st as NativeElements, t as AbstractView, tt as MenuHTMLAttributes, u as BaseSyntheticEvent, ut as OptgroupHTMLAttributes, v as ClipboardEventHandler, vt as ScriptHTMLAttributes, w as DelHTMLAttributes, wt as TableHTMLAttributes, x as CompositionEvent, xt as StyleHTMLAttributes, y as ColHTMLAttributes, yt as SelectHTMLAttributes, z as HTMLAttributes } from "./jsx-fC1dHUHK.cjs";
|
|
6
6
|
import { n as setNodes, t as createNodes } from "./node-Dj7u02ol.cjs";
|
|
7
7
|
import { a as RenderReturn, c as VaporComponentInstance, d as defineVaporComponent, i as ObjectVaporComponent, l as VaporComponentInstanceConstructor, n as DefineVaporSetupFnComponent, o as TypeEmitsToOptions, r as FunctionalVaporComponent, s as VaporComponent, t as DefineVaporComponent, u as VaporPublicProps } from "./vue-B5aczwqa.cjs";
|
|
8
8
|
import { t as useVdomCache } from "./vdom-C1t-F-eP.cjs";
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { i as normalizeNode, n as NodeChild, r as isBlock, t as NodeArrayChildre
|
|
|
2
2
|
import { n as createComponentWithFallback, t as createComponent } from "./component-YLvTjTHV.js";
|
|
3
3
|
import { t as h } from "./h-CRAb05GU.js";
|
|
4
4
|
import { n as useFullProps, r as useProps, t as getCurrentInstance } from "./helpers-B37sqEig.js";
|
|
5
|
-
import { $ as MapHTMLAttributes, A as EventHandler, At as TransitionEvent, B as HtmlHTMLAttributes, C as DataHTMLAttributes, Ct as SyntheticEvent, D as DragEvent, Dt as ThHTMLAttributes, E as DialogHTMLAttributes, Et as TextareaHTMLAttributes, F as FocusEventHandler, Ft as WebViewHTMLAttributes, G as InsHTMLAttributes, H as ImgHTMLAttributes, I as FormEvent, It as WheelEvent, J as KeyboardEventHandler, K as IntrinsicElementAttributes, L as FormEventHandler, Lt as WheelEventHandler, M as Events, Mt as UIEvent, N as FieldsetHTMLAttributes, Nt as UIEventHandler, O as DragEventHandler, Ot as TimeHTMLAttributes, P as FocusEvent, Pt as VideoHTMLAttributes, Q as LinkHTMLAttributes, R as FormHTMLAttributes, S as CompositionEventHandler, St as StyleValue, T as DetailsHTMLAttributes, Tt as TdHTMLAttributes, U as InputHTMLAttributes, V as IframeHTMLAttributes, W as InputTypeHTMLAttribute, X as LabelHTMLAttributes, Y as KeygenHTMLAttributes, Z as LiHTMLAttributes, _ as ClipboardEvent, _t as SVGAttributes, a as AreaHTMLAttributes, at as MouseEvent, b as ColgroupHTMLAttributes, bt as SourceHTMLAttributes, c as BaseEventHandler, ct as ObjectHTMLAttributes, d as BlockquoteHTMLAttributes, dt as OptionHTMLAttributes, et as MediaHTMLAttributes, f as ButtonHTMLAttributes, ft as OutputHTMLAttributes, g as ChangeEventHandler, gt as ReservedProps, h as ChangeEvent, ht as QuoteHTMLAttributes, i as AnimationEventHandler, it as ModifierKey, j as EventHandlers, jt as TransitionEventHandler, k as EmbedHTMLAttributes, kt as TrackHTMLAttributes, l as BaseHTMLAttributes, lt as OlHTMLAttributes, m as CanvasHTMLAttributes, mt as ProgressHTMLAttributes, n as AnchorHTMLAttributes, nt as MetaHTMLAttributes, o as AriaAttributes, ot as MouseEventHandler, p as CSSProperties, pt as ParamHTMLAttributes, q as KeyboardEvent, r as AnimationEvent, rt as MeterHTMLAttributes, s as AudioHTMLAttributes, st as NativeElements, t as AbstractView, tt as MenuHTMLAttributes, u as BaseSyntheticEvent, ut as OptgroupHTMLAttributes, v as ClipboardEventHandler, vt as ScriptHTMLAttributes, w as DelHTMLAttributes, wt as TableHTMLAttributes, x as CompositionEvent, xt as StyleHTMLAttributes, y as ColHTMLAttributes, yt as SelectHTMLAttributes, z as HTMLAttributes } from "./jsx-
|
|
5
|
+
import { $ as MapHTMLAttributes, A as EventHandler, At as TransitionEvent, B as HtmlHTMLAttributes, C as DataHTMLAttributes, Ct as SyntheticEvent, D as DragEvent, Dt as ThHTMLAttributes, E as DialogHTMLAttributes, Et as TextareaHTMLAttributes, F as FocusEventHandler, Ft as WebViewHTMLAttributes, G as InsHTMLAttributes, H as ImgHTMLAttributes, I as FormEvent, It as WheelEvent, J as KeyboardEventHandler, K as IntrinsicElementAttributes, L as FormEventHandler, Lt as WheelEventHandler, M as Events, Mt as UIEvent, N as FieldsetHTMLAttributes, Nt as UIEventHandler, O as DragEventHandler, Ot as TimeHTMLAttributes, P as FocusEvent, Pt as VideoHTMLAttributes, Q as LinkHTMLAttributes, R as FormHTMLAttributes, S as CompositionEventHandler, St as StyleValue, T as DetailsHTMLAttributes, Tt as TdHTMLAttributes, U as InputHTMLAttributes, V as IframeHTMLAttributes, W as InputTypeHTMLAttribute, X as LabelHTMLAttributes, Y as KeygenHTMLAttributes, Z as LiHTMLAttributes, _ as ClipboardEvent, _t as SVGAttributes, a as AreaHTMLAttributes, at as MouseEvent, b as ColgroupHTMLAttributes, bt as SourceHTMLAttributes, c as BaseEventHandler, ct as ObjectHTMLAttributes, d as BlockquoteHTMLAttributes, dt as OptionHTMLAttributes, et as MediaHTMLAttributes, f as ButtonHTMLAttributes, ft as OutputHTMLAttributes, g as ChangeEventHandler, gt as ReservedProps, h as ChangeEvent, ht as QuoteHTMLAttributes, i as AnimationEventHandler, it as ModifierKey, j as EventHandlers, jt as TransitionEventHandler, k as EmbedHTMLAttributes, kt as TrackHTMLAttributes, l as BaseHTMLAttributes, lt as OlHTMLAttributes, m as CanvasHTMLAttributes, mt as ProgressHTMLAttributes, n as AnchorHTMLAttributes, nt as MetaHTMLAttributes, o as AriaAttributes, ot as MouseEventHandler, p as CSSProperties, pt as ParamHTMLAttributes, q as KeyboardEvent, r as AnimationEvent, rt as MeterHTMLAttributes, s as AudioHTMLAttributes, st as NativeElements, t as AbstractView, tt as MenuHTMLAttributes, u as BaseSyntheticEvent, ut as OptgroupHTMLAttributes, v as ClipboardEventHandler, vt as ScriptHTMLAttributes, w as DelHTMLAttributes, wt as TableHTMLAttributes, x as CompositionEvent, xt as StyleHTMLAttributes, y as ColHTMLAttributes, yt as SelectHTMLAttributes, z as HTMLAttributes } from "./jsx-DcR6l_MD.js";
|
|
6
6
|
import { n as setNodes, t as createNodes } from "./node-6h8YP74l.js";
|
|
7
7
|
import { a as RenderReturn, c as VaporComponentInstance, d as defineVaporComponent, i as ObjectVaporComponent, l as VaporComponentInstanceConstructor, n as DefineVaporSetupFnComponent, o as TypeEmitsToOptions, r as FunctionalVaporComponent, s as VaporComponent, t as DefineVaporComponent, u as VaporPublicProps } from "./vue-DFs5XXCh.js";
|
|
8
8
|
import { t as useVdomCache } from "./vdom-CBgMLCQr.js";
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { n as normalizeNode, t as isBlock } from "./block-BZYKbYTH.js";
|
|
2
2
|
import { n as useFullProps, r as useProps, t as getCurrentInstance } from "./helpers-C6cGsX4q.js";
|
|
3
|
-
import { n as createComponentWithFallback, t as createComponent } from "./component-
|
|
4
|
-
import { t as h } from "./h-
|
|
3
|
+
import { n as createComponentWithFallback, t as createComponent } from "./component-pVAwQvtd.js";
|
|
4
|
+
import { t as h } from "./h-CJ77uHHG.js";
|
|
5
5
|
import "./jsx-C5yte_hi.js";
|
|
6
6
|
import { n as setNodes, t as createNodes } from "./node-C-c1h4g5.js";
|
|
7
7
|
import { t as defineVaporComponent } from "./vue-BJLej53a.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vue1 from "vue";
|
|
2
2
|
import * as CSS from "csstype";
|
|
3
3
|
|
|
4
4
|
//#region src/jsx.d.ts
|
|
@@ -1191,7 +1191,7 @@ interface Events<T = Element> {
|
|
|
1191
1191
|
onTransitionstart: TransitionEventHandler<T>;
|
|
1192
1192
|
}
|
|
1193
1193
|
type EventHandlers<E> = { [K in keyof E]?: E[K] extends ((...args: any) => any) ? E[K] : (payload: E[K]) => void };
|
|
1194
|
-
type _ReservedProps =
|
|
1194
|
+
type _ReservedProps = vue1.ReservedProps;
|
|
1195
1195
|
interface ReservedProps$1 extends _ReservedProps {}
|
|
1196
1196
|
type NativeElements = { [K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps$1 };
|
|
1197
1197
|
interface BaseSyntheticEvent<E = object, C = unknown, T = unknown> {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vue1 from "vue";
|
|
2
2
|
import * as CSS from "csstype";
|
|
3
3
|
|
|
4
4
|
//#region src/jsx.d.ts
|
|
@@ -1191,7 +1191,7 @@ interface Events<T = Element> {
|
|
|
1191
1191
|
onTransitionstart: TransitionEventHandler<T>;
|
|
1192
1192
|
}
|
|
1193
1193
|
type EventHandlers<E> = { [K in keyof E]?: E[K] extends ((...args: any) => any) ? E[K] : (payload: E[K]) => void };
|
|
1194
|
-
type _ReservedProps =
|
|
1194
|
+
type _ReservedProps = vue1.ReservedProps;
|
|
1195
1195
|
interface ReservedProps$1 extends _ReservedProps {}
|
|
1196
1196
|
type NativeElements = { [K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps$1 };
|
|
1197
1197
|
interface BaseSyntheticEvent<E = object, C = unknown, T = unknown> {
|
package/dist/jsx.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as MapHTMLAttributes, A as EventHandler, At as TransitionEvent, B as HtmlHTMLAttributes, C as DataHTMLAttributes, Ct as SyntheticEvent, D as DragEvent, Dt as ThHTMLAttributes, E as DialogHTMLAttributes, Et as TextareaHTMLAttributes, F as FocusEventHandler, Ft as WebViewHTMLAttributes, G as InsHTMLAttributes, H as ImgHTMLAttributes, I as FormEvent, It as WheelEvent, J as KeyboardEventHandler, K as IntrinsicElementAttributes, L as FormEventHandler, Lt as WheelEventHandler, M as Events, Mt as UIEvent, N as FieldsetHTMLAttributes, Nt as UIEventHandler, O as DragEventHandler, Ot as TimeHTMLAttributes, P as FocusEvent, Pt as VideoHTMLAttributes, Q as LinkHTMLAttributes, R as FormHTMLAttributes, S as CompositionEventHandler, St as StyleValue, T as DetailsHTMLAttributes, Tt as TdHTMLAttributes, U as InputHTMLAttributes, V as IframeHTMLAttributes, W as InputTypeHTMLAttribute, X as LabelHTMLAttributes, Y as KeygenHTMLAttributes, Z as LiHTMLAttributes, _ as ClipboardEvent, _t as SVGAttributes, a as AreaHTMLAttributes, at as MouseEvent, b as ColgroupHTMLAttributes, bt as SourceHTMLAttributes, c as BaseEventHandler, ct as ObjectHTMLAttributes, d as BlockquoteHTMLAttributes, dt as OptionHTMLAttributes, et as MediaHTMLAttributes, f as ButtonHTMLAttributes, ft as OutputHTMLAttributes, g as ChangeEventHandler, gt as ReservedProps, h as ChangeEvent, ht as QuoteHTMLAttributes, i as AnimationEventHandler, it as ModifierKey, j as EventHandlers, jt as TransitionEventHandler, k as EmbedHTMLAttributes, kt as TrackHTMLAttributes, l as BaseHTMLAttributes, lt as OlHTMLAttributes, m as CanvasHTMLAttributes, mt as ProgressHTMLAttributes, n as AnchorHTMLAttributes, nt as MetaHTMLAttributes, o as AriaAttributes, ot as MouseEventHandler, p as CSSProperties, pt as ParamHTMLAttributes, q as KeyboardEvent, r as AnimationEvent, rt as MeterHTMLAttributes, s as AudioHTMLAttributes, st as NativeElements, t as AbstractView, tt as MenuHTMLAttributes, u as BaseSyntheticEvent, ut as OptgroupHTMLAttributes, v as ClipboardEventHandler, vt as ScriptHTMLAttributes, w as DelHTMLAttributes, wt as TableHTMLAttributes, x as CompositionEvent, xt as StyleHTMLAttributes, y as ColHTMLAttributes, yt as SelectHTMLAttributes, z as HTMLAttributes } from "./jsx-
|
|
1
|
+
import { $ as MapHTMLAttributes, A as EventHandler, At as TransitionEvent, B as HtmlHTMLAttributes, C as DataHTMLAttributes, Ct as SyntheticEvent, D as DragEvent, Dt as ThHTMLAttributes, E as DialogHTMLAttributes, Et as TextareaHTMLAttributes, F as FocusEventHandler, Ft as WebViewHTMLAttributes, G as InsHTMLAttributes, H as ImgHTMLAttributes, I as FormEvent, It as WheelEvent, J as KeyboardEventHandler, K as IntrinsicElementAttributes, L as FormEventHandler, Lt as WheelEventHandler, M as Events, Mt as UIEvent, N as FieldsetHTMLAttributes, Nt as UIEventHandler, O as DragEventHandler, Ot as TimeHTMLAttributes, P as FocusEvent, Pt as VideoHTMLAttributes, Q as LinkHTMLAttributes, R as FormHTMLAttributes, S as CompositionEventHandler, St as StyleValue, T as DetailsHTMLAttributes, Tt as TdHTMLAttributes, U as InputHTMLAttributes, V as IframeHTMLAttributes, W as InputTypeHTMLAttribute, X as LabelHTMLAttributes, Y as KeygenHTMLAttributes, Z as LiHTMLAttributes, _ as ClipboardEvent, _t as SVGAttributes, a as AreaHTMLAttributes, at as MouseEvent, b as ColgroupHTMLAttributes, bt as SourceHTMLAttributes, c as BaseEventHandler, ct as ObjectHTMLAttributes, d as BlockquoteHTMLAttributes, dt as OptionHTMLAttributes, et as MediaHTMLAttributes, f as ButtonHTMLAttributes, ft as OutputHTMLAttributes, g as ChangeEventHandler, gt as ReservedProps, h as ChangeEvent, ht as QuoteHTMLAttributes, i as AnimationEventHandler, it as ModifierKey, j as EventHandlers, jt as TransitionEventHandler, k as EmbedHTMLAttributes, kt as TrackHTMLAttributes, l as BaseHTMLAttributes, lt as OlHTMLAttributes, m as CanvasHTMLAttributes, mt as ProgressHTMLAttributes, n as AnchorHTMLAttributes, nt as MetaHTMLAttributes, o as AriaAttributes, ot as MouseEventHandler, p as CSSProperties, pt as ParamHTMLAttributes, q as KeyboardEvent, r as AnimationEvent, rt as MeterHTMLAttributes, s as AudioHTMLAttributes, st as NativeElements, t as AbstractView, tt as MenuHTMLAttributes, u as BaseSyntheticEvent, ut as OptgroupHTMLAttributes, v as ClipboardEventHandler, vt as ScriptHTMLAttributes, w as DelHTMLAttributes, wt as TableHTMLAttributes, x as CompositionEvent, xt as StyleHTMLAttributes, y as ColHTMLAttributes, yt as SelectHTMLAttributes, z as HTMLAttributes } from "./jsx-fC1dHUHK.cjs";
|
|
2
2
|
export { AbstractView, AnchorHTMLAttributes, AnimationEvent, AnimationEventHandler, AreaHTMLAttributes, AriaAttributes, AudioHTMLAttributes, BaseEventHandler, BaseHTMLAttributes, BaseSyntheticEvent, BlockquoteHTMLAttributes, ButtonHTMLAttributes, CSSProperties, CanvasHTMLAttributes, ChangeEvent, ChangeEventHandler, ClipboardEvent, ClipboardEventHandler, ColHTMLAttributes, ColgroupHTMLAttributes, CompositionEvent, CompositionEventHandler, DataHTMLAttributes, DelHTMLAttributes, DetailsHTMLAttributes, DialogHTMLAttributes, DragEvent, DragEventHandler, EmbedHTMLAttributes, EventHandler, EventHandlers, Events, FieldsetHTMLAttributes, FocusEvent, FocusEventHandler, FormEvent, FormEventHandler, FormHTMLAttributes, HTMLAttributes, HtmlHTMLAttributes, IframeHTMLAttributes, ImgHTMLAttributes, InputHTMLAttributes, InputTypeHTMLAttribute, InsHTMLAttributes, IntrinsicElementAttributes, KeyboardEvent, KeyboardEventHandler, KeygenHTMLAttributes, LabelHTMLAttributes, LiHTMLAttributes, LinkHTMLAttributes, MapHTMLAttributes, MediaHTMLAttributes, MenuHTMLAttributes, MetaHTMLAttributes, MeterHTMLAttributes, ModifierKey, MouseEvent, MouseEventHandler, NativeElements, ObjectHTMLAttributes, OlHTMLAttributes, OptgroupHTMLAttributes, OptionHTMLAttributes, OutputHTMLAttributes, ParamHTMLAttributes, ProgressHTMLAttributes, QuoteHTMLAttributes, ReservedProps, SVGAttributes, ScriptHTMLAttributes, SelectHTMLAttributes, SourceHTMLAttributes, StyleHTMLAttributes, StyleValue, SyntheticEvent, TableHTMLAttributes, TdHTMLAttributes, TextareaHTMLAttributes, ThHTMLAttributes, TimeHTMLAttributes, TrackHTMLAttributes, TransitionEvent, TransitionEventHandler, UIEvent, UIEventHandler, VideoHTMLAttributes, WebViewHTMLAttributes, WheelEvent, WheelEventHandler };
|
package/dist/jsx.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as MapHTMLAttributes, A as EventHandler, At as TransitionEvent, B as HtmlHTMLAttributes, C as DataHTMLAttributes, Ct as SyntheticEvent, D as DragEvent, Dt as ThHTMLAttributes, E as DialogHTMLAttributes, Et as TextareaHTMLAttributes, F as FocusEventHandler, Ft as WebViewHTMLAttributes, G as InsHTMLAttributes, H as ImgHTMLAttributes, I as FormEvent, It as WheelEvent, J as KeyboardEventHandler, K as IntrinsicElementAttributes, L as FormEventHandler, Lt as WheelEventHandler, M as Events, Mt as UIEvent, N as FieldsetHTMLAttributes, Nt as UIEventHandler, O as DragEventHandler, Ot as TimeHTMLAttributes, P as FocusEvent, Pt as VideoHTMLAttributes, Q as LinkHTMLAttributes, R as FormHTMLAttributes, S as CompositionEventHandler, St as StyleValue, T as DetailsHTMLAttributes, Tt as TdHTMLAttributes, U as InputHTMLAttributes, V as IframeHTMLAttributes, W as InputTypeHTMLAttribute, X as LabelHTMLAttributes, Y as KeygenHTMLAttributes, Z as LiHTMLAttributes, _ as ClipboardEvent, _t as SVGAttributes, a as AreaHTMLAttributes, at as MouseEvent, b as ColgroupHTMLAttributes, bt as SourceHTMLAttributes, c as BaseEventHandler, ct as ObjectHTMLAttributes, d as BlockquoteHTMLAttributes, dt as OptionHTMLAttributes, et as MediaHTMLAttributes, f as ButtonHTMLAttributes, ft as OutputHTMLAttributes, g as ChangeEventHandler, gt as ReservedProps, h as ChangeEvent, ht as QuoteHTMLAttributes, i as AnimationEventHandler, it as ModifierKey, j as EventHandlers, jt as TransitionEventHandler, k as EmbedHTMLAttributes, kt as TrackHTMLAttributes, l as BaseHTMLAttributes, lt as OlHTMLAttributes, m as CanvasHTMLAttributes, mt as ProgressHTMLAttributes, n as AnchorHTMLAttributes, nt as MetaHTMLAttributes, o as AriaAttributes, ot as MouseEventHandler, p as CSSProperties, pt as ParamHTMLAttributes, q as KeyboardEvent, r as AnimationEvent, rt as MeterHTMLAttributes, s as AudioHTMLAttributes, st as NativeElements, t as AbstractView, tt as MenuHTMLAttributes, u as BaseSyntheticEvent, ut as OptgroupHTMLAttributes, v as ClipboardEventHandler, vt as ScriptHTMLAttributes, w as DelHTMLAttributes, wt as TableHTMLAttributes, x as CompositionEvent, xt as StyleHTMLAttributes, y as ColHTMLAttributes, yt as SelectHTMLAttributes, z as HTMLAttributes } from "./jsx-
|
|
1
|
+
import { $ as MapHTMLAttributes, A as EventHandler, At as TransitionEvent, B as HtmlHTMLAttributes, C as DataHTMLAttributes, Ct as SyntheticEvent, D as DragEvent, Dt as ThHTMLAttributes, E as DialogHTMLAttributes, Et as TextareaHTMLAttributes, F as FocusEventHandler, Ft as WebViewHTMLAttributes, G as InsHTMLAttributes, H as ImgHTMLAttributes, I as FormEvent, It as WheelEvent, J as KeyboardEventHandler, K as IntrinsicElementAttributes, L as FormEventHandler, Lt as WheelEventHandler, M as Events, Mt as UIEvent, N as FieldsetHTMLAttributes, Nt as UIEventHandler, O as DragEventHandler, Ot as TimeHTMLAttributes, P as FocusEvent, Pt as VideoHTMLAttributes, Q as LinkHTMLAttributes, R as FormHTMLAttributes, S as CompositionEventHandler, St as StyleValue, T as DetailsHTMLAttributes, Tt as TdHTMLAttributes, U as InputHTMLAttributes, V as IframeHTMLAttributes, W as InputTypeHTMLAttribute, X as LabelHTMLAttributes, Y as KeygenHTMLAttributes, Z as LiHTMLAttributes, _ as ClipboardEvent, _t as SVGAttributes, a as AreaHTMLAttributes, at as MouseEvent, b as ColgroupHTMLAttributes, bt as SourceHTMLAttributes, c as BaseEventHandler, ct as ObjectHTMLAttributes, d as BlockquoteHTMLAttributes, dt as OptionHTMLAttributes, et as MediaHTMLAttributes, f as ButtonHTMLAttributes, ft as OutputHTMLAttributes, g as ChangeEventHandler, gt as ReservedProps, h as ChangeEvent, ht as QuoteHTMLAttributes, i as AnimationEventHandler, it as ModifierKey, j as EventHandlers, jt as TransitionEventHandler, k as EmbedHTMLAttributes, kt as TrackHTMLAttributes, l as BaseHTMLAttributes, lt as OlHTMLAttributes, m as CanvasHTMLAttributes, mt as ProgressHTMLAttributes, n as AnchorHTMLAttributes, nt as MetaHTMLAttributes, o as AriaAttributes, ot as MouseEventHandler, p as CSSProperties, pt as ParamHTMLAttributes, q as KeyboardEvent, r as AnimationEvent, rt as MeterHTMLAttributes, s as AudioHTMLAttributes, st as NativeElements, t as AbstractView, tt as MenuHTMLAttributes, u as BaseSyntheticEvent, ut as OptgroupHTMLAttributes, v as ClipboardEventHandler, vt as ScriptHTMLAttributes, w as DelHTMLAttributes, wt as TableHTMLAttributes, x as CompositionEvent, xt as StyleHTMLAttributes, y as ColHTMLAttributes, yt as SelectHTMLAttributes, z as HTMLAttributes } from "./jsx-DcR6l_MD.js";
|
|
2
2
|
export { AbstractView, AnchorHTMLAttributes, AnimationEvent, AnimationEventHandler, AreaHTMLAttributes, AriaAttributes, AudioHTMLAttributes, BaseEventHandler, BaseHTMLAttributes, BaseSyntheticEvent, BlockquoteHTMLAttributes, ButtonHTMLAttributes, CSSProperties, CanvasHTMLAttributes, ChangeEvent, ChangeEventHandler, ClipboardEvent, ClipboardEventHandler, ColHTMLAttributes, ColgroupHTMLAttributes, CompositionEvent, CompositionEventHandler, DataHTMLAttributes, DelHTMLAttributes, DetailsHTMLAttributes, DialogHTMLAttributes, DragEvent, DragEventHandler, EmbedHTMLAttributes, EventHandler, EventHandlers, Events, FieldsetHTMLAttributes, FocusEvent, FocusEventHandler, FormEvent, FormEventHandler, FormHTMLAttributes, HTMLAttributes, HtmlHTMLAttributes, IframeHTMLAttributes, ImgHTMLAttributes, InputHTMLAttributes, InputTypeHTMLAttribute, InsHTMLAttributes, IntrinsicElementAttributes, KeyboardEvent, KeyboardEventHandler, KeygenHTMLAttributes, LabelHTMLAttributes, LiHTMLAttributes, LinkHTMLAttributes, MapHTMLAttributes, MediaHTMLAttributes, MenuHTMLAttributes, MetaHTMLAttributes, MeterHTMLAttributes, ModifierKey, MouseEvent, MouseEventHandler, NativeElements, ObjectHTMLAttributes, OlHTMLAttributes, OptgroupHTMLAttributes, OptionHTMLAttributes, OutputHTMLAttributes, ParamHTMLAttributes, ProgressHTMLAttributes, QuoteHTMLAttributes, ReservedProps, SVGAttributes, ScriptHTMLAttributes, SelectHTMLAttributes, SourceHTMLAttributes, StyleHTMLAttributes, StyleValue, SyntheticEvent, TableHTMLAttributes, TdHTMLAttributes, TextareaHTMLAttributes, ThHTMLAttributes, TimeHTMLAttributes, TrackHTMLAttributes, TransitionEvent, TransitionEventHandler, UIEvent, UIEventHandler, VideoHTMLAttributes, WebViewHTMLAttributes, WheelEvent, WheelEventHandler };
|