@plitzi/sdk-elements 0.30.19 → 0.31.1
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/CHANGELOG.md +38 -3
- package/dist/Element/RootElement.mjs +45 -46
- package/dist/Element/hooks/useElementDataSource.d.ts +2 -4
- package/dist/Element/hooks/useElementDataSource.mjs +13 -10
- package/dist/Element/hooks/useElementInternal.d.ts +19 -2
- package/dist/Element/hooks/useElementInternal.mjs +29 -30
- package/dist/Element/hooks/useInternalItems.mjs +1 -1
- package/dist/dataSource/GlobalSources.d.ts +7 -0
- package/dist/dataSource/GlobalSources.mjs +135 -0
- package/dist/dataSource/getBindingsDetails.d.ts +10 -0
- package/dist/dataSource/getBindingsDetails.mjs +49 -0
- package/dist/dataSource/getSourcesByElementId.d.ts +3 -0
- package/dist/dataSource/getSourcesByElementId.mjs +12 -0
- package/dist/dataSource/index.d.ts +4 -0
- package/dist/dataSource/index.mjs +5 -0
- package/dist/dataSource/utility/arrayMap.d.ts +6 -0
- package/dist/dataSource/utility/arrayMap.mjs +28 -0
- package/dist/dataSource/utility/capitalize.d.ts +3 -0
- package/dist/dataSource/utility/capitalize.mjs +11 -0
- package/dist/dataSource/utility/dateConverter.d.ts +3 -0
- package/dist/dataSource/utility/dateConverter.mjs +60 -0
- package/dist/dataSource/utility/index.d.ts +7 -0
- package/dist/dataSource/utility/index.mjs +22 -0
- package/dist/dataSource/utility/staticValue.d.ts +3 -0
- package/dist/dataSource/utility/staticValue.mjs +47 -0
- package/dist/dataSource/utility/stringToArray.d.ts +3 -0
- package/dist/dataSource/utility/stringToArray.mjs +20 -0
- package/dist/dataSource/utility/styleSelector.d.ts +3 -0
- package/dist/dataSource/utility/styleSelector.mjs +42 -0
- package/dist/dataSource/utility/twigTemplate.d.ts +3 -0
- package/dist/dataSource/utility/twigTemplate.mjs +26 -0
- package/dist/elements/advanced/Reference/Reference.mjs +2 -2
- package/dist/elements/advanced/Reference/Settings.mjs +1 -1
- package/dist/elements/basic/Link/Link.mjs +4 -4
- package/dist/elements/basic/Link/Settings.mjs +1 -1
- package/dist/elements/form/Form/Form.mjs +70 -66
- package/dist/elements/form/FormControl/FormControl.mjs +13 -15
- package/dist/elements/form/FormControl/hocs/withFieldValue.mjs +46 -49
- package/dist/elements/internal/LayoutContainer/Settings.mjs +1 -1
- package/dist/elements/internal/Page/Settings.mjs +1 -1
- package/dist/elements/provider/ApiContainer/ApiContainer.mjs +47 -43
- package/dist/elements/provider/ApiContainer/Settings.mjs +1 -1
- package/dist/elements/provider/CollectionContainer/CollectionContainer.mjs +35 -31
- package/dist/elements/structure/DialogContainer/DialogContainer.mjs +53 -51
- package/dist/elements/structure/List/modes/ListControlled/ListControlled.mjs +32 -30
- package/dist/elements/structure/List/modes/ListControlled/ListControlledItem.d.ts +2 -2
- package/dist/elements/structure/List/modes/ListControlled/ListControlledItem.mjs +24 -22
- package/dist/elements/structure/ModalContainer/ModalContainer.mjs +41 -39
- package/package.json +95 -13
|
@@ -1,50 +1,52 @@
|
|
|
1
1
|
import e from "../../../../../Element/RootElement.mjs";
|
|
2
2
|
import t from "./ListControlledItem.mjs";
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
5
|
-
import { get as
|
|
6
|
-
import { getPathsFromObeject as
|
|
7
|
-
import { jsx as
|
|
8
|
-
import
|
|
9
|
-
import
|
|
3
|
+
import { useCallback as n, useMemo as r } from "react";
|
|
4
|
+
import i from "@plitzi/sdk-shared/hooks/usePlitziServiceContext";
|
|
5
|
+
import { get as a } from "@plitzi/plitzi-ui/helpers";
|
|
6
|
+
import { getPathsFromObeject as o } from "@plitzi/sdk-shared/helpers/utils";
|
|
7
|
+
import { jsx as s, jsxs as c } from "react/jsx-runtime";
|
|
8
|
+
import l from "clsx";
|
|
9
|
+
import u from "@plitzi/sdk-shared/elements/hooks/useElement";
|
|
10
|
+
import d from "@plitzi/nexus/StoreProvider";
|
|
11
|
+
import f from "@plitzi/sdk-shared/dataSource/hooks/useRegisterSource";
|
|
10
12
|
//#region src/elements/structure/List/modes/ListControlled/ListControlled.tsx
|
|
11
|
-
var
|
|
12
|
-
let { id:
|
|
13
|
-
item:
|
|
13
|
+
var p = ({ ref: p, className: m = "", children: h, items: g = [] }) => {
|
|
14
|
+
let { id: _, definition: { label: v } } = u(), { settings: { previewMode: y } } = i(), b = r(() => Array.isArray(g) ? g : [], [g]), x = n(() => o({
|
|
15
|
+
item: a(b, "0", {}),
|
|
14
16
|
index: "0"
|
|
15
17
|
}).reduce((e, t) => [...e, {
|
|
16
18
|
path: t,
|
|
17
19
|
name: t
|
|
18
|
-
}], []), [
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
name:
|
|
23
|
-
fields:
|
|
24
|
-
})
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
value:
|
|
30
|
-
children:
|
|
20
|
+
}], []), [b]), S = r(() => ({ items: b }), [b]);
|
|
21
|
+
return f({
|
|
22
|
+
id: _,
|
|
23
|
+
source: `list_${_}`,
|
|
24
|
+
name: v || `List - ${_}`,
|
|
25
|
+
fields: x
|
|
26
|
+
}), /* @__PURE__ */ c(e, {
|
|
27
|
+
ref: p,
|
|
28
|
+
className: l("plitzi-component__controlled-list", m, { "controlled-list--build-mode": !y }),
|
|
29
|
+
children: [/* @__PURE__ */ s(d, {
|
|
30
|
+
inherit: "live",
|
|
31
|
+
value: { runtime: { sources: { [`list_${_}`]: S } } },
|
|
32
|
+
children: b.map((e, n) => !h || Array.isArray(h) && h.length === 0 ? /* @__PURE__ */ s("div", {
|
|
31
33
|
className: "plitzi-component__controlled-list-item controlled-list--empty",
|
|
32
|
-
children: /* @__PURE__ */
|
|
34
|
+
children: /* @__PURE__ */ s("div", {
|
|
33
35
|
className: "controlled-list-item__counter",
|
|
34
36
|
children: `List Item - ${n + 1}`
|
|
35
37
|
})
|
|
36
|
-
}, n) : /* @__PURE__ */
|
|
38
|
+
}, n) : /* @__PURE__ */ s(t, {
|
|
37
39
|
itemCount: n + 1,
|
|
38
|
-
isTemplate: n !== 0 && !
|
|
40
|
+
isTemplate: n !== 0 && !y,
|
|
39
41
|
record: e,
|
|
40
|
-
|
|
41
|
-
children:
|
|
42
|
+
source: `list_${_}`,
|
|
43
|
+
children: h
|
|
42
44
|
}, n))
|
|
43
|
-
}), !
|
|
45
|
+
}), !y && b.length === 0 && /* @__PURE__ */ s("div", {
|
|
44
46
|
className: "controlled-list controlled-list--empty",
|
|
45
47
|
children: "This list does not contain any items"
|
|
46
48
|
})]
|
|
47
49
|
});
|
|
48
50
|
};
|
|
49
51
|
//#endregion
|
|
50
|
-
export {
|
|
52
|
+
export { p as default };
|
|
@@ -5,7 +5,7 @@ export type ListControlledItemProps<T = unknown> = {
|
|
|
5
5
|
isTemplate: boolean;
|
|
6
6
|
itemCount: number;
|
|
7
7
|
record: T;
|
|
8
|
-
|
|
8
|
+
source: string;
|
|
9
9
|
};
|
|
10
|
-
declare const ListControlledItem: ({ children, className, isTemplate, itemCount, record,
|
|
10
|
+
declare const ListControlledItem: ({ children, className, isTemplate, itemCount, record, source }: ListControlledItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export default ListControlledItem;
|
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
import e from "../../../../../Element/ReplicaProvider.mjs";
|
|
2
|
-
import {
|
|
3
|
-
import r from "
|
|
4
|
-
import
|
|
5
|
-
import
|
|
2
|
+
import { useMemo as t } from "react";
|
|
3
|
+
import { jsx as n, jsxs as r } from "react/jsx-runtime";
|
|
4
|
+
import i from "clsx";
|
|
5
|
+
import a from "@plitzi/nexus/StoreProvider";
|
|
6
6
|
//#region src/elements/structure/List/modes/ListControlled/ListControlledItem.tsx
|
|
7
|
-
var
|
|
8
|
-
let
|
|
9
|
-
item:
|
|
10
|
-
index: `${
|
|
11
|
-
}), [
|
|
12
|
-
return
|
|
13
|
-
className:
|
|
14
|
-
children: [/* @__PURE__ */
|
|
7
|
+
var o = ({ children: o, className: s = "", isTemplate: c = !1, itemCount: l = 0, record: u, source: d = "" }) => {
|
|
8
|
+
let f = t(() => ({
|
|
9
|
+
item: u,
|
|
10
|
+
index: `${l}`
|
|
11
|
+
}), [u, l]);
|
|
12
|
+
return c ? /* @__PURE__ */ r("div", {
|
|
13
|
+
className: i("plitzi-component__controlled-list-item", s),
|
|
14
|
+
children: [/* @__PURE__ */ n("div", {
|
|
15
15
|
className: "controlled-list-item__counter",
|
|
16
|
-
children: `List Item - ${
|
|
17
|
-
}), /* @__PURE__ */
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
16
|
+
children: `List Item - ${l}`
|
|
17
|
+
}), /* @__PURE__ */ n(e, { children: /* @__PURE__ */ n(a, {
|
|
18
|
+
inherit: "live",
|
|
19
|
+
value: { runtime: { sources: { [d]: f } } },
|
|
20
|
+
children: o
|
|
21
|
+
}) })]
|
|
22
|
+
}) : /* @__PURE__ */ n(e, { children: /* @__PURE__ */ n(a, {
|
|
23
|
+
inherit: "live",
|
|
24
|
+
value: { runtime: { sources: { [d]: f } } },
|
|
25
|
+
children: o
|
|
26
|
+
}) });
|
|
25
27
|
};
|
|
26
28
|
//#endregion
|
|
27
|
-
export {
|
|
29
|
+
export { o as default };
|
|
@@ -6,8 +6,10 @@ import { getPathsFromObeject as c } from "@plitzi/sdk-shared/helpers/utils";
|
|
|
6
6
|
import { jsx as l, jsxs as u } from "react/jsx-runtime";
|
|
7
7
|
import d from "clsx";
|
|
8
8
|
import f from "@plitzi/sdk-shared/elements/hooks/useElement";
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
import p from "@plitzi/nexus/StoreProvider";
|
|
10
|
+
import m from "@plitzi/sdk-shared/dataSource/hooks/useRegisterSource";
|
|
11
|
+
var h = t(({ ref: t, className: h = "", children: g, title: _ = "Modal Header", autoHideAfterClick: v = !0 }) => {
|
|
12
|
+
let { id: y, definition: { styleSelectors: b, label: x = "Modal" }, elementState: S, setElementState: C } = f(), { contexts: { InteractionsContext: w } } = s(), { interactionsManager: T } = n(w), [E, D] = o({}), O = r((e) => {
|
|
11
13
|
let { metadata: t } = e;
|
|
12
14
|
if (t && typeof t == "object") D(t);
|
|
13
15
|
else if (typeof t == "string") try {
|
|
@@ -16,33 +18,33 @@ var p = t(({ ref: t, className: p = "", children: m, title: h = "Modal Header",
|
|
|
16
18
|
D({ content: t });
|
|
17
19
|
}
|
|
18
20
|
else D(typeof t == "boolean" || typeof t == "number" ? { content: t } : {});
|
|
19
|
-
|
|
21
|
+
C((e) => ({
|
|
20
22
|
...e,
|
|
21
23
|
visibility: !0
|
|
22
24
|
}));
|
|
23
|
-
}, [
|
|
24
|
-
|
|
25
|
+
}, [C, D]), k = r(() => {
|
|
26
|
+
T.interactionTrigger(y, "onModalClose", { metadata: E }), D({}), C((e) => ({
|
|
25
27
|
...e,
|
|
26
28
|
visibility: !1
|
|
27
29
|
}));
|
|
28
30
|
}, [
|
|
29
|
-
|
|
30
|
-
|
|
31
|
+
T,
|
|
32
|
+
C,
|
|
31
33
|
D,
|
|
32
34
|
E,
|
|
33
|
-
|
|
35
|
+
y
|
|
34
36
|
]), A = r(() => {
|
|
35
|
-
|
|
37
|
+
v && (T.interactionTrigger(y, "onModalClose", { metadata: E }), D({}), C((e) => ({
|
|
36
38
|
...e,
|
|
37
39
|
visibility: !1
|
|
38
40
|
})));
|
|
39
41
|
}, [
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
42
|
+
T,
|
|
43
|
+
v,
|
|
44
|
+
C,
|
|
43
45
|
D,
|
|
44
46
|
E,
|
|
45
|
-
|
|
47
|
+
y
|
|
46
48
|
]), j = a(() => ({
|
|
47
49
|
onModalOpen: {
|
|
48
50
|
action: "onModalOpen",
|
|
@@ -64,7 +66,7 @@ var p = t(({ ref: t, className: p = "", children: m, title: h = "Modal Header",
|
|
|
64
66
|
}), []), M = a(() => ({
|
|
65
67
|
openModal: {
|
|
66
68
|
action: "openModal",
|
|
67
|
-
title: `Open ${
|
|
69
|
+
title: `Open ${x}`,
|
|
68
70
|
type: "callback",
|
|
69
71
|
callback: O,
|
|
70
72
|
params: { metadata: {
|
|
@@ -75,7 +77,7 @@ var p = t(({ ref: t, className: p = "", children: m, title: h = "Modal Header",
|
|
|
75
77
|
},
|
|
76
78
|
closeModal: {
|
|
77
79
|
action: "closeModal",
|
|
78
|
-
title: `Close ${
|
|
80
|
+
title: `Close ${x}`,
|
|
79
81
|
type: "callback",
|
|
80
82
|
callback: k,
|
|
81
83
|
params: {},
|
|
@@ -84,15 +86,15 @@ var p = t(({ ref: t, className: p = "", children: m, title: h = "Modal Header",
|
|
|
84
86
|
}), [
|
|
85
87
|
k,
|
|
86
88
|
O,
|
|
87
|
-
|
|
89
|
+
x
|
|
88
90
|
]);
|
|
89
91
|
i(() => {
|
|
90
|
-
|
|
92
|
+
S.visibility !== !1 && T.interactionTrigger(y, "onModalOpen", { metadata: E });
|
|
91
93
|
}, [
|
|
92
|
-
|
|
93
|
-
|
|
94
|
+
y,
|
|
95
|
+
T,
|
|
94
96
|
E,
|
|
95
|
-
|
|
97
|
+
S.visibility
|
|
96
98
|
]);
|
|
97
99
|
let N = r(() => c(E).reduce((e, t) => {
|
|
98
100
|
let n = t.split(".");
|
|
@@ -103,42 +105,42 @@ var p = t(({ ref: t, className: p = "", children: m, title: h = "Modal Header",
|
|
|
103
105
|
path: t,
|
|
104
106
|
name: n[n.length - 1]
|
|
105
107
|
}];
|
|
106
|
-
}, []), [E])
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
name:
|
|
108
|
+
}, []), [E]);
|
|
109
|
+
return m({
|
|
110
|
+
id: y,
|
|
111
|
+
source: `modalContainer_${y}`,
|
|
112
|
+
name: x || `Modal - ${y}`,
|
|
111
113
|
fields: N
|
|
112
|
-
})
|
|
113
|
-
return /* @__PURE__ */ u(e, {
|
|
114
|
+
}), /* @__PURE__ */ u(e, {
|
|
114
115
|
ref: t,
|
|
115
|
-
className: d("plitzi-component__modal-container",
|
|
116
|
+
className: d("plitzi-component__modal-container", h),
|
|
116
117
|
interactionTriggers: j,
|
|
117
118
|
interactionCallbacks: M,
|
|
118
119
|
children: [/* @__PURE__ */ l("div", {
|
|
119
|
-
className: d("modal-container__background",
|
|
120
|
+
className: d("modal-container__background", b.backgroundContainer),
|
|
120
121
|
onClick: A
|
|
121
122
|
}), /* @__PURE__ */ u("div", {
|
|
122
|
-
className: d("modal-container__root",
|
|
123
|
+
className: d("modal-container__root", b.rootContainer),
|
|
123
124
|
children: [/* @__PURE__ */ u("div", {
|
|
124
|
-
className: d("modal-container__header",
|
|
125
|
+
className: d("modal-container__header", b.headerContainer),
|
|
125
126
|
children: [/* @__PURE__ */ l("div", {
|
|
126
|
-
className: d("modal-container__header__title",
|
|
127
|
-
children:
|
|
127
|
+
className: d("modal-container__header__title", b.headerTitle),
|
|
128
|
+
children: _ || "Modal Header"
|
|
128
129
|
}), /* @__PURE__ */ l("i", {
|
|
129
|
-
className: d("fa-solid fa-xmark",
|
|
130
|
+
className: d("fa-solid fa-xmark", b.headerCloseButton),
|
|
130
131
|
title: "Close",
|
|
131
132
|
onClick: k
|
|
132
133
|
})]
|
|
133
134
|
}), /* @__PURE__ */ l("div", {
|
|
134
|
-
className: d("modal-container__body",
|
|
135
|
-
children: /* @__PURE__ */ l(
|
|
136
|
-
|
|
137
|
-
|
|
135
|
+
className: d("modal-container__body", b.bodyContainer),
|
|
136
|
+
children: /* @__PURE__ */ l(p, {
|
|
137
|
+
inherit: "live",
|
|
138
|
+
value: { runtime: { sources: { [`modalContainer_${y}`]: E } } },
|
|
139
|
+
children: g
|
|
138
140
|
})
|
|
139
141
|
})]
|
|
140
142
|
})]
|
|
141
143
|
});
|
|
142
144
|
});
|
|
143
145
|
//#endregion
|
|
144
|
-
export {
|
|
146
|
+
export { h as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plitzi/sdk-elements",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.1",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -110,6 +110,86 @@
|
|
|
110
110
|
"types": "./dist/components/ElementAdvancedEditor.d.ts",
|
|
111
111
|
"import": "./dist/components/ElementAdvancedEditor.mjs"
|
|
112
112
|
},
|
|
113
|
+
"./dataSource": {
|
|
114
|
+
"types": "./dist/dataSource/index.d.ts",
|
|
115
|
+
"import": "./dist/dataSource/index.mjs"
|
|
116
|
+
},
|
|
117
|
+
"./dataSource/DataSourceProvider": {
|
|
118
|
+
"types": "./dist/dataSource/DataSourceProvider.d.ts",
|
|
119
|
+
"import": "./dist/dataSource/DataSourceProvider.mjs"
|
|
120
|
+
},
|
|
121
|
+
"./dataSource/GlobalSources": {
|
|
122
|
+
"types": "./dist/dataSource/GlobalSources.d.ts",
|
|
123
|
+
"import": "./dist/dataSource/GlobalSources.mjs"
|
|
124
|
+
},
|
|
125
|
+
"./dataSource/getBindingsDetails": {
|
|
126
|
+
"types": "./dist/dataSource/getBindingsDetails.d.ts",
|
|
127
|
+
"import": "./dist/dataSource/getBindingsDetails.mjs"
|
|
128
|
+
},
|
|
129
|
+
"./dataSource/getSourcesByElementId": {
|
|
130
|
+
"types": "./dist/dataSource/getSourcesByElementId.d.ts",
|
|
131
|
+
"import": "./dist/dataSource/getSourcesByElementId.mjs"
|
|
132
|
+
},
|
|
133
|
+
"./dataSource/index": {
|
|
134
|
+
"types": "./dist/dataSource/index.d.ts",
|
|
135
|
+
"import": "./dist/dataSource/index.mjs"
|
|
136
|
+
},
|
|
137
|
+
"./dataSource/sources/AuthSource": {
|
|
138
|
+
"types": "./dist/dataSource/sources/AuthSource.d.ts",
|
|
139
|
+
"import": "./dist/dataSource/sources/AuthSource.mjs"
|
|
140
|
+
},
|
|
141
|
+
"./dataSource/sources/NavigationSource": {
|
|
142
|
+
"types": "./dist/dataSource/sources/NavigationSource.d.ts",
|
|
143
|
+
"import": "./dist/dataSource/sources/NavigationSource.mjs"
|
|
144
|
+
},
|
|
145
|
+
"./dataSource/sources/PageStateSource": {
|
|
146
|
+
"types": "./dist/dataSource/sources/PageStateSource.d.ts",
|
|
147
|
+
"import": "./dist/dataSource/sources/PageStateSource.mjs"
|
|
148
|
+
},
|
|
149
|
+
"./dataSource/sources/VariablesSource": {
|
|
150
|
+
"types": "./dist/dataSource/sources/VariablesSource.d.ts",
|
|
151
|
+
"import": "./dist/dataSource/sources/VariablesSource.mjs"
|
|
152
|
+
},
|
|
153
|
+
"./dataSource/useGlobalSources": {
|
|
154
|
+
"types": "./dist/dataSource/useGlobalSources.d.ts",
|
|
155
|
+
"import": "./dist/dataSource/useGlobalSources.mjs"
|
|
156
|
+
},
|
|
157
|
+
"./dataSource/utility": {
|
|
158
|
+
"types": "./dist/dataSource/utility/index.d.ts",
|
|
159
|
+
"import": "./dist/dataSource/utility/index.mjs"
|
|
160
|
+
},
|
|
161
|
+
"./dataSource/utility/arrayMap": {
|
|
162
|
+
"types": "./dist/dataSource/utility/arrayMap.d.ts",
|
|
163
|
+
"import": "./dist/dataSource/utility/arrayMap.mjs"
|
|
164
|
+
},
|
|
165
|
+
"./dataSource/utility/capitalize": {
|
|
166
|
+
"types": "./dist/dataSource/utility/capitalize.d.ts",
|
|
167
|
+
"import": "./dist/dataSource/utility/capitalize.mjs"
|
|
168
|
+
},
|
|
169
|
+
"./dataSource/utility/dateConverter": {
|
|
170
|
+
"types": "./dist/dataSource/utility/dateConverter.d.ts",
|
|
171
|
+
"import": "./dist/dataSource/utility/dateConverter.mjs"
|
|
172
|
+
},
|
|
173
|
+
"./dataSource/utility/index": {
|
|
174
|
+
"types": "./dist/dataSource/utility/index.d.ts",
|
|
175
|
+
"import": "./dist/dataSource/utility/index.mjs"
|
|
176
|
+
},
|
|
177
|
+
"./dataSource/utility/staticValue": {
|
|
178
|
+
"types": "./dist/dataSource/utility/staticValue.d.ts",
|
|
179
|
+
"import": "./dist/dataSource/utility/staticValue.mjs"
|
|
180
|
+
},
|
|
181
|
+
"./dataSource/utility/stringToArray": {
|
|
182
|
+
"types": "./dist/dataSource/utility/stringToArray.d.ts",
|
|
183
|
+
"import": "./dist/dataSource/utility/stringToArray.mjs"
|
|
184
|
+
},
|
|
185
|
+
"./dataSource/utility/styleSelector": {
|
|
186
|
+
"types": "./dist/dataSource/utility/styleSelector.d.ts",
|
|
187
|
+
"import": "./dist/dataSource/utility/styleSelector.mjs"
|
|
188
|
+
},
|
|
189
|
+
"./dataSource/utility/twigTemplate": {
|
|
190
|
+
"types": "./dist/dataSource/utility/twigTemplate.d.ts",
|
|
191
|
+
"import": "./dist/dataSource/utility/twigTemplate.mjs"
|
|
192
|
+
},
|
|
113
193
|
"./elements": {
|
|
114
194
|
"types": "./dist/elements/index.d.ts",
|
|
115
195
|
"import": "./dist/elements/index.mjs"
|
|
@@ -732,16 +812,18 @@
|
|
|
732
812
|
"type": "module",
|
|
733
813
|
"sideEffects": false,
|
|
734
814
|
"dependencies": {
|
|
735
|
-
"@plitzi/
|
|
736
|
-
"@plitzi/
|
|
737
|
-
"@plitzi/sdk-
|
|
738
|
-
"@plitzi/sdk-
|
|
739
|
-
"@plitzi/sdk-
|
|
740
|
-
"@plitzi/sdk-
|
|
741
|
-
"@plitzi/sdk-
|
|
742
|
-
"@plitzi/sdk-
|
|
815
|
+
"@plitzi/nexus": "0.31.1",
|
|
816
|
+
"@plitzi/plitzi-ui": "^1.6.9",
|
|
817
|
+
"@plitzi/sdk-auth": "0.31.1",
|
|
818
|
+
"@plitzi/sdk-dev-tools": "0.31.1",
|
|
819
|
+
"@plitzi/sdk-event-bridge": "0.31.1",
|
|
820
|
+
"@plitzi/sdk-interactions": "0.31.1",
|
|
821
|
+
"@plitzi/sdk-navigation": "0.31.1",
|
|
822
|
+
"@plitzi/sdk-schema": "0.31.1",
|
|
823
|
+
"@plitzi/sdk-shared": "0.31.1",
|
|
824
|
+
"@plitzi/sdk-state": "0.31.1",
|
|
743
825
|
"clsx": "^2.1.1",
|
|
744
|
-
"immer": "^11.1.
|
|
826
|
+
"immer": "^11.1.8"
|
|
745
827
|
},
|
|
746
828
|
"peerDependencies": {
|
|
747
829
|
"react": "^19",
|
|
@@ -749,9 +831,9 @@
|
|
|
749
831
|
},
|
|
750
832
|
"devDependencies": {
|
|
751
833
|
"eslint": "^9.39.4",
|
|
752
|
-
"react": "^19.2.
|
|
834
|
+
"react": "^19.2.6",
|
|
753
835
|
"typescript": "^6.0.3",
|
|
754
|
-
"vite": "^8.0.
|
|
755
|
-
"vitest": "^4.1.
|
|
836
|
+
"vite": "^8.0.14",
|
|
837
|
+
"vitest": "^4.1.7"
|
|
756
838
|
}
|
|
757
839
|
}
|