@plitzi/sdk-style 0.32.25 → 0.33.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/CHANGELOG.md +13 -0
- package/dist/BuilderStyleContextProvider.mjs +70 -119
- package/dist/StyleReducer.d.ts +1 -1
- package/dist/components/StyleInspector/categories/Others/OthersOutline.mjs +8 -3
- package/dist/components/StyleInspector/categories/Typography/TypographyTransform.mjs +12 -3
- package/dist/components/StyleManager/ManagerSelector.mjs +14 -12
- package/dist/helpers/processSelector.mjs +6 -4
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @plitzi/sdk-style
|
|
2
2
|
|
|
3
|
+
## 0.33.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- v0.33.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @plitzi/sdk-plugins@0.33.0
|
|
13
|
+
- @plitzi/sdk-shared@0.33.0
|
|
14
|
+
- @plitzi/sdk-variables@0.33.0
|
|
15
|
+
|
|
3
16
|
## 0.32.25
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -1,27 +1,26 @@
|
|
|
1
1
|
import { makeSelector as e } from "./StyleHelper.mjs";
|
|
2
2
|
import t from "./StyleContext.mjs";
|
|
3
3
|
import n, { StyleActions as r } from "./StyleReducer.mjs";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import
|
|
8
|
-
import d from "@plitzi/
|
|
9
|
-
import f from "@plitzi/sdk-
|
|
10
|
-
import p from "@plitzi/sdk-shared/
|
|
11
|
-
import { EMPTY_STYLE_SCHEMA as m } from "@plitzi/sdk-shared/style/styleConstants";
|
|
4
|
+
import { use as i, useCallback as a, useEffect as o, useMemo as s } from "react";
|
|
5
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
6
|
+
import { useCommonStoreSync as l } from "@plitzi/sdk-shared/store";
|
|
7
|
+
import u from "@plitzi/plitzi-ui/hooks/useReducerWithMiddleware";
|
|
8
|
+
import d from "@plitzi/sdk-event-bridge/hooks/useEventBridge";
|
|
9
|
+
import f from "@plitzi/sdk-shared/network/NetworkContext";
|
|
10
|
+
import { EMPTY_STYLE_SCHEMA as p } from "@plitzi/sdk-shared/style/styleConstants";
|
|
12
11
|
//#region src/BuilderStyleContextProvider.tsx
|
|
13
|
-
var
|
|
14
|
-
let { subscriptionManager:
|
|
12
|
+
var m = ({ children: m, style: h, includeSubscriptions: g = !0, middlewares: _ = [] }) => {
|
|
13
|
+
let { subscriptionManager: v } = i(f), y = s(() => _.map((e) => ({
|
|
15
14
|
middleware: e,
|
|
16
15
|
filterCallback: (e) => !e.fromSubscriptions
|
|
17
|
-
})), [
|
|
18
|
-
|
|
19
|
-
let
|
|
16
|
+
})), [_]), [b, x] = u(n, h ?? p, y);
|
|
17
|
+
l("style", b);
|
|
18
|
+
let S = a((e, t = !1) => x({
|
|
20
19
|
type: r.STYLE_UPDATE,
|
|
21
20
|
style: e,
|
|
22
21
|
fromSubscriptions: t
|
|
23
|
-
}), [
|
|
24
|
-
n ||= e(i),
|
|
22
|
+
}), [x]), C = a((t, n, i, a, o, s, c = !1) => {
|
|
23
|
+
n ||= e(i), x({
|
|
25
24
|
type: r.STYLE_ADD_SELECTOR,
|
|
26
25
|
displayMode: t,
|
|
27
26
|
selector: n,
|
|
@@ -31,7 +30,7 @@ var h = ({ children: h, style: g, includeSubscriptions: _ = !0, middlewares: v =
|
|
|
31
30
|
params: s,
|
|
32
31
|
fromSubscriptions: c
|
|
33
32
|
});
|
|
34
|
-
}, [
|
|
33
|
+
}, [x]), w = a((e, t, n, i, a, o = !1) => x({
|
|
35
34
|
type: r.STYLE_UPDATE_SELECTOR,
|
|
36
35
|
displayMode: e,
|
|
37
36
|
selector: t,
|
|
@@ -39,18 +38,18 @@ var h = ({ children: h, style: g, includeSubscriptions: _ = !0, middlewares: v =
|
|
|
39
38
|
value: i,
|
|
40
39
|
params: a,
|
|
41
40
|
fromSubscriptions: o
|
|
42
|
-
}), [
|
|
41
|
+
}), [x]), T = a((e, t, n = !1) => x({
|
|
43
42
|
type: r.STYLE_REMOVE_SELECTOR,
|
|
44
43
|
displayMode: e,
|
|
45
44
|
selector: t,
|
|
46
45
|
fromSubscriptions: n
|
|
47
|
-
}), [
|
|
46
|
+
}), [x]), E = a((e, t, n = !1) => x({
|
|
48
47
|
type: r.STYLE_REMOVE_SELECTORS,
|
|
49
48
|
displayMode: e,
|
|
50
49
|
selectors: t,
|
|
51
50
|
fromSubscriptions: n
|
|
52
|
-
}), [
|
|
53
|
-
|
|
51
|
+
}), [x]), D = a((e, t, n, i, a, o = !1) => {
|
|
52
|
+
x({
|
|
54
53
|
type: r.STYLE_ADD_SELECTOR_VARIABLE,
|
|
55
54
|
displayMode: e,
|
|
56
55
|
selector: t,
|
|
@@ -59,8 +58,8 @@ var h = ({ children: h, style: g, includeSubscriptions: _ = !0, middlewares: v =
|
|
|
59
58
|
value: a,
|
|
60
59
|
fromSubscriptions: o
|
|
61
60
|
});
|
|
62
|
-
}, [
|
|
63
|
-
|
|
61
|
+
}, [x]), O = a((e, t, n, i, a, o = !1) => {
|
|
62
|
+
x({
|
|
64
63
|
type: r.STYLE_UPDATE_SELECTOR_VARIABLE,
|
|
65
64
|
displayMode: e,
|
|
66
65
|
selector: t,
|
|
@@ -69,8 +68,8 @@ var h = ({ children: h, style: g, includeSubscriptions: _ = !0, middlewares: v =
|
|
|
69
68
|
value: a,
|
|
70
69
|
fromSubscriptions: o
|
|
71
70
|
});
|
|
72
|
-
}, [
|
|
73
|
-
|
|
71
|
+
}, [x]), k = a((e, t, n, i, a = !1) => {
|
|
72
|
+
x({
|
|
74
73
|
type: r.STYLE_REMOVE_SELECTOR_VARIABLE,
|
|
75
74
|
displayMode: e,
|
|
76
75
|
selector: t,
|
|
@@ -78,101 +77,54 @@ var h = ({ children: h, style: g, includeSubscriptions: _ = !0, middlewares: v =
|
|
|
78
77
|
name: i,
|
|
79
78
|
fromSubscriptions: a
|
|
80
79
|
});
|
|
81
|
-
}, [
|
|
80
|
+
}, [x]), A = a((e, t, n, i = !1) => x({
|
|
82
81
|
type: r.STYLE_ADD_VARIABLE,
|
|
83
82
|
category: e,
|
|
84
83
|
name: t,
|
|
85
84
|
value: n,
|
|
86
85
|
fromSubscriptions: i
|
|
87
|
-
}), [
|
|
86
|
+
}), [x]), j = a((e, t, n, i = !1) => x({
|
|
88
87
|
type: r.STYLE_UPDATE_VARIABLE,
|
|
89
88
|
category: e,
|
|
90
89
|
name: t,
|
|
91
90
|
value: n,
|
|
92
91
|
fromSubscriptions: i
|
|
93
|
-
}), [
|
|
92
|
+
}), [x]), M = a((e, t, n = !1) => x({
|
|
94
93
|
type: r.STYLE_REMOVE_VARIABLE,
|
|
95
94
|
category: e,
|
|
96
95
|
name: t,
|
|
97
96
|
fromSubscriptions: n
|
|
98
|
-
}), [
|
|
97
|
+
}), [x]), N = a((e, t = !1) => x({
|
|
99
98
|
type: r.STYLE_ADD_TEMPLATE,
|
|
100
99
|
platform: e,
|
|
101
100
|
fromSubscriptions: t
|
|
102
|
-
}), [
|
|
103
|
-
|
|
101
|
+
}), [x]), P = a((e, t, n = !1) => {
|
|
102
|
+
x({
|
|
104
103
|
type: r.STYLE_UPDATE_SETTINGS,
|
|
105
104
|
path: e,
|
|
106
105
|
value: t,
|
|
107
106
|
fromSubscriptions: n
|
|
108
107
|
});
|
|
109
|
-
}, [
|
|
110
|
-
|
|
111
|
-
if (!e.
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
D(t, n, !0);
|
|
130
|
-
}), y.subscribe("StyleAddSelectorVariable", {}, (e) => {
|
|
131
|
-
if (!e.data || e.error) return;
|
|
132
|
-
let { displayMode: t, selector: n, category: r, name: a, value: o } = i(e, "data.StyleAddSelectorVariable", {});
|
|
133
|
-
O(t, n, r, a, o, !0);
|
|
134
|
-
}), y.subscribe("StyleUpdateSelectorVariable", {}, (e) => {
|
|
135
|
-
if (!e.data || e.error) return;
|
|
136
|
-
let { displayMode: t, selector: n, category: r, name: a, value: o } = i(e, "data.StyleUpdateSelectorVariable", {});
|
|
137
|
-
k(t, n, r, a, o, !0);
|
|
138
|
-
}), y.subscribe("StyleRemoveSelectorVariable", {}, (e) => {
|
|
139
|
-
if (!e.data || e.error) return;
|
|
140
|
-
let { displayMode: t, selector: n, category: r, name: a } = i(e, "data.StyleRemoveSelectorVariable", {});
|
|
141
|
-
A(t, n, r, a, !0);
|
|
142
|
-
}), y.subscribe("StyleAddVariable", {}, (e) => {
|
|
143
|
-
if (!e.data || e.error) return;
|
|
144
|
-
let { category: t, name: n, value: r } = i(e, "data.StyleAddVariable", {});
|
|
145
|
-
j(t, n, r, !0);
|
|
146
|
-
}), y.subscribe("StyleUpdateVariable", {}, (e) => {
|
|
147
|
-
if (!e.data || e.error) return;
|
|
148
|
-
let { category: t, name: n, value: r } = i(e, "data.StyleUpdateVariable", {});
|
|
149
|
-
M(t, n, r, !0);
|
|
150
|
-
}), y.subscribe("StyleRemoveVariable", {}, (e) => {
|
|
151
|
-
if (!e.data || e.error) return;
|
|
152
|
-
let { category: t, name: n } = i(e, "data.StyleRemoveVariable", {});
|
|
153
|
-
N(t, n, !0);
|
|
154
|
-
}), y.subscribe("StyleUpdateSettings", {}, (e) => {
|
|
155
|
-
if (!e.data || e.error) return;
|
|
156
|
-
let { path: t, value: n } = i(e, "data.StyleUpdateSettings", {});
|
|
157
|
-
F(t, n, !0);
|
|
158
|
-
})), () => {
|
|
159
|
-
_ && y.unsubscribe([
|
|
160
|
-
"StyleUpdated",
|
|
161
|
-
"StyleAddSelector",
|
|
162
|
-
"StyleUpdateSelector",
|
|
163
|
-
"StyleRemoveSelector",
|
|
164
|
-
"StyleRemoveSelectors",
|
|
165
|
-
"StyleAddSelectorVariable",
|
|
166
|
-
"StyleUpdateSelectorVariable",
|
|
167
|
-
"StyleRemoveSelectorVariable",
|
|
168
|
-
"StyleAddVariable",
|
|
169
|
-
"StyleUpdateVariable",
|
|
170
|
-
"StyleRemoveVariable",
|
|
171
|
-
"StyleUpdateSettings"
|
|
172
|
-
]);
|
|
173
|
-
}), [
|
|
174
|
-
y,
|
|
175
|
-
_,
|
|
108
|
+
}, [x]);
|
|
109
|
+
o(() => {
|
|
110
|
+
if (g) return v.subscribe("STYLE_UPDATED", (e) => S(e, !0)), v.subscribe("STYLE_ADD_SELECTOR", ({ displayMode: e, selector: t, type: n, path: r, style: i, params: a }) => C(e, t, n, r, i, a, !0)), v.subscribe("STYLE_UPDATE_SELECTOR", ({ displayMode: e, selector: t, path: n, style: r, params: i }) => w(e, t, n, r, i, !0)), v.subscribe("STYLE_REMOVE_SELECTOR", ({ displayMode: e, selector: t }) => T(e, t, !0)), v.subscribe("STYLE_REMOVE_SELECTORS", ({ displayMode: e, selectors: t }) => E(e, t, !0)), v.subscribe("STYLE_ADD_SELECTOR_VARIABLE", ({ displayMode: e, selector: t, category: n, name: r, value: i }) => D(e, t, n, r, i, !0)), v.subscribe("STYLE_UPDATE_SELECTOR_VARIABLE", ({ displayMode: e, selector: t, category: n, name: r, value: i }) => O(e, t, n, r, i, !0)), v.subscribe("STYLE_REMOVE_SELECTOR_VARIABLE", ({ displayMode: e, selector: t, category: n, name: r }) => k(e, t, n, r, !0)), v.subscribe("STYLE_ADD_VARIABLE", ({ category: e, name: t, value: n }) => A(e, t, n, !0)), v.subscribe("STYLE_UPDATE_VARIABLE", ({ category: e, name: t, value: n }) => j(e, t, n, !0)), v.subscribe("STYLE_REMOVE_VARIABLE", ({ category: e, name: t }) => M(e, t, !0)), v.subscribe("STYLE_UPDATE_SETTINGS", ({ path: e, value: t }) => P(e, t, !0)), () => v.unsubscribe([
|
|
111
|
+
"STYLE_UPDATED",
|
|
112
|
+
"STYLE_ADD_SELECTOR",
|
|
113
|
+
"STYLE_UPDATE_SELECTOR",
|
|
114
|
+
"STYLE_REMOVE_SELECTOR",
|
|
115
|
+
"STYLE_REMOVE_SELECTORS",
|
|
116
|
+
"STYLE_ADD_SELECTOR_VARIABLE",
|
|
117
|
+
"STYLE_UPDATE_SELECTOR_VARIABLE",
|
|
118
|
+
"STYLE_REMOVE_SELECTOR_VARIABLE",
|
|
119
|
+
"STYLE_ADD_VARIABLE",
|
|
120
|
+
"STYLE_UPDATE_VARIABLE",
|
|
121
|
+
"STYLE_REMOVE_VARIABLE",
|
|
122
|
+
"STYLE_UPDATE_SETTINGS"
|
|
123
|
+
], !0);
|
|
124
|
+
}, [
|
|
125
|
+
v,
|
|
126
|
+
g,
|
|
127
|
+
S,
|
|
176
128
|
C,
|
|
177
129
|
w,
|
|
178
130
|
T,
|
|
@@ -183,24 +135,24 @@ var h = ({ children: h, style: g, includeSubscriptions: _ = !0, middlewares: v =
|
|
|
183
135
|
A,
|
|
184
136
|
j,
|
|
185
137
|
M,
|
|
186
|
-
|
|
187
|
-
F
|
|
138
|
+
P
|
|
188
139
|
]);
|
|
189
|
-
let
|
|
190
|
-
styleUpdate:
|
|
191
|
-
styleAddSelector:
|
|
192
|
-
styleUpdateSelector:
|
|
193
|
-
styleRemoveSelector:
|
|
194
|
-
styleRemoveSelectors:
|
|
195
|
-
styleAddSelectorVariable:
|
|
196
|
-
styleUpdateSelectorVariable:
|
|
197
|
-
styleRemoveSelectorVariable:
|
|
198
|
-
styleAddVariable:
|
|
199
|
-
styleUpdateVariable:
|
|
200
|
-
styleRemoveVariable:
|
|
201
|
-
styleAddTemplate:
|
|
202
|
-
styleUpdateSettings:
|
|
140
|
+
let F = s(() => ({
|
|
141
|
+
styleUpdate: S,
|
|
142
|
+
styleAddSelector: C,
|
|
143
|
+
styleUpdateSelector: w,
|
|
144
|
+
styleRemoveSelector: T,
|
|
145
|
+
styleRemoveSelectors: E,
|
|
146
|
+
styleAddSelectorVariable: D,
|
|
147
|
+
styleUpdateSelectorVariable: O,
|
|
148
|
+
styleRemoveSelectorVariable: k,
|
|
149
|
+
styleAddVariable: A,
|
|
150
|
+
styleUpdateVariable: j,
|
|
151
|
+
styleRemoveVariable: M,
|
|
152
|
+
styleAddTemplate: N,
|
|
153
|
+
styleUpdateSettings: P
|
|
203
154
|
}), [
|
|
155
|
+
S,
|
|
204
156
|
C,
|
|
205
157
|
w,
|
|
206
158
|
T,
|
|
@@ -212,13 +164,12 @@ var h = ({ children: h, style: g, includeSubscriptions: _ = !0, middlewares: v =
|
|
|
212
164
|
j,
|
|
213
165
|
M,
|
|
214
166
|
N,
|
|
215
|
-
P
|
|
216
|
-
F
|
|
167
|
+
P
|
|
217
168
|
]);
|
|
218
|
-
return
|
|
219
|
-
value:
|
|
220
|
-
children:
|
|
169
|
+
return d("main", F), /* @__PURE__ */ c(t, {
|
|
170
|
+
value: F,
|
|
171
|
+
children: m
|
|
221
172
|
});
|
|
222
173
|
};
|
|
223
174
|
//#endregion
|
|
224
|
-
export {
|
|
175
|
+
export { m as default };
|
package/dist/StyleReducer.d.ts
CHANGED
|
@@ -59,13 +59,18 @@ var a = ({ outlineWidth: a, outlineStyle: o, outlineColor: s, outlineOffset: c,
|
|
|
59
59
|
label: "",
|
|
60
60
|
children: [/* @__PURE__ */ r(e, {
|
|
61
61
|
keys: ["outline-width"],
|
|
62
|
-
label: "Width",
|
|
62
|
+
label: "Outline Width",
|
|
63
63
|
value: a,
|
|
64
64
|
onChange: l?.("outline-width"),
|
|
65
|
-
type: "metric"
|
|
65
|
+
type: "metric",
|
|
66
|
+
allowedWords: [
|
|
67
|
+
"thin",
|
|
68
|
+
"medium",
|
|
69
|
+
"thick"
|
|
70
|
+
]
|
|
66
71
|
}), /* @__PURE__ */ r(e, {
|
|
67
72
|
keys: ["outline-offset"],
|
|
68
|
-
label: "Offset",
|
|
73
|
+
label: "Outline Offset",
|
|
69
74
|
value: c,
|
|
70
75
|
onChange: l?.("outline-offset"),
|
|
71
76
|
type: "metric"
|
|
@@ -16,21 +16,30 @@ var l = ({ textTransform: l, direction: u, onChange: d }) => {
|
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
value: "uppercase",
|
|
19
|
-
icon: /* @__PURE__ */ i("span", {
|
|
19
|
+
icon: /* @__PURE__ */ i("span", {
|
|
20
|
+
className: "text-xs",
|
|
21
|
+
children: "AA"
|
|
22
|
+
}),
|
|
20
23
|
size: "custom",
|
|
21
24
|
description: "All Caps",
|
|
22
25
|
active: l === "uppercase"
|
|
23
26
|
},
|
|
24
27
|
{
|
|
25
28
|
value: "capitalize",
|
|
26
|
-
icon: /* @__PURE__ */ i("span", {
|
|
29
|
+
icon: /* @__PURE__ */ i("span", {
|
|
30
|
+
className: "text-xs",
|
|
31
|
+
children: "Aa"
|
|
32
|
+
}),
|
|
27
33
|
size: "custom",
|
|
28
34
|
description: "Capitalize Every Word",
|
|
29
35
|
active: l === "capitalize"
|
|
30
36
|
},
|
|
31
37
|
{
|
|
32
38
|
value: "lowercase",
|
|
33
|
-
icon: /* @__PURE__ */ i("span", {
|
|
39
|
+
icon: /* @__PURE__ */ i("span", {
|
|
40
|
+
className: "text-xs",
|
|
41
|
+
children: "aa"
|
|
42
|
+
}),
|
|
34
43
|
size: "custom",
|
|
35
44
|
description: "Lower Case",
|
|
36
45
|
active: l === "lowercase"
|
|
@@ -18,18 +18,20 @@ var y = n(({ displayMode: n, flatList: y, selectors: b, selected: x, onSelect: S
|
|
|
18
18
|
return n === r ? e.name.localeCompare(t.name) : r - n;
|
|
19
19
|
});
|
|
20
20
|
}, [C, w]), M = i((e) => T(e), [T]), N = i((e, t) => {
|
|
21
|
-
if (t)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
21
|
+
if (t) {
|
|
22
|
+
if (t.mode === "default") {
|
|
23
|
+
let { name: e } = t;
|
|
24
|
+
O("styleAddSelector", n, e, "class", void 0, void 0, {
|
|
25
|
+
styleSelector: void 0,
|
|
26
|
+
componentType: void 0
|
|
27
|
+
});
|
|
28
|
+
} else {
|
|
29
|
+
let { componentType: e } = t;
|
|
30
|
+
O("styleAddSelector", n, e, "element", void 0, void 0, {
|
|
31
|
+
styleSelector: void 0,
|
|
32
|
+
componentType: e
|
|
33
|
+
});
|
|
34
|
+
}
|
|
33
35
|
}
|
|
34
36
|
}, [O, n]), [P, F, I, L] = h({
|
|
35
37
|
id: "add-selector",
|
|
@@ -4,10 +4,12 @@ import n from "./processSelectorVariables.mjs";
|
|
|
4
4
|
//#region src/helpers/processSelector.ts
|
|
5
5
|
var r = 2, i = (e = r) => " ".repeat(e), a = (e, t, n) => `${n || !t.length ? e : `${e}\n`}${t.join(n ? "" : "\n")}`, o = (e, t, n = !0, a = r) => {
|
|
6
6
|
let o = [], s = i(a), c = i(a + r);
|
|
7
|
-
for (let r of ["light", "dark"]) if (t[r].length)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
for (let r of ["light", "dark"]) if (t[r].length) {
|
|
8
|
+
if (n) o.push(`@media(prefers-color-scheme:${r}){${e}{${t[r].join("")}}}`);
|
|
9
|
+
else {
|
|
10
|
+
let n = t[r].map((e) => `${c}${e}`).join("\n").replaceAll(":", ": ");
|
|
11
|
+
o.push(`\n@media(prefers-color-scheme: ${r}) {\n${s}${e} {\n${n}\n${s}}\n}`);
|
|
12
|
+
}
|
|
11
13
|
}
|
|
12
14
|
return o;
|
|
13
15
|
}, s = (e, t, n, a, o = !0, s = r) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plitzi/sdk-style",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.0",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -891,19 +891,19 @@
|
|
|
891
891
|
"build:prod": "vite build && node ../sdk-shared/scripts/generate-exports.mjs"
|
|
892
892
|
},
|
|
893
893
|
"dependencies": {
|
|
894
|
-
"@plitzi/plitzi-ui": "^1.6.
|
|
895
|
-
"@plitzi/sdk-plugins": "0.
|
|
896
|
-
"@plitzi/sdk-shared": "0.
|
|
897
|
-
"@plitzi/sdk-variables": "0.
|
|
894
|
+
"@plitzi/plitzi-ui": "^1.6.19",
|
|
895
|
+
"@plitzi/sdk-plugins": "0.33.0",
|
|
896
|
+
"@plitzi/sdk-shared": "0.33.0",
|
|
897
|
+
"@plitzi/sdk-variables": "0.33.0",
|
|
898
898
|
"clsx": "^2.1.1",
|
|
899
|
-
"immer": "^11.1.
|
|
899
|
+
"immer": "^11.1.16",
|
|
900
900
|
"prop-types": "^15.8.1",
|
|
901
901
|
"zod": "^4.4.3"
|
|
902
902
|
},
|
|
903
903
|
"devDependencies": {
|
|
904
904
|
"eslint": "^9.39.5",
|
|
905
905
|
"typescript": "^6.0.3",
|
|
906
|
-
"vite": "^8.2.
|
|
906
|
+
"vite": "^8.2.1",
|
|
907
907
|
"vitest": "^4.1.10"
|
|
908
908
|
}
|
|
909
909
|
}
|