@ea-lab/reactive-json 1.1.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component/action/ReactOnEvent.js +38 -18
- package/dist/component/element/form/CheckBoxField.js +84 -0
- package/dist/component/element/form/SelectField.js +64 -0
- package/dist/component/element/form/TextAreaField.js +59 -0
- package/dist/component/element/form/index.js +36 -30
- package/dist/component/element/index.js +72 -66
- package/dist/component/index.js +111 -105
- package/dist/component/reaction/fetchData.js +1 -1
- package/dist/component/reaction/index.js +1 -1
- package/dist/component/reaction/submitData.js +12 -13
- package/dist/component/reaction/utility/httpRequestCommon.js +1 -1
- package/dist/component/reaction/utility/index.js +1 -1
- package/dist/engine/ReactiveJsonRoot.js +1 -1
- package/dist/{httpRequestCommon-COBq6B-n.js → httpRequestCommon-BNA1zivP.js} +491 -489
- package/dist/index-CpGvV5AF.js +46 -0
- package/dist/main.js +108 -102
- package/package.json +1 -1
- package/dist/index-2EvkwDZS.js +0 -40
|
@@ -1,30 +1,50 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { useContext as
|
|
3
|
-
import { GlobalDataContext as
|
|
1
|
+
import { jsx as d, Fragment as x } from "react/jsx-runtime";
|
|
2
|
+
import { useContext as l, Children as f, Fragment as C, isValidElement as y, cloneElement as T } from "react";
|
|
3
|
+
import { GlobalDataContext as A } from "../../engine/GlobalDataContext.js";
|
|
4
4
|
import "../../jsonpath-B9kE9k9e.js";
|
|
5
5
|
import "../../lodash-CYNxjS-I.js";
|
|
6
|
-
import { TemplateContext as
|
|
6
|
+
import { TemplateContext as E } from "../../engine/TemplateContext.js";
|
|
7
7
|
import "../../engine/EventDispatcherContext.js";
|
|
8
8
|
import "../../engine/EventDispatcherProvider.js";
|
|
9
9
|
import "../../engine/PaginationContext.js";
|
|
10
10
|
import "../../dnd-kit-sortable-tree.esm-Cz1RJyIg.js";
|
|
11
11
|
import "../../index-NNBvIV0S.js";
|
|
12
|
-
import { replaceEventPlaceholders as
|
|
12
|
+
import { replaceEventPlaceholders as j } from "../../engine/utility/eventPlaceholderSystem.js";
|
|
13
13
|
import "../../js-yaml-Bw0KO4XO.js";
|
|
14
14
|
import "../../engine/ParsingDebugDisplay/ParsingDebugDisplay.js";
|
|
15
|
-
const H = (
|
|
16
|
-
const
|
|
17
|
-
for (const [o, a] of Object.entries(
|
|
15
|
+
const H = (s) => {
|
|
16
|
+
const p = l(A), g = l(E), n = p.plugins ?? {}, b = (n == null ? void 0 : n.reaction) ?? {}, { actionProps: P } = s, c = {};
|
|
17
|
+
for (const [o, a] of Object.entries(P))
|
|
18
18
|
c[o] = (t) => {
|
|
19
19
|
let r = !0;
|
|
20
|
-
for (const
|
|
21
|
-
if (!
|
|
20
|
+
for (const e of a) {
|
|
21
|
+
if (!e)
|
|
22
22
|
continue;
|
|
23
|
-
const u =
|
|
23
|
+
const u = e.what && (b[e.what] ?? null);
|
|
24
24
|
if (!u)
|
|
25
25
|
continue;
|
|
26
|
-
const i =
|
|
27
|
-
if (u({
|
|
26
|
+
const i = j(e, t);
|
|
27
|
+
if (u({
|
|
28
|
+
args: i,
|
|
29
|
+
event: t,
|
|
30
|
+
eventData: {
|
|
31
|
+
// We copy the event data to make them available
|
|
32
|
+
// to asynchronous reaction functions.
|
|
33
|
+
// This is needed because React will reset the event object data
|
|
34
|
+
// to reuse it for other events (see pooling of events in React).
|
|
35
|
+
currentTarget: t.currentTarget,
|
|
36
|
+
bubbles: t.bubbles,
|
|
37
|
+
cancelable: t.cancelable,
|
|
38
|
+
composed: t.composed,
|
|
39
|
+
defaultPrevented: t.defaultPrevented,
|
|
40
|
+
isTrusted: t.isTrusted,
|
|
41
|
+
target: t.target,
|
|
42
|
+
timeStamp: t.timeStamp,
|
|
43
|
+
type: t.type
|
|
44
|
+
},
|
|
45
|
+
globalDataContext: p,
|
|
46
|
+
templateContext: g
|
|
47
|
+
}), i.stopPropagation === !0)
|
|
28
48
|
break;
|
|
29
49
|
r = i.stopPropagation ?? !0;
|
|
30
50
|
}
|
|
@@ -33,13 +53,13 @@ const H = (p) => {
|
|
|
33
53
|
const m = (o) => {
|
|
34
54
|
if (!o)
|
|
35
55
|
return o;
|
|
36
|
-
const a =
|
|
37
|
-
return
|
|
56
|
+
const a = f.toArray(o);
|
|
57
|
+
return f.map(a, (t) => {
|
|
38
58
|
var r;
|
|
39
|
-
return t.type ===
|
|
59
|
+
return t.type === C ? m((r = t == null ? void 0 : t.props) == null ? void 0 : r.children) : typeof t != "object" || !y(t) ? t : T(t, c);
|
|
40
60
|
});
|
|
41
|
-
},
|
|
42
|
-
return /* @__PURE__ */
|
|
61
|
+
}, F = m(s.children);
|
|
62
|
+
return /* @__PURE__ */ d(x, { children: F });
|
|
43
63
|
};
|
|
44
64
|
export {
|
|
45
65
|
H as ReactOnEvent
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { jsxs as h, jsx as o, Fragment as V } from "react/jsx-runtime";
|
|
2
|
+
import { useContext as I, useRef as w, useMemo as G } from "react";
|
|
3
|
+
import { ActionDependant as S } from "../../../engine/Actions.js";
|
|
4
|
+
import { useEvaluatedAttributes as f, evaluateTemplateValue as F } from "../../../engine/TemplateSystem.js";
|
|
5
|
+
import { GlobalDataContext as _ } from "../../../engine/GlobalDataContext.js";
|
|
6
|
+
import { TemplateContext as q } from "../../../engine/TemplateContext.js";
|
|
7
|
+
import { propsDataLocationToPathAndValue as z } from "../../../engine/utility/formElementsCommon.js";
|
|
8
|
+
import { View as J } from "../../../engine/View.js";
|
|
9
|
+
const at = ({ props: t, datafield: R, path: A, currentData: m }) => {
|
|
10
|
+
const l = I(_), b = I(q), p = w(null), v = f(t.attributes), s = f(t.inputAttributes ?? []), y = f(t.labelAttributes ?? []), { formData: n, formDataPath: c } = z({
|
|
11
|
+
currentPath: A,
|
|
12
|
+
datafield: R,
|
|
13
|
+
dataLocation: t.dataLocation,
|
|
14
|
+
defaultValue: t.defaultFieldValue,
|
|
15
|
+
globalDataContext: l,
|
|
16
|
+
templateContext: b
|
|
17
|
+
});
|
|
18
|
+
let i;
|
|
19
|
+
if (t.dynamicOptions)
|
|
20
|
+
i = F({
|
|
21
|
+
valueToEvaluate: t.dynamicOptions,
|
|
22
|
+
globalDataContext: l,
|
|
23
|
+
templateContext: b
|
|
24
|
+
});
|
|
25
|
+
else if (t.options)
|
|
26
|
+
i = t.options;
|
|
27
|
+
else
|
|
28
|
+
return null;
|
|
29
|
+
if (!Array.isArray(i) || i.length === 0)
|
|
30
|
+
return null;
|
|
31
|
+
const g = t.controlType || "checkbox", x = t.multiple ?? i.length > 1, C = g === "radio", W = (r, e) => {
|
|
32
|
+
if (C)
|
|
33
|
+
l.updateData(e, c);
|
|
34
|
+
else if (x) {
|
|
35
|
+
const a = Array.isArray(n) ? n : [];
|
|
36
|
+
r.target.checked ? a.includes(e) || l.updateData([...a, e], c) : l.updateData(
|
|
37
|
+
a.filter((u) => u !== e),
|
|
38
|
+
c
|
|
39
|
+
);
|
|
40
|
+
} else
|
|
41
|
+
l.updateData(r.target.checked ? e : !1, c);
|
|
42
|
+
}, k = !!t.label, D = t.forceWrapper, P = D === !0 || D !== !1 && k, $ = G(() => s.id ? s.id : `checkbox-${Math.random().toString(36).substring(2, 9)}`, [s.id]), { id: K, ...j } = s, L = i.map((r, e) => {
|
|
43
|
+
const a = r.value, u = F({
|
|
44
|
+
valueToEvaluate: r.label,
|
|
45
|
+
globalDataContext: l,
|
|
46
|
+
templateContext: b
|
|
47
|
+
}), E = `${$}-${e}`;
|
|
48
|
+
let d = !1;
|
|
49
|
+
C ? d = n === a : x ? d = Array.isArray(n) && n.includes(a) : d = n === a || n === !0;
|
|
50
|
+
const B = f(r.attributes), H = {
|
|
51
|
+
type: g,
|
|
52
|
+
id: E,
|
|
53
|
+
checked: d,
|
|
54
|
+
onChange: (O) => W(O, a),
|
|
55
|
+
value: a,
|
|
56
|
+
...j
|
|
57
|
+
}, M = {
|
|
58
|
+
htmlFor: E,
|
|
59
|
+
...y
|
|
60
|
+
};
|
|
61
|
+
return /* @__PURE__ */ h("div", { ...B, children: [
|
|
62
|
+
/* @__PURE__ */ o("input", { ref: e === 0 ? p : null, ...H }),
|
|
63
|
+
u && /* @__PURE__ */ o("label", { ...M, style: { marginLeft: "0.5rem" }, children: u })
|
|
64
|
+
] }, e);
|
|
65
|
+
}), T = k && /* @__PURE__ */ o("label", { ...y, children: /* @__PURE__ */ o(
|
|
66
|
+
J,
|
|
67
|
+
{
|
|
68
|
+
currentData: (m == null ? void 0 : m.label) ?? void 0,
|
|
69
|
+
datafield: "label",
|
|
70
|
+
path: A + ".label",
|
|
71
|
+
props: t.label
|
|
72
|
+
}
|
|
73
|
+
) });
|
|
74
|
+
return /* @__PURE__ */ o(S, { ...t, attributesHolderRef: p, children: P ? /* @__PURE__ */ h("div", { ...v, children: [
|
|
75
|
+
T,
|
|
76
|
+
L
|
|
77
|
+
] }) : /* @__PURE__ */ h(V, { children: [
|
|
78
|
+
T,
|
|
79
|
+
/* @__PURE__ */ o("div", { ...v, children: L })
|
|
80
|
+
] }) });
|
|
81
|
+
};
|
|
82
|
+
export {
|
|
83
|
+
at as CheckBoxField
|
|
84
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { jsx as o, jsxs as g, Fragment as O } from "react/jsx-runtime";
|
|
2
|
+
import { useContext as x, useRef as P, useMemo as R } from "react";
|
|
3
|
+
import { ActionDependant as W } from "../../../engine/Actions.js";
|
|
4
|
+
import { useEvaluatedAttributes as u, evaluateTemplateValue as V } from "../../../engine/TemplateSystem.js";
|
|
5
|
+
import { GlobalDataContext as w } from "../../../engine/GlobalDataContext.js";
|
|
6
|
+
import { TemplateContext as H } from "../../../engine/TemplateContext.js";
|
|
7
|
+
import { propsDataLocationToPathAndValue as M } from "../../../engine/utility/formElementsCommon.js";
|
|
8
|
+
import { View as B } from "../../../engine/View.js";
|
|
9
|
+
const K = ({ props: t, datafield: C, path: c, currentData: r }) => {
|
|
10
|
+
const i = x(w), s = x(H), f = P(null), d = u(t.attributes), E = u(t.inputAttributes ?? []), L = u(t.labelAttributes ?? []), { formData: T, formDataPath: y } = M({
|
|
11
|
+
currentPath: c,
|
|
12
|
+
datafield: C,
|
|
13
|
+
dataLocation: t.dataLocation,
|
|
14
|
+
defaultValue: t.defaultFieldValue,
|
|
15
|
+
globalDataContext: i,
|
|
16
|
+
templateContext: s
|
|
17
|
+
}), D = (n) => {
|
|
18
|
+
let e = n.currentTarget.value;
|
|
19
|
+
e === "" && !t.allowEmptyStringAsValue ? e = void 0 : e === "true" ? e = !0 : e === "false" ? e = !1 : e === "null" && (e = null), i.updateData(e, y);
|
|
20
|
+
};
|
|
21
|
+
let l;
|
|
22
|
+
t.dynamicOptions ? l = V({
|
|
23
|
+
valueToEvaluate: t.dynamicOptions,
|
|
24
|
+
globalDataContext: i,
|
|
25
|
+
templateContext: s
|
|
26
|
+
}) : t.options ? l = t.options : l = [], Array.isArray(l) || (l = []);
|
|
27
|
+
const m = !!t.label, b = t.forceWrapper, v = b === !0 || b !== !1 && m, a = {
|
|
28
|
+
onChange: D,
|
|
29
|
+
value: T ?? "",
|
|
30
|
+
...E
|
|
31
|
+
};
|
|
32
|
+
v || Object.assign(a, d);
|
|
33
|
+
const h = R(() => a.id ? a.id : `select-${Math.random().toString(36).substring(2, 9)}`, [a.id]);
|
|
34
|
+
a.id = h;
|
|
35
|
+
const F = {
|
|
36
|
+
htmlFor: h,
|
|
37
|
+
...L
|
|
38
|
+
}, A = /* @__PURE__ */ o("select", { ref: f, ...a, children: l.length > 0 ? l.map((n, e) => {
|
|
39
|
+
const S = n.value ?? "", j = V({
|
|
40
|
+
valueToEvaluate: n.label,
|
|
41
|
+
globalDataContext: i,
|
|
42
|
+
templateContext: s
|
|
43
|
+
}) ?? "";
|
|
44
|
+
return /* @__PURE__ */ o("option", { value: S, children: j }, e);
|
|
45
|
+
}) : /* @__PURE__ */ o("option", { value: "", children: "No options available" }) }), p = m && /* @__PURE__ */ o("label", { ...F, children: /* @__PURE__ */ o(
|
|
46
|
+
B,
|
|
47
|
+
{
|
|
48
|
+
currentData: (r == null ? void 0 : r.label) ?? void 0,
|
|
49
|
+
datafield: "label",
|
|
50
|
+
path: c + ".label",
|
|
51
|
+
props: t.label
|
|
52
|
+
}
|
|
53
|
+
) });
|
|
54
|
+
return /* @__PURE__ */ o(W, { ...t, attributesHolderRef: f, children: v ? /* @__PURE__ */ g("div", { ...d, children: [
|
|
55
|
+
p,
|
|
56
|
+
A
|
|
57
|
+
] }) : /* @__PURE__ */ g(O, { children: [
|
|
58
|
+
p,
|
|
59
|
+
A
|
|
60
|
+
] }) });
|
|
61
|
+
};
|
|
62
|
+
export {
|
|
63
|
+
K as SelectField
|
|
64
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { jsx as l, jsxs as x, Fragment as P } from "react/jsx-runtime";
|
|
2
|
+
import { useContext as A, useRef as R, useMemo as j } from "react";
|
|
3
|
+
import { ActionDependant as W } from "../../../engine/Actions.js";
|
|
4
|
+
import { useEvaluatedAttributes as n, evaluateTemplateValue as v } from "../../../engine/TemplateSystem.js";
|
|
5
|
+
import { GlobalDataContext as y } from "../../../engine/GlobalDataContext.js";
|
|
6
|
+
import { TemplateContext as H } from "../../../engine/TemplateContext.js";
|
|
7
|
+
import { propsDataLocationToPathAndValue as M } from "../../../engine/utility/formElementsCommon.js";
|
|
8
|
+
import { View as B } from "../../../engine/View.js";
|
|
9
|
+
const J = ({ props: t, datafield: p, path: i, currentData: o }) => {
|
|
10
|
+
const a = A(y), r = A(H), s = R(null), u = n(t.attributes), T = n(t.inputAttributes ?? []), g = n(t.labelAttributes ?? []), { formData: C, formDataPath: E } = M({
|
|
11
|
+
currentPath: i,
|
|
12
|
+
datafield: p,
|
|
13
|
+
dataLocation: t.dataLocation,
|
|
14
|
+
defaultValue: t.defaultFieldValue,
|
|
15
|
+
globalDataContext: a,
|
|
16
|
+
templateContext: r
|
|
17
|
+
}), L = (F) => {
|
|
18
|
+
a.updateData(F.currentTarget.value, E);
|
|
19
|
+
}, V = v({
|
|
20
|
+
valueToEvaluate: t.placeholder,
|
|
21
|
+
globalDataContext: a,
|
|
22
|
+
templateContext: r
|
|
23
|
+
}), w = v({
|
|
24
|
+
valueToEvaluate: t.rows,
|
|
25
|
+
globalDataContext: a,
|
|
26
|
+
templateContext: r
|
|
27
|
+
}), c = !!t.label, m = t.forceWrapper, d = m === !0 || m !== !1 && c, e = {
|
|
28
|
+
onChange: L,
|
|
29
|
+
placeholder: V,
|
|
30
|
+
rows: w ?? 3,
|
|
31
|
+
value: C ?? "",
|
|
32
|
+
...T
|
|
33
|
+
};
|
|
34
|
+
d || Object.assign(e, u);
|
|
35
|
+
const b = j(() => e.id ? e.id : `textarea-${Math.random().toString(36).substring(2, 9)}`, [e.id]);
|
|
36
|
+
e.id = b;
|
|
37
|
+
const D = {
|
|
38
|
+
htmlFor: b,
|
|
39
|
+
...g
|
|
40
|
+
}, f = /* @__PURE__ */ l("textarea", { ref: s, ...e }), h = c && /* @__PURE__ */ l("label", { ...D, children: /* @__PURE__ */ l(
|
|
41
|
+
B,
|
|
42
|
+
{
|
|
43
|
+
currentData: (o == null ? void 0 : o.label) ?? void 0,
|
|
44
|
+
datafield: "label",
|
|
45
|
+
path: i + ".label",
|
|
46
|
+
props: t.label
|
|
47
|
+
}
|
|
48
|
+
) });
|
|
49
|
+
return /* @__PURE__ */ l(W, { ...t, attributesHolderRef: s, children: d ? /* @__PURE__ */ x("div", { ...u, children: [
|
|
50
|
+
h,
|
|
51
|
+
f
|
|
52
|
+
] }) : /* @__PURE__ */ x(P, { children: [
|
|
53
|
+
h,
|
|
54
|
+
f
|
|
55
|
+
] }) });
|
|
56
|
+
};
|
|
57
|
+
export {
|
|
58
|
+
J as TextAreaField
|
|
59
|
+
};
|
|
@@ -1,36 +1,42 @@
|
|
|
1
1
|
import { Input as o } from "./Input.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
2
|
+
import { CheckBoxField as l } from "./CheckBoxField.js";
|
|
3
|
+
import { ColorField as m } from "./ColorField.js";
|
|
4
|
+
import { DateField as d } from "./DateField.js";
|
|
5
|
+
import { DateTimeField as f } from "./DateTimeField.js";
|
|
6
|
+
import { EmailField as a } from "./EmailField.js";
|
|
7
|
+
import { FileField as n } from "./FileField.js";
|
|
8
|
+
import { HiddenField as h } from "./HiddenField.js";
|
|
8
9
|
import { MonthField as s } from "./MonthField.js";
|
|
9
|
-
import { NumberField as
|
|
10
|
-
import { PasswordField as
|
|
11
|
-
import { RangeField as
|
|
12
|
-
import { SearchField as
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
10
|
+
import { NumberField as C } from "./NumberField.js";
|
|
11
|
+
import { PasswordField as S } from "./PasswordField.js";
|
|
12
|
+
import { RangeField as g } from "./RangeField.js";
|
|
13
|
+
import { SearchField as A } from "./SearchField.js";
|
|
14
|
+
import { SelectField as E } from "./SelectField.js";
|
|
15
|
+
import { TelField as I } from "./TelField.js";
|
|
16
|
+
import { TextAreaField as N } from "./TextAreaField.js";
|
|
17
|
+
import { TextField as R } from "./TextField.js";
|
|
18
|
+
import { TimeField as W } from "./TimeField.js";
|
|
19
|
+
import { UrlField as q } from "./UrlField.js";
|
|
20
|
+
import { WeekField as y } from "./WeekField.js";
|
|
18
21
|
export {
|
|
19
|
-
|
|
20
|
-
m as
|
|
21
|
-
|
|
22
|
-
f as
|
|
23
|
-
a as
|
|
24
|
-
|
|
22
|
+
l as CheckBoxField,
|
|
23
|
+
m as ColorField,
|
|
24
|
+
d as DateField,
|
|
25
|
+
f as DateTimeField,
|
|
26
|
+
a as EmailField,
|
|
27
|
+
n as FileField,
|
|
28
|
+
h as HiddenField,
|
|
25
29
|
o as Input,
|
|
26
30
|
s as MonthField,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
W as
|
|
31
|
+
C as NumberField,
|
|
32
|
+
S as PasswordField,
|
|
33
|
+
g as RangeField,
|
|
34
|
+
A as SearchField,
|
|
35
|
+
E as SelectField,
|
|
36
|
+
I as TelField,
|
|
37
|
+
N as TextAreaField,
|
|
38
|
+
R as TextField,
|
|
39
|
+
W as TimeField,
|
|
40
|
+
q as UrlField,
|
|
41
|
+
y as WeekField
|
|
36
42
|
};
|
|
@@ -1,78 +1,84 @@
|
|
|
1
1
|
import { d as o } from "../../index-CACLSxWi.js";
|
|
2
|
-
import { f as e } from "../../index-
|
|
2
|
+
import { f as e } from "../../index-CpGvV5AF.js";
|
|
3
3
|
import { h as r } from "../../index-BNvY8PkY.js";
|
|
4
4
|
import { s as t } from "../../index-Ya6_R5yr.js";
|
|
5
5
|
import { VariablesDebug as n } from "./debug/VariablesDebug/VariablesDebug.js";
|
|
6
|
-
import { Input as
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
|
|
6
|
+
import { Input as F } from "./form/Input.js";
|
|
7
|
+
import { CheckBoxField as c } from "./form/CheckBoxField.js";
|
|
8
|
+
import { ColorField as C } from "./form/ColorField.js";
|
|
9
|
+
import { DateField as T } from "./form/DateField.js";
|
|
10
|
+
import { DateTimeField as S } from "./form/DateTimeField.js";
|
|
11
|
+
import { EmailField as D } from "./form/EmailField.js";
|
|
12
|
+
import { FileField as R } from "./form/FileField.js";
|
|
13
|
+
import { HiddenField as B } from "./form/HiddenField.js";
|
|
14
|
+
import { MonthField as v } from "./form/MonthField.js";
|
|
15
|
+
import { NumberField as A } from "./form/NumberField.js";
|
|
16
|
+
import { PasswordField as I } from "./form/PasswordField.js";
|
|
17
|
+
import { RangeField as M } from "./form/RangeField.js";
|
|
18
|
+
import { SearchField as V } from "./form/SearchField.js";
|
|
19
|
+
import { SelectField as y } from "./form/SelectField.js";
|
|
20
|
+
import { TelField as U } from "./form/TelField.js";
|
|
21
|
+
import { TextAreaField as q } from "./form/TextAreaField.js";
|
|
22
|
+
import { TextField as G } from "./form/TextField.js";
|
|
23
|
+
import { TimeField as O } from "./form/TimeField.js";
|
|
24
|
+
import { UrlField as X } from "./form/UrlField.js";
|
|
25
|
+
import { WeekField as Z } from "./form/WeekField.js";
|
|
26
|
+
import { FolderSortableTree as $ } from "./html/FolderSortableTree.js";
|
|
27
|
+
import { FormatNumeral as eo } from "./html/FormatNumeral.js";
|
|
28
|
+
import { Html as to } from "./html/Html.js";
|
|
29
|
+
import { LabelFromValue as po } from "./html/LabelFromValue.js";
|
|
30
|
+
import { PreformattedMarkup as lo } from "./html/PreformattedMarkup.js";
|
|
31
|
+
import { SortableTreeItemCollapseButton as io } from "./html/SortableTreeItemCollapseButton.js";
|
|
32
|
+
import { Count as no } from "./special/Count.js";
|
|
33
|
+
import { DataFilter as so } from "./special/DataFilter.js";
|
|
34
|
+
import { DelayedActions as uo, getReactionFunctionsToExecute as Co } from "./special/DelayedActions.js";
|
|
35
|
+
import { PageControls as To } from "./special/PageControls.js";
|
|
36
|
+
import { Phantom as So } from "./special/Phantom.js";
|
|
37
|
+
import { ReactiveJsonBasicComponentWrapper as Do } from "./special/ReactiveJsonBasicComponentWrapper.js";
|
|
38
|
+
import { ReactiveJsonSubroot as Ro } from "./special/ReactiveJsonSubroot.js";
|
|
39
|
+
import { Switch as Bo } from "./special/Switch.js";
|
|
40
|
+
const x = {
|
|
38
41
|
...o,
|
|
39
42
|
...e,
|
|
40
43
|
...r,
|
|
41
44
|
...t
|
|
42
45
|
};
|
|
43
46
|
export {
|
|
44
|
-
c as
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
T as
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
U as
|
|
73
|
-
q as
|
|
47
|
+
c as CheckBoxField,
|
|
48
|
+
C as ColorField,
|
|
49
|
+
no as Count,
|
|
50
|
+
so as DataFilter,
|
|
51
|
+
T as DateField,
|
|
52
|
+
S as DateTimeField,
|
|
53
|
+
uo as DelayedActions,
|
|
54
|
+
D as EmailField,
|
|
55
|
+
R as FileField,
|
|
56
|
+
$ as FolderSortableTree,
|
|
57
|
+
eo as FormatNumeral,
|
|
58
|
+
B as HiddenField,
|
|
59
|
+
to as Html,
|
|
60
|
+
F as Input,
|
|
61
|
+
po as LabelFromValue,
|
|
62
|
+
v as MonthField,
|
|
63
|
+
A as NumberField,
|
|
64
|
+
To as PageControls,
|
|
65
|
+
I as PasswordField,
|
|
66
|
+
So as Phantom,
|
|
67
|
+
lo as PreformattedMarkup,
|
|
68
|
+
M as RangeField,
|
|
69
|
+
Do as ReactiveJsonBasicComponentWrapper,
|
|
70
|
+
Ro as ReactiveJsonSubroot,
|
|
71
|
+
V as SearchField,
|
|
72
|
+
y as SelectField,
|
|
73
|
+
io as SortableTreeItemCollapseButton,
|
|
74
|
+
Bo as Switch,
|
|
75
|
+
U as TelField,
|
|
76
|
+
q as TextAreaField,
|
|
77
|
+
G as TextField,
|
|
78
|
+
O as TimeField,
|
|
79
|
+
X as UrlField,
|
|
74
80
|
n as VariablesDebug,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
81
|
+
Z as WeekField,
|
|
82
|
+
x as coreElementComponents,
|
|
83
|
+
Co as getReactionFunctionsToExecute
|
|
78
84
|
};
|