verstak 0.94.25032 → 0.95.25045
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/README.md +1 -1
- package/build/dist/source/components/Button.v.js +5 -5
- package/build/dist/source/components/Icon.v.d.ts +2 -2
- package/build/dist/source/components/Icon.v.js +3 -3
- package/build/dist/source/components/Image.v.d.ts +2 -2
- package/build/dist/source/components/Image.v.js +5 -5
- package/build/dist/source/components/Input.v.d.ts +2 -2
- package/build/dist/source/components/Input.v.js +6 -6
- package/build/dist/source/components/RealTimeClock.d.ts +2 -2
- package/build/dist/source/components/RealTimeClock.js +5 -5
- package/build/dist/source/components/Spinner.v.d.ts +2 -2
- package/build/dist/source/components/Spinner.v.js +5 -5
- package/build/dist/source/components/Theme.js +2 -2
- package/build/dist/source/components/Toggle.v.js +5 -5
- package/build/dist/source/components/api.d.ts +1 -1
- package/build/dist/source/components/api.js +1 -1
- package/build/dist/source/components/common/Utils.d.ts +1 -1
- package/build/dist/source/components/common/Utils.js +4 -4
- package/build/dist/source/components/theme/Button.s.js +4 -4
- package/build/dist/source/components/theme/Icon.s.js +2 -2
- package/build/dist/source/components/theme/Input.s.js +5 -5
- package/build/dist/source/components/theme/Styling.d.ts +2 -2
- package/build/dist/source/components/theme/Styling.js +3 -3
- package/build/dist/source/components/theme/Toggle.s.js +4 -4
- package/build/dist/source/core/El.d.ts +1 -1
- package/build/dist/source/core/El.js +1 -1
- package/build/dist/source/core/ElDriver.d.ts +1 -1
- package/build/dist/source/core/ElDriver.js +10 -10
- package/build/dist/source/core/Elements.d.ts +6 -6
- package/build/dist/source/core/Elements.js +21 -21
- package/build/dist/source/core/Restyler.d.ts +2 -2
- package/build/dist/source/core/Restyler.js +5 -5
- package/build/dist/source/core/SplitViewMath.d.ts +3 -3
- package/build/dist/source/core/SplitViewMath.js +1 -1
- package/build/dist/source/core/WebDriver.d.ts +6 -4
- package/build/dist/source/core/WebDriver.js +41 -28
- package/build/dist/source/core/sensors/ButtonSensor.js +7 -7
- package/build/dist/source/core/sensors/FocusSensor.js +6 -6
- package/build/dist/source/core/sensors/Handlers.js +7 -7
- package/build/dist/source/core/sensors/HoverSensor.js +6 -6
- package/build/dist/source/core/sensors/HtmlDragSensor.js +20 -20
- package/build/dist/source/core/sensors/HtmlElementSensor.js +5 -5
- package/build/dist/source/core/sensors/KeyboardSensor.js +6 -6
- package/build/dist/source/core/sensors/PointerSensor.js +17 -17
- package/build/dist/source/core/sensors/ResizeSensor.js +3 -3
- package/build/dist/source/core/sensors/ScrollSensor.js +3 -3
- package/build/dist/source/core/sensors/Sensor.d.ts +2 -2
- package/build/dist/source/core/sensors/Sensor.js +2 -2
- package/build/dist/source/core/sensors/WheelSensor.js +3 -3
- package/build/dist/source/core/sensors/WindowSensor.js +2 -2
- package/build/dist/source/html/DraggableArea.view.js +2 -2
- package/build/dist/source/html/HtmlElements.js +115 -115
- package/build/dist/source/svg/SvgElements.js +60 -60
- package/package.json +10 -9
|
@@ -1,120 +1,120 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { declare } from "reactronic";
|
|
2
2
|
import { ElKind } from "../core/El.js";
|
|
3
3
|
import { HtmlDriver } from "../core/WebDriver.js";
|
|
4
|
-
export function A(declaration) { return
|
|
5
|
-
export function Abbr(declaration) { return
|
|
6
|
-
export function Address(declaration) { return
|
|
7
|
-
export function Area(declaration) { return
|
|
8
|
-
export function Article(declaration) { return
|
|
9
|
-
export function Aside(declaration) { return
|
|
10
|
-
export function Audio(declaration) { return
|
|
11
|
-
export function B(declaration) { return
|
|
12
|
-
export function Base(declaration) { return
|
|
13
|
-
export function Bdi(declaration) { return
|
|
14
|
-
export function Bdo(declaration) { return
|
|
15
|
-
export function Big(declaration) { return
|
|
16
|
-
export function BlockQuote(declaration) { return
|
|
17
|
-
export function Body(declaration) { return
|
|
18
|
-
export function BR(declaration) { return
|
|
19
|
-
export function Button(declaration) { return
|
|
20
|
-
export function Canvas(declaration) { return
|
|
21
|
-
export function Caption(declaration) { return
|
|
22
|
-
export function Cite(declaration) { return
|
|
23
|
-
export function Code(declaration) { return
|
|
24
|
-
export function Col(declaration) { return
|
|
25
|
-
export function ColGroup(declaration) { return
|
|
26
|
-
export function Data(declaration) { return
|
|
27
|
-
export function DataList(declaration) { return
|
|
28
|
-
export function DD(declaration) { return
|
|
29
|
-
export function Del(declaration) { return
|
|
30
|
-
export function Details(declaration) { return
|
|
31
|
-
export function Dfn(declaration) { return
|
|
32
|
-
export function Div(declaration) { return
|
|
33
|
-
export function DL(declaration) { return
|
|
34
|
-
export function DT(declaration) { return
|
|
35
|
-
export function EM(declaration) { return
|
|
36
|
-
export function Embed(declaration) { return
|
|
37
|
-
export function FieldSet(declaration) { return
|
|
38
|
-
export function FigCaption(declaration) { return
|
|
39
|
-
export function Figure(declaration) { return
|
|
40
|
-
export function Footer(declaration) { return
|
|
41
|
-
export function Form(declaration) { return
|
|
42
|
-
export function H1(declaration) { return
|
|
43
|
-
export function H2(declaration) { return
|
|
44
|
-
export function H3(declaration) { return
|
|
45
|
-
export function H4(declaration) { return
|
|
46
|
-
export function H5(declaration) { return
|
|
47
|
-
export function H6(declaration) { return
|
|
48
|
-
export function Head(declaration) { return
|
|
49
|
-
export function Header(declaration) { return
|
|
50
|
-
export function HGroup(declaration) { return
|
|
51
|
-
export function HR(declaration) { return
|
|
52
|
-
export function Html(declaration) { return
|
|
53
|
-
export function I(declaration) { return
|
|
54
|
-
export function IFrame(declaration) { return
|
|
55
|
-
export function Img(declaration) { return
|
|
56
|
-
export function Input(declaration) { return
|
|
57
|
-
export function Ins(declaration) { return
|
|
58
|
-
export function Kbd(declaration) { return
|
|
59
|
-
export function KeyGen(declaration) { return
|
|
60
|
-
export function Label(declaration) { return
|
|
61
|
-
export function Legend(declaration) { return
|
|
62
|
-
export function LI(declaration) { return
|
|
63
|
-
export function Link(declaration) { return
|
|
64
|
-
export function Main(declaration) { return
|
|
65
|
-
export function Map(declaration) { return
|
|
66
|
-
export function Mark(declaration) { return
|
|
67
|
-
export function Menu(declaration) { return
|
|
68
|
-
export function MenuItem(declaration) { return
|
|
69
|
-
export function Meta(declaration) { return
|
|
70
|
-
export function Meter(declaration) { return
|
|
71
|
-
export function Nav(declaration) { return
|
|
72
|
-
export function NoIndex(declaration) { return
|
|
73
|
-
export function NoScript(declaration) { return
|
|
74
|
-
export function Obj(declaration) { return
|
|
75
|
-
export function OL(declaration) { return
|
|
76
|
-
export function OptGroup(declaration) { return
|
|
77
|
-
export function Option(declaration) { return
|
|
78
|
-
export function Output(declaration) { return
|
|
79
|
-
export function P(declaration) { return
|
|
80
|
-
export function Param(declaration) { return
|
|
81
|
-
export function Picture(declaration) { return
|
|
82
|
-
export function Pre(declaration) { return
|
|
83
|
-
export function Progress(declaration) { return
|
|
84
|
-
export function Q(declaration) { return
|
|
85
|
-
export function RP(declaration) { return
|
|
86
|
-
export function RT(declaration) { return
|
|
87
|
-
export function Ruby(declaration) { return
|
|
88
|
-
export function S(declaration) { return
|
|
89
|
-
export function Samp(declaration) { return
|
|
90
|
-
export function Script(declaration) { return
|
|
91
|
-
export function Section(declaration) { return
|
|
92
|
-
export function Select(declaration) { return
|
|
93
|
-
export function Small(declaration) { return
|
|
94
|
-
export function Source(declaration) { return
|
|
95
|
-
export function Span(declaration) { return
|
|
96
|
-
export function Strong(declaration) { return
|
|
97
|
-
export function Style(declaration) { return
|
|
98
|
-
export function Sub(declaration) { return
|
|
99
|
-
export function Summary(declaration) { return
|
|
100
|
-
export function Sup(declaration) { return
|
|
101
|
-
export function Tbl(declaration) { return
|
|
102
|
-
export function Template(declaration) { return
|
|
103
|
-
export function TBody(declaration) { return
|
|
104
|
-
export function TD(declaration) { return
|
|
105
|
-
export function TextArea(declaration) { return
|
|
106
|
-
export function TFoot(declaration) { return
|
|
107
|
-
export function TH(declaration) { return
|
|
108
|
-
export function THead(declaration) { return
|
|
109
|
-
export function Time(declaration) { return
|
|
110
|
-
export function Title(declaration) { return
|
|
111
|
-
export function TR(declaration) { return
|
|
112
|
-
export function Track(declaration) { return
|
|
113
|
-
export function U(declaration) { return
|
|
114
|
-
export function UL(declaration) { return
|
|
115
|
-
export function Var(declaration) { return
|
|
116
|
-
export function Video(declaration) { return
|
|
117
|
-
export function Wbr(declaration) { return
|
|
4
|
+
export function A(declaration) { return declare(HtmlTags.a, declaration); }
|
|
5
|
+
export function Abbr(declaration) { return declare(HtmlTags.abbr, declaration); }
|
|
6
|
+
export function Address(declaration) { return declare(HtmlTags.address, declaration); }
|
|
7
|
+
export function Area(declaration) { return declare(HtmlTags.area, declaration); }
|
|
8
|
+
export function Article(declaration) { return declare(HtmlTags.article, declaration); }
|
|
9
|
+
export function Aside(declaration) { return declare(HtmlTags.aside, declaration); }
|
|
10
|
+
export function Audio(declaration) { return declare(HtmlTags.audio, declaration); }
|
|
11
|
+
export function B(declaration) { return declare(HtmlTags.b, declaration); }
|
|
12
|
+
export function Base(declaration) { return declare(HtmlTags.base, declaration); }
|
|
13
|
+
export function Bdi(declaration) { return declare(HtmlTags.bdi, declaration); }
|
|
14
|
+
export function Bdo(declaration) { return declare(HtmlTags.bdo, declaration); }
|
|
15
|
+
export function Big(declaration) { return declare(HtmlTags.big, declaration); }
|
|
16
|
+
export function BlockQuote(declaration) { return declare(HtmlTags.blockquote, declaration); }
|
|
17
|
+
export function Body(declaration) { return declare(HtmlTags.body, declaration); }
|
|
18
|
+
export function BR(declaration) { return declare(HtmlTags.br, declaration); }
|
|
19
|
+
export function Button(declaration) { return declare(HtmlTags.button, declaration); }
|
|
20
|
+
export function Canvas(declaration) { return declare(HtmlTags.canvas, declaration); }
|
|
21
|
+
export function Caption(declaration) { return declare(HtmlTags.caption, declaration); }
|
|
22
|
+
export function Cite(declaration) { return declare(HtmlTags.cite, declaration); }
|
|
23
|
+
export function Code(declaration) { return declare(HtmlTags.code, declaration); }
|
|
24
|
+
export function Col(declaration) { return declare(HtmlTags.col, declaration); }
|
|
25
|
+
export function ColGroup(declaration) { return declare(HtmlTags.colgroup, declaration); }
|
|
26
|
+
export function Data(declaration) { return declare(HtmlTags.data, declaration); }
|
|
27
|
+
export function DataList(declaration) { return declare(HtmlTags.datalist, declaration); }
|
|
28
|
+
export function DD(declaration) { return declare(HtmlTags.dd, declaration); }
|
|
29
|
+
export function Del(declaration) { return declare(HtmlTags.del, declaration); }
|
|
30
|
+
export function Details(declaration) { return declare(HtmlTags.details, declaration); }
|
|
31
|
+
export function Dfn(declaration) { return declare(HtmlTags.dfn, declaration); }
|
|
32
|
+
export function Div(declaration) { return declare(HtmlTags.div, declaration); }
|
|
33
|
+
export function DL(declaration) { return declare(HtmlTags.dl, declaration); }
|
|
34
|
+
export function DT(declaration) { return declare(HtmlTags.dt, declaration); }
|
|
35
|
+
export function EM(declaration) { return declare(HtmlTags.em, declaration); }
|
|
36
|
+
export function Embed(declaration) { return declare(HtmlTags.embed, declaration); }
|
|
37
|
+
export function FieldSet(declaration) { return declare(HtmlTags.fieldset, declaration); }
|
|
38
|
+
export function FigCaption(declaration) { return declare(HtmlTags.figcaption, declaration); }
|
|
39
|
+
export function Figure(declaration) { return declare(HtmlTags.figure, declaration); }
|
|
40
|
+
export function Footer(declaration) { return declare(HtmlTags.footer, declaration); }
|
|
41
|
+
export function Form(declaration) { return declare(HtmlTags.form, declaration); }
|
|
42
|
+
export function H1(declaration) { return declare(HtmlTags.h1, declaration); }
|
|
43
|
+
export function H2(declaration) { return declare(HtmlTags.h2, declaration); }
|
|
44
|
+
export function H3(declaration) { return declare(HtmlTags.h3, declaration); }
|
|
45
|
+
export function H4(declaration) { return declare(HtmlTags.h4, declaration); }
|
|
46
|
+
export function H5(declaration) { return declare(HtmlTags.h5, declaration); }
|
|
47
|
+
export function H6(declaration) { return declare(HtmlTags.h6, declaration); }
|
|
48
|
+
export function Head(declaration) { return declare(HtmlTags.head, declaration); }
|
|
49
|
+
export function Header(declaration) { return declare(HtmlTags.header, declaration); }
|
|
50
|
+
export function HGroup(declaration) { return declare(HtmlTags.hgroup, declaration); }
|
|
51
|
+
export function HR(declaration) { return declare(HtmlTags.hr, declaration); }
|
|
52
|
+
export function Html(declaration) { return declare(HtmlTags.html, declaration); }
|
|
53
|
+
export function I(declaration) { return declare(HtmlTags.i, declaration); }
|
|
54
|
+
export function IFrame(declaration) { return declare(HtmlTags.iframe, declaration); }
|
|
55
|
+
export function Img(declaration) { return declare(HtmlTags.img, declaration); }
|
|
56
|
+
export function Input(declaration) { return declare(HtmlTags.input, declaration); }
|
|
57
|
+
export function Ins(declaration) { return declare(HtmlTags.ins, declaration); }
|
|
58
|
+
export function Kbd(declaration) { return declare(HtmlTags.kbd, declaration); }
|
|
59
|
+
export function KeyGen(declaration) { return declare(HtmlTags.keygen, declaration); }
|
|
60
|
+
export function Label(declaration) { return declare(HtmlTags.label, declaration); }
|
|
61
|
+
export function Legend(declaration) { return declare(HtmlTags.legend, declaration); }
|
|
62
|
+
export function LI(declaration) { return declare(HtmlTags.li, declaration); }
|
|
63
|
+
export function Link(declaration) { return declare(HtmlTags.link, declaration); }
|
|
64
|
+
export function Main(declaration) { return declare(HtmlTags.main, declaration); }
|
|
65
|
+
export function Map(declaration) { return declare(HtmlTags.map, declaration); }
|
|
66
|
+
export function Mark(declaration) { return declare(HtmlTags.mark, declaration); }
|
|
67
|
+
export function Menu(declaration) { return declare(HtmlTags.menu, declaration); }
|
|
68
|
+
export function MenuItem(declaration) { return declare(HtmlTags.menuitem, declaration); }
|
|
69
|
+
export function Meta(declaration) { return declare(HtmlTags.meta, declaration); }
|
|
70
|
+
export function Meter(declaration) { return declare(HtmlTags.meter, declaration); }
|
|
71
|
+
export function Nav(declaration) { return declare(HtmlTags.nav, declaration); }
|
|
72
|
+
export function NoIndex(declaration) { return declare(HtmlTags.noindex, declaration); }
|
|
73
|
+
export function NoScript(declaration) { return declare(HtmlTags.noscript, declaration); }
|
|
74
|
+
export function Obj(declaration) { return declare(HtmlTags.object, declaration); }
|
|
75
|
+
export function OL(declaration) { return declare(HtmlTags.ol, declaration); }
|
|
76
|
+
export function OptGroup(declaration) { return declare(HtmlTags.optgroup, declaration); }
|
|
77
|
+
export function Option(declaration) { return declare(HtmlTags.option, declaration); }
|
|
78
|
+
export function Output(declaration) { return declare(HtmlTags.output, declaration); }
|
|
79
|
+
export function P(declaration) { return declare(HtmlTags.p, declaration); }
|
|
80
|
+
export function Param(declaration) { return declare(HtmlTags.param, declaration); }
|
|
81
|
+
export function Picture(declaration) { return declare(HtmlTags.picture, declaration); }
|
|
82
|
+
export function Pre(declaration) { return declare(HtmlTags.pre, declaration); }
|
|
83
|
+
export function Progress(declaration) { return declare(HtmlTags.progress, declaration); }
|
|
84
|
+
export function Q(declaration) { return declare(HtmlTags.q, declaration); }
|
|
85
|
+
export function RP(declaration) { return declare(HtmlTags.rp, declaration); }
|
|
86
|
+
export function RT(declaration) { return declare(HtmlTags.rt, declaration); }
|
|
87
|
+
export function Ruby(declaration) { return declare(HtmlTags.ruby, declaration); }
|
|
88
|
+
export function S(declaration) { return declare(HtmlTags.s, declaration); }
|
|
89
|
+
export function Samp(declaration) { return declare(HtmlTags.samp, declaration); }
|
|
90
|
+
export function Script(declaration) { return declare(HtmlTags.script, declaration); }
|
|
91
|
+
export function Section(declaration) { return declare(HtmlTags.section, declaration); }
|
|
92
|
+
export function Select(declaration) { return declare(HtmlTags.select, declaration); }
|
|
93
|
+
export function Small(declaration) { return declare(HtmlTags.small, declaration); }
|
|
94
|
+
export function Source(declaration) { return declare(HtmlTags.source, declaration); }
|
|
95
|
+
export function Span(declaration) { return declare(HtmlTags.span, declaration); }
|
|
96
|
+
export function Strong(declaration) { return declare(HtmlTags.strong, declaration); }
|
|
97
|
+
export function Style(declaration) { return declare(HtmlTags.style, declaration); }
|
|
98
|
+
export function Sub(declaration) { return declare(HtmlTags.sub, declaration); }
|
|
99
|
+
export function Summary(declaration) { return declare(HtmlTags.summary, declaration); }
|
|
100
|
+
export function Sup(declaration) { return declare(HtmlTags.sup, declaration); }
|
|
101
|
+
export function Tbl(declaration) { return declare(HtmlTags.table, declaration); }
|
|
102
|
+
export function Template(declaration) { return declare(HtmlTags.template, declaration); }
|
|
103
|
+
export function TBody(declaration) { return declare(HtmlTags.tbody, declaration); }
|
|
104
|
+
export function TD(declaration) { return declare(HtmlTags.td, declaration); }
|
|
105
|
+
export function TextArea(declaration) { return declare(HtmlTags.textarea, declaration); }
|
|
106
|
+
export function TFoot(declaration) { return declare(HtmlTags.tfoot, declaration); }
|
|
107
|
+
export function TH(declaration) { return declare(HtmlTags.th, declaration); }
|
|
108
|
+
export function THead(declaration) { return declare(HtmlTags.thead, declaration); }
|
|
109
|
+
export function Time(declaration) { return declare(HtmlTags.time, declaration); }
|
|
110
|
+
export function Title(declaration) { return declare(HtmlTags.title, declaration); }
|
|
111
|
+
export function TR(declaration) { return declare(HtmlTags.tr, declaration); }
|
|
112
|
+
export function Track(declaration) { return declare(HtmlTags.track, declaration); }
|
|
113
|
+
export function U(declaration) { return declare(HtmlTags.u, declaration); }
|
|
114
|
+
export function UL(declaration) { return declare(HtmlTags.ul, declaration); }
|
|
115
|
+
export function Var(declaration) { return declare(HtmlTags.var, declaration); }
|
|
116
|
+
export function Video(declaration) { return declare(HtmlTags.video, declaration); }
|
|
117
|
+
export function Wbr(declaration) { return declare(HtmlTags.wbr, declaration); }
|
|
118
118
|
const HtmlTags = {
|
|
119
119
|
a: new HtmlDriver("a", false, el => el.kind = ElKind.native),
|
|
120
120
|
abbr: new HtmlDriver("abbr", false, el => el.kind = ElKind.native),
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { declare } from "reactronic";
|
|
2
2
|
import { ElKind } from "../core/El.js";
|
|
3
3
|
import { SvgDriver } from "../core/WebDriver.js";
|
|
4
|
-
export function Svg(declaration) { return
|
|
5
|
-
export function SvgA(declaration) { return
|
|
6
|
-
export function Animate(declaration) { return
|
|
7
|
-
export function AnimateMotion(declaration) { return
|
|
8
|
-
export function AnimateTransform(declaration) { return
|
|
9
|
-
export function Circle(declaration) { return
|
|
10
|
-
export function ClipPath(declaration) { return
|
|
11
|
-
export function Defs(declaration) { return
|
|
12
|
-
export function Desc(declaration) { return
|
|
13
|
-
export function Ellipse(declaration) { return
|
|
14
|
-
export function FeBlend(declaration) { return
|
|
15
|
-
export function FeColorMatrix(declaration) { return
|
|
16
|
-
export function FeComponentTransfer(declaration) { return
|
|
17
|
-
export function FeComposite(declaration) { return
|
|
18
|
-
export function FeConvolveMatrix(declaration) { return
|
|
19
|
-
export function FeDiffuseLighting(declaration) { return
|
|
20
|
-
export function FeDisplacementMap(declaration) { return
|
|
21
|
-
export function FeDistantLight(declaration) { return
|
|
22
|
-
export function FeDropShadow(declaration) { return
|
|
23
|
-
export function FeFlood(declaration) { return
|
|
24
|
-
export function FeFuncA(declaration) { return
|
|
25
|
-
export function FeFuncB(declaration) { return
|
|
26
|
-
export function FeFuncG(declaration) { return
|
|
27
|
-
export function FeFuncR(declaration) { return
|
|
28
|
-
export function FeGaussianBlur(declaration) { return
|
|
29
|
-
export function FeImage(declaration) { return
|
|
30
|
-
export function FeMerge(declaration) { return
|
|
31
|
-
export function FeMergeNode(declaration) { return
|
|
32
|
-
export function FeMorphology(declaration) { return
|
|
33
|
-
export function FeOffset(declaration) { return
|
|
34
|
-
export function FePointLight(declaration) { return
|
|
35
|
-
export function FeSpecularLighting(declaration) { return
|
|
36
|
-
export function FeSpotLight(declaration) { return
|
|
37
|
-
export function FeTile(declaration) { return
|
|
38
|
-
export function FeTurbulence(declaration) { return
|
|
39
|
-
export function Filter(declaration) { return
|
|
40
|
-
export function ForeignObject(declaration) { return
|
|
41
|
-
export function G(declaration) { return
|
|
42
|
-
export function SvgImage(declaration) { return
|
|
43
|
-
export function SvgLine(declaration) { return
|
|
44
|
-
export function LinearGradient(declaration) { return
|
|
45
|
-
export function Marker(declaration) { return
|
|
46
|
-
export function Mask(declaration) { return
|
|
47
|
-
export function MetaData(declaration) { return
|
|
48
|
-
export function MPath(declaration) { return
|
|
49
|
-
export function Path(declaration) { return
|
|
50
|
-
export function Pattern(declaration) { return
|
|
51
|
-
export function Polygon(declaration) { return
|
|
52
|
-
export function PolyLine(declaration) { return
|
|
53
|
-
export function RadialGradient(declaration) { return
|
|
54
|
-
export function Rect(declaration) { return
|
|
55
|
-
export function Stop(declaration) { return
|
|
56
|
-
export function SvgSwitch(declaration) { return
|
|
57
|
-
export function Symbol(declaration) { return
|
|
58
|
-
export function Text(declaration) { return
|
|
59
|
-
export function TextPath(declaration) { return
|
|
60
|
-
export function TSpan(declaration) { return
|
|
61
|
-
export function Use(declaration) { return
|
|
62
|
-
export function View(declaration) { return
|
|
4
|
+
export function Svg(declaration) { return declare(SvgTags.svg, declaration); }
|
|
5
|
+
export function SvgA(declaration) { return declare(SvgTags.a, declaration); }
|
|
6
|
+
export function Animate(declaration) { return declare(SvgTags.animate, declaration); }
|
|
7
|
+
export function AnimateMotion(declaration) { return declare(SvgTags.animateMotion, declaration); }
|
|
8
|
+
export function AnimateTransform(declaration) { return declare(SvgTags.animateTransform, declaration); }
|
|
9
|
+
export function Circle(declaration) { return declare(SvgTags.circle, declaration); }
|
|
10
|
+
export function ClipPath(declaration) { return declare(SvgTags.clipPath, declaration); }
|
|
11
|
+
export function Defs(declaration) { return declare(SvgTags.defs, declaration); }
|
|
12
|
+
export function Desc(declaration) { return declare(SvgTags.desc, declaration); }
|
|
13
|
+
export function Ellipse(declaration) { return declare(SvgTags.ellipse, declaration); }
|
|
14
|
+
export function FeBlend(declaration) { return declare(SvgTags.feBlend, declaration); }
|
|
15
|
+
export function FeColorMatrix(declaration) { return declare(SvgTags.feColorMatrix, declaration); }
|
|
16
|
+
export function FeComponentTransfer(declaration) { return declare(SvgTags.feComponentTransfer, declaration); }
|
|
17
|
+
export function FeComposite(declaration) { return declare(SvgTags.feComposite, declaration); }
|
|
18
|
+
export function FeConvolveMatrix(declaration) { return declare(SvgTags.feConvolveMatrix, declaration); }
|
|
19
|
+
export function FeDiffuseLighting(declaration) { return declare(SvgTags.feDiffuseLighting, declaration); }
|
|
20
|
+
export function FeDisplacementMap(declaration) { return declare(SvgTags.feDisplacementMap, declaration); }
|
|
21
|
+
export function FeDistantLight(declaration) { return declare(SvgTags.feDistantLight, declaration); }
|
|
22
|
+
export function FeDropShadow(declaration) { return declare(SvgTags.feDropShadow, declaration); }
|
|
23
|
+
export function FeFlood(declaration) { return declare(SvgTags.feFlood, declaration); }
|
|
24
|
+
export function FeFuncA(declaration) { return declare(SvgTags.feFuncA, declaration); }
|
|
25
|
+
export function FeFuncB(declaration) { return declare(SvgTags.feFuncB, declaration); }
|
|
26
|
+
export function FeFuncG(declaration) { return declare(SvgTags.feFuncG, declaration); }
|
|
27
|
+
export function FeFuncR(declaration) { return declare(SvgTags.feFuncR, declaration); }
|
|
28
|
+
export function FeGaussianBlur(declaration) { return declare(SvgTags.feGaussianBlur, declaration); }
|
|
29
|
+
export function FeImage(declaration) { return declare(SvgTags.feImage, declaration); }
|
|
30
|
+
export function FeMerge(declaration) { return declare(SvgTags.feMerge, declaration); }
|
|
31
|
+
export function FeMergeNode(declaration) { return declare(SvgTags.feMergeNode, declaration); }
|
|
32
|
+
export function FeMorphology(declaration) { return declare(SvgTags.feMorphology, declaration); }
|
|
33
|
+
export function FeOffset(declaration) { return declare(SvgTags.feOffset, declaration); }
|
|
34
|
+
export function FePointLight(declaration) { return declare(SvgTags.fePointLight, declaration); }
|
|
35
|
+
export function FeSpecularLighting(declaration) { return declare(SvgTags.feSpecularLighting, declaration); }
|
|
36
|
+
export function FeSpotLight(declaration) { return declare(SvgTags.feSpotLight, declaration); }
|
|
37
|
+
export function FeTile(declaration) { return declare(SvgTags.feTile, declaration); }
|
|
38
|
+
export function FeTurbulence(declaration) { return declare(SvgTags.feTurbulence, declaration); }
|
|
39
|
+
export function Filter(declaration) { return declare(SvgTags.filter, declaration); }
|
|
40
|
+
export function ForeignObject(declaration) { return declare(SvgTags.foreignObject, declaration); }
|
|
41
|
+
export function G(declaration) { return declare(SvgTags.g, declaration); }
|
|
42
|
+
export function SvgImage(declaration) { return declare(SvgTags.image, declaration); }
|
|
43
|
+
export function SvgLine(declaration) { return declare(SvgTags.line, declaration); }
|
|
44
|
+
export function LinearGradient(declaration) { return declare(SvgTags.linearGradient, declaration); }
|
|
45
|
+
export function Marker(declaration) { return declare(SvgTags.marker, declaration); }
|
|
46
|
+
export function Mask(declaration) { return declare(SvgTags.mask, declaration); }
|
|
47
|
+
export function MetaData(declaration) { return declare(SvgTags.metadata, declaration); }
|
|
48
|
+
export function MPath(declaration) { return declare(SvgTags.mpath, declaration); }
|
|
49
|
+
export function Path(declaration) { return declare(SvgTags.path, declaration); }
|
|
50
|
+
export function Pattern(declaration) { return declare(SvgTags.pattern, declaration); }
|
|
51
|
+
export function Polygon(declaration) { return declare(SvgTags.polygon, declaration); }
|
|
52
|
+
export function PolyLine(declaration) { return declare(SvgTags.polyline, declaration); }
|
|
53
|
+
export function RadialGradient(declaration) { return declare(SvgTags.radialGradient, declaration); }
|
|
54
|
+
export function Rect(declaration) { return declare(SvgTags.rect, declaration); }
|
|
55
|
+
export function Stop(declaration) { return declare(SvgTags.stop, declaration); }
|
|
56
|
+
export function SvgSwitch(declaration) { return declare(SvgTags.switch, declaration); }
|
|
57
|
+
export function Symbol(declaration) { return declare(SvgTags.symbol, declaration); }
|
|
58
|
+
export function Text(declaration) { return declare(SvgTags.text, declaration); }
|
|
59
|
+
export function TextPath(declaration) { return declare(SvgTags.textPath, declaration); }
|
|
60
|
+
export function TSpan(declaration) { return declare(SvgTags.tspan, declaration); }
|
|
61
|
+
export function Use(declaration) { return declare(SvgTags.use, declaration); }
|
|
62
|
+
export function View(declaration) { return declare(SvgTags.view, declaration); }
|
|
63
63
|
const SvgTags = {
|
|
64
64
|
svg: new SvgDriver("svg", false, el => el.kind = ElKind.native),
|
|
65
65
|
a: new SvgDriver("a", false, el => el.kind = ElKind.native),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verstak",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.95.25045",
|
|
4
4
|
"description": "Verstak - Front-End Library",
|
|
5
5
|
"publisher": "Nezaboodka Software",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -41,21 +41,22 @@
|
|
|
41
41
|
"@emotion/css": "^11.13.5",
|
|
42
42
|
"markdown-it": "^14.1.0",
|
|
43
43
|
"markdown-it-prism": "^2.3.0",
|
|
44
|
-
"prismjs": "^1.
|
|
45
|
-
"reactronic": "^0.
|
|
44
|
+
"prismjs": "^1.30.0",
|
|
45
|
+
"reactronic": "^0.95.25045"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/markdown-it": "14.1.2",
|
|
49
|
-
"@types/node": "
|
|
49
|
+
"@types/node": "24.10.2",
|
|
50
50
|
"@types/prismjs": "1.26.5",
|
|
51
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
52
|
-
"@typescript-eslint/parser": "8.
|
|
53
|
-
"ava": "6.
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "8.49.0",
|
|
52
|
+
"@typescript-eslint/parser": "8.49.0",
|
|
53
|
+
"ava": "6.4.1",
|
|
54
54
|
"c8": "10.1.3",
|
|
55
|
-
"eslint": "9.
|
|
55
|
+
"eslint": "9.39.1",
|
|
56
56
|
"ts-node": "10.9.2",
|
|
57
57
|
"tsconfig-paths": "4.2.0",
|
|
58
|
-
"
|
|
58
|
+
"tsimp": "2.0.12",
|
|
59
|
+
"typescript": "5.9.3"
|
|
59
60
|
},
|
|
60
61
|
"scripts": {
|
|
61
62
|
"build": "eslint source/**.ts test/**.ts && tsc --rootDir .",
|