@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
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
import { VElementTagMap } from "../elements/module.js";
|
|
2
|
-
import {
|
|
3
|
-
import { VStackElement } from "./stack";
|
|
1
|
+
import { VElementBaseSignature, VElementTagMap } from "../elements/module.js";
|
|
2
|
+
import { VStackElement } from "./stack.js";
|
|
4
3
|
export declare class ImageElement extends VElementTagMap.img {
|
|
5
|
-
static default_style: {
|
|
6
|
-
margin: string;
|
|
7
|
-
padding: string;
|
|
8
|
-
"object-fit": string;
|
|
9
|
-
};
|
|
10
4
|
static default_alt?: string;
|
|
11
5
|
_e?: HTMLImageElement;
|
|
12
6
|
constructor(src?: string, alt?: string);
|
|
@@ -15,18 +9,18 @@ export declare class ImageElement extends VElementTagMap.img {
|
|
|
15
9
|
src(value: string, set_aspect_ratio?: boolean): this;
|
|
16
10
|
alt(): string;
|
|
17
11
|
alt(value: string): this;
|
|
18
|
-
height(): string;
|
|
19
|
-
height(value: string, check_attribute?: boolean): this;
|
|
20
|
-
min_height(): string;
|
|
21
|
-
min_height(value: string): this;
|
|
22
|
-
max_height(): string;
|
|
23
|
-
max_height(value: string): this;
|
|
12
|
+
height(): string | number;
|
|
13
|
+
height(value: string | number, check_attribute?: boolean): this;
|
|
14
|
+
min_height(): string | number;
|
|
15
|
+
min_height(value: string | number): this;
|
|
16
|
+
max_height(): string | number;
|
|
17
|
+
max_height(value: string | number): this;
|
|
24
18
|
width(): string | number;
|
|
25
|
-
width(value: string, check_attribute?: boolean): this;
|
|
26
|
-
min_width(): string;
|
|
27
|
-
min_width(value: string): this;
|
|
28
|
-
max_width(): string;
|
|
29
|
-
max_width(value: string): this;
|
|
19
|
+
width(value: string | number, check_attribute?: boolean): this;
|
|
20
|
+
min_width(): string | number;
|
|
21
|
+
min_width(value: string | number): this;
|
|
22
|
+
max_width(): string | number;
|
|
23
|
+
max_width(value: string | number): this;
|
|
30
24
|
loading(): string;
|
|
31
25
|
loading(value: string): this;
|
|
32
26
|
}
|
|
@@ -37,7 +31,8 @@ declare module './any_element.d.ts' {
|
|
|
37
31
|
ImageElement: ImageElement;
|
|
38
32
|
}
|
|
39
33
|
}
|
|
40
|
-
|
|
34
|
+
declare const AnchorImageElement_base: VElementBaseSignature;
|
|
35
|
+
export declare class AnchorImageElement extends AnchorImageElement_base {
|
|
41
36
|
image: ImageElement;
|
|
42
37
|
constructor(href: string, src: string, alt: string);
|
|
43
38
|
set_default(): this;
|
|
@@ -45,18 +40,18 @@ export declare class AnchorImageElement extends AnchorElement {
|
|
|
45
40
|
src(value: string): this;
|
|
46
41
|
alt(): string;
|
|
47
42
|
alt(value: string): this;
|
|
48
|
-
height(): string;
|
|
49
|
-
height(value: string): this;
|
|
50
|
-
min_height(): string;
|
|
51
|
-
min_height(value: string): this;
|
|
52
|
-
max_height(): string;
|
|
53
|
-
max_height(value: string): this;
|
|
43
|
+
height(): string | number;
|
|
44
|
+
height(value: string | number): this;
|
|
45
|
+
min_height(): string | number;
|
|
46
|
+
min_height(value: string | number): this;
|
|
47
|
+
max_height(): string | number;
|
|
48
|
+
max_height(value: string | number): this;
|
|
54
49
|
width(): string | number;
|
|
55
|
-
width(value: string): this;
|
|
56
|
-
min_width(): string;
|
|
57
|
-
min_width(value: string): this;
|
|
58
|
-
max_width(): string;
|
|
59
|
-
max_width(value: string): this;
|
|
50
|
+
width(value: string | number): this;
|
|
51
|
+
min_width(): string | number;
|
|
52
|
+
min_width(value: string | number): this;
|
|
53
|
+
max_width(): string | number;
|
|
54
|
+
max_width(value: string | number): this;
|
|
60
55
|
loading(): string;
|
|
61
56
|
loading(value: string): this;
|
|
62
57
|
}
|
|
@@ -68,19 +63,6 @@ declare module './any_element.d.ts' {
|
|
|
68
63
|
}
|
|
69
64
|
}
|
|
70
65
|
export declare class ImageMaskElement extends VElementTagMap.div {
|
|
71
|
-
static default_style: {
|
|
72
|
-
margin: string;
|
|
73
|
-
padding: string;
|
|
74
|
-
"object-fit": string;
|
|
75
|
-
display: string;
|
|
76
|
-
"font-family": string;
|
|
77
|
-
"font-size": string;
|
|
78
|
-
color: string;
|
|
79
|
-
"text-decoration": string;
|
|
80
|
-
"text-underline-position": string;
|
|
81
|
-
outline: string;
|
|
82
|
-
border: string;
|
|
83
|
-
};
|
|
84
66
|
mask_child: VStackElement;
|
|
85
67
|
_img_src?: string;
|
|
86
68
|
constructor(src?: string);
|
|
@@ -103,20 +85,6 @@ declare module './any_element.d.ts' {
|
|
|
103
85
|
}
|
|
104
86
|
}
|
|
105
87
|
export declare class AnchorImageMaskElement extends VElementTagMap.a {
|
|
106
|
-
static default_style: {
|
|
107
|
-
margin: string;
|
|
108
|
-
padding: string;
|
|
109
|
-
"object-fit": string;
|
|
110
|
-
display: string;
|
|
111
|
-
"font-family": string;
|
|
112
|
-
"font-size": string;
|
|
113
|
-
color: string;
|
|
114
|
-
"text-decoration": string;
|
|
115
|
-
"text-underline-position": string;
|
|
116
|
-
cursor: string;
|
|
117
|
-
outline: string;
|
|
118
|
-
border: string;
|
|
119
|
-
};
|
|
120
88
|
mask_child: VStackElement;
|
|
121
89
|
_img_src?: string;
|
|
122
90
|
constructor(src?: string);
|
|
@@ -136,3 +104,4 @@ declare module './any_element.d.ts' {
|
|
|
136
104
|
AnchorImageMaskElement: AnchorImageMaskElement;
|
|
137
105
|
}
|
|
138
106
|
}
|
|
107
|
+
export {};
|
|
@@ -36,26 +36,40 @@ var __runInitializers = (this && this.__runInitializers) || function (thisArg, i
|
|
|
36
36
|
}
|
|
37
37
|
return useValue ? value : void 0;
|
|
38
38
|
};
|
|
39
|
-
var __setFunctionName = (this && this.__setFunctionName) || function (f, name, prefix) {
|
|
40
|
-
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
41
|
-
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
42
|
-
};
|
|
43
39
|
// Imports.
|
|
44
40
|
import { Utils } from "../modules/utils.js";
|
|
45
41
|
import { Elements, VElementTagMap } from "../elements/module.js";
|
|
46
|
-
import { Statics } from "../modules/statics";
|
|
47
|
-
import { Settings } from "../modules/settings";
|
|
48
|
-
import { AnchorElement } from "./link";
|
|
49
|
-
import { VStack } from "./stack";
|
|
42
|
+
import { Statics } from "../modules/statics.js";
|
|
43
|
+
import { Settings } from "../modules/settings.js";
|
|
44
|
+
import { AnchorElement } from "./link.js";
|
|
45
|
+
import { VStack } from "./stack.js";
|
|
50
46
|
// Image.
|
|
51
47
|
let ImageElement = (() => {
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
let _classDecorators = [Elements.create({
|
|
49
|
+
name: "ImageElement",
|
|
50
|
+
default_style: {
|
|
51
|
+
"margin": "0px",
|
|
52
|
+
"padding": "0px",
|
|
53
|
+
"object-fit": "cover",
|
|
54
|
+
},
|
|
55
|
+
})];
|
|
54
56
|
let _classDescriptor;
|
|
55
57
|
let _classExtraInitializers = [];
|
|
56
58
|
let _classThis;
|
|
57
59
|
let _classSuper = VElementTagMap.img;
|
|
58
|
-
var ImageElement =
|
|
60
|
+
var ImageElement = class extends _classSuper {
|
|
61
|
+
static { _classThis = this; }
|
|
62
|
+
static {
|
|
63
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
64
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
65
|
+
ImageElement = _classThis = _classDescriptor.value;
|
|
66
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
67
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
68
|
+
}
|
|
69
|
+
;
|
|
70
|
+
// Static attributes.
|
|
71
|
+
static default_alt;
|
|
72
|
+
_e;
|
|
59
73
|
// Constructor.
|
|
60
74
|
constructor(src, alt) {
|
|
61
75
|
// Initialize base class.
|
|
@@ -253,21 +267,6 @@ let ImageElement = (() => {
|
|
|
253
267
|
return this;
|
|
254
268
|
}
|
|
255
269
|
};
|
|
256
|
-
__setFunctionName(_classThis, "ImageElement");
|
|
257
|
-
(() => {
|
|
258
|
-
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
259
|
-
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
260
|
-
ImageElement = _classThis = _classDescriptor.value;
|
|
261
|
-
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
262
|
-
})();
|
|
263
|
-
_classThis.default_style = {
|
|
264
|
-
"margin": "0px",
|
|
265
|
-
"padding": "0px",
|
|
266
|
-
"object-fit": "cover",
|
|
267
|
-
};
|
|
268
|
-
(() => {
|
|
269
|
-
__runInitializers(_classThis, _classExtraInitializers);
|
|
270
|
-
})();
|
|
271
270
|
return ImageElement = _classThis;
|
|
272
271
|
})();
|
|
273
272
|
export { ImageElement };
|
|
@@ -285,18 +284,29 @@ export const NullImage = Elements.create_null(ImageElement);
|
|
|
285
284
|
// }
|
|
286
285
|
// AnchorImage.
|
|
287
286
|
let AnchorImageElement = (() => {
|
|
288
|
-
|
|
289
|
-
|
|
287
|
+
let _classDecorators = [Elements.create({
|
|
288
|
+
name: "AnchorImageElement",
|
|
289
|
+
})];
|
|
290
290
|
let _classDescriptor;
|
|
291
291
|
let _classExtraInitializers = [];
|
|
292
292
|
let _classThis;
|
|
293
293
|
let _classSuper = AnchorElement;
|
|
294
|
-
var AnchorImageElement =
|
|
294
|
+
var AnchorImageElement = class extends _classSuper {
|
|
295
|
+
static { _classThis = this; }
|
|
296
|
+
static {
|
|
297
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
298
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
299
|
+
AnchorImageElement = _classThis = _classDescriptor.value;
|
|
300
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
301
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
302
|
+
}
|
|
303
|
+
// Default styling.
|
|
304
|
+
image;
|
|
295
305
|
// Constructor.
|
|
296
306
|
constructor(href, src, alt) {
|
|
297
307
|
// Initialize base classes.
|
|
298
308
|
super(href, alt);
|
|
299
|
-
this.
|
|
309
|
+
this._init({
|
|
300
310
|
derived: AnchorImageElement,
|
|
301
311
|
});
|
|
302
312
|
// image.
|
|
@@ -338,14 +348,6 @@ let AnchorImageElement = (() => {
|
|
|
338
348
|
return this.image.loading();
|
|
339
349
|
} this.image.loading(value); return this; }
|
|
340
350
|
};
|
|
341
|
-
__setFunctionName(_classThis, "AnchorImageElement");
|
|
342
|
-
(() => {
|
|
343
|
-
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
344
|
-
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
345
|
-
AnchorImageElement = _classThis = _classDescriptor.value;
|
|
346
|
-
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
347
|
-
__runInitializers(_classThis, _classExtraInitializers);
|
|
348
|
-
})();
|
|
349
351
|
return AnchorImageElement = _classThis;
|
|
350
352
|
})();
|
|
351
353
|
export { AnchorImageElement };
|
|
@@ -353,13 +355,39 @@ export const AnchorImage = Elements.wrapper(AnchorImageElement);
|
|
|
353
355
|
export const NullAnchorImage = Elements.create_null(AnchorImageElement);
|
|
354
356
|
// ImageMask.
|
|
355
357
|
let ImageMaskElement = (() => {
|
|
356
|
-
|
|
357
|
-
|
|
358
|
+
let _classDecorators = [Elements.create({
|
|
359
|
+
name: "ImageMaskElement",
|
|
360
|
+
default_style: {
|
|
361
|
+
"margin": "0px",
|
|
362
|
+
"padding": "0px",
|
|
363
|
+
"object-fit": "cover",
|
|
364
|
+
"display": "inline-block",
|
|
365
|
+
// Anchor.
|
|
366
|
+
"font-family": "inherit",
|
|
367
|
+
"font-size": "inherit",
|
|
368
|
+
"color": "inherit",
|
|
369
|
+
"text-decoration": "none",
|
|
370
|
+
"text-underline-position": "none",
|
|
371
|
+
"outline": "none",
|
|
372
|
+
"border": "none",
|
|
373
|
+
},
|
|
374
|
+
})];
|
|
358
375
|
let _classDescriptor;
|
|
359
376
|
let _classExtraInitializers = [];
|
|
360
377
|
let _classThis;
|
|
361
378
|
let _classSuper = VElementTagMap.div;
|
|
362
|
-
var ImageMaskElement =
|
|
379
|
+
var ImageMaskElement = class extends _classSuper {
|
|
380
|
+
static { _classThis = this; }
|
|
381
|
+
static {
|
|
382
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
383
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
384
|
+
ImageMaskElement = _classThis = _classDescriptor.value;
|
|
385
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
386
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
387
|
+
}
|
|
388
|
+
// Attributes.
|
|
389
|
+
mask_child;
|
|
390
|
+
_img_src;
|
|
363
391
|
// Constructor.
|
|
364
392
|
constructor(src) {
|
|
365
393
|
// Initialize base class.
|
|
@@ -434,30 +462,6 @@ let ImageMaskElement = (() => {
|
|
|
434
462
|
return this;
|
|
435
463
|
}
|
|
436
464
|
};
|
|
437
|
-
__setFunctionName(_classThis, "ImageMaskElement");
|
|
438
|
-
(() => {
|
|
439
|
-
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
440
|
-
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
441
|
-
ImageMaskElement = _classThis = _classDescriptor.value;
|
|
442
|
-
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
443
|
-
})();
|
|
444
|
-
_classThis.default_style = {
|
|
445
|
-
"margin": "0px",
|
|
446
|
-
"padding": "0px",
|
|
447
|
-
"object-fit": "cover",
|
|
448
|
-
"display": "inline-block",
|
|
449
|
-
// Anchor.
|
|
450
|
-
"font-family": "inherit",
|
|
451
|
-
"font-size": "inherit",
|
|
452
|
-
"color": "inherit",
|
|
453
|
-
"text-decoration": "none",
|
|
454
|
-
"text-underline-position": "none",
|
|
455
|
-
"outline": "none",
|
|
456
|
-
"border": "none",
|
|
457
|
-
};
|
|
458
|
-
(() => {
|
|
459
|
-
__runInitializers(_classThis, _classExtraInitializers);
|
|
460
|
-
})();
|
|
461
465
|
return ImageMaskElement = _classThis;
|
|
462
466
|
})();
|
|
463
467
|
export { ImageMaskElement };
|
|
@@ -465,13 +469,40 @@ export const ImageMask = Elements.wrapper(ImageMaskElement);
|
|
|
465
469
|
export const NullImageMask = Elements.create_null(ImageMaskElement);
|
|
466
470
|
// Exact copy of image mask.
|
|
467
471
|
let AnchorImageMaskElement = (() => {
|
|
468
|
-
|
|
469
|
-
|
|
472
|
+
let _classDecorators = [Elements.create({
|
|
473
|
+
name: "AnchorImageMaskElement",
|
|
474
|
+
default_style: {
|
|
475
|
+
"margin": "0px",
|
|
476
|
+
"padding": "0px",
|
|
477
|
+
"object-fit": "cover",
|
|
478
|
+
"display": "inline-block",
|
|
479
|
+
// Anchor.
|
|
480
|
+
"font-family": "inherit",
|
|
481
|
+
"font-size": "inherit",
|
|
482
|
+
"color": "inherit",
|
|
483
|
+
"text-decoration": "none",
|
|
484
|
+
"text-underline-position": "none",
|
|
485
|
+
"cursor": "pointer",
|
|
486
|
+
"outline": "none",
|
|
487
|
+
"border": "none",
|
|
488
|
+
},
|
|
489
|
+
})];
|
|
470
490
|
let _classDescriptor;
|
|
471
491
|
let _classExtraInitializers = [];
|
|
472
492
|
let _classThis;
|
|
473
493
|
let _classSuper = VElementTagMap.a;
|
|
474
|
-
var AnchorImageMaskElement =
|
|
494
|
+
var AnchorImageMaskElement = class extends _classSuper {
|
|
495
|
+
static { _classThis = this; }
|
|
496
|
+
static {
|
|
497
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
498
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
499
|
+
AnchorImageMaskElement = _classThis = _classDescriptor.value;
|
|
500
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
501
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
502
|
+
}
|
|
503
|
+
// Attributes.
|
|
504
|
+
mask_child;
|
|
505
|
+
_img_src;
|
|
475
506
|
// Constructor.
|
|
476
507
|
constructor(src) {
|
|
477
508
|
// Initialize base class.
|
|
@@ -538,31 +569,6 @@ let AnchorImageMaskElement = (() => {
|
|
|
538
569
|
return this;
|
|
539
570
|
}
|
|
540
571
|
};
|
|
541
|
-
__setFunctionName(_classThis, "AnchorImageMaskElement");
|
|
542
|
-
(() => {
|
|
543
|
-
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
544
|
-
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
545
|
-
AnchorImageMaskElement = _classThis = _classDescriptor.value;
|
|
546
|
-
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
547
|
-
})();
|
|
548
|
-
_classThis.default_style = {
|
|
549
|
-
"margin": "0px",
|
|
550
|
-
"padding": "0px",
|
|
551
|
-
"object-fit": "cover",
|
|
552
|
-
"display": "inline-block",
|
|
553
|
-
// Anchor.
|
|
554
|
-
"font-family": "inherit",
|
|
555
|
-
"font-size": "inherit",
|
|
556
|
-
"color": "inherit",
|
|
557
|
-
"text-decoration": "none",
|
|
558
|
-
"text-underline-position": "none",
|
|
559
|
-
"cursor": "pointer",
|
|
560
|
-
"outline": "none",
|
|
561
|
-
"border": "none",
|
|
562
|
-
};
|
|
563
|
-
(() => {
|
|
564
|
-
__runInitializers(_classThis, _classExtraInitializers);
|
|
565
|
-
})();
|
|
566
572
|
return AnchorImageMaskElement = _classThis;
|
|
567
573
|
})();
|
|
568
574
|
export { AnchorImageMaskElement };
|
|
@@ -1,27 +1,10 @@
|
|
|
1
|
-
import { VElementTagMap } from "../elements/module.js";
|
|
2
|
-
import { HStackElement
|
|
1
|
+
import { VElementBaseSignature, VElementTagMap, ElementKeyboardEvent, ElementEvent } from "../elements/module.js";
|
|
2
|
+
import { HStackElement } from "./stack";
|
|
3
3
|
import { TextElement } from "./text";
|
|
4
4
|
import { ImageMaskElement } from "./image";
|
|
5
5
|
import { GradientBorderElement } from "./gradient";
|
|
6
6
|
import { ScrollerElement } from "./scroller";
|
|
7
7
|
export declare class InputElement extends VElementTagMap.input {
|
|
8
|
-
static default_style: {
|
|
9
|
-
margin: string;
|
|
10
|
-
padding: string;
|
|
11
|
-
font: string;
|
|
12
|
-
color: string;
|
|
13
|
-
background: string;
|
|
14
|
-
outline: string;
|
|
15
|
-
border: string;
|
|
16
|
-
"border-radius": string;
|
|
17
|
-
"text-align": string;
|
|
18
|
-
"white-space": string;
|
|
19
|
-
};
|
|
20
|
-
static default_attributes: {
|
|
21
|
-
spellcheck: string;
|
|
22
|
-
autocorrect: string;
|
|
23
|
-
autocapitalize: string;
|
|
24
|
-
};
|
|
25
8
|
private _e;
|
|
26
9
|
constructor(placeholder?: string, type?: string, value?: string);
|
|
27
10
|
value(): string;
|
|
@@ -47,25 +30,6 @@ declare module './any_element.d.ts' {
|
|
|
47
30
|
}
|
|
48
31
|
}
|
|
49
32
|
export declare class InputBoxElement extends VElementTagMap.textarea {
|
|
50
|
-
static default_style: {
|
|
51
|
-
margin: string;
|
|
52
|
-
padding: string;
|
|
53
|
-
height: string;
|
|
54
|
-
font: string;
|
|
55
|
-
color: string;
|
|
56
|
-
background: string;
|
|
57
|
-
outline: string;
|
|
58
|
-
border: string;
|
|
59
|
-
"border-radius": string;
|
|
60
|
-
"text-align": string;
|
|
61
|
-
"white-space": string;
|
|
62
|
-
resize: string;
|
|
63
|
-
};
|
|
64
|
-
static default_attributes: {
|
|
65
|
-
spellcheck: string;
|
|
66
|
-
autocorrect: string;
|
|
67
|
-
autocapitalize: string;
|
|
68
|
-
};
|
|
69
33
|
_e?: HTMLTextAreaElement;
|
|
70
34
|
constructor(placeholder?: string);
|
|
71
35
|
value(): string;
|
|
@@ -90,41 +54,21 @@ declare module './any_element.d.ts' {
|
|
|
90
54
|
InputBoxElement: InputBoxElement;
|
|
91
55
|
}
|
|
92
56
|
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
"--input-background": string;
|
|
101
|
-
"--image-mask-color": string;
|
|
102
|
-
"--image-size": string;
|
|
103
|
-
"--image-margin-right": string;
|
|
104
|
-
"--image-margin-left": string;
|
|
105
|
-
"--image-alt": string;
|
|
106
|
-
"--focus-color": string;
|
|
107
|
-
"--missing-color": string;
|
|
108
|
-
margin: string;
|
|
109
|
-
padding: string;
|
|
110
|
-
display: string;
|
|
111
|
-
overflow: string;
|
|
112
|
-
"align-content": string;
|
|
113
|
-
"flex-direction": string;
|
|
114
|
-
outline: string;
|
|
115
|
-
border: string;
|
|
116
|
-
};
|
|
117
|
-
_focus_color: string;
|
|
118
|
-
_missing_color: string;
|
|
119
|
-
_mask_color: string;
|
|
120
|
-
_initial_border_color: string;
|
|
121
|
-
_missing: boolean;
|
|
57
|
+
declare const ExtendedInputElement_base: VElementBaseSignature;
|
|
58
|
+
export declare class ExtendedInputElement extends ExtendedInputElement_base {
|
|
59
|
+
private _focus_color;
|
|
60
|
+
private _missing_color;
|
|
61
|
+
private _mask_color;
|
|
62
|
+
private _initial_border_color;
|
|
63
|
+
private _hover_border_color;
|
|
122
64
|
label: TextElement;
|
|
123
65
|
image: ImageMaskElement;
|
|
124
66
|
input: (InputElement | InputBoxElement);
|
|
125
67
|
input_border: GradientBorderElement;
|
|
126
68
|
container: HStackElement;
|
|
127
69
|
error: TextElement;
|
|
70
|
+
is_missing: boolean;
|
|
71
|
+
is_focused: boolean;
|
|
128
72
|
constructor({ label, image, alt, placeholder, id, readonly, required, type, value, }: {
|
|
129
73
|
label?: string;
|
|
130
74
|
image?: string;
|
|
@@ -157,14 +101,16 @@ export declare class ExtendedInputElement extends VStackElement {
|
|
|
157
101
|
value(val: string): this;
|
|
158
102
|
required(): boolean;
|
|
159
103
|
required(val: boolean): this;
|
|
160
|
-
on_enter(): undefined |
|
|
161
|
-
on_enter(val:
|
|
162
|
-
on_input(): undefined |
|
|
163
|
-
on_input(val:
|
|
104
|
+
on_enter(): undefined | ElementKeyboardEvent<this>;
|
|
105
|
+
on_enter(val: ElementKeyboardEvent<this>): this;
|
|
106
|
+
on_input(): undefined | ElementEvent<this>;
|
|
107
|
+
on_input(val: ElementEvent<this>): this;
|
|
164
108
|
border_radius(): string;
|
|
165
109
|
border_radius(val: string): this;
|
|
166
110
|
border_color(): string;
|
|
167
111
|
border_color(val: string): this;
|
|
112
|
+
hover_border_color(): string;
|
|
113
|
+
hover_border_color(val: string): this;
|
|
168
114
|
border_width(): string;
|
|
169
115
|
border_width(val: string): this;
|
|
170
116
|
border_style(): string;
|
|
@@ -204,37 +150,13 @@ interface ExtendedSelectItem {
|
|
|
204
150
|
stack?: HStackElement;
|
|
205
151
|
}
|
|
206
152
|
type ExtendedSelectOnChange = (element: ExtendedSelectElement, id: string) => any;
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
color: string;
|
|
210
|
-
"font-size": string;
|
|
211
|
-
background: string;
|
|
212
|
-
"--input-padding": string;
|
|
213
|
-
"--input-border-radius": string;
|
|
214
|
-
"--input-border-color": string;
|
|
215
|
-
"--image-mask-color": string;
|
|
216
|
-
"--image-size": string;
|
|
217
|
-
"--image-margin-right": string;
|
|
218
|
-
"--image-margin-left": string;
|
|
219
|
-
"--image-alt": string;
|
|
220
|
-
"--hover-bg": string;
|
|
221
|
-
"--focus-color": string;
|
|
222
|
-
"--missing-color": string;
|
|
223
|
-
margin: string;
|
|
224
|
-
padding: string;
|
|
225
|
-
display: string;
|
|
226
|
-
overflow: string;
|
|
227
|
-
"align-content": string;
|
|
228
|
-
"flex-direction": string;
|
|
229
|
-
outline: string;
|
|
230
|
-
border: string;
|
|
231
|
-
};
|
|
153
|
+
declare const ExtendedSelectElement_base: VElementBaseSignature;
|
|
154
|
+
export declare class ExtendedSelectElement extends ExtendedSelectElement_base {
|
|
232
155
|
_focus_color: string;
|
|
233
156
|
_missing_color: string;
|
|
234
157
|
_mask_color: string;
|
|
235
158
|
_border_color: string;
|
|
236
159
|
_hover_bg: string;
|
|
237
|
-
_missing: boolean;
|
|
238
160
|
items: ExtendedSelectItem[];
|
|
239
161
|
label: TextElement;
|
|
240
162
|
image: ImageMaskElement;
|
|
@@ -242,6 +164,7 @@ export declare class ExtendedSelectElement extends VStackElement {
|
|
|
242
164
|
container: HStackElement;
|
|
243
165
|
error: TextElement;
|
|
244
166
|
dropdown: ScrollerElement;
|
|
167
|
+
is_missing: boolean;
|
|
245
168
|
_on_change_callback?: ExtendedSelectOnChange;
|
|
246
169
|
private _on_dropdown_close;
|
|
247
170
|
_dropdown_height?: string | number;
|