@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.
Files changed (49) hide show
  1. package/CHANGELOG.md +38 -3
  2. package/dist/Element/RootElement.mjs +45 -46
  3. package/dist/Element/hooks/useElementDataSource.d.ts +2 -4
  4. package/dist/Element/hooks/useElementDataSource.mjs +13 -10
  5. package/dist/Element/hooks/useElementInternal.d.ts +19 -2
  6. package/dist/Element/hooks/useElementInternal.mjs +29 -30
  7. package/dist/Element/hooks/useInternalItems.mjs +1 -1
  8. package/dist/dataSource/GlobalSources.d.ts +7 -0
  9. package/dist/dataSource/GlobalSources.mjs +135 -0
  10. package/dist/dataSource/getBindingsDetails.d.ts +10 -0
  11. package/dist/dataSource/getBindingsDetails.mjs +49 -0
  12. package/dist/dataSource/getSourcesByElementId.d.ts +3 -0
  13. package/dist/dataSource/getSourcesByElementId.mjs +12 -0
  14. package/dist/dataSource/index.d.ts +4 -0
  15. package/dist/dataSource/index.mjs +5 -0
  16. package/dist/dataSource/utility/arrayMap.d.ts +6 -0
  17. package/dist/dataSource/utility/arrayMap.mjs +28 -0
  18. package/dist/dataSource/utility/capitalize.d.ts +3 -0
  19. package/dist/dataSource/utility/capitalize.mjs +11 -0
  20. package/dist/dataSource/utility/dateConverter.d.ts +3 -0
  21. package/dist/dataSource/utility/dateConverter.mjs +60 -0
  22. package/dist/dataSource/utility/index.d.ts +7 -0
  23. package/dist/dataSource/utility/index.mjs +22 -0
  24. package/dist/dataSource/utility/staticValue.d.ts +3 -0
  25. package/dist/dataSource/utility/staticValue.mjs +47 -0
  26. package/dist/dataSource/utility/stringToArray.d.ts +3 -0
  27. package/dist/dataSource/utility/stringToArray.mjs +20 -0
  28. package/dist/dataSource/utility/styleSelector.d.ts +3 -0
  29. package/dist/dataSource/utility/styleSelector.mjs +42 -0
  30. package/dist/dataSource/utility/twigTemplate.d.ts +3 -0
  31. package/dist/dataSource/utility/twigTemplate.mjs +26 -0
  32. package/dist/elements/advanced/Reference/Reference.mjs +2 -2
  33. package/dist/elements/advanced/Reference/Settings.mjs +1 -1
  34. package/dist/elements/basic/Link/Link.mjs +4 -4
  35. package/dist/elements/basic/Link/Settings.mjs +1 -1
  36. package/dist/elements/form/Form/Form.mjs +70 -66
  37. package/dist/elements/form/FormControl/FormControl.mjs +13 -15
  38. package/dist/elements/form/FormControl/hocs/withFieldValue.mjs +46 -49
  39. package/dist/elements/internal/LayoutContainer/Settings.mjs +1 -1
  40. package/dist/elements/internal/Page/Settings.mjs +1 -1
  41. package/dist/elements/provider/ApiContainer/ApiContainer.mjs +47 -43
  42. package/dist/elements/provider/ApiContainer/Settings.mjs +1 -1
  43. package/dist/elements/provider/CollectionContainer/CollectionContainer.mjs +35 -31
  44. package/dist/elements/structure/DialogContainer/DialogContainer.mjs +53 -51
  45. package/dist/elements/structure/List/modes/ListControlled/ListControlled.mjs +32 -30
  46. package/dist/elements/structure/List/modes/ListControlled/ListControlledItem.d.ts +2 -2
  47. package/dist/elements/structure/List/modes/ListControlled/ListControlledItem.mjs +24 -22
  48. package/dist/elements/structure/ModalContainer/ModalContainer.mjs +41 -39
  49. 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 { use as n, useCallback as r, useMemo as i } from "react";
4
- import a from "@plitzi/sdk-shared/hooks/usePlitziServiceContext";
5
- import { get as o } from "@plitzi/plitzi-ui/helpers";
6
- import { getPathsFromObeject as s } from "@plitzi/sdk-shared/helpers/utils";
7
- import { jsx as c, jsxs as l } from "react/jsx-runtime";
8
- import u from "clsx";
9
- import d from "@plitzi/sdk-shared/elements/hooks/useElement";
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 f = ({ ref: f, className: p = "", children: m, items: h = [] }) => {
12
- let { id: g, definition: { label: _ } } = d(), { settings: { previewMode: v }, contexts: { DataSourceContext: y } } = a(), { useDataSource: b } = n(y), x = i(() => Array.isArray(h) ? h : [], [h]), S = r(() => s({
13
- item: o(x, "0", {}),
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
- }], []), [x]), C = i(() => ({ items: x }), [x]), [w, T] = b({
19
- id: g,
20
- source: `list_${g}`,
21
- mode: "write",
22
- name: _ || `List - ${g}`,
23
- fields: S
24
- });
25
- return /* @__PURE__ */ l(e, {
26
- ref: f,
27
- className: u("plitzi-component__controlled-list", p, { "controlled-list--build-mode": !v }),
28
- children: [/* @__PURE__ */ c(w, {
29
- value: C,
30
- children: x.map((e, n) => !m || Array.isArray(m) && m.length === 0 ? /* @__PURE__ */ c("div", {
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__ */ c("div", {
34
+ children: /* @__PURE__ */ s("div", {
33
35
  className: "controlled-list-item__counter",
34
36
  children: `List Item - ${n + 1}`
35
37
  })
36
- }, n) : /* @__PURE__ */ c(t, {
38
+ }, n) : /* @__PURE__ */ s(t, {
37
39
  itemCount: n + 1,
38
- isTemplate: n !== 0 && !v,
40
+ isTemplate: n !== 0 && !y,
39
41
  record: e,
40
- listContextId: T,
41
- children: m
42
+ source: `list_${_}`,
43
+ children: h
42
44
  }, n))
43
- }), !v && x.length === 0 && /* @__PURE__ */ c("div", {
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 { f as default };
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
- listContextId: string;
8
+ source: string;
9
9
  };
10
- declare const ListControlledItem: ({ children, className, isTemplate, itemCount, record, listContextId }: ListControlledItemProps) => import("react/jsx-runtime").JSX.Element;
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 { use as t, useMemo as n } from "react";
3
- import r from "@plitzi/sdk-shared/hooks/usePlitziServiceContext";
4
- import { jsx as i, jsxs as a } from "react/jsx-runtime";
5
- import o from "clsx";
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 s = ({ children: s, className: c = "", isTemplate: l = !1, itemCount: u = 0, record: d, listContextId: f = "" }) => {
8
- let { contexts: { DataSourceContext: p } } = r(), { getSources: m } = t(p), h = n(() => ({
9
- item: d,
10
- index: `${u}`
11
- }), [d, u]), g = n(() => m(f)?.context, [f, m]);
12
- return l ? /* @__PURE__ */ a("div", {
13
- className: o("plitzi-component__controlled-list-item", c),
14
- children: [/* @__PURE__ */ i("div", {
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 - ${u}`
17
- }), /* @__PURE__ */ a(e, { children: [g && /* @__PURE__ */ i(g, {
18
- value: h,
19
- children: s
20
- }), !g && "This element can be only inside a List"] })]
21
- }) : /* @__PURE__ */ a(e, { children: [g && /* @__PURE__ */ i(g, {
22
- value: h,
23
- children: s
24
- }), !g && "This element can be only inside a List"] });
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 { s as default };
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
- var p = t(({ ref: t, className: p = "", children: m, title: h = "Modal Header", autoHideAfterClick: g = !0 }) => {
10
- let { id: _, definition: { styleSelectors: v, label: y = "Modal" }, elementState: b, setElementState: x } = f(), { contexts: { InteractionsContext: S, DataSourceContext: C } } = s(), { interactionsManager: w } = n(S), { useDataSource: T } = n(C), [E, D] = o({}), O = r((e) => {
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
- x((e) => ({
21
+ C((e) => ({
20
22
  ...e,
21
23
  visibility: !0
22
24
  }));
23
- }, [x, D]), k = r(() => {
24
- w.interactionTrigger(_, "onModalClose", { metadata: E }), D({}), x((e) => ({
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
- w,
30
- x,
31
+ T,
32
+ C,
31
33
  D,
32
34
  E,
33
- _
35
+ y
34
36
  ]), A = r(() => {
35
- g && (w.interactionTrigger(_, "onModalClose", { metadata: E }), D({}), x((e) => ({
37
+ v && (T.interactionTrigger(y, "onModalClose", { metadata: E }), D({}), C((e) => ({
36
38
  ...e,
37
39
  visibility: !1
38
40
  })));
39
41
  }, [
40
- w,
41
- g,
42
- x,
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 ${y}`,
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 ${y}`,
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
- y
89
+ x
88
90
  ]);
89
91
  i(() => {
90
- b.visibility !== !1 && w.interactionTrigger(_, "onModalOpen", { metadata: E });
92
+ S.visibility !== !1 && T.interactionTrigger(y, "onModalOpen", { metadata: E });
91
93
  }, [
92
- _,
93
- w,
94
+ y,
95
+ T,
94
96
  E,
95
- b.visibility
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]), [P] = T({
107
- id: _,
108
- source: `modalContainer_${_}`,
109
- mode: "write",
110
- name: y || `Modal - ${_}`,
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", p),
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", v.backgroundContainer),
120
+ className: d("modal-container__background", b.backgroundContainer),
120
121
  onClick: A
121
122
  }), /* @__PURE__ */ u("div", {
122
- className: d("modal-container__root", v.rootContainer),
123
+ className: d("modal-container__root", b.rootContainer),
123
124
  children: [/* @__PURE__ */ u("div", {
124
- className: d("modal-container__header", v.headerContainer),
125
+ className: d("modal-container__header", b.headerContainer),
125
126
  children: [/* @__PURE__ */ l("div", {
126
- className: d("modal-container__header__title", v.headerTitle),
127
- children: h || "Modal Header"
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", v.headerCloseButton),
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", v.bodyContainer),
135
- children: /* @__PURE__ */ l(P, {
136
- value: E,
137
- children: m
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 { p as default };
146
+ export { h as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plitzi/sdk-elements",
3
- "version": "0.30.19",
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/plitzi-ui": "^1.6.2",
736
- "@plitzi/sdk-data-source": "0.30.19",
737
- "@plitzi/sdk-dev-tools": "0.30.19",
738
- "@plitzi/sdk-event-bridge": "0.30.19",
739
- "@plitzi/sdk-interactions": "0.30.19",
740
- "@plitzi/sdk-schema": "0.30.19",
741
- "@plitzi/sdk-shared": "0.30.19",
742
- "@plitzi/sdk-store": "0.30.19",
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.4"
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.5",
834
+ "react": "^19.2.6",
753
835
  "typescript": "^6.0.3",
754
- "vite": "^8.0.10",
755
- "vitest": "^4.1.5"
836
+ "vite": "^8.0.14",
837
+ "vitest": "^4.1.7"
756
838
  }
757
839
  }