@ea-lab/reactive-json 1.0.1 → 1.1.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/CustomEventListener.js +34 -0
- package/dist/component/action/ReactOnEvent.js +38 -57
- package/dist/component/action/index.js +22 -20
- package/dist/component/index.js +121 -119
- package/dist/component/reaction/fetchData.js +1 -1
- package/dist/component/reaction/index.js +1 -1
- package/dist/component/reaction/submitData.js +1 -1
- package/dist/component/reaction/utility/httpRequestCommon.js +1 -1
- package/dist/component/reaction/utility/index.js +1 -1
- package/dist/coreComponentsPlugin.js +1 -1
- package/dist/engine/Actions.js +93 -74
- package/dist/engine/ReactiveJsonRoot.js +25 -24
- package/dist/engine/index.js +23 -21
- package/dist/engine/utility/eventPlaceholderSystem.js +42 -0
- package/dist/engine/utility/index.js +16 -14
- package/dist/engine/utility/reactEventProps.js +82 -0
- package/dist/{httpRequestCommon-DUo2Oxgl.js → httpRequestCommon-vfSMynsl.js} +339 -333
- package/dist/index-BQyEEFVW.js +50 -0
- package/dist/main.js +167 -163
- package/package.json +1 -1
- package/dist/index-BA09SSaJ.js +0 -26
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { useContext as l, useEffect as v } from "react";
|
|
2
|
+
import { GlobalDataContext as C } from "../../engine/GlobalDataContext.js";
|
|
3
|
+
import { TemplateContext as x } from "../../engine/TemplateContext.js";
|
|
4
|
+
import "react/jsx-runtime";
|
|
5
|
+
import "../../jsonpath-B9kE9k9e.js";
|
|
6
|
+
import "../../lodash-CYNxjS-I.js";
|
|
7
|
+
import "../../engine/EventDispatcherContext.js";
|
|
8
|
+
import "../../engine/EventDispatcherProvider.js";
|
|
9
|
+
import "../../engine/PaginationContext.js";
|
|
10
|
+
import "../../dnd-kit-sortable-tree.esm-Cz1RJyIg.js";
|
|
11
|
+
import '../../assets/reset.css';/* empty css */
|
|
12
|
+
import "../../index-NNBvIV0S.js";
|
|
13
|
+
import { replaceEventPlaceholders as E } from "../../engine/utility/eventPlaceholderSystem.js";
|
|
14
|
+
import "../../js-yaml-Bw0KO4XO.js";
|
|
15
|
+
import "../../engine/ParsingDebugDisplay/ParsingDebugDisplay.js";
|
|
16
|
+
const k = (o) => {
|
|
17
|
+
const e = l(C), i = l(x), d = o.attributesHolderRef, n = e.plugins ?? {}, f = (n == null ? void 0 : n.reaction) ?? {}, t = (o == null ? void 0 : o.actionProps) ?? void 0;
|
|
18
|
+
return v(() => {
|
|
19
|
+
const p = t ?? void 0, m = (t == null ? void 0 : t.what) ?? void 0, c = (a) => {
|
|
20
|
+
const s = m && (f[m] ?? void 0);
|
|
21
|
+
if (s) {
|
|
22
|
+
const u = E(p, a);
|
|
23
|
+
s({ args: u, event: a, globalDataContext: e, templateContext: i });
|
|
24
|
+
}
|
|
25
|
+
}, r = d.current;
|
|
26
|
+
if (r)
|
|
27
|
+
return r.addEventListener(t.on, c), () => {
|
|
28
|
+
r.removeEventListener(t.on, c);
|
|
29
|
+
};
|
|
30
|
+
}, [e, t, i]), o.children;
|
|
31
|
+
};
|
|
32
|
+
export {
|
|
33
|
+
k as CustomEventListener
|
|
34
|
+
};
|
|
@@ -1,66 +1,47 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { useContext as
|
|
3
|
-
import { GlobalDataContext as
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
let t = e.slice(u.length);
|
|
24
|
-
if (t.startsWith(".") && (t = t.slice(1)), !!t)
|
|
25
|
-
return t.split(".").reduce((n, o) => n ? n[o] : void 0, r);
|
|
26
|
-
}, i = (e, r) => {
|
|
27
|
-
if (Array.isArray(e))
|
|
28
|
-
return e.map((t) => i(t, r));
|
|
29
|
-
if (e && typeof e == "object") {
|
|
30
|
-
const t = {};
|
|
31
|
-
for (const [n, o] of Object.entries(e))
|
|
32
|
-
t[n] = i(o, r);
|
|
33
|
-
return t;
|
|
34
|
-
}
|
|
35
|
-
return b(e, r);
|
|
36
|
-
};
|
|
37
|
-
for (const [e, r] of Object.entries(y))
|
|
38
|
-
p[e] = (t) => {
|
|
39
|
-
let n = !0;
|
|
40
|
-
for (const o of r) {
|
|
41
|
-
if (!o)
|
|
1
|
+
import { jsx as C, Fragment as b } from "react/jsx-runtime";
|
|
2
|
+
import { useContext as f, Children as l, Fragment as v, isValidElement as y, cloneElement as A } from "react";
|
|
3
|
+
import { GlobalDataContext as E } from "../../engine/GlobalDataContext.js";
|
|
4
|
+
import "../../jsonpath-B9kE9k9e.js";
|
|
5
|
+
import "../../lodash-CYNxjS-I.js";
|
|
6
|
+
import { TemplateContext as j } from "../../engine/TemplateContext.js";
|
|
7
|
+
import "../../engine/EventDispatcherContext.js";
|
|
8
|
+
import "../../engine/EventDispatcherProvider.js";
|
|
9
|
+
import "../../engine/PaginationContext.js";
|
|
10
|
+
import "../../dnd-kit-sortable-tree.esm-Cz1RJyIg.js";
|
|
11
|
+
import '../../assets/reset.css';/* empty css */
|
|
12
|
+
import "../../index-NNBvIV0S.js";
|
|
13
|
+
import { replaceEventPlaceholders as R } from "../../engine/utility/eventPlaceholderSystem.js";
|
|
14
|
+
import "../../js-yaml-Bw0KO4XO.js";
|
|
15
|
+
import "../../engine/ParsingDebugDisplay/ParsingDebugDisplay.js";
|
|
16
|
+
const I = (p) => {
|
|
17
|
+
const s = f(E), g = f(j), e = s.plugins ?? {}, P = (e == null ? void 0 : e.reaction) ?? {}, { actionProps: F } = p, c = {};
|
|
18
|
+
for (const [o, a] of Object.entries(F))
|
|
19
|
+
c[o] = (t) => {
|
|
20
|
+
let r = !0;
|
|
21
|
+
for (const n of a) {
|
|
22
|
+
if (!n)
|
|
42
23
|
continue;
|
|
43
|
-
const
|
|
44
|
-
if (!
|
|
24
|
+
const u = n.what && (P[n.what] ?? null);
|
|
25
|
+
if (!u)
|
|
45
26
|
continue;
|
|
46
|
-
const
|
|
47
|
-
if (
|
|
27
|
+
const i = R(n, t);
|
|
28
|
+
if (u({ args: i, event: t, globalDataContext: s, templateContext: g }), i.stopPropagation === !0)
|
|
48
29
|
break;
|
|
49
|
-
|
|
30
|
+
r = i.stopPropagation ?? !0;
|
|
50
31
|
}
|
|
51
|
-
|
|
32
|
+
r !== !1 && t.stopPropagation();
|
|
52
33
|
};
|
|
53
|
-
const
|
|
54
|
-
if (!
|
|
55
|
-
return
|
|
56
|
-
const
|
|
57
|
-
return
|
|
58
|
-
var
|
|
59
|
-
return t.type ===
|
|
34
|
+
const m = (o) => {
|
|
35
|
+
if (!o)
|
|
36
|
+
return o;
|
|
37
|
+
const a = l.toArray(o);
|
|
38
|
+
return l.map(a, (t) => {
|
|
39
|
+
var r;
|
|
40
|
+
return t.type === v ? m((r = t == null ? void 0 : t.props) == null ? void 0 : r.children) : typeof t != "object" || !y(t) ? t : A(t, c);
|
|
60
41
|
});
|
|
61
|
-
}, x =
|
|
62
|
-
return /* @__PURE__ */
|
|
42
|
+
}, x = m(p.children);
|
|
43
|
+
return /* @__PURE__ */ C(b, { children: x });
|
|
63
44
|
};
|
|
64
45
|
export {
|
|
65
|
-
|
|
46
|
+
I as ReactOnEvent
|
|
66
47
|
};
|
|
@@ -1,22 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
1
|
+
import { CustomEventListener as r } from "./CustomEventListener.js";
|
|
2
|
+
import { HashChangeListener as m } from "./HashChangeListener.js";
|
|
3
|
+
import { Hide as i } from "./Hide.js";
|
|
4
|
+
import { MessageListener as x } from "./MessageListener.js";
|
|
5
|
+
import { ReactOnEvent as n } from "./ReactOnEvent.js";
|
|
6
|
+
import { Redirect as a } from "./Redirect.js";
|
|
7
|
+
import { SetAttributeValue as b } from "./SetAttributeValue.js";
|
|
8
|
+
import { ToggleAttributeValue as A } from "./ToggleAttributeValue.js";
|
|
9
|
+
import { UnsetAttribute as d } from "./UnsetAttribute.js";
|
|
10
|
+
import { UnsetAttributeValue as L } from "./UnsetAttributeValue.js";
|
|
11
|
+
import { VisuallyHide as h } from "./VisuallyHide.js";
|
|
11
12
|
export {
|
|
12
|
-
r as
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
x as
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
b as
|
|
19
|
-
A as
|
|
20
|
-
d as
|
|
21
|
-
|
|
13
|
+
r as CustomEventListener,
|
|
14
|
+
m as HashChangeListener,
|
|
15
|
+
i as Hide,
|
|
16
|
+
x as MessageListener,
|
|
17
|
+
n as ReactOnEvent,
|
|
18
|
+
a as Redirect,
|
|
19
|
+
b as SetAttributeValue,
|
|
20
|
+
A as ToggleAttributeValue,
|
|
21
|
+
d as UnsetAttribute,
|
|
22
|
+
L as UnsetAttributeValue,
|
|
23
|
+
h as VisuallyHide
|
|
22
24
|
};
|
package/dist/component/index.js
CHANGED
|
@@ -1,121 +1,123 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
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
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
1
|
+
import { CustomEventListener as r } from "./action/CustomEventListener.js";
|
|
2
|
+
import { HashChangeListener as m } from "./action/HashChangeListener.js";
|
|
3
|
+
import { Hide as x } from "./action/Hide.js";
|
|
4
|
+
import { MessageListener as a } from "./action/MessageListener.js";
|
|
5
|
+
import { ReactOnEvent as l } from "./action/ReactOnEvent.js";
|
|
6
|
+
import { Redirect as s } from "./action/Redirect.js";
|
|
7
|
+
import { SetAttributeValue as u } from "./action/SetAttributeValue.js";
|
|
8
|
+
import { ToggleAttributeValue as c } from "./action/ToggleAttributeValue.js";
|
|
9
|
+
import { UnsetAttribute as b } from "./action/UnsetAttribute.js";
|
|
10
|
+
import { UnsetAttributeValue as C } from "./action/UnsetAttributeValue.js";
|
|
11
|
+
import { VisuallyHide as T } from "./action/VisuallyHide.js";
|
|
12
|
+
import { coreDataMappingComponents as v } from "./dataMapping/index.js";
|
|
13
|
+
import { coreDataProcessorComponents as E } from "./dataProcessor/index.js";
|
|
14
|
+
import { coreElementComponents as S } from "./element/index.js";
|
|
15
|
+
import { coreHookComponents as A } from "./hook/index.js";
|
|
16
|
+
import { coreReactionComponents as L } from "./reaction/index.js";
|
|
17
|
+
import { simpleMapping as w } from "./dataMapping/simpleMapping.js";
|
|
18
|
+
import { VariablesDebug as U } from "./element/debug/VariablesDebug/VariablesDebug.js";
|
|
19
|
+
import { Input as B } from "./element/form/Input.js";
|
|
20
|
+
import { ColorField as J } from "./element/form/ColorField.js";
|
|
21
|
+
import { DateField as q } from "./element/form/DateField.js";
|
|
22
|
+
import { DateTimeField as j } from "./element/form/DateTimeField.js";
|
|
23
|
+
import { EmailField as G } from "./element/form/EmailField.js";
|
|
24
|
+
import { FileField as Q } from "./element/form/FileField.js";
|
|
25
|
+
import { HiddenField as Y } from "./element/form/HiddenField.js";
|
|
26
|
+
import { MonthField as _ } from "./element/form/MonthField.js";
|
|
27
|
+
import { NumberField as ee } from "./element/form/NumberField.js";
|
|
28
|
+
import { PasswordField as re } from "./element/form/PasswordField.js";
|
|
29
|
+
import { RangeField as me } from "./element/form/RangeField.js";
|
|
30
|
+
import { SearchField as xe } from "./element/form/SearchField.js";
|
|
31
|
+
import { TelField as ae } from "./element/form/TelField.js";
|
|
32
|
+
import { TextField as le } from "./element/form/TextField.js";
|
|
33
|
+
import { TimeField as se } from "./element/form/TimeField.js";
|
|
34
|
+
import { UrlField as ue } from "./element/form/UrlField.js";
|
|
35
|
+
import { WeekField as ce } from "./element/form/WeekField.js";
|
|
36
|
+
import { FolderSortableTree as be } from "./element/html/FolderSortableTree.js";
|
|
37
|
+
import { FormatNumeral as Ce } from "./element/html/FormatNumeral.js";
|
|
38
|
+
import { Html as Te } from "./element/html/Html.js";
|
|
39
|
+
import { LabelFromValue as ve } from "./element/html/LabelFromValue.js";
|
|
40
|
+
import { PreformattedMarkup as Ee } from "./element/html/PreformattedMarkup.js";
|
|
41
|
+
import { SortableTreeItemCollapseButton as Se } from "./element/html/SortableTreeItemCollapseButton.js";
|
|
42
|
+
import { Count as Ae } from "./element/special/Count.js";
|
|
43
|
+
import { DataFilter as Le } from "./element/special/DataFilter.js";
|
|
44
|
+
import { DelayedActions as we, getReactionFunctionsToExecute as Ne } from "./element/special/DelayedActions.js";
|
|
45
|
+
import { PageControls as ye } from "./element/special/PageControls.js";
|
|
46
|
+
import { Phantom as Ie } from "./element/special/Phantom.js";
|
|
47
|
+
import { ReactiveJsonBasicComponentWrapper as We } from "./element/special/ReactiveJsonBasicComponentWrapper.js";
|
|
48
|
+
import { ReactiveJsonSubroot as Oe } from "./element/special/ReactiveJsonSubroot.js";
|
|
49
|
+
import { Switch as ze } from "./element/special/Switch.js";
|
|
50
|
+
import { addData as Ke } from "./reaction/addData.js";
|
|
51
|
+
import { fetchData as Xe } from "./reaction/fetchData.js";
|
|
52
|
+
import { e as Ze } from "../httpRequestCommon-vfSMynsl.js";
|
|
53
|
+
import { moveData as $e } from "./reaction/moveData.js";
|
|
54
|
+
import { postMessage as oo } from "./reaction/postMessage.js";
|
|
55
|
+
import { redirectNow as to } from "./reaction/redirectNow.js";
|
|
56
|
+
import { removeData as po } from "./reaction/removeData.js";
|
|
57
|
+
import { setClipboardData as fo } from "./reaction/setClipboardData.js";
|
|
58
|
+
import { setData as io } from "./reaction/setData.js";
|
|
59
|
+
import { submitData as no } from "./reaction/submitData.js";
|
|
60
|
+
import { triggerEvent as uo } from "./reaction/triggerEvent.js";
|
|
60
61
|
export {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
q as
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
G as
|
|
69
|
-
|
|
70
|
-
be as
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
_ as
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
We as
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
ae as
|
|
95
|
-
le as
|
|
96
|
-
|
|
97
|
-
c as
|
|
98
|
-
b as
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
$e as
|
|
114
|
-
oo as
|
|
115
|
-
to as
|
|
116
|
-
po as
|
|
117
|
-
fo as
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
no as
|
|
62
|
+
J as ColorField,
|
|
63
|
+
Ae as Count,
|
|
64
|
+
r as CustomEventListener,
|
|
65
|
+
Le as DataFilter,
|
|
66
|
+
q as DateField,
|
|
67
|
+
j as DateTimeField,
|
|
68
|
+
we as DelayedActions,
|
|
69
|
+
G as EmailField,
|
|
70
|
+
Q as FileField,
|
|
71
|
+
be as FolderSortableTree,
|
|
72
|
+
Ce as FormatNumeral,
|
|
73
|
+
m as HashChangeListener,
|
|
74
|
+
Y as HiddenField,
|
|
75
|
+
x as Hide,
|
|
76
|
+
Te as Html,
|
|
77
|
+
B as Input,
|
|
78
|
+
ve as LabelFromValue,
|
|
79
|
+
a as MessageListener,
|
|
80
|
+
_ as MonthField,
|
|
81
|
+
ee as NumberField,
|
|
82
|
+
ye as PageControls,
|
|
83
|
+
re as PasswordField,
|
|
84
|
+
Ie as Phantom,
|
|
85
|
+
Ee as PreformattedMarkup,
|
|
86
|
+
me as RangeField,
|
|
87
|
+
l as ReactOnEvent,
|
|
88
|
+
We as ReactiveJsonBasicComponentWrapper,
|
|
89
|
+
Oe as ReactiveJsonSubroot,
|
|
90
|
+
s as Redirect,
|
|
91
|
+
xe as SearchField,
|
|
92
|
+
u as SetAttributeValue,
|
|
93
|
+
Se as SortableTreeItemCollapseButton,
|
|
94
|
+
ze as Switch,
|
|
95
|
+
ae as TelField,
|
|
96
|
+
le as TextField,
|
|
97
|
+
se as TimeField,
|
|
98
|
+
c as ToggleAttributeValue,
|
|
99
|
+
b as UnsetAttribute,
|
|
100
|
+
C as UnsetAttributeValue,
|
|
101
|
+
ue as UrlField,
|
|
102
|
+
U as VariablesDebug,
|
|
103
|
+
T as VisuallyHide,
|
|
104
|
+
ce as WeekField,
|
|
105
|
+
Ke as addData,
|
|
106
|
+
v as coreDataMappingComponents,
|
|
107
|
+
E as coreDataProcessorComponents,
|
|
108
|
+
S as coreElementComponents,
|
|
109
|
+
A as coreHookComponents,
|
|
110
|
+
L as coreReactionComponents,
|
|
111
|
+
Ze as executeHttpRequest,
|
|
112
|
+
Xe as fetchData,
|
|
113
|
+
Ne as getReactionFunctionsToExecute,
|
|
114
|
+
$e as moveData,
|
|
115
|
+
oo as postMessage,
|
|
116
|
+
to as redirectNow,
|
|
117
|
+
po as removeData,
|
|
118
|
+
fo as setClipboardData,
|
|
119
|
+
io as setData,
|
|
120
|
+
w as simpleMapping,
|
|
121
|
+
no as submitData,
|
|
122
|
+
uo as triggerEvent
|
|
121
123
|
};
|
|
@@ -8,7 +8,7 @@ import { setClipboardData as p } from "./setClipboardData.js";
|
|
|
8
8
|
import { setData as i } from "./setData.js";
|
|
9
9
|
import { submitData as f } from "./submitData.js";
|
|
10
10
|
import { triggerEvent as s } from "./triggerEvent.js";
|
|
11
|
-
import { e as q } from "../../httpRequestCommon-
|
|
11
|
+
import { e as q } from "../../httpRequestCommon-vfSMynsl.js";
|
|
12
12
|
const R = {
|
|
13
13
|
addData: t,
|
|
14
14
|
fetchData: o,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { e as i } from "../../../httpRequestCommon-
|
|
1
|
+
import { e as i } from "../../../httpRequestCommon-vfSMynsl.js";
|
|
2
2
|
import "../../../engine/TemplateSystem.js";
|
|
3
3
|
import "../../../engine/utility/alterData.js";
|
|
4
4
|
import "../../../engine/utility/dataMappingSystem.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as o } from "./index-
|
|
1
|
+
import { c as o } from "./index-BQyEEFVW.js";
|
|
2
2
|
import { coreAttributeTransformerComponents as r } from "./component/attributeTransformer/index.js";
|
|
3
3
|
import { coreDataMappingComponents as t } from "./component/dataMapping/index.js";
|
|
4
4
|
import { coreDataProcessorComponents as e } from "./component/dataProcessor/index.js";
|