@vandenberghinc/volt 1.1.4 → 1.1.6
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/backend/dist/cjs/database.d.ts +41 -68
- package/backend/dist/cjs/database.js +136 -78
- package/backend/dist/cjs/endpoint.d.ts +23 -9
- package/backend/dist/cjs/endpoint.js +98 -21
- package/backend/dist/cjs/file_watcher.js +2 -2
- package/backend/dist/cjs/frontend.d.ts +0 -2
- package/backend/dist/cjs/frontend.js +9 -9
- package/backend/dist/cjs/image_endpoint.d.ts +3 -1
- package/backend/dist/cjs/image_endpoint.js +2 -1
- package/backend/dist/cjs/payments/paddle.js +10 -2
- package/backend/dist/cjs/plugins/css.d.ts +6 -5
- package/backend/dist/cjs/plugins/css.js +32 -7
- package/backend/dist/cjs/plugins/ts/compiler.d.ts +6 -1
- package/backend/dist/cjs/plugins/ts/compiler.js +26 -2
- package/backend/dist/cjs/plugins/ts/preprocessing.js +5 -3
- package/backend/dist/cjs/server.d.ts +7 -13
- package/backend/dist/cjs/server.js +184 -303
- package/backend/dist/cjs/status.d.ts +1 -0
- package/backend/dist/cjs/status.js +2 -1
- package/backend/dist/cjs/stream.d.ts +5 -3
- package/backend/dist/cjs/stream.js +13 -4
- package/backend/dist/cjs/users.d.ts +1 -1
- package/backend/dist/cjs/users.js +87 -72
- package/backend/dist/cjs/utils.d.ts +17 -9
- package/backend/dist/cjs/utils.js +22 -64
- package/backend/dist/cjs/view.d.ts +2 -2
- package/backend/dist/cjs/view.js +38 -40
- package/backend/dist/cjs/volt.d.ts +3 -2
- package/backend/dist/cjs/volt.js +2 -2
- package/backend/dist/css/volt.css +5 -0
- package/backend/dist/esm/database.d.ts +41 -68
- package/backend/dist/esm/database.js +137 -79
- package/backend/dist/esm/endpoint.d.ts +23 -9
- package/backend/dist/esm/endpoint.js +99 -22
- package/backend/dist/esm/file_watcher.js +2 -2
- package/backend/dist/esm/frontend.d.ts +0 -2
- package/backend/dist/esm/frontend.js +9 -9
- package/backend/dist/esm/image_endpoint.d.ts +3 -1
- package/backend/dist/esm/image_endpoint.js +2 -1
- package/backend/dist/esm/payments/paddle.js +11 -3
- package/backend/dist/esm/plugins/css.d.ts +6 -5
- package/backend/dist/esm/plugins/css.js +32 -6
- package/backend/dist/esm/plugins/ts/compiler.d.ts +6 -1
- package/backend/dist/esm/plugins/ts/compiler.js +26 -2
- package/backend/dist/esm/plugins/ts/preprocessing.js +5 -3
- package/backend/dist/esm/server.d.ts +7 -13
- package/backend/dist/esm/server.js +182 -301
- package/backend/dist/esm/status.d.ts +1 -0
- package/backend/dist/esm/status.js +1 -0
- package/backend/dist/esm/stream.d.ts +5 -3
- package/backend/dist/esm/stream.js +13 -4
- package/backend/dist/esm/users.d.ts +1 -1
- package/backend/dist/esm/users.js +87 -72
- package/backend/dist/esm/utils.d.ts +17 -9
- package/backend/dist/esm/utils.js +21 -62
- package/backend/dist/esm/view.d.ts +2 -2
- package/backend/dist/esm/view.js +38 -40
- package/backend/dist/esm/volt.d.ts +3 -2
- package/backend/dist/esm/volt.js +2 -1
- package/backend/dist/esm-dev/blacklist.js +1 -1
- package/backend/dist/esm-dev/cli.js +2 -2
- package/backend/dist/esm-dev/database.d.ts +41 -68
- package/backend/dist/esm-dev/database.js +138 -80
- package/backend/dist/esm-dev/endpoint.d.ts +23 -9
- package/backend/dist/esm-dev/endpoint.js +100 -23
- package/backend/dist/esm-dev/file_watcher.js +3 -3
- package/backend/dist/esm-dev/frontend.d.ts +0 -2
- package/backend/dist/esm-dev/frontend.js +9 -9
- package/backend/dist/esm-dev/image_endpoint.d.ts +3 -1
- package/backend/dist/esm-dev/image_endpoint.js +2 -1
- package/backend/dist/esm-dev/logger.js +1 -1
- package/backend/dist/esm-dev/payments/paddle.js +12 -4
- package/backend/dist/esm-dev/plugins/css.d.ts +6 -5
- package/backend/dist/esm-dev/plugins/css.js +33 -7
- package/backend/dist/esm-dev/plugins/ts/compiler.d.ts +6 -1
- package/backend/dist/esm-dev/plugins/ts/compiler.js +27 -3
- package/backend/dist/esm-dev/plugins/ts/preprocessing.js +7 -5
- package/backend/dist/esm-dev/rate_limit.js +1 -1
- package/backend/dist/esm-dev/server.d.ts +7 -13
- package/backend/dist/esm-dev/server.js +184 -303
- package/backend/dist/esm-dev/status.d.ts +1 -0
- package/backend/dist/esm-dev/status.js +1 -0
- package/backend/dist/esm-dev/stream.d.ts +5 -3
- package/backend/dist/esm-dev/stream.js +13 -4
- package/backend/dist/esm-dev/users.d.ts +1 -1
- package/backend/dist/esm-dev/users.js +88 -73
- package/backend/dist/esm-dev/utils.d.ts +17 -9
- package/backend/dist/esm-dev/utils.js +22 -63
- package/backend/dist/esm-dev/view.d.ts +2 -2
- package/backend/dist/esm-dev/view.js +39 -41
- package/backend/dist/esm-dev/volt.d.ts +3 -2
- package/backend/dist/esm-dev/volt.js +2 -1
- package/backend/src/database.ts +173 -155
- package/backend/src/endpoint.ts +123 -31
- package/backend/src/file_watcher.ts +2 -2
- package/backend/src/frontend.ts +9 -8
- package/backend/src/image_endpoint.ts +4 -0
- package/backend/src/payments/paddle.ts +11 -3
- package/backend/src/plugins/css.ts +36 -8
- package/backend/src/plugins/ts/compiler.ts +37 -1
- package/backend/src/plugins/ts/preprocessing.ts +5 -3
- package/backend/src/server.ts +167 -306
- package/backend/src/status.ts +1 -0
- package/backend/src/stream.ts +28 -8
- package/backend/src/users.ts +87 -72
- package/backend/src/utils.ts +58 -25
- package/backend/src/view.ts +30 -28
- package/backend/src/{volt.js → volt.ts} +2 -1
- package/backend/tsconfig.cjs.json +3 -3
- package/backend/tsconfig.esm.json +3 -3
- package/frontend/dist/elements/base.d.ts +414 -432
- package/frontend/dist/elements/base.js +566 -329
- package/frontend/dist/elements/module.d.ts +26 -12
- package/frontend/dist/elements/module.js +69 -32
- package/frontend/dist/elements/register_element.d.ts +3 -0
- package/frontend/dist/elements/register_element.js +22 -0
- package/frontend/dist/modules/auth.d.ts +1 -0
- package/frontend/dist/modules/auth.js +6 -5
- package/frontend/dist/modules/color.d.ts +159 -0
- package/frontend/dist/modules/color.js +315 -0
- package/frontend/dist/modules/colors.d.ts +1 -26
- package/frontend/dist/modules/colors.js +417 -340
- package/frontend/dist/modules/cookies.d.ts +1 -0
- package/frontend/dist/modules/cookies.js +1 -0
- package/frontend/dist/modules/events.d.ts +1 -0
- package/frontend/dist/modules/events.js +1 -0
- package/frontend/dist/modules/google.d.ts +1 -0
- package/frontend/dist/modules/google.js +1 -0
- package/frontend/dist/modules/meta.d.ts +1 -0
- package/frontend/dist/modules/meta.js +1 -0
- package/frontend/dist/modules/mutex.d.ts +1 -2
- package/frontend/dist/modules/mutex.js +3 -4
- package/frontend/dist/modules/paddle.d.ts +1 -0
- package/frontend/dist/modules/paddle.js +14 -13
- package/frontend/dist/modules/scheme.d.ts +1 -0
- package/frontend/dist/modules/scheme.js +5 -3
- package/frontend/dist/modules/statics.d.ts +1 -0
- package/frontend/dist/modules/statics.js +1 -0
- package/frontend/dist/modules/support.d.ts +1 -0
- package/frontend/dist/modules/support.js +3 -2
- package/frontend/dist/modules/theme.d.ts +56 -0
- package/frontend/dist/{ui → modules}/theme.js +186 -75
- package/frontend/dist/modules/themes.d.ts +1 -1
- package/frontend/dist/modules/themes.js +1 -0
- package/frontend/dist/modules/user.d.ts +1 -0
- package/frontend/dist/modules/user.js +11 -10
- package/frontend/dist/modules/utils.d.ts +23 -2
- package/frontend/dist/modules/utils.js +93 -1
- package/frontend/dist/types/gradient.js +4 -0
- package/frontend/dist/ui/border_button.d.ts +0 -25
- package/frontend/dist/ui/border_button.js +50 -51
- package/frontend/dist/ui/button.d.ts +0 -21
- package/frontend/dist/ui/button.js +41 -46
- package/frontend/dist/ui/canvas.js +15 -15
- package/frontend/dist/ui/checkbox.d.ts +3 -17
- package/frontend/dist/ui/checkbox.js +36 -30
- package/frontend/dist/ui/code.d.ts +15 -82
- package/frontend/dist/ui/code.js +150 -125
- package/frontend/dist/ui/color.d.ts +0 -1
- package/frontend/dist/ui/color.js +1 -1
- package/frontend/dist/ui/context_menu.d.ts +4 -2
- package/frontend/dist/ui/context_menu.js +16 -17
- package/frontend/dist/ui/css.js +2 -0
- package/frontend/dist/ui/divider.d.ts +0 -7
- package/frontend/dist/ui/divider.js +21 -25
- package/frontend/dist/ui/dropdown.d.ts +13 -7
- package/frontend/dist/ui/dropdown.js +65 -30
- package/frontend/dist/ui/for_each.d.ts +0 -5
- package/frontend/dist/ui/for_each.js +17 -22
- package/frontend/dist/ui/form.d.ts +17 -12
- package/frontend/dist/ui/form.js +21 -18
- package/frontend/dist/ui/frame_modes.d.ts +9 -12
- package/frontend/dist/ui/frame_modes.js +8 -10
- package/frontend/dist/ui/google_map.d.ts +0 -11
- package/frontend/dist/ui/google_map.js +23 -28
- package/frontend/dist/ui/gradient.d.ts +0 -5
- package/frontend/dist/ui/gradient.js +17 -22
- package/frontend/dist/ui/image.d.ts +27 -58
- package/frontend/dist/ui/image.js +99 -93
- package/frontend/dist/ui/input.d.ts +20 -97
- package/frontend/dist/ui/input.js +192 -170
- package/frontend/dist/ui/link.d.ts +0 -18
- package/frontend/dist/ui/link.js +42 -48
- package/frontend/dist/ui/list.js +36 -37
- package/frontend/dist/ui/loader_button.d.ts +4 -19
- package/frontend/dist/ui/loader_button.js +35 -37
- package/frontend/dist/ui/loaders.d.ts +0 -8
- package/frontend/dist/ui/loaders.js +20 -25
- package/frontend/dist/ui/popup.d.ts +11 -8
- package/frontend/dist/ui/popup.js +183 -24
- package/frontend/dist/ui/pseudo.d.ts +3 -3
- package/frontend/dist/ui/pseudo.js +14 -17
- package/frontend/dist/ui/scroller.d.ts +10 -48
- package/frontend/dist/ui/scroller.js +306 -300
- package/frontend/dist/ui/slider.d.ts +9 -3
- package/frontend/dist/ui/slider.js +31 -17
- package/frontend/dist/ui/spacer.d.ts +0 -9
- package/frontend/dist/ui/spacer.js +21 -26
- package/frontend/dist/ui/span.js +13 -15
- package/frontend/dist/ui/stack.d.ts +14 -75
- package/frontend/dist/ui/stack.js +166 -169
- package/frontend/dist/ui/steps.d.ts +10 -23
- package/frontend/dist/ui/steps.js +47 -34
- package/frontend/dist/ui/style.d.ts +4 -3
- package/frontend/dist/ui/style.js +13 -18
- package/frontend/dist/ui/switch.d.ts +10 -4
- package/frontend/dist/ui/switch.js +24 -16
- package/frontend/dist/ui/table.d.ts +0 -23
- package/frontend/dist/ui/table.js +113 -119
- package/frontend/dist/ui/tabs.d.ts +3 -19
- package/frontend/dist/ui/tabs.js +35 -29
- package/frontend/dist/ui/text.d.ts +0 -8
- package/frontend/dist/ui/text.js +20 -25
- package/frontend/dist/ui/title.d.ts +0 -15
- package/frontend/dist/ui/title.js +39 -45
- package/frontend/dist/ui/ui.d.ts +0 -2
- package/frontend/dist/ui/ui.js +0 -2
- package/frontend/dist/ui/view.d.ts +3 -17
- package/frontend/dist/ui/view.js +27 -32
- package/frontend/dist/volt.d.ts +2 -1
- package/frontend/dist/volt.js +3 -1
- package/frontend/examples/dashboard/dashboard.ts +774 -0
- package/frontend/examples/theme/theme.ts +58 -0
- package/frontend/src/css/volt.css +5 -0
- package/frontend/src/elements/base.ts +767 -545
- package/frontend/src/elements/module.ts +90 -29
- package/frontend/src/elements/register_element.ts +24 -0
- package/frontend/src/modules/auth.ts +7 -6
- package/frontend/src/modules/color.ts +348 -0
- package/frontend/src/modules/colors.ts +468 -449
- package/frontend/src/modules/cookies.ts +1 -0
- package/frontend/src/modules/events.ts +1 -0
- package/frontend/src/modules/google.ts +1 -0
- package/frontend/src/modules/meta.ts +2 -1
- package/frontend/src/modules/mutex.ts +2 -4
- package/frontend/src/modules/paddle.ts +21 -20
- package/frontend/src/modules/scheme.ts +5 -4
- package/frontend/src/modules/statics.ts +2 -1
- package/frontend/src/modules/support.ts +3 -2
- package/frontend/src/modules/theme.ts +413 -0
- package/frontend/src/modules/themes.ts +2 -1
- package/frontend/src/modules/user.ts +12 -11
- package/frontend/src/modules/utils.ts +125 -2
- package/frontend/src/ui/border_button.ts +41 -37
- package/frontend/src/ui/button.ts +33 -32
- package/frontend/src/ui/canvas.ts +5 -2
- package/frontend/src/ui/checkbox.ts +21 -22
- package/frontend/src/ui/code.ts +92 -86
- package/frontend/src/ui/context_menu.ts +7 -5
- package/frontend/src/ui/css.ts +1 -1
- package/frontend/src/ui/divider.ts +15 -10
- package/frontend/src/ui/dropdown.ts +38 -21
- package/frontend/src/ui/for_each.ts +9 -8
- package/frontend/src/ui/form.ts +26 -21
- package/frontend/src/ui/frame_modes.ts +13 -17
- package/frontend/src/ui/google_map.ts +15 -13
- package/frontend/src/ui/gradient.ts +9 -8
- package/frontend/src/ui/image.ts +108 -86
- package/frontend/src/ui/input.ts +145 -144
- package/frontend/src/ui/link.ts +25 -23
- package/frontend/src/ui/list.ts +12 -6
- package/frontend/src/ui/loader_button.ts +26 -25
- package/frontend/src/ui/loaders.ts +12 -11
- package/frontend/src/ui/popup.ts +168 -14
- package/frontend/src/ui/pseudo.ts +5 -3
- package/frontend/src/ui/scroller.ts +303 -294
- package/frontend/src/ui/slider.ts +15 -10
- package/frontend/src/ui/spacer.ts +14 -11
- package/frontend/src/ui/span.ts +6 -2
- package/frontend/src/ui/stack.ts +196 -183
- package/frontend/src/ui/steps.ts +38 -22
- package/frontend/src/ui/style.ts +7 -4
- package/frontend/src/ui/switch.ts +16 -11
- package/frontend/src/ui/table.ts +42 -34
- package/frontend/src/ui/tabs.ts +20 -19
- package/frontend/src/ui/text.ts +12 -11
- package/frontend/src/ui/title.ts +22 -20
- package/frontend/src/ui/ui.ts +0 -2
- package/frontend/src/ui/view.ts +20 -19
- package/frontend/src/volt.ts +3 -1
- package/frontend/{compile.js → tools/compile.old.js} +2 -2
- package/frontend/tools/embed_scripts.js +69 -0
- package/frontend/tsconfig.json +26 -0
- package/package.json +7 -6
- package/frontend/dist/ui/theme.d.ts +0 -25
- package/frontend/exports.json +0 -1340
- package/frontend/src/modules/date.js +0 -535
- package/frontend/src/ui/color.ts +0 -117
- package/frontend/src/ui/theme.ts +0 -279
- /package/backend/src/{vinc.dev.js → vinc.dev.ts} +0 -0
|
@@ -2,17 +2,35 @@ import "../modules//string.js";
|
|
|
2
2
|
import "../modules//array.js";
|
|
3
3
|
import "../modules//number.js";
|
|
4
4
|
import { GradientType } from "../types/gradient.js";
|
|
5
|
+
import type { AnyElement } from "../ui/any_element.js";
|
|
5
6
|
declare global {
|
|
6
7
|
export interface VElementExtensions {
|
|
7
8
|
}
|
|
8
9
|
}
|
|
9
|
-
interface
|
|
10
|
+
interface BaseVElementInitOptions {
|
|
10
11
|
derived: any;
|
|
12
|
+
default_style?: Record<string, any>;
|
|
13
|
+
default_attributes?: Record<string, any>;
|
|
14
|
+
default_events?: Record<string, any>;
|
|
15
|
+
}
|
|
16
|
+
interface DerivedVElementInitOptions {
|
|
17
|
+
derived?: any;
|
|
11
18
|
name?: string;
|
|
12
19
|
default_style?: Record<string, any>;
|
|
13
20
|
default_attributes?: Record<string, any>;
|
|
14
21
|
default_events?: Record<string, any>;
|
|
15
22
|
}
|
|
23
|
+
export type AppendType = null | undefined | string | Node | VElement | Function | AppendType[];
|
|
24
|
+
export type ElementCallback<This> = (element: This) => any;
|
|
25
|
+
export type ElementEvent<This> = (element: This, event: Event) => any;
|
|
26
|
+
export type ElementMouseEvent<This> = (element: This, event: MouseEvent) => any;
|
|
27
|
+
export type ElementDragEvent<This> = (element: This, event: MouseEvent) => any;
|
|
28
|
+
export type ElementKeyboardEvent<This> = (element: This, event: KeyboardEvent) => any;
|
|
29
|
+
export type ThemeUpdateCallback<This> = (element: This) => any;
|
|
30
|
+
export type OnAppearCallback<This> = (element: This, options: {
|
|
31
|
+
scroll_direction: string;
|
|
32
|
+
}) => any;
|
|
33
|
+
export type undefstrnr = null | undefined | string | number;
|
|
16
34
|
export declare abstract class VElement extends HTMLElement {
|
|
17
35
|
__is_velement: boolean;
|
|
18
36
|
static element_tag: string;
|
|
@@ -20,8 +38,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
20
38
|
static default_attributes: Record<string, any>;
|
|
21
39
|
static default_events: Record<string, any>;
|
|
22
40
|
rendered: boolean;
|
|
23
|
-
|
|
24
|
-
|
|
41
|
+
element_name: string;
|
|
42
|
+
base_element_name: string;
|
|
25
43
|
remove_focus: HTMLElement["blur"];
|
|
26
44
|
_v_children: any[];
|
|
27
45
|
_element_display: string;
|
|
@@ -39,17 +57,17 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
39
57
|
_on_resize_rule_evals: Record<string, any>;
|
|
40
58
|
_observing_on_resize: boolean;
|
|
41
59
|
_observing_on_render: boolean;
|
|
42
|
-
_on_resize_callbacks:
|
|
43
|
-
_on_render_callbacks:
|
|
44
|
-
_on_theme_updates:
|
|
45
|
-
_on_mouse_leave_callback:
|
|
46
|
-
_on_mouse_enter_callback:
|
|
60
|
+
_on_resize_callbacks: ElementCallback<this>[];
|
|
61
|
+
_on_render_callbacks: ElementCallback<this>[];
|
|
62
|
+
_on_theme_updates: ThemeUpdateCallback<this>[];
|
|
63
|
+
_on_mouse_leave_callback: ElementMouseEvent<this>;
|
|
64
|
+
_on_mouse_enter_callback: ElementMouseEvent<this>;
|
|
47
65
|
_on_shortcut_time: number;
|
|
48
66
|
_on_shortcut_key: string;
|
|
49
67
|
_on_shortcut_keycode: number;
|
|
50
68
|
_on_keypress_set: boolean;
|
|
51
|
-
_on_enter_callback?:
|
|
52
|
-
_on_escape_callback?:
|
|
69
|
+
_on_enter_callback?: ElementKeyboardEvent<this>;
|
|
70
|
+
_on_escape_callback?: ElementKeyboardEvent<this>;
|
|
53
71
|
_on_appear_callbacks: Record<string, any>[];
|
|
54
72
|
_media_queries: {
|
|
55
73
|
[key: string]: {
|
|
@@ -65,8 +83,15 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
65
83
|
private _id;
|
|
66
84
|
private _value;
|
|
67
85
|
constructor();
|
|
68
|
-
|
|
69
|
-
|
|
86
|
+
/**
|
|
87
|
+
* @warning This method should only be used by the direct types declared in this file e.g. VSpanElement.
|
|
88
|
+
* @note This method is always called in the constructor of the base elements defined in VElementTagMap.
|
|
89
|
+
*/
|
|
90
|
+
protected _init_sys_velement(args: BaseVElementInitOptions): void;
|
|
91
|
+
/**
|
|
92
|
+
* @warning Any VElement (a derived class of VElementTagMap) must call this method in its constructor.
|
|
93
|
+
*/
|
|
94
|
+
protected _init(args: BaseVElementInitOptions): void;
|
|
70
95
|
connectedCallback(): void;
|
|
71
96
|
static is(type: any): type is VElement;
|
|
72
97
|
/**
|
|
@@ -126,7 +151,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
126
151
|
* @return:
|
|
127
152
|
* @description Returns the modified filter string or null if the input filter was null.
|
|
128
153
|
*/
|
|
129
|
-
edit_filter_wrapper(filter: string | null, type: string, to?:
|
|
154
|
+
edit_filter_wrapper(filter: string | null, type: string, to?: undefstrnr): string;
|
|
130
155
|
/**
|
|
131
156
|
* @docs:
|
|
132
157
|
* @title: Toggle Filter Wrapper
|
|
@@ -155,7 +180,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
155
180
|
* @return:
|
|
156
181
|
* @descr: Returns the instance of the element for chaining.
|
|
157
182
|
*/
|
|
158
|
-
append(...children:
|
|
183
|
+
append(...children: AppendType[]): this;
|
|
159
184
|
/**
|
|
160
185
|
* @docs:
|
|
161
186
|
* @title: ZStack Append
|
|
@@ -166,7 +191,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
166
191
|
* @return:
|
|
167
192
|
* @description Returns the instance of the ZStack element for chaining.
|
|
168
193
|
*/
|
|
169
|
-
zstack_append(...children:
|
|
194
|
+
zstack_append(...children: AppendType[]): this;
|
|
170
195
|
/**
|
|
171
196
|
* @docs:
|
|
172
197
|
* @title: Append To Parent
|
|
@@ -262,6 +287,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
262
287
|
*/
|
|
263
288
|
width(): string | number;
|
|
264
289
|
width(value: string | number, check_attribute?: boolean): this;
|
|
290
|
+
/** Simple wrapper for .width("fit-content") */
|
|
291
|
+
fit_content(): this;
|
|
265
292
|
/**
|
|
266
293
|
* @docs:
|
|
267
294
|
* @title: Fixed Width
|
|
@@ -458,6 +485,12 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
458
485
|
width: number;
|
|
459
486
|
height: number;
|
|
460
487
|
};
|
|
488
|
+
sync_height_from(node: AnyElement, process?: (height: number) => number): this;
|
|
489
|
+
sync_height_to(node: AnyElement | AnyElement[], process?: (height: number) => number): this;
|
|
490
|
+
/**
|
|
491
|
+
* Set a square frame width and height.
|
|
492
|
+
*/
|
|
493
|
+
square(size: string | number): this;
|
|
461
494
|
/**
|
|
462
495
|
* @docs:
|
|
463
496
|
* @title: Padding
|
|
@@ -469,7 +502,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
469
502
|
* or four values for top, right, bottom, and left.
|
|
470
503
|
* @return:
|
|
471
504
|
* @description Returns the instance of the element for chaining.
|
|
472
|
-
*
|
|
505
|
+
* @funcs: 4
|
|
473
506
|
*/
|
|
474
507
|
padding(): string;
|
|
475
508
|
padding(value: undefstrnr): this;
|
|
@@ -540,7 +573,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
540
573
|
* @descr: The values for the margin. Can be a single value, two values for vertical and horizontal margins, or four values for each side.
|
|
541
574
|
* @return:
|
|
542
575
|
* @description Returns the instance of the element for chaining.
|
|
543
|
-
*
|
|
576
|
+
* @funcs: 4
|
|
544
577
|
*/
|
|
545
578
|
margin(): string;
|
|
546
579
|
margin(value: undefstrnr): this;
|
|
@@ -697,9 +730,9 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
697
730
|
* @param:
|
|
698
731
|
* @name: to
|
|
699
732
|
* @descr: Indicates whether to enable or disable ellipsis. If `null`, it returns the current state.
|
|
700
|
-
*
|
|
701
|
-
*
|
|
702
|
-
*
|
|
733
|
+
* @param:
|
|
734
|
+
* @name: after_lines
|
|
735
|
+
* @descr: The number of lines after which ellipsis should be applied. Only relevant when `to` is `true`.
|
|
703
736
|
* @return:
|
|
704
737
|
* @description Returns the instance of the element for chaining.
|
|
705
738
|
* @funcs: 2
|
|
@@ -1400,6 +1433,23 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1400
1433
|
hover_brightness(): boolean;
|
|
1401
1434
|
hover_brightness(mouse_down_brightness: boolean): this;
|
|
1402
1435
|
hover_brightness(mouse_down_brightness: number, mouse_over_brightness: number): this;
|
|
1436
|
+
/**
|
|
1437
|
+
* Apply on hover transitions.
|
|
1438
|
+
* @note This function also automatically sets the `transition` property for the target element. However, only when the transition attribute hasnt been set yet.
|
|
1439
|
+
* @param target The target node of which to apply
|
|
1440
|
+
* @param methods The methods to call and pass the `selected` value as arg to.
|
|
1441
|
+
* @param selected The selected hover argument value of the selected `methods`.
|
|
1442
|
+
* @param unselected The default non hover argument value of the selected `methods`.
|
|
1443
|
+
* @param methods The methods to call and pass the `selected` value as arg to.
|
|
1444
|
+
*/
|
|
1445
|
+
hover_transitions(items: {
|
|
1446
|
+
target: "this" | "self" | AnyElement;
|
|
1447
|
+
selected: string;
|
|
1448
|
+
unselected: string;
|
|
1449
|
+
methods: string[];
|
|
1450
|
+
duration?: number;
|
|
1451
|
+
easing?: string;
|
|
1452
|
+
}[]): this;
|
|
1403
1453
|
/**
|
|
1404
1454
|
* @docs:
|
|
1405
1455
|
* @title: Text Width
|
|
@@ -1426,7 +1476,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1426
1476
|
* @return:
|
|
1427
1477
|
* @description Returns the instance of the element for chaining.
|
|
1428
1478
|
*/
|
|
1429
|
-
media(media_query: string, true_handler?:
|
|
1479
|
+
media(media_query: string, true_handler?: ElementCallback<this>, false_handler?: ElementCallback<this>): this;
|
|
1430
1480
|
/**
|
|
1431
1481
|
* @docs:
|
|
1432
1482
|
* @title: Remove Media Query
|
|
@@ -1722,7 +1772,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1722
1772
|
* @return:
|
|
1723
1773
|
* @description Returns the instance of the element for chaining.
|
|
1724
1774
|
*/
|
|
1725
|
-
timeout(delay: number, callback:
|
|
1775
|
+
timeout(delay: number, callback: ElementCallback<this>, options?: {
|
|
1726
1776
|
id?: string;
|
|
1727
1777
|
debounce?: boolean;
|
|
1728
1778
|
} | null): this;
|
|
@@ -1737,6 +1787,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1737
1787
|
* @description Returns the instance of the element for chaining.
|
|
1738
1788
|
*/
|
|
1739
1789
|
clear_timeout(id: string | number): this;
|
|
1790
|
+
private _disabled_cursor?;
|
|
1740
1791
|
/**
|
|
1741
1792
|
* @docs:
|
|
1742
1793
|
* @title: Disable Button
|
|
@@ -1879,13 +1930,9 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1879
1930
|
* @return:
|
|
1880
1931
|
* @description Returns the instance of the element for chaining.
|
|
1881
1932
|
*/
|
|
1882
|
-
on_appear<T = this>(callback:
|
|
1883
|
-
scroll_direction: string;
|
|
1884
|
-
}) => any)): this;
|
|
1933
|
+
on_appear<T = this>(callback: OnAppearCallback<T>): this;
|
|
1885
1934
|
on_appear<T = this>(options: {
|
|
1886
|
-
callback:
|
|
1887
|
-
scroll_direction: string;
|
|
1888
|
-
}) => any);
|
|
1935
|
+
callback: OnAppearCallback<T>;
|
|
1889
1936
|
repeat?: boolean;
|
|
1890
1937
|
threshold?: number | null;
|
|
1891
1938
|
}): this;
|
|
@@ -1919,8 +1966,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1919
1966
|
* @return:
|
|
1920
1967
|
* @description Returns the instance of the element for chaining.
|
|
1921
1968
|
*/
|
|
1922
|
-
on_enter(): undefined |
|
|
1923
|
-
on_enter(callback:
|
|
1969
|
+
on_enter(): undefined | ElementKeyboardEvent<this>;
|
|
1970
|
+
on_enter(callback: ElementKeyboardEvent<this>): this;
|
|
1924
1971
|
/**
|
|
1925
1972
|
* @docs:
|
|
1926
1973
|
* @title: On Escape
|
|
@@ -1931,8 +1978,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1931
1978
|
* @return:
|
|
1932
1979
|
* @description Returns the instance of the element for chaining.
|
|
1933
1980
|
*/
|
|
1934
|
-
on_escape(): undefined |
|
|
1935
|
-
on_escape(callback:
|
|
1981
|
+
on_escape(): undefined | ElementKeyboardEvent<this>;
|
|
1982
|
+
on_escape(callback: ElementKeyboardEvent<this>): this;
|
|
1936
1983
|
/**
|
|
1937
1984
|
* @docs:
|
|
1938
1985
|
* @title: On Theme Update
|
|
@@ -1944,8 +1991,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1944
1991
|
* @description Returns the instance of the element for chaining when a callback is provided, or the array of existing callbacks if null is passed.
|
|
1945
1992
|
* @funcs: 2
|
|
1946
1993
|
*/
|
|
1947
|
-
on_theme_update():
|
|
1948
|
-
on_theme_update(callback:
|
|
1994
|
+
on_theme_update(): ThemeUpdateCallback<this>[];
|
|
1995
|
+
on_theme_update(callback: ThemeUpdateCallback<this>): this;
|
|
1949
1996
|
/**
|
|
1950
1997
|
* @docs:
|
|
1951
1998
|
* @title: Remove on Theme Update
|
|
@@ -1956,7 +2003,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1956
2003
|
* @return:
|
|
1957
2004
|
* @description Returns the instance of the element for chaining.
|
|
1958
2005
|
*/
|
|
1959
|
-
remove_on_theme_update(callback:
|
|
2006
|
+
remove_on_theme_update(callback: ThemeUpdateCallback<this>): this;
|
|
1960
2007
|
/**
|
|
1961
2008
|
* @docs:
|
|
1962
2009
|
* @title: Remove on Theme Updates
|
|
@@ -1976,8 +2023,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1976
2023
|
* @description When a callback is provided, returns the instance of the element for chaining. If no callback is provided, returns the array of current callbacks.
|
|
1977
2024
|
* @funcs: 2
|
|
1978
2025
|
*/
|
|
1979
|
-
on_render(): (
|
|
1980
|
-
on_render(callback:
|
|
2026
|
+
on_render(): (ElementCallback<this>)[];
|
|
2027
|
+
on_render(callback: ElementCallback<this>): this;
|
|
1981
2028
|
/**
|
|
1982
2029
|
* @docs:
|
|
1983
2030
|
* @title: Remove on Render
|
|
@@ -1988,7 +2035,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
1988
2035
|
* @return:
|
|
1989
2036
|
* @description Returns the instance of the element for chaining.
|
|
1990
2037
|
*/
|
|
1991
|
-
remove_on_render(callback:
|
|
2038
|
+
remove_on_render(callback: ElementCallback<this>): this;
|
|
1992
2039
|
/**
|
|
1993
2040
|
* @docs:
|
|
1994
2041
|
* @title: Remove On Renders
|
|
@@ -2047,8 +2094,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2047
2094
|
* @descr: When a callback is provided, returns the instance for chaining. Otherwise, returns the list of existing resize callbacks.
|
|
2048
2095
|
* @funcs: 2
|
|
2049
2096
|
*/
|
|
2050
|
-
on_resize(): (
|
|
2051
|
-
on_resize(callback:
|
|
2097
|
+
on_resize(): (ElementCallback<this>)[];
|
|
2098
|
+
on_resize(callback: ElementCallback<this>): this;
|
|
2052
2099
|
/**
|
|
2053
2100
|
* @docs:
|
|
2054
2101
|
* @title: Remove on Resize
|
|
@@ -2059,7 +2106,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2059
2106
|
* @return:
|
|
2060
2107
|
* @description Returns the instance of the element for chaining.
|
|
2061
2108
|
*/
|
|
2062
|
-
remove_on_resize(callback:
|
|
2109
|
+
remove_on_resize(callback: ElementCallback<this>): this;
|
|
2063
2110
|
/**
|
|
2064
2111
|
* @docs:
|
|
2065
2112
|
* @title: Remove on Resizes
|
|
@@ -2088,7 +2135,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2088
2135
|
* @return:
|
|
2089
2136
|
* @descr: Returns the instance of the element for chaining.
|
|
2090
2137
|
*/
|
|
2091
|
-
on_resize_rule(evaluation: (element: this) => boolean, on_true?:
|
|
2138
|
+
on_resize_rule(evaluation: (element: this) => boolean, on_true?: ElementCallback<this>, on_false?: ElementCallback<this>): this;
|
|
2092
2139
|
/**
|
|
2093
2140
|
* @docs:
|
|
2094
2141
|
* @title: On Shortcut
|
|
@@ -2137,8 +2184,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2137
2184
|
* @descr: When a callback is provided, returns the instance of the element for chaining. If no callback is provided, returns the current callback.
|
|
2138
2185
|
* @funcs: 2
|
|
2139
2186
|
*/
|
|
2140
|
-
on_mouse_enter():
|
|
2141
|
-
on_mouse_enter(callback:
|
|
2187
|
+
on_mouse_enter(): ElementMouseEvent<this>;
|
|
2188
|
+
on_mouse_enter(callback: ElementMouseEvent<this>): this;
|
|
2142
2189
|
/**
|
|
2143
2190
|
* @docs:
|
|
2144
2191
|
* @title: On Mouse Leave
|
|
@@ -2150,8 +2197,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2150
2197
|
* @description When an argument is passed this function returns the instance of the element for chaining. Otherwise, it returns the currently set callback function.
|
|
2151
2198
|
* @funcs: 2
|
|
2152
2199
|
*/
|
|
2153
|
-
on_mouse_leave():
|
|
2154
|
-
on_mouse_leave(callback:
|
|
2200
|
+
on_mouse_leave(): ElementMouseEvent<this>;
|
|
2201
|
+
on_mouse_leave(callback: ElementMouseEvent<this>): this;
|
|
2155
2202
|
/**
|
|
2156
2203
|
* @docs:
|
|
2157
2204
|
* @title: On mouse over and out
|
|
@@ -2165,7 +2212,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2165
2212
|
* @return:
|
|
2166
2213
|
* @description Returns the instance of the element for chaining.
|
|
2167
2214
|
*/
|
|
2168
|
-
on_mouse_over_out(mouse_over:
|
|
2215
|
+
on_mouse_over_out(mouse_over: ElementMouseEvent<this>, mouse_out: ElementMouseEvent<this>): this;
|
|
2169
2216
|
/**
|
|
2170
2217
|
* @docs:
|
|
2171
2218
|
* @title: First Child
|
|
@@ -2403,7 +2450,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2403
2450
|
* @descr: The parent node from which to calculate the offset.
|
|
2404
2451
|
* @return:
|
|
2405
2452
|
* @description Returns the accumulated vertical offset from the current node to the parent node, or null if the parent wasn't found.
|
|
2406
|
-
*
|
|
2453
|
+
* @deprecated: true
|
|
2407
2454
|
*/
|
|
2408
2455
|
get_y_offset_from_parent(parent: HTMLElement): number | null;
|
|
2409
2456
|
/**
|
|
@@ -2432,7 +2479,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2432
2479
|
* @return:
|
|
2433
2480
|
* @description Returns the instance of the element for chaining.
|
|
2434
2481
|
*/
|
|
2435
|
-
exec(callback:
|
|
2482
|
+
exec(callback: ElementCallback<this>): this;
|
|
2436
2483
|
/**
|
|
2437
2484
|
* @docs:
|
|
2438
2485
|
* @title: Is child
|
|
@@ -2627,7 +2674,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
2627
2674
|
/**
|
|
2628
2675
|
* @docs:
|
|
2629
2676
|
* @title: Animation Name
|
|
2630
|
-
* @desc: Specifies a name for the
|
|
2677
|
+
* @desc: Specifies a name for the \@keyframes animation, equivalent to the CSS attribute `animationName`.
|
|
2631
2678
|
* When the parameter `value` is null, it retrieves the current attribute value.
|
|
2632
2679
|
* @param:
|
|
2633
2680
|
* @name: value
|
|
@@ -4271,7 +4318,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
4271
4318
|
/**
|
|
4272
4319
|
* @docs:
|
|
4273
4320
|
* @title: Font variant alternates
|
|
4274
|
-
* @desc: Controls the usage of alternate glyphs associated to alternative names defined in
|
|
4321
|
+
* @desc: Controls the usage of alternate glyphs associated to alternative names defined in \@font-feature-values.
|
|
4275
4322
|
* The equivalent of CSS attribute `fontVariantAlternates`.
|
|
4276
4323
|
* @param:
|
|
4277
4324
|
* @name: value
|
|
@@ -5191,7 +5238,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
5191
5238
|
/**
|
|
5192
5239
|
* @docs:
|
|
5193
5240
|
* @title: Mask type
|
|
5194
|
-
* @desc: Specifies whether an SVG
|
|
5241
|
+
* @desc: Specifies whether an SVG \<mask> element is treated as a luminance mask or as an alpha mask.
|
|
5195
5242
|
* The equivalent of CSS attribute `maskType`. Returns the attribute value when parameter `value` is `null`.
|
|
5196
5243
|
* @param:
|
|
5197
5244
|
* @name: value
|
|
@@ -6961,7 +7008,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
6961
7008
|
/**
|
|
6962
7009
|
* @docs:
|
|
6963
7010
|
* @title: Auto complete
|
|
6964
|
-
* @desc: Specifies whether the
|
|
7011
|
+
* @desc: Specifies whether the \<form> or the \<input> element should have autocomplete enabled.
|
|
6965
7012
|
* The equivalent of HTML attribute `autocomplete`. Returns the attribute value when parameter `value` is `null`.
|
|
6966
7013
|
* @param:
|
|
6967
7014
|
* @name: value
|
|
@@ -7434,7 +7481,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
7434
7481
|
/**
|
|
7435
7482
|
* @docs:
|
|
7436
7483
|
* @title: List
|
|
7437
|
-
* @desc: Refers to a
|
|
7484
|
+
* @desc: Refers to a \<datalist> element that contains pre-defined options for an \<input> element.
|
|
7438
7485
|
* The equivalent of HTML attribute `list`. Returns the attribute value when parameter `value` is `null`.
|
|
7439
7486
|
* @param:
|
|
7440
7487
|
* @name: value
|
|
@@ -7602,7 +7649,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
7602
7649
|
/**
|
|
7603
7650
|
* @docs:
|
|
7604
7651
|
* @title: Pattern
|
|
7605
|
-
* @desc: Specifies a regular expression that an
|
|
7652
|
+
* @desc: Specifies a regular expression that an \<input> element's value is checked against.
|
|
7606
7653
|
* The equivalent of HTML attribute `pattern`. Returns the attribute value when parameter `value` is `null`.
|
|
7607
7654
|
* @param:
|
|
7608
7655
|
* @name: value
|
|
@@ -7733,7 +7780,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
7733
7780
|
/**
|
|
7734
7781
|
* @docs:
|
|
7735
7782
|
* @title: Sandbox
|
|
7736
|
-
* @desc: Enables an extra set of restrictions for the content in an
|
|
7783
|
+
* @desc: Enables an extra set of restrictions for the content in an \<iframe>. The equivalent of HTML attribute `sandbox`.
|
|
7737
7784
|
* Returns the attribute value when parameter `value` is `null`.
|
|
7738
7785
|
* @param:
|
|
7739
7786
|
* @name: value
|
|
@@ -7790,7 +7837,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
7790
7837
|
/**
|
|
7791
7838
|
* @docs:
|
|
7792
7839
|
* @title: Size
|
|
7793
|
-
* @desc: Specifies the width, in characters (for
|
|
7840
|
+
* @desc: Specifies the width, in characters (for \<input>) or specifies the number of visible options (for \<select>).
|
|
7794
7841
|
* The equivalent of HTML attribute `size`. Returns the attribute value when parameter `value` is `null`.
|
|
7795
7842
|
* @param:
|
|
7796
7843
|
* @name: value
|
|
@@ -7861,7 +7908,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
7861
7908
|
/**
|
|
7862
7909
|
* @docs:
|
|
7863
7910
|
* @title: Src doc
|
|
7864
|
-
* @desc: Specifies the HTML content of the page to show in the
|
|
7911
|
+
* @desc: Specifies the HTML content of the page to show in the \<iframe>. The equivalent of HTML attribute `srcdoc`.
|
|
7865
7912
|
* Returns the attribute value when parameter `value` is `null`.
|
|
7866
7913
|
* @param:
|
|
7867
7914
|
* @name: value
|
|
@@ -8174,7 +8221,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8174
8221
|
* @funcs: 2
|
|
8175
8222
|
*/
|
|
8176
8223
|
on_blur(): Function | undefined;
|
|
8177
|
-
on_blur(callback:
|
|
8224
|
+
on_blur(callback: ElementEvent<this>): this;
|
|
8178
8225
|
/**
|
|
8179
8226
|
* @docs:
|
|
8180
8227
|
* @title: On Change
|
|
@@ -8187,7 +8234,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8187
8234
|
* @funcs: 2
|
|
8188
8235
|
*/
|
|
8189
8236
|
on_change(): Function | undefined;
|
|
8190
|
-
on_change(callback:
|
|
8237
|
+
on_change(callback: ElementEvent<this>): this;
|
|
8191
8238
|
/**
|
|
8192
8239
|
* @docs:
|
|
8193
8240
|
* @title: On Focus
|
|
@@ -8201,7 +8248,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8201
8248
|
* @funcs: 2
|
|
8202
8249
|
*/
|
|
8203
8250
|
on_focus(): Function | undefined;
|
|
8204
|
-
on_focus(callback:
|
|
8251
|
+
on_focus(callback: ElementEvent<this>): this;
|
|
8205
8252
|
/**
|
|
8206
8253
|
* @docs:
|
|
8207
8254
|
* @title: On Input
|
|
@@ -8216,8 +8263,8 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8216
8263
|
* @description Returns the `VElement` object for chaining, or the attribute's value if the parameter is `null`.
|
|
8217
8264
|
* @funcs: 2
|
|
8218
8265
|
*/
|
|
8219
|
-
on_input():
|
|
8220
|
-
on_input(callback:
|
|
8266
|
+
on_input(): ElementEvent<this> | undefined;
|
|
8267
|
+
on_input(callback: ElementEvent<this>): this;
|
|
8221
8268
|
/**
|
|
8222
8269
|
* @docs:
|
|
8223
8270
|
* @title: On Input
|
|
@@ -8230,7 +8277,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8230
8277
|
* @funcs: 2
|
|
8231
8278
|
*/
|
|
8232
8279
|
on_before_input(): Function | undefined;
|
|
8233
|
-
on_before_input(callback:
|
|
8280
|
+
on_before_input(callback: ElementEvent<this>): this;
|
|
8234
8281
|
/**
|
|
8235
8282
|
* @docs:
|
|
8236
8283
|
* @title: On Invalid
|
|
@@ -8244,7 +8291,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8244
8291
|
* @funcs: 2
|
|
8245
8292
|
*/
|
|
8246
8293
|
on_invalid(): Function | undefined;
|
|
8247
|
-
on_invalid(callback:
|
|
8294
|
+
on_invalid(callback: ElementEvent<this>): this;
|
|
8248
8295
|
/**
|
|
8249
8296
|
* @docs:
|
|
8250
8297
|
* @title: On Reset
|
|
@@ -8258,7 +8305,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8258
8305
|
* @funcs: 2
|
|
8259
8306
|
*/
|
|
8260
8307
|
on_reset(): Function | undefined;
|
|
8261
|
-
on_reset(callback:
|
|
8308
|
+
on_reset(callback: ElementEvent<this>): this;
|
|
8262
8309
|
/**
|
|
8263
8310
|
* @docs:
|
|
8264
8311
|
* @title: On Select
|
|
@@ -8271,7 +8318,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8271
8318
|
* @funcs: 2
|
|
8272
8319
|
*/
|
|
8273
8320
|
on_select(): Function | undefined;
|
|
8274
|
-
on_select(callback:
|
|
8321
|
+
on_select(callback: ElementEvent<this>): this;
|
|
8275
8322
|
/**
|
|
8276
8323
|
* @docs:
|
|
8277
8324
|
* @title: On Submit
|
|
@@ -8285,7 +8332,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8285
8332
|
* @funcs: 2
|
|
8286
8333
|
*/
|
|
8287
8334
|
on_submit(): Function | undefined;
|
|
8288
|
-
on_submit(callback:
|
|
8335
|
+
on_submit(callback: ElementEvent<this>): this;
|
|
8289
8336
|
/**
|
|
8290
8337
|
* @docs:
|
|
8291
8338
|
* @title: On Key Down
|
|
@@ -8300,7 +8347,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8300
8347
|
* @funcs: 2
|
|
8301
8348
|
*/
|
|
8302
8349
|
on_key_down(): Function | undefined;
|
|
8303
|
-
on_key_down(callback:
|
|
8350
|
+
on_key_down(callback: ElementKeyboardEvent<this>): this;
|
|
8304
8351
|
/**
|
|
8305
8352
|
* @docs:
|
|
8306
8353
|
* @title: On Key Press
|
|
@@ -8314,7 +8361,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8314
8361
|
* @funcs: 2
|
|
8315
8362
|
*/
|
|
8316
8363
|
on_key_press(): Function | undefined;
|
|
8317
|
-
on_key_press(callback:
|
|
8364
|
+
on_key_press(callback: ElementKeyboardEvent<this>): this;
|
|
8318
8365
|
/**
|
|
8319
8366
|
* @docs:
|
|
8320
8367
|
* @title: On Key Up
|
|
@@ -8330,7 +8377,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8330
8377
|
* @funcs: 2
|
|
8331
8378
|
*/
|
|
8332
8379
|
on_key_up(): Function | undefined;
|
|
8333
|
-
on_key_up(callback:
|
|
8380
|
+
on_key_up(callback: ElementKeyboardEvent<this>): this;
|
|
8334
8381
|
/**
|
|
8335
8382
|
* @docs:
|
|
8336
8383
|
* @title: On dbl click
|
|
@@ -8345,7 +8392,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8345
8392
|
* @funcs: 2
|
|
8346
8393
|
*/
|
|
8347
8394
|
on_dbl_click(): Function | undefined;
|
|
8348
|
-
on_dbl_click(callback:
|
|
8395
|
+
on_dbl_click(callback: ElementMouseEvent<this>): this;
|
|
8349
8396
|
/**
|
|
8350
8397
|
* @docs:
|
|
8351
8398
|
* @title: On Mouse Down
|
|
@@ -8359,7 +8406,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8359
8406
|
* @funcs: 2
|
|
8360
8407
|
*/
|
|
8361
8408
|
on_mouse_down(): Function | undefined;
|
|
8362
|
-
on_mouse_down(callback:
|
|
8409
|
+
on_mouse_down(callback: ElementMouseEvent<this>): this;
|
|
8363
8410
|
/**
|
|
8364
8411
|
* @docs:
|
|
8365
8412
|
* @title: On Mouse Move
|
|
@@ -8373,7 +8420,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8373
8420
|
* @funcs: 2
|
|
8374
8421
|
*/
|
|
8375
8422
|
on_mouse_move(): Function | undefined;
|
|
8376
|
-
on_mouse_move(callback:
|
|
8423
|
+
on_mouse_move(callback: ElementMouseEvent<this>): this;
|
|
8377
8424
|
/**
|
|
8378
8425
|
* @docs:
|
|
8379
8426
|
* @title: On mouse out
|
|
@@ -8388,7 +8435,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8388
8435
|
* @funcs: 2
|
|
8389
8436
|
*/
|
|
8390
8437
|
on_mouse_out(): Function | undefined;
|
|
8391
|
-
on_mouse_out(callback:
|
|
8438
|
+
on_mouse_out(callback: ElementMouseEvent<this>): this;
|
|
8392
8439
|
/**
|
|
8393
8440
|
* @docs:
|
|
8394
8441
|
* @title: On Mouse Over
|
|
@@ -8401,7 +8448,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8401
8448
|
* @funcs: 2
|
|
8402
8449
|
*/
|
|
8403
8450
|
on_mouse_over(): Function | undefined;
|
|
8404
|
-
on_mouse_over(callback:
|
|
8451
|
+
on_mouse_over(callback: ElementMouseEvent<this>): this;
|
|
8405
8452
|
/**
|
|
8406
8453
|
* @docs:
|
|
8407
8454
|
* @title: On Mouse Up
|
|
@@ -8415,7 +8462,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8415
8462
|
* @funcs: 2
|
|
8416
8463
|
*/
|
|
8417
8464
|
on_mouse_up(): Function | undefined;
|
|
8418
|
-
on_mouse_up(callback:
|
|
8465
|
+
on_mouse_up(callback: ElementMouseEvent<this>): this;
|
|
8419
8466
|
/**
|
|
8420
8467
|
* @docs:
|
|
8421
8468
|
* @title: On Wheel
|
|
@@ -8443,7 +8490,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8443
8490
|
* @funcs: 2
|
|
8444
8491
|
*/
|
|
8445
8492
|
on_drag(): Function | undefined;
|
|
8446
|
-
on_drag(callback:
|
|
8493
|
+
on_drag(callback: ElementDragEvent<this>): this;
|
|
8447
8494
|
/**
|
|
8448
8495
|
* @docs:
|
|
8449
8496
|
* @title: On Drag End
|
|
@@ -8457,7 +8504,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8457
8504
|
* @funcs: 2
|
|
8458
8505
|
*/
|
|
8459
8506
|
on_drag_end(): Function | undefined;
|
|
8460
|
-
on_drag_end(callback:
|
|
8507
|
+
on_drag_end(callback: ElementDragEvent<this>): this;
|
|
8461
8508
|
/**
|
|
8462
8509
|
* @docs:
|
|
8463
8510
|
* @title: On Drag Enter
|
|
@@ -8476,7 +8523,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8476
8523
|
* @funcs: 2
|
|
8477
8524
|
*/
|
|
8478
8525
|
on_drag_enter(): Function | undefined;
|
|
8479
|
-
on_drag_enter(callback:
|
|
8526
|
+
on_drag_enter(callback: ElementDragEvent<this>): this;
|
|
8480
8527
|
/**
|
|
8481
8528
|
* @docs:
|
|
8482
8529
|
* @title: On drag leave
|
|
@@ -8495,7 +8542,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8495
8542
|
* @funcs: 2
|
|
8496
8543
|
*/
|
|
8497
8544
|
on_drag_leave(): Function | undefined;
|
|
8498
|
-
on_drag_leave(callback:
|
|
8545
|
+
on_drag_leave(callback: ElementDragEvent<this>): this;
|
|
8499
8546
|
/**
|
|
8500
8547
|
* @docs:
|
|
8501
8548
|
* @title: On drag over
|
|
@@ -8510,7 +8557,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8510
8557
|
* @funcs: 2
|
|
8511
8558
|
*/
|
|
8512
8559
|
on_drag_over(): Function | undefined;
|
|
8513
|
-
on_drag_over(callback:
|
|
8560
|
+
on_drag_over(callback: ElementDragEvent<this>): this;
|
|
8514
8561
|
/**
|
|
8515
8562
|
* @docs:
|
|
8516
8563
|
* @title: On Drag Start
|
|
@@ -8525,7 +8572,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8525
8572
|
* @funcs: 2
|
|
8526
8573
|
*/
|
|
8527
8574
|
on_drag_start(): Function | undefined;
|
|
8528
|
-
on_drag_start(callback:
|
|
8575
|
+
on_drag_start(callback: ElementDragEvent<this>): this;
|
|
8529
8576
|
/**
|
|
8530
8577
|
* @docs:
|
|
8531
8578
|
* @title: On drop
|
|
@@ -8538,7 +8585,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8538
8585
|
* @funcs: 2
|
|
8539
8586
|
*/
|
|
8540
8587
|
on_drop(): Function | undefined;
|
|
8541
|
-
on_drop(callback:
|
|
8588
|
+
on_drop(callback: ElementEvent<this>): this;
|
|
8542
8589
|
/**
|
|
8543
8590
|
* @docs:
|
|
8544
8591
|
* @title: On Copy
|
|
@@ -8552,7 +8599,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8552
8599
|
* @description Returns the `VElement` object. Unless parameter `value` is `null`, then the attribute's value is returned.
|
|
8553
8600
|
*/
|
|
8554
8601
|
on_copy(): Function | undefined;
|
|
8555
|
-
on_copy(callback:
|
|
8602
|
+
on_copy(callback: ElementEvent<this>): this;
|
|
8556
8603
|
/**
|
|
8557
8604
|
* @docs:
|
|
8558
8605
|
* @title: On Cut
|
|
@@ -8566,7 +8613,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8566
8613
|
* @funcs: 2
|
|
8567
8614
|
*/
|
|
8568
8615
|
on_cut(): Function | undefined;
|
|
8569
|
-
on_cut(callback:
|
|
8616
|
+
on_cut(callback: ElementEvent<this>): this;
|
|
8570
8617
|
/**
|
|
8571
8618
|
* @docs:
|
|
8572
8619
|
* @title: On Paste
|
|
@@ -8580,7 +8627,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8580
8627
|
* @funcs: 2
|
|
8581
8628
|
*/
|
|
8582
8629
|
on_paste(): Function | undefined;
|
|
8583
|
-
on_paste(callback:
|
|
8630
|
+
on_paste(callback: ElementEvent<this>): this;
|
|
8584
8631
|
/**
|
|
8585
8632
|
* @docs:
|
|
8586
8633
|
* @title: On Abort
|
|
@@ -8595,7 +8642,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8595
8642
|
* @funcs: 2
|
|
8596
8643
|
*/
|
|
8597
8644
|
on_abort(): Function | undefined;
|
|
8598
|
-
on_abort(callback:
|
|
8645
|
+
on_abort(callback: ElementEvent<this>): this;
|
|
8599
8646
|
/**
|
|
8600
8647
|
* @docs:
|
|
8601
8648
|
* @title: On Can Play
|
|
@@ -8610,7 +8657,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8610
8657
|
* @funcs: 2
|
|
8611
8658
|
*/
|
|
8612
8659
|
on_canplay(): Function | undefined;
|
|
8613
|
-
on_canplay(callback:
|
|
8660
|
+
on_canplay(callback: ElementEvent<this>): this;
|
|
8614
8661
|
/**
|
|
8615
8662
|
* @docs:
|
|
8616
8663
|
* @title: On Can Play Through
|
|
@@ -8624,11 +8671,11 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8624
8671
|
* @funcs: 2
|
|
8625
8672
|
*/
|
|
8626
8673
|
on_canplay_through(): Function | undefined;
|
|
8627
|
-
on_canplay_through(callback:
|
|
8674
|
+
on_canplay_through(callback: ElementEvent<this>): this;
|
|
8628
8675
|
/**
|
|
8629
8676
|
* @docs:
|
|
8630
8677
|
* @title: On Cue Change
|
|
8631
|
-
* @desc: Script to be run when the cue changes in a
|
|
8678
|
+
* @desc: Script to be run when the cue changes in a \<track> element.
|
|
8632
8679
|
* The equivalent of HTML attribute `oncuechange`.
|
|
8633
8680
|
* The first parameter of the callback is the `VElement` object.
|
|
8634
8681
|
* @param:
|
|
@@ -8640,7 +8687,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8640
8687
|
* @funcs: 2
|
|
8641
8688
|
*/
|
|
8642
8689
|
on_cue_change(): Function | undefined;
|
|
8643
|
-
on_cue_change(callback:
|
|
8690
|
+
on_cue_change(callback: ElementEvent<this>): this;
|
|
8644
8691
|
/**
|
|
8645
8692
|
* @docs:
|
|
8646
8693
|
* @title: On Duration Change
|
|
@@ -8654,7 +8701,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8654
8701
|
* @funcs: 2
|
|
8655
8702
|
*/
|
|
8656
8703
|
on_duration_change(): Function | undefined;
|
|
8657
|
-
on_duration_change(callback:
|
|
8704
|
+
on_duration_change(callback: ElementEvent<this>): this;
|
|
8658
8705
|
/**
|
|
8659
8706
|
* @docs:
|
|
8660
8707
|
* @title: On Emptied
|
|
@@ -8668,7 +8715,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8668
8715
|
* @funcs: 2
|
|
8669
8716
|
*/
|
|
8670
8717
|
on_emptied(): Function | undefined;
|
|
8671
|
-
on_emptied(callback:
|
|
8718
|
+
on_emptied(callback: ElementEvent<this>): this;
|
|
8672
8719
|
/**
|
|
8673
8720
|
* @docs:
|
|
8674
8721
|
* @title: On ended
|
|
@@ -8683,7 +8730,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8683
8730
|
* @funcs: 2
|
|
8684
8731
|
*/
|
|
8685
8732
|
on_ended(): Function | undefined;
|
|
8686
|
-
on_ended(callback:
|
|
8733
|
+
on_ended(callback: ElementEvent<this>): this;
|
|
8687
8734
|
/**
|
|
8688
8735
|
* @docs:
|
|
8689
8736
|
* @title: On Error
|
|
@@ -8711,7 +8758,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8711
8758
|
* @funcs: 2
|
|
8712
8759
|
*/
|
|
8713
8760
|
on_loaded_data(): Function | undefined;
|
|
8714
|
-
on_loaded_data(callback:
|
|
8761
|
+
on_loaded_data(callback: ElementEvent<this>): this;
|
|
8715
8762
|
/**
|
|
8716
8763
|
* @docs:
|
|
8717
8764
|
* @title: On loaded metadata
|
|
@@ -8726,7 +8773,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8726
8773
|
* @funcs: 2
|
|
8727
8774
|
*/
|
|
8728
8775
|
on_loaded_metadata(): Function | undefined;
|
|
8729
|
-
on_loaded_metadata(callback:
|
|
8776
|
+
on_loaded_metadata(callback: ElementEvent<this>): this;
|
|
8730
8777
|
/**
|
|
8731
8778
|
* @docs:
|
|
8732
8779
|
* @title: On load start
|
|
@@ -8745,7 +8792,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8745
8792
|
* @funcs: 2
|
|
8746
8793
|
*/
|
|
8747
8794
|
on_load_start(): Function | undefined;
|
|
8748
|
-
on_load_start(callback:
|
|
8795
|
+
on_load_start(callback: ElementEvent<this>): this;
|
|
8749
8796
|
/**
|
|
8750
8797
|
* @docs:
|
|
8751
8798
|
* @title: On Pause
|
|
@@ -8758,7 +8805,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8758
8805
|
* @funcs: 2
|
|
8759
8806
|
*/
|
|
8760
8807
|
on_pause(): Function | undefined;
|
|
8761
|
-
on_pause(callback:
|
|
8808
|
+
on_pause(callback: ElementEvent<this>): this;
|
|
8762
8809
|
/**
|
|
8763
8810
|
* @docs:
|
|
8764
8811
|
* @title: On Play
|
|
@@ -8772,7 +8819,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8772
8819
|
* @funcs: 2
|
|
8773
8820
|
*/
|
|
8774
8821
|
on_play(): Function | undefined;
|
|
8775
|
-
on_play(callback:
|
|
8822
|
+
on_play(callback: ElementEvent<this>): this;
|
|
8776
8823
|
/**
|
|
8777
8824
|
* @docs:
|
|
8778
8825
|
* @title: On Playing
|
|
@@ -8800,7 +8847,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8800
8847
|
* @funcs: 2
|
|
8801
8848
|
*/
|
|
8802
8849
|
on_progress(): Function | undefined;
|
|
8803
|
-
on_progress(callback:
|
|
8850
|
+
on_progress(callback: ElementEvent<this>): this;
|
|
8804
8851
|
/**
|
|
8805
8852
|
* @docs:
|
|
8806
8853
|
* @title: On Rate Change
|
|
@@ -8814,7 +8861,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8814
8861
|
* @funcs: 2
|
|
8815
8862
|
*/
|
|
8816
8863
|
on_rate_change(): Function | undefined;
|
|
8817
|
-
on_rate_change(callback:
|
|
8864
|
+
on_rate_change(callback: ElementEvent<this>): this;
|
|
8818
8865
|
/**
|
|
8819
8866
|
* @docs:
|
|
8820
8867
|
* @title: On seeked
|
|
@@ -8856,7 +8903,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8856
8903
|
* @funcs: 2
|
|
8857
8904
|
*/
|
|
8858
8905
|
on_stalled(): Function | undefined;
|
|
8859
|
-
on_stalled(callback:
|
|
8906
|
+
on_stalled(callback: ElementEvent<this>): this;
|
|
8860
8907
|
/**
|
|
8861
8908
|
* @docs:
|
|
8862
8909
|
* @title: On Suspend
|
|
@@ -8882,7 +8929,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8882
8929
|
* @funcs: 2
|
|
8883
8930
|
*/
|
|
8884
8931
|
on_time_update(): Function | undefined;
|
|
8885
|
-
on_time_update(callback:
|
|
8932
|
+
on_time_update(callback: ElementEvent<this>): this;
|
|
8886
8933
|
/**
|
|
8887
8934
|
* @docs:
|
|
8888
8935
|
* @title: On Volume Change
|
|
@@ -8896,7 +8943,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8896
8943
|
* @funcs: 2
|
|
8897
8944
|
*/
|
|
8898
8945
|
on_volume_change(): Function | undefined;
|
|
8899
|
-
on_volume_change(callback:
|
|
8946
|
+
on_volume_change(callback: ElementEvent<this>): this;
|
|
8900
8947
|
/**
|
|
8901
8948
|
* @docs:
|
|
8902
8949
|
* @title: On Waiting
|
|
@@ -8913,7 +8960,7 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8913
8960
|
/**
|
|
8914
8961
|
* @docs:
|
|
8915
8962
|
* @title: On toggle
|
|
8916
|
-
* @desc: Fires when the user opens or closes the
|
|
8963
|
+
* @desc: Fires when the user opens or closes the \<details> element.
|
|
8917
8964
|
* The equivalent of HTML attribute `ontoggle`.
|
|
8918
8965
|
* The first parameter of the callback is the `VElement` object.
|
|
8919
8966
|
* @param:
|
|
@@ -8924,905 +8971,840 @@ export declare abstract class VElement extends HTMLElement {
|
|
|
8924
8971
|
* @funcs: 2
|
|
8925
8972
|
*/
|
|
8926
8973
|
on_toggle(): Function | undefined;
|
|
8927
|
-
on_toggle(callback:
|
|
8974
|
+
on_toggle(callback: ElementEvent<this>): this;
|
|
8928
8975
|
}
|
|
8929
8976
|
export declare function isVElement(type: any): type is VElement;
|
|
8930
8977
|
export declare function is_velement(type: any): type is VElement;
|
|
8931
8978
|
export declare function extend<T extends Record<string, ((this: VElement & ThisType<VElement>, ...args: any[]) => any) | any>>(extension: T): void;
|
|
8932
8979
|
export declare function wrapper<T extends new (...args: any[]) => any>(constructor: T): <Extensions extends object = {}>(...args: ConstructorParameters<T>) => InstanceType<T> & Extensions;
|
|
8933
8980
|
export declare function create_null<T extends new (...args: any[]) => any>(target_class: T): <Extensions extends object = {}>() => InstanceType<T> & Extensions;
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
|
|
8937
|
-
default_style
|
|
8938
|
-
default_attributes
|
|
8939
|
-
default_events
|
|
8940
|
-
}
|
|
8941
|
-
type _SafeVBaseElement = typeof VElement & typeof HTMLElement & {
|
|
8942
|
-
new (): VElement & HTMLElement & VElementExtensions;
|
|
8943
|
-
prototype: VElement & HTMLElement & VElementExtensions;
|
|
8981
|
+
export type VElementBaseSignature = {
|
|
8982
|
+
new (...args: any[]): VElement & VElementExtensions;
|
|
8983
|
+
element_tag: string;
|
|
8984
|
+
default_style: Record<string, any>;
|
|
8985
|
+
default_attributes: Record<string, any>;
|
|
8986
|
+
default_events: Record<string, any>;
|
|
8944
8987
|
};
|
|
8945
|
-
|
|
8988
|
+
type VElementBaseSignature2 = VElementBaseSignature;
|
|
8989
|
+
declare const VHTMLElement_base: VElementBaseSignature2;
|
|
8946
8990
|
export declare class VHTMLElement extends VHTMLElement_base {
|
|
8947
|
-
|
|
8948
|
-
|
|
8949
|
-
export interface VHTMLElement extends HTMLElement, VBaseElement, VElementExtensions {
|
|
8991
|
+
static element_name: string;
|
|
8992
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
8950
8993
|
}
|
|
8951
|
-
export declare const VHTML: <Extensions extends object = {}>(args?:
|
|
8994
|
+
export declare const VHTML: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VHTMLElement & Extensions;
|
|
8952
8995
|
export declare const NullVHTML: <Extensions extends object = {}>() => VHTMLElement & Extensions;
|
|
8953
8996
|
declare module '../ui/any_element.d.ts' {
|
|
8954
8997
|
interface AnyElementMap {
|
|
8955
8998
|
VHTMLElement: VHTMLElement;
|
|
8956
8999
|
}
|
|
8957
9000
|
}
|
|
8958
|
-
declare const VAnchorElement_base:
|
|
9001
|
+
declare const VAnchorElement_base: VElementBaseSignature2;
|
|
8959
9002
|
export declare class VAnchorElement extends VAnchorElement_base {
|
|
9003
|
+
static element_name: string;
|
|
8960
9004
|
static element_tag: string;
|
|
8961
|
-
constructor(args?:
|
|
9005
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
8962
9006
|
}
|
|
8963
|
-
export
|
|
8964
|
-
}
|
|
8965
|
-
export declare const VAnchor: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VAnchorElement & Extensions;
|
|
9007
|
+
export declare const VAnchor: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VAnchorElement & Extensions;
|
|
8966
9008
|
export declare const NullVAnchor: <Extensions extends object = {}>() => VAnchorElement & Extensions;
|
|
8967
9009
|
declare module '../ui/any_element.d.ts' {
|
|
8968
9010
|
interface AnyElementMap {
|
|
8969
9011
|
VAnchorElement: VAnchorElement;
|
|
8970
9012
|
}
|
|
8971
9013
|
}
|
|
8972
|
-
declare const VAreaElement_base:
|
|
9014
|
+
declare const VAreaElement_base: VElementBaseSignature2;
|
|
8973
9015
|
export declare class VAreaElement extends VAreaElement_base {
|
|
9016
|
+
static element_name: string;
|
|
8974
9017
|
static element_tag: string;
|
|
8975
|
-
constructor(args?:
|
|
8976
|
-
}
|
|
8977
|
-
export interface VAreaElement extends HTMLAreaElement, VBaseElement, VElementExtensions {
|
|
9018
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
8978
9019
|
}
|
|
8979
|
-
export declare const VArea: <Extensions extends object = {}>(args?:
|
|
9020
|
+
export declare const VArea: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VAreaElement & Extensions;
|
|
8980
9021
|
export declare const NullVArea: <Extensions extends object = {}>() => VAreaElement & Extensions;
|
|
8981
9022
|
declare module '../ui/any_element.d.ts' {
|
|
8982
9023
|
interface AnyElementMap {
|
|
8983
9024
|
VAreaElement: VAreaElement;
|
|
8984
9025
|
}
|
|
8985
9026
|
}
|
|
8986
|
-
declare const VAudioElement_base:
|
|
9027
|
+
declare const VAudioElement_base: VElementBaseSignature2;
|
|
8987
9028
|
export declare class VAudioElement extends VAudioElement_base {
|
|
9029
|
+
static element_name: string;
|
|
8988
9030
|
static element_tag: string;
|
|
8989
|
-
constructor(args?:
|
|
8990
|
-
}
|
|
8991
|
-
export interface VAudioElement extends HTMLAudioElement, VBaseElement, VElementExtensions {
|
|
9031
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
8992
9032
|
}
|
|
8993
|
-
export declare const VAudio: <Extensions extends object = {}>(args?:
|
|
9033
|
+
export declare const VAudio: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VAudioElement & Extensions;
|
|
8994
9034
|
export declare const NullVAudio: <Extensions extends object = {}>() => VAudioElement & Extensions;
|
|
8995
9035
|
declare module '../ui/any_element.d.ts' {
|
|
8996
9036
|
interface AnyElementMap {
|
|
8997
9037
|
VAudioElement: VAudioElement;
|
|
8998
9038
|
}
|
|
8999
9039
|
}
|
|
9000
|
-
declare const VBlockQuoteElement_base:
|
|
9040
|
+
declare const VBlockQuoteElement_base: VElementBaseSignature2;
|
|
9001
9041
|
export declare class VBlockQuoteElement extends VBlockQuoteElement_base {
|
|
9042
|
+
static element_name: string;
|
|
9002
9043
|
static element_tag: string;
|
|
9003
|
-
constructor(args?:
|
|
9044
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9004
9045
|
}
|
|
9005
|
-
export
|
|
9006
|
-
}
|
|
9007
|
-
export declare const VBlockQuote: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VBlockQuoteElement & Extensions;
|
|
9046
|
+
export declare const VBlockQuote: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VBlockQuoteElement & Extensions;
|
|
9008
9047
|
export declare const NullVBlockQuote: <Extensions extends object = {}>() => VBlockQuoteElement & Extensions;
|
|
9009
9048
|
declare module '../ui/any_element.d.ts' {
|
|
9010
9049
|
interface AnyElementMap {
|
|
9011
9050
|
VBlockQuoteElement: VBlockQuoteElement;
|
|
9012
9051
|
}
|
|
9013
9052
|
}
|
|
9014
|
-
declare const VBodyElement_base:
|
|
9053
|
+
declare const VBodyElement_base: VElementBaseSignature2;
|
|
9015
9054
|
export declare class VBodyElement extends VBodyElement_base {
|
|
9055
|
+
static element_name: string;
|
|
9016
9056
|
static element_tag: string;
|
|
9017
|
-
constructor(args?:
|
|
9018
|
-
}
|
|
9019
|
-
export interface VBodyElement extends HTMLBodyElement, VBaseElement, VElementExtensions {
|
|
9057
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9020
9058
|
}
|
|
9021
|
-
export declare const VBody: <Extensions extends object = {}>(args?:
|
|
9059
|
+
export declare const VBody: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VBodyElement & Extensions;
|
|
9022
9060
|
export declare const NullVBody: <Extensions extends object = {}>() => VBodyElement & Extensions;
|
|
9023
9061
|
declare module '../ui/any_element.d.ts' {
|
|
9024
9062
|
interface AnyElementMap {
|
|
9025
9063
|
VBodyElement: VBodyElement;
|
|
9026
9064
|
}
|
|
9027
9065
|
}
|
|
9028
|
-
declare const VBRElement_base:
|
|
9066
|
+
declare const VBRElement_base: VElementBaseSignature2;
|
|
9029
9067
|
export declare class VBRElement extends VBRElement_base {
|
|
9068
|
+
static element_name: string;
|
|
9030
9069
|
static element_tag: string;
|
|
9031
|
-
constructor(args?:
|
|
9032
|
-
}
|
|
9033
|
-
export interface VBRElement extends HTMLBRElement, VBaseElement, VElementExtensions {
|
|
9070
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9034
9071
|
}
|
|
9035
|
-
export declare const VBR: <Extensions extends object = {}>(args?:
|
|
9072
|
+
export declare const VBR: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VBRElement & Extensions;
|
|
9036
9073
|
export declare const NullVBR: <Extensions extends object = {}>() => VBRElement & Extensions;
|
|
9037
9074
|
declare module '../ui/any_element.d.ts' {
|
|
9038
9075
|
interface AnyElementMap {
|
|
9039
9076
|
VBRElement: VBRElement;
|
|
9040
9077
|
}
|
|
9041
9078
|
}
|
|
9042
|
-
declare const VButtonElement_base:
|
|
9079
|
+
declare const VButtonElement_base: VElementBaseSignature2;
|
|
9043
9080
|
export declare class VButtonElement extends VButtonElement_base {
|
|
9081
|
+
static element_name: string;
|
|
9044
9082
|
static element_tag: string;
|
|
9045
|
-
constructor(args?:
|
|
9083
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9046
9084
|
}
|
|
9047
|
-
export
|
|
9048
|
-
}
|
|
9049
|
-
export declare const VButton: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VButtonElement & Extensions;
|
|
9085
|
+
export declare const VButton: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VButtonElement & Extensions;
|
|
9050
9086
|
export declare const NullVButton: <Extensions extends object = {}>() => VButtonElement & Extensions;
|
|
9051
9087
|
declare module '../ui/any_element.d.ts' {
|
|
9052
9088
|
interface AnyElementMap {
|
|
9053
9089
|
VButtonElement: VButtonElement;
|
|
9054
9090
|
}
|
|
9055
9091
|
}
|
|
9056
|
-
declare const VCanvasElement_base:
|
|
9092
|
+
declare const VCanvasElement_base: VElementBaseSignature2;
|
|
9057
9093
|
export declare class VCanvasElement extends VCanvasElement_base {
|
|
9094
|
+
static element_name: string;
|
|
9058
9095
|
static element_tag: string;
|
|
9059
|
-
constructor(args?:
|
|
9060
|
-
}
|
|
9061
|
-
export interface VCanvasElement extends HTMLCanvasElement, VBaseElement, VElementExtensions {
|
|
9096
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9062
9097
|
}
|
|
9063
|
-
export declare const VCanvas: <Extensions extends object = {}>(args?:
|
|
9098
|
+
export declare const VCanvas: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VCanvasElement & Extensions;
|
|
9064
9099
|
export declare const NullVCanvas: <Extensions extends object = {}>() => VCanvasElement & Extensions;
|
|
9065
9100
|
declare module '../ui/any_element.d.ts' {
|
|
9066
9101
|
interface AnyElementMap {
|
|
9067
9102
|
VCanvasElement: VCanvasElement;
|
|
9068
9103
|
}
|
|
9069
9104
|
}
|
|
9070
|
-
declare const VTableCaptionElement_base:
|
|
9105
|
+
declare const VTableCaptionElement_base: VElementBaseSignature2;
|
|
9071
9106
|
export declare class VTableCaptionElement extends VTableCaptionElement_base {
|
|
9107
|
+
static element_name: string;
|
|
9072
9108
|
static element_tag: string;
|
|
9073
|
-
constructor(args?:
|
|
9109
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9074
9110
|
}
|
|
9075
|
-
export
|
|
9076
|
-
}
|
|
9077
|
-
export declare const VTableCaption: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VTableCaptionElement & Extensions;
|
|
9111
|
+
export declare const VTableCaption: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTableCaptionElement & Extensions;
|
|
9078
9112
|
export declare const NullVTableCaption: <Extensions extends object = {}>() => VTableCaptionElement & Extensions;
|
|
9079
9113
|
declare module '../ui/any_element.d.ts' {
|
|
9080
9114
|
interface AnyElementMap {
|
|
9081
9115
|
VTableCaptionElement: VTableCaptionElement;
|
|
9082
9116
|
}
|
|
9083
9117
|
}
|
|
9084
|
-
declare const VTableColElement_base:
|
|
9118
|
+
declare const VTableColElement_base: VElementBaseSignature2;
|
|
9085
9119
|
export declare class VTableColElement extends VTableColElement_base {
|
|
9120
|
+
static element_name: string;
|
|
9086
9121
|
static element_tag: string;
|
|
9087
|
-
constructor(args?:
|
|
9088
|
-
}
|
|
9089
|
-
export interface VTableColElement extends HTMLTableColElement, VBaseElement, VElementExtensions {
|
|
9122
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9090
9123
|
}
|
|
9091
|
-
export declare const VTableCol: <Extensions extends object = {}>(args?:
|
|
9124
|
+
export declare const VTableCol: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTableColElement & Extensions;
|
|
9092
9125
|
export declare const NullVTableCol: <Extensions extends object = {}>() => VTableColElement & Extensions;
|
|
9093
9126
|
declare module '../ui/any_element.d.ts' {
|
|
9094
9127
|
interface AnyElementMap {
|
|
9095
9128
|
VTableColElement: VTableColElement;
|
|
9096
9129
|
}
|
|
9097
9130
|
}
|
|
9098
|
-
declare const VDataElement_base:
|
|
9131
|
+
declare const VDataElement_base: VElementBaseSignature2;
|
|
9099
9132
|
export declare class VDataElement extends VDataElement_base {
|
|
9133
|
+
static element_name: string;
|
|
9100
9134
|
static element_tag: string;
|
|
9101
|
-
constructor(args?:
|
|
9102
|
-
}
|
|
9103
|
-
export interface VDataElement extends HTMLDataElement, VBaseElement, VElementExtensions {
|
|
9135
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9104
9136
|
}
|
|
9105
|
-
export declare const VData: <Extensions extends object = {}>(args?:
|
|
9137
|
+
export declare const VData: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VDataElement & Extensions;
|
|
9106
9138
|
export declare const NullVData: <Extensions extends object = {}>() => VDataElement & Extensions;
|
|
9107
9139
|
declare module '../ui/any_element.d.ts' {
|
|
9108
9140
|
interface AnyElementMap {
|
|
9109
9141
|
VDataElement: VDataElement;
|
|
9110
9142
|
}
|
|
9111
9143
|
}
|
|
9112
|
-
declare const VDataListElement_base:
|
|
9144
|
+
declare const VDataListElement_base: VElementBaseSignature2;
|
|
9113
9145
|
export declare class VDataListElement extends VDataListElement_base {
|
|
9146
|
+
static element_name: string;
|
|
9114
9147
|
static element_tag: string;
|
|
9115
|
-
constructor(args?:
|
|
9148
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9116
9149
|
}
|
|
9117
|
-
export
|
|
9118
|
-
}
|
|
9119
|
-
export declare const VDataList: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VDataListElement & Extensions;
|
|
9150
|
+
export declare const VDataList: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VDataListElement & Extensions;
|
|
9120
9151
|
export declare const NullVDataList: <Extensions extends object = {}>() => VDataListElement & Extensions;
|
|
9121
9152
|
declare module '../ui/any_element.d.ts' {
|
|
9122
9153
|
interface AnyElementMap {
|
|
9123
9154
|
VDataListElement: VDataListElement;
|
|
9124
9155
|
}
|
|
9125
9156
|
}
|
|
9126
|
-
declare const VDListElement_base:
|
|
9157
|
+
declare const VDListElement_base: VElementBaseSignature2;
|
|
9127
9158
|
export declare class VDListElement extends VDListElement_base {
|
|
9159
|
+
static element_name: string;
|
|
9128
9160
|
static element_tag: string;
|
|
9129
|
-
constructor(args?:
|
|
9130
|
-
}
|
|
9131
|
-
export interface VDListElement extends HTMLDListElement, VBaseElement, VElementExtensions {
|
|
9161
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9132
9162
|
}
|
|
9133
|
-
export declare const VDList: <Extensions extends object = {}>(args?:
|
|
9163
|
+
export declare const VDList: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VDListElement & Extensions;
|
|
9134
9164
|
export declare const NullVDList: <Extensions extends object = {}>() => VDListElement & Extensions;
|
|
9135
9165
|
declare module '../ui/any_element.d.ts' {
|
|
9136
9166
|
interface AnyElementMap {
|
|
9137
9167
|
VDListElement: VDListElement;
|
|
9138
9168
|
}
|
|
9139
9169
|
}
|
|
9140
|
-
declare const VDirectoryElement_base:
|
|
9170
|
+
declare const VDirectoryElement_base: VElementBaseSignature2;
|
|
9141
9171
|
export declare class VDirectoryElement extends VDirectoryElement_base {
|
|
9172
|
+
static element_name: string;
|
|
9142
9173
|
static element_tag: string;
|
|
9143
|
-
constructor(args?:
|
|
9144
|
-
}
|
|
9145
|
-
export interface VDirectoryElement extends HTMLDirectoryElement, VBaseElement, VElementExtensions {
|
|
9174
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9146
9175
|
}
|
|
9147
|
-
export declare const VDirectory: <Extensions extends object = {}>(args?:
|
|
9176
|
+
export declare const VDirectory: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VDirectoryElement & Extensions;
|
|
9148
9177
|
export declare const NullVDirectory: <Extensions extends object = {}>() => VDirectoryElement & Extensions;
|
|
9149
9178
|
declare module '../ui/any_element.d.ts' {
|
|
9150
9179
|
interface AnyElementMap {
|
|
9151
9180
|
VDirectoryElement: VDirectoryElement;
|
|
9152
9181
|
}
|
|
9153
9182
|
}
|
|
9154
|
-
declare const VDivElement_base:
|
|
9183
|
+
declare const VDivElement_base: VElementBaseSignature2;
|
|
9155
9184
|
export declare class VDivElement extends VDivElement_base {
|
|
9185
|
+
static element_name: string;
|
|
9156
9186
|
static element_tag: string;
|
|
9157
|
-
constructor(args?:
|
|
9187
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9158
9188
|
}
|
|
9159
|
-
export
|
|
9160
|
-
}
|
|
9161
|
-
export declare const VDiv: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VDivElement & Extensions;
|
|
9189
|
+
export declare const VDiv: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VDivElement & Extensions;
|
|
9162
9190
|
export declare const NullVDiv: <Extensions extends object = {}>() => VDivElement & Extensions;
|
|
9163
9191
|
declare module '../ui/any_element.d.ts' {
|
|
9164
9192
|
interface AnyElementMap {
|
|
9165
9193
|
VDivElement: VDivElement;
|
|
9166
9194
|
}
|
|
9167
9195
|
}
|
|
9168
|
-
declare const VEmbedElement_base:
|
|
9196
|
+
declare const VEmbedElement_base: VElementBaseSignature2;
|
|
9169
9197
|
export declare class VEmbedElement extends VEmbedElement_base {
|
|
9198
|
+
static element_name: string;
|
|
9170
9199
|
static element_tag: string;
|
|
9171
|
-
constructor(args?:
|
|
9172
|
-
}
|
|
9173
|
-
export interface VEmbedElement extends HTMLEmbedElement, VBaseElement, VElementExtensions {
|
|
9200
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9174
9201
|
}
|
|
9175
|
-
export declare const VEmbed: <Extensions extends object = {}>(args?:
|
|
9202
|
+
export declare const VEmbed: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VEmbedElement & Extensions;
|
|
9176
9203
|
export declare const NullVEmbed: <Extensions extends object = {}>() => VEmbedElement & Extensions;
|
|
9177
9204
|
declare module '../ui/any_element.d.ts' {
|
|
9178
9205
|
interface AnyElementMap {
|
|
9179
9206
|
VEmbedElement: VEmbedElement;
|
|
9180
9207
|
}
|
|
9181
9208
|
}
|
|
9182
|
-
declare const VFieldSetElement_base:
|
|
9209
|
+
declare const VFieldSetElement_base: VElementBaseSignature2;
|
|
9183
9210
|
export declare class VFieldSetElement extends VFieldSetElement_base {
|
|
9211
|
+
static element_name: string;
|
|
9184
9212
|
static element_tag: string;
|
|
9185
|
-
constructor(args?:
|
|
9186
|
-
}
|
|
9187
|
-
export interface VFieldSetElement extends HTMLFieldSetElement, VBaseElement, VElementExtensions {
|
|
9213
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9188
9214
|
}
|
|
9189
|
-
export declare const VFieldSet: <Extensions extends object = {}>(args?:
|
|
9215
|
+
export declare const VFieldSet: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VFieldSetElement & Extensions;
|
|
9190
9216
|
export declare const NullVFieldSet: <Extensions extends object = {}>() => VFieldSetElement & Extensions;
|
|
9191
9217
|
declare module '../ui/any_element.d.ts' {
|
|
9192
9218
|
interface AnyElementMap {
|
|
9193
9219
|
VFieldSetElement: VFieldSetElement;
|
|
9194
9220
|
}
|
|
9195
9221
|
}
|
|
9196
|
-
declare const VFormElement_base:
|
|
9222
|
+
declare const VFormElement_base: VElementBaseSignature2;
|
|
9197
9223
|
export declare class VFormElement extends VFormElement_base {
|
|
9224
|
+
static element_name: string;
|
|
9198
9225
|
static element_tag: string;
|
|
9199
|
-
constructor(args?:
|
|
9226
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9200
9227
|
}
|
|
9201
|
-
export
|
|
9202
|
-
}
|
|
9203
|
-
export declare const VForm: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VFormElement & Extensions;
|
|
9228
|
+
export declare const VForm: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VFormElement & Extensions;
|
|
9204
9229
|
export declare const NullVForm: <Extensions extends object = {}>() => VFormElement & Extensions;
|
|
9205
9230
|
declare module '../ui/any_element.d.ts' {
|
|
9206
9231
|
interface AnyElementMap {
|
|
9207
9232
|
VFormElement: VFormElement;
|
|
9208
9233
|
}
|
|
9209
9234
|
}
|
|
9210
|
-
declare const VHeadingElement_base:
|
|
9235
|
+
declare const VHeadingElement_base: VElementBaseSignature2;
|
|
9211
9236
|
export declare class VHeadingElement extends VHeadingElement_base {
|
|
9237
|
+
static element_name: string;
|
|
9212
9238
|
static element_tag: string;
|
|
9213
|
-
constructor(args?:
|
|
9214
|
-
}
|
|
9215
|
-
export interface VHeadingElement extends HTMLHeadingElement, VBaseElement, VElementExtensions {
|
|
9239
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9216
9240
|
}
|
|
9217
|
-
export declare const VHeading: <Extensions extends object = {}>(args?:
|
|
9241
|
+
export declare const VHeading: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VHeadingElement & Extensions;
|
|
9218
9242
|
export declare const NullVHeading: <Extensions extends object = {}>() => VHeadingElement & Extensions;
|
|
9219
9243
|
declare module '../ui/any_element.d.ts' {
|
|
9220
9244
|
interface AnyElementMap {
|
|
9221
9245
|
VHeadingElement: VHeadingElement;
|
|
9222
9246
|
}
|
|
9223
9247
|
}
|
|
9224
|
-
declare const VHeadElement_base:
|
|
9248
|
+
declare const VHeadElement_base: VElementBaseSignature2;
|
|
9225
9249
|
export declare class VHeadElement extends VHeadElement_base {
|
|
9250
|
+
static element_name: string;
|
|
9226
9251
|
static element_tag: string;
|
|
9227
|
-
constructor(args?:
|
|
9252
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9228
9253
|
}
|
|
9229
|
-
export
|
|
9230
|
-
}
|
|
9231
|
-
export declare const VHead: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VHeadElement & Extensions;
|
|
9254
|
+
export declare const VHead: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VHeadElement & Extensions;
|
|
9232
9255
|
export declare const NullVHead: <Extensions extends object = {}>() => VHeadElement & Extensions;
|
|
9233
9256
|
declare module '../ui/any_element.d.ts' {
|
|
9234
9257
|
interface AnyElementMap {
|
|
9235
9258
|
VHeadElement: VHeadElement;
|
|
9236
9259
|
}
|
|
9237
9260
|
}
|
|
9238
|
-
declare const VHRElement_base:
|
|
9261
|
+
declare const VHRElement_base: VElementBaseSignature2;
|
|
9239
9262
|
export declare class VHRElement extends VHRElement_base {
|
|
9263
|
+
static element_name: string;
|
|
9240
9264
|
static element_tag: string;
|
|
9241
|
-
constructor(args?:
|
|
9242
|
-
}
|
|
9243
|
-
export interface VHRElement extends HTMLHRElement, VBaseElement, VElementExtensions {
|
|
9265
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9244
9266
|
}
|
|
9245
|
-
export declare const VHR: <Extensions extends object = {}>(args?:
|
|
9267
|
+
export declare const VHR: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VHRElement & Extensions;
|
|
9246
9268
|
export declare const NullVHR: <Extensions extends object = {}>() => VHRElement & Extensions;
|
|
9247
9269
|
declare module '../ui/any_element.d.ts' {
|
|
9248
9270
|
interface AnyElementMap {
|
|
9249
9271
|
VHRElement: VHRElement;
|
|
9250
9272
|
}
|
|
9251
9273
|
}
|
|
9252
|
-
declare const VImageElement_base:
|
|
9274
|
+
declare const VImageElement_base: VElementBaseSignature2;
|
|
9253
9275
|
export declare class VImageElement extends VImageElement_base {
|
|
9276
|
+
static element_name: string;
|
|
9254
9277
|
static element_tag: string;
|
|
9255
|
-
constructor(args?:
|
|
9256
|
-
}
|
|
9257
|
-
export interface VImageElement extends HTMLImageElement, VBaseElement, VElementExtensions {
|
|
9278
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9258
9279
|
}
|
|
9259
|
-
export declare const VImage: <Extensions extends object = {}>(args?:
|
|
9280
|
+
export declare const VImage: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VImageElement & Extensions;
|
|
9260
9281
|
export declare const NullVImage: <Extensions extends object = {}>() => VImageElement & Extensions;
|
|
9261
9282
|
declare module '../ui/any_element.d.ts' {
|
|
9262
9283
|
interface AnyElementMap {
|
|
9263
9284
|
VImageElement: VImageElement;
|
|
9264
9285
|
}
|
|
9265
9286
|
}
|
|
9266
|
-
declare const VInputElement_base:
|
|
9287
|
+
declare const VInputElement_base: VElementBaseSignature2;
|
|
9267
9288
|
export declare class VInputElement extends VInputElement_base {
|
|
9289
|
+
static element_name: string;
|
|
9268
9290
|
static element_tag: string;
|
|
9269
|
-
constructor(args?:
|
|
9291
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9270
9292
|
}
|
|
9271
|
-
export
|
|
9272
|
-
}
|
|
9273
|
-
export declare const VInput: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VInputElement & Extensions;
|
|
9293
|
+
export declare const VInput: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VInputElement & Extensions;
|
|
9274
9294
|
export declare const NullVInput: <Extensions extends object = {}>() => VInputElement & Extensions;
|
|
9275
9295
|
declare module '../ui/any_element.d.ts' {
|
|
9276
9296
|
interface AnyElementMap {
|
|
9277
9297
|
VInputElement: VInputElement;
|
|
9278
9298
|
}
|
|
9279
9299
|
}
|
|
9280
|
-
declare const VModElement_base:
|
|
9300
|
+
declare const VModElement_base: VElementBaseSignature2;
|
|
9281
9301
|
export declare class VModElement extends VModElement_base {
|
|
9302
|
+
static element_name: string;
|
|
9282
9303
|
static element_tag: string;
|
|
9283
|
-
constructor(args?:
|
|
9284
|
-
}
|
|
9285
|
-
export interface VModElement extends HTMLModElement, VBaseElement, VElementExtensions {
|
|
9304
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9286
9305
|
}
|
|
9287
|
-
export declare const VMod: <Extensions extends object = {}>(args?:
|
|
9306
|
+
export declare const VMod: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VModElement & Extensions;
|
|
9288
9307
|
export declare const NullVMod: <Extensions extends object = {}>() => VModElement & Extensions;
|
|
9289
9308
|
declare module '../ui/any_element.d.ts' {
|
|
9290
9309
|
interface AnyElementMap {
|
|
9291
9310
|
VModElement: VModElement;
|
|
9292
9311
|
}
|
|
9293
9312
|
}
|
|
9294
|
-
declare const VLabelElement_base:
|
|
9313
|
+
declare const VLabelElement_base: VElementBaseSignature2;
|
|
9295
9314
|
export declare class VLabelElement extends VLabelElement_base {
|
|
9315
|
+
static element_name: string;
|
|
9296
9316
|
static element_tag: string;
|
|
9297
|
-
constructor(args?:
|
|
9298
|
-
}
|
|
9299
|
-
export interface VLabelElement extends HTMLLabelElement, VBaseElement, VElementExtensions {
|
|
9317
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9300
9318
|
}
|
|
9301
|
-
export declare const VLabel: <Extensions extends object = {}>(args?:
|
|
9319
|
+
export declare const VLabel: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VLabelElement & Extensions;
|
|
9302
9320
|
export declare const NullVLabel: <Extensions extends object = {}>() => VLabelElement & Extensions;
|
|
9303
9321
|
declare module '../ui/any_element.d.ts' {
|
|
9304
9322
|
interface AnyElementMap {
|
|
9305
9323
|
VLabelElement: VLabelElement;
|
|
9306
9324
|
}
|
|
9307
9325
|
}
|
|
9308
|
-
declare const VLegendElement_base:
|
|
9326
|
+
declare const VLegendElement_base: VElementBaseSignature2;
|
|
9309
9327
|
export declare class VLegendElement extends VLegendElement_base {
|
|
9328
|
+
static element_name: string;
|
|
9310
9329
|
static element_tag: string;
|
|
9311
|
-
constructor(args?:
|
|
9330
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9312
9331
|
}
|
|
9313
|
-
export
|
|
9314
|
-
}
|
|
9315
|
-
export declare const VLegend: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VLegendElement & Extensions;
|
|
9332
|
+
export declare const VLegend: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VLegendElement & Extensions;
|
|
9316
9333
|
export declare const NullVLegend: <Extensions extends object = {}>() => VLegendElement & Extensions;
|
|
9317
9334
|
declare module '../ui/any_element.d.ts' {
|
|
9318
9335
|
interface AnyElementMap {
|
|
9319
9336
|
VLegendElement: VLegendElement;
|
|
9320
9337
|
}
|
|
9321
9338
|
}
|
|
9322
|
-
declare const VLIElement_base:
|
|
9339
|
+
declare const VLIElement_base: VElementBaseSignature2;
|
|
9323
9340
|
export declare class VLIElement extends VLIElement_base {
|
|
9341
|
+
static element_name: string;
|
|
9324
9342
|
static element_tag: string;
|
|
9325
|
-
constructor(args?:
|
|
9326
|
-
}
|
|
9327
|
-
export interface VLIElement extends HTMLLIElement, VBaseElement, VElementExtensions {
|
|
9343
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9328
9344
|
}
|
|
9329
|
-
export declare const VLI: <Extensions extends object = {}>(args?:
|
|
9345
|
+
export declare const VLI: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VLIElement & Extensions;
|
|
9330
9346
|
export declare const NullVLI: <Extensions extends object = {}>() => VLIElement & Extensions;
|
|
9331
9347
|
declare module '../ui/any_element.d.ts' {
|
|
9332
9348
|
interface AnyElementMap {
|
|
9333
9349
|
VLIElement: VLIElement;
|
|
9334
9350
|
}
|
|
9335
9351
|
}
|
|
9336
|
-
declare const VLinkElement_base:
|
|
9352
|
+
declare const VLinkElement_base: VElementBaseSignature2;
|
|
9337
9353
|
export declare class VLinkElement extends VLinkElement_base {
|
|
9354
|
+
static element_name: string;
|
|
9338
9355
|
static element_tag: string;
|
|
9339
|
-
constructor(args?:
|
|
9340
|
-
}
|
|
9341
|
-
export interface VLinkElement extends HTMLLinkElement, VBaseElement, VElementExtensions {
|
|
9356
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9342
9357
|
}
|
|
9343
|
-
export declare const VLink: <Extensions extends object = {}>(args?:
|
|
9358
|
+
export declare const VLink: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VLinkElement & Extensions;
|
|
9344
9359
|
export declare const NullVLink: <Extensions extends object = {}>() => VLinkElement & Extensions;
|
|
9345
9360
|
declare module '../ui/any_element.d.ts' {
|
|
9346
9361
|
interface AnyElementMap {
|
|
9347
9362
|
VLinkElement: VLinkElement;
|
|
9348
9363
|
}
|
|
9349
9364
|
}
|
|
9350
|
-
declare const VMapElement_base:
|
|
9365
|
+
declare const VMapElement_base: VElementBaseSignature2;
|
|
9351
9366
|
export declare class VMapElement extends VMapElement_base {
|
|
9367
|
+
static element_name: string;
|
|
9352
9368
|
static element_tag: string;
|
|
9353
|
-
constructor(args?:
|
|
9369
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9354
9370
|
}
|
|
9355
|
-
export
|
|
9356
|
-
}
|
|
9357
|
-
export declare const VMap: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VMapElement & Extensions;
|
|
9371
|
+
export declare const VMap: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VMapElement & Extensions;
|
|
9358
9372
|
export declare const NullVMap: <Extensions extends object = {}>() => VMapElement & Extensions;
|
|
9359
9373
|
declare module '../ui/any_element.d.ts' {
|
|
9360
9374
|
interface AnyElementMap {
|
|
9361
9375
|
VMapElement: VMapElement;
|
|
9362
9376
|
}
|
|
9363
9377
|
}
|
|
9364
|
-
declare const VMetaElement_base:
|
|
9378
|
+
declare const VMetaElement_base: VElementBaseSignature2;
|
|
9365
9379
|
export declare class VMetaElement extends VMetaElement_base {
|
|
9380
|
+
static element_name: string;
|
|
9366
9381
|
static element_tag: string;
|
|
9367
|
-
constructor(args?:
|
|
9368
|
-
}
|
|
9369
|
-
export interface VMetaElement extends HTMLMetaElement, VBaseElement, VElementExtensions {
|
|
9382
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9370
9383
|
}
|
|
9371
|
-
export declare const VMeta: <Extensions extends object = {}>(args?:
|
|
9384
|
+
export declare const VMeta: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VMetaElement & Extensions;
|
|
9372
9385
|
export declare const NullVMeta: <Extensions extends object = {}>() => VMetaElement & Extensions;
|
|
9373
9386
|
declare module '../ui/any_element.d.ts' {
|
|
9374
9387
|
interface AnyElementMap {
|
|
9375
9388
|
VMetaElement: VMetaElement;
|
|
9376
9389
|
}
|
|
9377
9390
|
}
|
|
9378
|
-
declare const VMeterElement_base:
|
|
9391
|
+
declare const VMeterElement_base: VElementBaseSignature2;
|
|
9379
9392
|
export declare class VMeterElement extends VMeterElement_base {
|
|
9393
|
+
static element_name: string;
|
|
9380
9394
|
static element_tag: string;
|
|
9381
|
-
constructor(args?:
|
|
9395
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9382
9396
|
}
|
|
9383
|
-
export
|
|
9384
|
-
}
|
|
9385
|
-
export declare const VMeter: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VMeterElement & Extensions;
|
|
9397
|
+
export declare const VMeter: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VMeterElement & Extensions;
|
|
9386
9398
|
export declare const NullVMeter: <Extensions extends object = {}>() => VMeterElement & Extensions;
|
|
9387
9399
|
declare module '../ui/any_element.d.ts' {
|
|
9388
9400
|
interface AnyElementMap {
|
|
9389
9401
|
VMeterElement: VMeterElement;
|
|
9390
9402
|
}
|
|
9391
9403
|
}
|
|
9392
|
-
declare const VObjectElement_base:
|
|
9404
|
+
declare const VObjectElement_base: VElementBaseSignature2;
|
|
9393
9405
|
export declare class VObjectElement extends VObjectElement_base {
|
|
9406
|
+
static element_name: string;
|
|
9394
9407
|
static element_tag: string;
|
|
9395
|
-
constructor(args?:
|
|
9396
|
-
}
|
|
9397
|
-
export interface VObjectElement extends HTMLObjectElement, VBaseElement, VElementExtensions {
|
|
9408
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9398
9409
|
}
|
|
9399
|
-
export declare const VObject: <Extensions extends object = {}>(args?:
|
|
9410
|
+
export declare const VObject: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VObjectElement & Extensions;
|
|
9400
9411
|
export declare const NullVObject: <Extensions extends object = {}>() => VObjectElement & Extensions;
|
|
9401
9412
|
declare module '../ui/any_element.d.ts' {
|
|
9402
9413
|
interface AnyElementMap {
|
|
9403
9414
|
VObjectElement: VObjectElement;
|
|
9404
9415
|
}
|
|
9405
9416
|
}
|
|
9406
|
-
declare const VOListElement_base:
|
|
9417
|
+
declare const VOListElement_base: VElementBaseSignature2;
|
|
9407
9418
|
export declare class VOListElement extends VOListElement_base {
|
|
9419
|
+
static element_name: string;
|
|
9408
9420
|
static element_tag: string;
|
|
9409
|
-
constructor(args?:
|
|
9410
|
-
}
|
|
9411
|
-
export interface VOListElement extends HTMLOListElement, VBaseElement, VElementExtensions {
|
|
9421
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9412
9422
|
}
|
|
9413
|
-
export declare const VOList: <Extensions extends object = {}>(args?:
|
|
9423
|
+
export declare const VOList: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VOListElement & Extensions;
|
|
9414
9424
|
export declare const NullVOList: <Extensions extends object = {}>() => VOListElement & Extensions;
|
|
9415
9425
|
declare module '../ui/any_element.d.ts' {
|
|
9416
9426
|
interface AnyElementMap {
|
|
9417
9427
|
VOListElement: VOListElement;
|
|
9418
9428
|
}
|
|
9419
9429
|
}
|
|
9420
|
-
declare const VOptGroupElement_base:
|
|
9430
|
+
declare const VOptGroupElement_base: VElementBaseSignature2;
|
|
9421
9431
|
export declare class VOptGroupElement extends VOptGroupElement_base {
|
|
9432
|
+
static element_name: string;
|
|
9422
9433
|
static element_tag: string;
|
|
9423
|
-
constructor(args?:
|
|
9434
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9424
9435
|
}
|
|
9425
|
-
export
|
|
9426
|
-
}
|
|
9427
|
-
export declare const VOptGroup: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VOptGroupElement & Extensions;
|
|
9436
|
+
export declare const VOptGroup: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VOptGroupElement & Extensions;
|
|
9428
9437
|
export declare const NullVOptGroup: <Extensions extends object = {}>() => VOptGroupElement & Extensions;
|
|
9429
9438
|
declare module '../ui/any_element.d.ts' {
|
|
9430
9439
|
interface AnyElementMap {
|
|
9431
9440
|
VOptGroupElement: VOptGroupElement;
|
|
9432
9441
|
}
|
|
9433
9442
|
}
|
|
9434
|
-
declare const VOptionElement_base:
|
|
9443
|
+
declare const VOptionElement_base: VElementBaseSignature2;
|
|
9435
9444
|
export declare class VOptionElement extends VOptionElement_base {
|
|
9445
|
+
static element_name: string;
|
|
9436
9446
|
static element_tag: string;
|
|
9437
|
-
constructor(args?:
|
|
9438
|
-
}
|
|
9439
|
-
export interface VOptionElement extends HTMLOptionElement, VBaseElement, VElementExtensions {
|
|
9447
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9440
9448
|
}
|
|
9441
|
-
export declare const VOption: <Extensions extends object = {}>(args?:
|
|
9449
|
+
export declare const VOption: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VOptionElement & Extensions;
|
|
9442
9450
|
export declare const NullVOption: <Extensions extends object = {}>() => VOptionElement & Extensions;
|
|
9443
9451
|
declare module '../ui/any_element.d.ts' {
|
|
9444
9452
|
interface AnyElementMap {
|
|
9445
9453
|
VOptionElement: VOptionElement;
|
|
9446
9454
|
}
|
|
9447
9455
|
}
|
|
9448
|
-
declare const VOutputElement_base:
|
|
9456
|
+
declare const VOutputElement_base: VElementBaseSignature2;
|
|
9449
9457
|
export declare class VOutputElement extends VOutputElement_base {
|
|
9458
|
+
static element_name: string;
|
|
9450
9459
|
static element_tag: string;
|
|
9451
|
-
constructor(args?:
|
|
9452
|
-
}
|
|
9453
|
-
export interface VOutputElement extends HTMLOutputElement, VBaseElement, VElementExtensions {
|
|
9460
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9454
9461
|
}
|
|
9455
|
-
export declare const VOutput: <Extensions extends object = {}>(args?:
|
|
9462
|
+
export declare const VOutput: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VOutputElement & Extensions;
|
|
9456
9463
|
export declare const NullVOutput: <Extensions extends object = {}>() => VOutputElement & Extensions;
|
|
9457
9464
|
declare module '../ui/any_element.d.ts' {
|
|
9458
9465
|
interface AnyElementMap {
|
|
9459
9466
|
VOutputElement: VOutputElement;
|
|
9460
9467
|
}
|
|
9461
9468
|
}
|
|
9462
|
-
declare const VParagraphElement_base:
|
|
9469
|
+
declare const VParagraphElement_base: VElementBaseSignature2;
|
|
9463
9470
|
export declare class VParagraphElement extends VParagraphElement_base {
|
|
9471
|
+
static element_name: string;
|
|
9464
9472
|
static element_tag: string;
|
|
9465
|
-
constructor(args?:
|
|
9473
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9466
9474
|
}
|
|
9467
|
-
export
|
|
9468
|
-
}
|
|
9469
|
-
export declare const VParagraph: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VParagraphElement & Extensions;
|
|
9475
|
+
export declare const VParagraph: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VParagraphElement & Extensions;
|
|
9470
9476
|
export declare const NullVParagraph: <Extensions extends object = {}>() => VParagraphElement & Extensions;
|
|
9471
9477
|
declare module '../ui/any_element.d.ts' {
|
|
9472
9478
|
interface AnyElementMap {
|
|
9473
9479
|
VParagraphElement: VParagraphElement;
|
|
9474
9480
|
}
|
|
9475
9481
|
}
|
|
9476
|
-
declare const VParamElement_base:
|
|
9482
|
+
declare const VParamElement_base: VElementBaseSignature2;
|
|
9477
9483
|
export declare class VParamElement extends VParamElement_base {
|
|
9484
|
+
static element_name: string;
|
|
9478
9485
|
static element_tag: string;
|
|
9479
|
-
constructor(args?:
|
|
9480
|
-
}
|
|
9481
|
-
export interface VParamElement extends HTMLParamElement, VBaseElement, VElementExtensions {
|
|
9486
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9482
9487
|
}
|
|
9483
|
-
export declare const VParam: <Extensions extends object = {}>(args?:
|
|
9488
|
+
export declare const VParam: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VParamElement & Extensions;
|
|
9484
9489
|
export declare const NullVParam: <Extensions extends object = {}>() => VParamElement & Extensions;
|
|
9485
9490
|
declare module '../ui/any_element.d.ts' {
|
|
9486
9491
|
interface AnyElementMap {
|
|
9487
9492
|
VParamElement: VParamElement;
|
|
9488
9493
|
}
|
|
9489
9494
|
}
|
|
9490
|
-
declare const VPictureElement_base:
|
|
9495
|
+
declare const VPictureElement_base: VElementBaseSignature2;
|
|
9491
9496
|
export declare class VPictureElement extends VPictureElement_base {
|
|
9497
|
+
static element_name: string;
|
|
9492
9498
|
static element_tag: string;
|
|
9493
|
-
constructor(args?:
|
|
9494
|
-
}
|
|
9495
|
-
export interface VPictureElement extends HTMLPictureElement, VBaseElement, VElementExtensions {
|
|
9499
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9496
9500
|
}
|
|
9497
|
-
export declare const VPicture: <Extensions extends object = {}>(args?:
|
|
9501
|
+
export declare const VPicture: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VPictureElement & Extensions;
|
|
9498
9502
|
export declare const NullVPicture: <Extensions extends object = {}>() => VPictureElement & Extensions;
|
|
9499
9503
|
declare module '../ui/any_element.d.ts' {
|
|
9500
9504
|
interface AnyElementMap {
|
|
9501
9505
|
VPictureElement: VPictureElement;
|
|
9502
9506
|
}
|
|
9503
9507
|
}
|
|
9504
|
-
declare const VPreElement_base:
|
|
9508
|
+
declare const VPreElement_base: VElementBaseSignature2;
|
|
9505
9509
|
export declare class VPreElement extends VPreElement_base {
|
|
9510
|
+
static element_name: string;
|
|
9506
9511
|
static element_tag: string;
|
|
9507
|
-
constructor(args?:
|
|
9512
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9508
9513
|
}
|
|
9509
|
-
export
|
|
9510
|
-
}
|
|
9511
|
-
export declare const VPre: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VPreElement & Extensions;
|
|
9514
|
+
export declare const VPre: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VPreElement & Extensions;
|
|
9512
9515
|
export declare const NullVPre: <Extensions extends object = {}>() => VPreElement & Extensions;
|
|
9513
9516
|
declare module '../ui/any_element.d.ts' {
|
|
9514
9517
|
interface AnyElementMap {
|
|
9515
9518
|
VPreElement: VPreElement;
|
|
9516
9519
|
}
|
|
9517
9520
|
}
|
|
9518
|
-
declare const VProgressElement_base:
|
|
9521
|
+
declare const VProgressElement_base: VElementBaseSignature2;
|
|
9519
9522
|
export declare class VProgressElement extends VProgressElement_base {
|
|
9523
|
+
static element_name: string;
|
|
9520
9524
|
static element_tag: string;
|
|
9521
|
-
constructor(args?:
|
|
9522
|
-
}
|
|
9523
|
-
export interface VProgressElement extends HTMLProgressElement, VBaseElement, VElementExtensions {
|
|
9525
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9524
9526
|
}
|
|
9525
|
-
export declare const VProgress: <Extensions extends object = {}>(args?:
|
|
9527
|
+
export declare const VProgress: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VProgressElement & Extensions;
|
|
9526
9528
|
export declare const NullVProgress: <Extensions extends object = {}>() => VProgressElement & Extensions;
|
|
9527
9529
|
declare module '../ui/any_element.d.ts' {
|
|
9528
9530
|
interface AnyElementMap {
|
|
9529
9531
|
VProgressElement: VProgressElement;
|
|
9530
9532
|
}
|
|
9531
9533
|
}
|
|
9532
|
-
declare const VScriptElement_base:
|
|
9534
|
+
declare const VScriptElement_base: VElementBaseSignature2;
|
|
9533
9535
|
export declare class VScriptElement extends VScriptElement_base {
|
|
9536
|
+
static element_name: string;
|
|
9534
9537
|
static element_tag: string;
|
|
9535
|
-
constructor(args?:
|
|
9538
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9536
9539
|
}
|
|
9537
|
-
export
|
|
9538
|
-
}
|
|
9539
|
-
export declare const VScript: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VScriptElement & Extensions;
|
|
9540
|
+
export declare const VScript: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VScriptElement & Extensions;
|
|
9540
9541
|
export declare const NullVScript: <Extensions extends object = {}>() => VScriptElement & Extensions;
|
|
9541
9542
|
declare module '../ui/any_element.d.ts' {
|
|
9542
9543
|
interface AnyElementMap {
|
|
9543
9544
|
VScriptElement: VScriptElement;
|
|
9544
9545
|
}
|
|
9545
9546
|
}
|
|
9546
|
-
declare const VSelectElement_base:
|
|
9547
|
+
declare const VSelectElement_base: VElementBaseSignature2;
|
|
9547
9548
|
export declare class VSelectElement extends VSelectElement_base {
|
|
9549
|
+
static element_name: string;
|
|
9548
9550
|
static element_tag: string;
|
|
9549
|
-
constructor(args?:
|
|
9550
|
-
}
|
|
9551
|
-
export interface VSelectElement extends HTMLSelectElement, VBaseElement, VElementExtensions {
|
|
9551
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9552
9552
|
}
|
|
9553
|
-
export declare const VSelect: <Extensions extends object = {}>(args?:
|
|
9553
|
+
export declare const VSelect: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VSelectElement & Extensions;
|
|
9554
9554
|
export declare const NullVSelect: <Extensions extends object = {}>() => VSelectElement & Extensions;
|
|
9555
9555
|
declare module '../ui/any_element.d.ts' {
|
|
9556
9556
|
interface AnyElementMap {
|
|
9557
9557
|
VSelectElement: VSelectElement;
|
|
9558
9558
|
}
|
|
9559
9559
|
}
|
|
9560
|
-
declare const VSlotElement_base:
|
|
9560
|
+
declare const VSlotElement_base: VElementBaseSignature2;
|
|
9561
9561
|
export declare class VSlotElement extends VSlotElement_base {
|
|
9562
|
+
static element_name: string;
|
|
9562
9563
|
static element_tag: string;
|
|
9563
|
-
constructor(args?:
|
|
9564
|
-
}
|
|
9565
|
-
export interface VSlotElement extends HTMLSlotElement, VBaseElement, VElementExtensions {
|
|
9564
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9566
9565
|
}
|
|
9567
|
-
export declare const VSlot: <Extensions extends object = {}>(args?:
|
|
9566
|
+
export declare const VSlot: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VSlotElement & Extensions;
|
|
9568
9567
|
export declare const NullVSlot: <Extensions extends object = {}>() => VSlotElement & Extensions;
|
|
9569
9568
|
declare module '../ui/any_element.d.ts' {
|
|
9570
9569
|
interface AnyElementMap {
|
|
9571
9570
|
VSlotElement: VSlotElement;
|
|
9572
9571
|
}
|
|
9573
9572
|
}
|
|
9574
|
-
declare const VSourceElement_base:
|
|
9573
|
+
declare const VSourceElement_base: VElementBaseSignature2;
|
|
9575
9574
|
export declare class VSourceElement extends VSourceElement_base {
|
|
9575
|
+
static element_name: string;
|
|
9576
9576
|
static element_tag: string;
|
|
9577
|
-
constructor(args?:
|
|
9577
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9578
9578
|
}
|
|
9579
|
-
export
|
|
9580
|
-
}
|
|
9581
|
-
export declare const VSource: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VSourceElement & Extensions;
|
|
9579
|
+
export declare const VSource: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VSourceElement & Extensions;
|
|
9582
9580
|
export declare const NullVSource: <Extensions extends object = {}>() => VSourceElement & Extensions;
|
|
9583
9581
|
declare module '../ui/any_element.d.ts' {
|
|
9584
9582
|
interface AnyElementMap {
|
|
9585
9583
|
VSourceElement: VSourceElement;
|
|
9586
9584
|
}
|
|
9587
9585
|
}
|
|
9588
|
-
declare const VSpanElement_base:
|
|
9586
|
+
declare const VSpanElement_base: VElementBaseSignature2;
|
|
9589
9587
|
export declare class VSpanElement extends VSpanElement_base {
|
|
9588
|
+
static element_name: string;
|
|
9590
9589
|
static element_tag: string;
|
|
9591
|
-
constructor(args?:
|
|
9592
|
-
}
|
|
9593
|
-
export interface VSpanElement extends HTMLSpanElement, VBaseElement, VElementExtensions {
|
|
9590
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9594
9591
|
}
|
|
9595
|
-
export declare const VSpan: <Extensions extends object = {}>(args?:
|
|
9592
|
+
export declare const VSpan: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VSpanElement & Extensions;
|
|
9596
9593
|
export declare const NullVSpan: <Extensions extends object = {}>() => VSpanElement & Extensions;
|
|
9597
9594
|
declare module '../ui/any_element.d.ts' {
|
|
9598
9595
|
interface AnyElementMap {
|
|
9599
9596
|
VSpanElement: VSpanElement;
|
|
9600
9597
|
}
|
|
9601
9598
|
}
|
|
9602
|
-
declare const VTableElement_base:
|
|
9599
|
+
declare const VTableElement_base: VElementBaseSignature2;
|
|
9603
9600
|
export declare class VTableElement extends VTableElement_base {
|
|
9601
|
+
static element_name: string;
|
|
9604
9602
|
static element_tag: string;
|
|
9605
|
-
constructor(args?:
|
|
9606
|
-
}
|
|
9607
|
-
export interface VTableElement extends HTMLTableElement, VBaseElement, VElementExtensions {
|
|
9603
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9608
9604
|
}
|
|
9609
|
-
export declare const VTable: <Extensions extends object = {}>(args?:
|
|
9605
|
+
export declare const VTable: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTableElement & Extensions;
|
|
9610
9606
|
export declare const NullVTable: <Extensions extends object = {}>() => VTableElement & Extensions;
|
|
9611
9607
|
declare module '../ui/any_element.d.ts' {
|
|
9612
9608
|
interface AnyElementMap {
|
|
9613
9609
|
VTableElement: VTableElement;
|
|
9614
9610
|
}
|
|
9615
9611
|
}
|
|
9616
|
-
declare const VTHeadElement_base:
|
|
9612
|
+
declare const VTHeadElement_base: VElementBaseSignature2;
|
|
9617
9613
|
export declare class VTHeadElement extends VTHeadElement_base {
|
|
9614
|
+
static element_name: string;
|
|
9618
9615
|
static element_tag: string;
|
|
9619
|
-
constructor(args?:
|
|
9616
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9620
9617
|
}
|
|
9621
|
-
export
|
|
9622
|
-
}
|
|
9623
|
-
export declare const VTHead: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VTHeadElement & Extensions;
|
|
9618
|
+
export declare const VTHead: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTHeadElement & Extensions;
|
|
9624
9619
|
export declare const NullVTHead: <Extensions extends object = {}>() => VTHeadElement & Extensions;
|
|
9625
9620
|
declare module '../ui/any_element.d.ts' {
|
|
9626
9621
|
interface AnyElementMap {
|
|
9627
9622
|
VTHeadElement: VTHeadElement;
|
|
9628
9623
|
}
|
|
9629
9624
|
}
|
|
9630
|
-
declare const VTBodyElement_base:
|
|
9625
|
+
declare const VTBodyElement_base: VElementBaseSignature2;
|
|
9631
9626
|
export declare class VTBodyElement extends VTBodyElement_base {
|
|
9627
|
+
static element_name: string;
|
|
9632
9628
|
static element_tag: string;
|
|
9633
|
-
constructor(args?:
|
|
9634
|
-
}
|
|
9635
|
-
export interface VTBodyElement extends HTMLTableSectionElement, VBaseElement, VElementExtensions {
|
|
9629
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9636
9630
|
}
|
|
9637
|
-
export declare const VTBody: <Extensions extends object = {}>(args?:
|
|
9631
|
+
export declare const VTBody: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTBodyElement & Extensions;
|
|
9638
9632
|
export declare const NullVTBody: <Extensions extends object = {}>() => VTBodyElement & Extensions;
|
|
9639
9633
|
declare module '../ui/any_element.d.ts' {
|
|
9640
9634
|
interface AnyElementMap {
|
|
9641
9635
|
VTBodyElement: VTBodyElement;
|
|
9642
9636
|
}
|
|
9643
9637
|
}
|
|
9644
|
-
declare const VTFootElement_base:
|
|
9638
|
+
declare const VTFootElement_base: VElementBaseSignature2;
|
|
9645
9639
|
export declare class VTFootElement extends VTFootElement_base {
|
|
9640
|
+
static element_name: string;
|
|
9646
9641
|
static element_tag: string;
|
|
9647
|
-
constructor(args?:
|
|
9648
|
-
}
|
|
9649
|
-
export interface VTFootElement extends HTMLTableSectionElement, VBaseElement, VElementExtensions {
|
|
9642
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9650
9643
|
}
|
|
9651
|
-
export declare const VTFoot: <Extensions extends object = {}>(args?:
|
|
9644
|
+
export declare const VTFoot: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTFootElement & Extensions;
|
|
9652
9645
|
export declare const NullVTFoot: <Extensions extends object = {}>() => VTFootElement & Extensions;
|
|
9653
9646
|
declare module '../ui/any_element.d.ts' {
|
|
9654
9647
|
interface AnyElementMap {
|
|
9655
9648
|
VTFootElement: VTFootElement;
|
|
9656
9649
|
}
|
|
9657
9650
|
}
|
|
9658
|
-
declare const VTHElement_base:
|
|
9651
|
+
declare const VTHElement_base: VElementBaseSignature2;
|
|
9659
9652
|
export declare class VTHElement extends VTHElement_base {
|
|
9653
|
+
static element_name: string;
|
|
9660
9654
|
static element_tag: string;
|
|
9661
|
-
constructor(args?:
|
|
9655
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9662
9656
|
}
|
|
9663
|
-
export
|
|
9664
|
-
}
|
|
9665
|
-
export declare const VTH: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VTHElement & Extensions;
|
|
9657
|
+
export declare const VTH: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTHElement & Extensions;
|
|
9666
9658
|
export declare const NullVTH: <Extensions extends object = {}>() => VTHElement & Extensions;
|
|
9667
9659
|
declare module '../ui/any_element.d.ts' {
|
|
9668
9660
|
interface AnyElementMap {
|
|
9669
9661
|
VTHElement: VTHElement;
|
|
9670
9662
|
}
|
|
9671
9663
|
}
|
|
9672
|
-
declare const VTDElement_base:
|
|
9664
|
+
declare const VTDElement_base: VElementBaseSignature2;
|
|
9673
9665
|
export declare class VTDElement extends VTDElement_base {
|
|
9666
|
+
static element_name: string;
|
|
9674
9667
|
static element_tag: string;
|
|
9675
|
-
constructor(args?:
|
|
9676
|
-
}
|
|
9677
|
-
export interface VTDElement extends HTMLTableCellElement, VBaseElement, VElementExtensions {
|
|
9668
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9678
9669
|
}
|
|
9679
|
-
export declare const VTD: <Extensions extends object = {}>(args?:
|
|
9670
|
+
export declare const VTD: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTDElement & Extensions;
|
|
9680
9671
|
export declare const NullVTD: <Extensions extends object = {}>() => VTDElement & Extensions;
|
|
9681
9672
|
declare module '../ui/any_element.d.ts' {
|
|
9682
9673
|
interface AnyElementMap {
|
|
9683
9674
|
VTDElement: VTDElement;
|
|
9684
9675
|
}
|
|
9685
9676
|
}
|
|
9686
|
-
declare const VTemplateElement_base:
|
|
9677
|
+
declare const VTemplateElement_base: VElementBaseSignature2;
|
|
9687
9678
|
export declare class VTemplateElement extends VTemplateElement_base {
|
|
9679
|
+
static element_name: string;
|
|
9688
9680
|
static element_tag: string;
|
|
9689
|
-
constructor(args?:
|
|
9681
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9690
9682
|
}
|
|
9691
|
-
export
|
|
9692
|
-
}
|
|
9693
|
-
export declare const VTemplate: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VTemplateElement & Extensions;
|
|
9683
|
+
export declare const VTemplate: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTemplateElement & Extensions;
|
|
9694
9684
|
export declare const NullVTemplate: <Extensions extends object = {}>() => VTemplateElement & Extensions;
|
|
9695
9685
|
declare module '../ui/any_element.d.ts' {
|
|
9696
9686
|
interface AnyElementMap {
|
|
9697
9687
|
VTemplateElement: VTemplateElement;
|
|
9698
9688
|
}
|
|
9699
9689
|
}
|
|
9700
|
-
declare const VTextAreaElement_base:
|
|
9690
|
+
declare const VTextAreaElement_base: VElementBaseSignature2;
|
|
9701
9691
|
export declare class VTextAreaElement extends VTextAreaElement_base {
|
|
9692
|
+
static element_name: string;
|
|
9702
9693
|
static element_tag: string;
|
|
9703
|
-
constructor(args?:
|
|
9704
|
-
}
|
|
9705
|
-
export interface VTextAreaElement extends HTMLTextAreaElement, VBaseElement, VElementExtensions {
|
|
9694
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9706
9695
|
}
|
|
9707
|
-
export declare const VTextArea: <Extensions extends object = {}>(args?:
|
|
9696
|
+
export declare const VTextArea: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTextAreaElement & Extensions;
|
|
9708
9697
|
export declare const NullVTextArea: <Extensions extends object = {}>() => VTextAreaElement & Extensions;
|
|
9709
9698
|
declare module '../ui/any_element.d.ts' {
|
|
9710
9699
|
interface AnyElementMap {
|
|
9711
9700
|
VTextAreaElement: VTextAreaElement;
|
|
9712
9701
|
}
|
|
9713
9702
|
}
|
|
9714
|
-
declare const VTimeElement_base:
|
|
9703
|
+
declare const VTimeElement_base: VElementBaseSignature2;
|
|
9715
9704
|
export declare class VTimeElement extends VTimeElement_base {
|
|
9705
|
+
static element_name: string;
|
|
9716
9706
|
static element_tag: string;
|
|
9717
|
-
constructor(args?:
|
|
9718
|
-
}
|
|
9719
|
-
export interface VTimeElement extends HTMLTimeElement, VBaseElement, VElementExtensions {
|
|
9707
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9720
9708
|
}
|
|
9721
|
-
export declare const VTime: <Extensions extends object = {}>(args?:
|
|
9709
|
+
export declare const VTime: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTimeElement & Extensions;
|
|
9722
9710
|
export declare const NullVTime: <Extensions extends object = {}>() => VTimeElement & Extensions;
|
|
9723
9711
|
declare module '../ui/any_element.d.ts' {
|
|
9724
9712
|
interface AnyElementMap {
|
|
9725
9713
|
VTimeElement: VTimeElement;
|
|
9726
9714
|
}
|
|
9727
9715
|
}
|
|
9728
|
-
declare const VTitleElement_base:
|
|
9716
|
+
declare const VTitleElement_base: VElementBaseSignature2;
|
|
9729
9717
|
export declare class VTitleElement extends VTitleElement_base {
|
|
9718
|
+
static element_name: string;
|
|
9730
9719
|
static element_tag: string;
|
|
9731
|
-
constructor(args?:
|
|
9720
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9732
9721
|
}
|
|
9733
|
-
export
|
|
9734
|
-
}
|
|
9735
|
-
export declare const VTitle: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VTitleElement & Extensions;
|
|
9722
|
+
export declare const VTitle: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTitleElement & Extensions;
|
|
9736
9723
|
export declare const NullVTitle: <Extensions extends object = {}>() => VTitleElement & Extensions;
|
|
9737
9724
|
declare module '../ui/any_element.d.ts' {
|
|
9738
9725
|
interface AnyElementMap {
|
|
9739
9726
|
VTitleElement: VTitleElement;
|
|
9740
9727
|
}
|
|
9741
9728
|
}
|
|
9742
|
-
declare const VTableRowElement_base:
|
|
9729
|
+
declare const VTableRowElement_base: VElementBaseSignature2;
|
|
9743
9730
|
export declare class VTableRowElement extends VTableRowElement_base {
|
|
9731
|
+
static element_name: string;
|
|
9744
9732
|
static element_tag: string;
|
|
9745
|
-
constructor(args?:
|
|
9746
|
-
}
|
|
9747
|
-
export interface VTableRowElement extends HTMLTableRowElement, VBaseElement, VElementExtensions {
|
|
9733
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9748
9734
|
}
|
|
9749
|
-
export declare const VTableRow: <Extensions extends object = {}>(args?:
|
|
9735
|
+
export declare const VTableRow: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTableRowElement & Extensions;
|
|
9750
9736
|
export declare const NullVTableRow: <Extensions extends object = {}>() => VTableRowElement & Extensions;
|
|
9751
9737
|
declare module '../ui/any_element.d.ts' {
|
|
9752
9738
|
interface AnyElementMap {
|
|
9753
9739
|
VTableRowElement: VTableRowElement;
|
|
9754
9740
|
}
|
|
9755
9741
|
}
|
|
9756
|
-
declare const VTrackElement_base:
|
|
9742
|
+
declare const VTrackElement_base: VElementBaseSignature2;
|
|
9757
9743
|
export declare class VTrackElement extends VTrackElement_base {
|
|
9744
|
+
static element_name: string;
|
|
9758
9745
|
static element_tag: string;
|
|
9759
|
-
constructor(args?:
|
|
9746
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9760
9747
|
}
|
|
9761
|
-
export
|
|
9762
|
-
}
|
|
9763
|
-
export declare const VTrack: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VTrackElement & Extensions;
|
|
9748
|
+
export declare const VTrack: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VTrackElement & Extensions;
|
|
9764
9749
|
export declare const NullVTrack: <Extensions extends object = {}>() => VTrackElement & Extensions;
|
|
9765
9750
|
declare module '../ui/any_element.d.ts' {
|
|
9766
9751
|
interface AnyElementMap {
|
|
9767
9752
|
VTrackElement: VTrackElement;
|
|
9768
9753
|
}
|
|
9769
9754
|
}
|
|
9770
|
-
declare const VUListElement_base:
|
|
9755
|
+
declare const VUListElement_base: VElementBaseSignature2;
|
|
9771
9756
|
export declare class VUListElement extends VUListElement_base {
|
|
9757
|
+
static element_name: string;
|
|
9772
9758
|
static element_tag: string;
|
|
9773
|
-
constructor(args?:
|
|
9774
|
-
}
|
|
9775
|
-
export interface VUListElement extends HTMLUListElement, VBaseElement, VElementExtensions {
|
|
9759
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9776
9760
|
}
|
|
9777
|
-
export declare const VUList: <Extensions extends object = {}>(args?:
|
|
9761
|
+
export declare const VUList: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VUListElement & Extensions;
|
|
9778
9762
|
export declare const NullVUList: <Extensions extends object = {}>() => VUListElement & Extensions;
|
|
9779
9763
|
declare module '../ui/any_element.d.ts' {
|
|
9780
9764
|
interface AnyElementMap {
|
|
9781
9765
|
VUListElement: VUListElement;
|
|
9782
9766
|
}
|
|
9783
9767
|
}
|
|
9784
|
-
declare const VIFrameElement_base:
|
|
9768
|
+
declare const VIFrameElement_base: VElementBaseSignature2;
|
|
9785
9769
|
export declare class VIFrameElement extends VIFrameElement_base {
|
|
9770
|
+
static element_name: string;
|
|
9786
9771
|
static element_tag: string;
|
|
9787
|
-
constructor(args?:
|
|
9788
|
-
}
|
|
9789
|
-
export interface VIFrameElement extends HTMLIFrameElement, VBaseElement, VElementExtensions {
|
|
9772
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9790
9773
|
}
|
|
9791
|
-
export declare const VIFrame: <Extensions extends object = {}>(args?:
|
|
9774
|
+
export declare const VIFrame: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VIFrameElement & Extensions;
|
|
9792
9775
|
export declare const NullVIFrame: <Extensions extends object = {}>() => VIFrameElement & Extensions;
|
|
9793
9776
|
declare module '../ui/any_element.d.ts' {
|
|
9794
9777
|
interface AnyElementMap {
|
|
9795
9778
|
VIFrameElement: VIFrameElement;
|
|
9796
9779
|
}
|
|
9797
9780
|
}
|
|
9798
|
-
declare const VCodeElement_base:
|
|
9781
|
+
declare const VCodeElement_base: VElementBaseSignature2;
|
|
9799
9782
|
export declare class VCodeElement extends VCodeElement_base {
|
|
9783
|
+
static element_name: string;
|
|
9800
9784
|
static element_tag: string;
|
|
9801
|
-
constructor(args?:
|
|
9785
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9802
9786
|
}
|
|
9803
|
-
export
|
|
9804
|
-
}
|
|
9805
|
-
export declare const VCode: <Extensions extends object = {}>(args?: DerivedConstructorOptions | undefined) => VCodeElement & Extensions;
|
|
9787
|
+
export declare const VCode: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VCodeElement & Extensions;
|
|
9806
9788
|
export declare const NullVCode: <Extensions extends object = {}>() => VCodeElement & Extensions;
|
|
9807
9789
|
declare module '../ui/any_element.d.ts' {
|
|
9808
9790
|
interface AnyElementMap {
|
|
9809
9791
|
VCodeElement: VCodeElement;
|
|
9810
9792
|
}
|
|
9811
9793
|
}
|
|
9812
|
-
declare const VSectionElement_base:
|
|
9794
|
+
declare const VSectionElement_base: VElementBaseSignature2;
|
|
9813
9795
|
export declare class VSectionElement extends VSectionElement_base {
|
|
9796
|
+
static element_name: string;
|
|
9814
9797
|
static element_tag: string;
|
|
9815
|
-
constructor(args?:
|
|
9816
|
-
}
|
|
9817
|
-
export interface VSectionElement extends HTMLElement, VBaseElement, VElementExtensions {
|
|
9798
|
+
constructor(args?: DerivedVElementInitOptions);
|
|
9818
9799
|
}
|
|
9819
|
-
export declare const VSection: <Extensions extends object = {}>(args?:
|
|
9800
|
+
export declare const VSection: <Extensions extends object = {}>(args?: DerivedVElementInitOptions | undefined) => VSectionElement & Extensions;
|
|
9820
9801
|
export declare const NullVSection: <Extensions extends object = {}>() => VSectionElement & Extensions;
|
|
9821
9802
|
declare module '../ui/any_element.d.ts' {
|
|
9822
9803
|
interface AnyElementMap {
|
|
9823
9804
|
VSectionElement: VSectionElement;
|
|
9824
9805
|
}
|
|
9825
9806
|
}
|
|
9807
|
+
export type VBaseElements = VHTMLElement | VAnchorElement | VAreaElement | VAudioElement | VBlockQuoteElement | VBodyElement | VBRElement | VButtonElement | VCanvasElement | VTableCaptionElement | VTableColElement | VDataElement | VDataListElement | VDListElement | VDirectoryElement | VDivElement | VEmbedElement | VFieldSetElement | VFormElement | VHeadingElement | VHeadElement | VHRElement | VImageElement | VInputElement | VModElement | VLabelElement | VLegendElement | VLIElement | VLinkElement | VMapElement | VMetaElement | VMeterElement | VObjectElement | VOListElement | VOptGroupElement | VOptionElement | VOutputElement | VParagraphElement | VParamElement | VPictureElement | VPreElement | VProgressElement | VScriptElement | VSelectElement | VSlotElement | VSourceElement | VSpanElement | VTableElement | VTHeadElement | VTBodyElement | VTFootElement | VTHElement | VTDElement | VTemplateElement | VTextAreaElement | VTimeElement | VTitleElement | VTableRowElement | VTrackElement | VUListElement | VIFrameElement | VCodeElement | VSectionElement;
|
|
9826
9808
|
export declare const VElementTagMap: {
|
|
9827
9809
|
readonly _base: typeof VHTMLElement;
|
|
9828
9810
|
readonly a: typeof VAnchorElement;
|