@orion-studios/payload-studio 0.6.0-beta.18 → 0.6.0-beta.19
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/{chunk-PF3EBZXF.mjs → chunk-4LSIUED5.mjs} +7 -2
- package/dist/{chunk-XKUTZ7IU.mjs → chunk-EDW7DPXW.mjs} +1 -1
- package/dist/{chunk-OTHERBGX.mjs → chunk-H4GTEY24.mjs} +1 -1
- package/dist/index.js +7 -2
- package/dist/index.mjs +3 -3
- package/dist/nextjs/index.js +7 -2
- package/dist/nextjs/index.mjs +2 -2
- package/dist/studio-pages/client.js +7 -2
- package/dist/studio-pages/client.mjs +7 -2
- package/dist/studio-pages/index.js +7 -2
- package/dist/studio-pages/index.mjs +2 -2
- package/package.json +1 -1
|
@@ -99,6 +99,7 @@ var defaultBuilderThemeTokens = {
|
|
|
99
99
|
|
|
100
100
|
// src/studio-pages/builder/adapters/settingsV2.ts
|
|
101
101
|
var isRecord = (value) => Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
102
|
+
var isTextAlign = (value) => value === "left" || value === "center" || value === "right" || value === "justify";
|
|
102
103
|
var parsePercent = (value) => {
|
|
103
104
|
if (typeof value === "number" && Number.isFinite(value)) {
|
|
104
105
|
return Math.max(0, Math.min(100, value));
|
|
@@ -141,6 +142,10 @@ var mergeSettings = (defaults, input) => {
|
|
|
141
142
|
};
|
|
142
143
|
var legacyBlockToV2Settings = (block) => {
|
|
143
144
|
const current = structuredClone(defaultBuilderBlockSettingsV2);
|
|
145
|
+
if (block.blockType === "hero" && block.variant === "centered") {
|
|
146
|
+
current.typography.headingAlign = "center";
|
|
147
|
+
current.typography.bodyAlign = "center";
|
|
148
|
+
}
|
|
144
149
|
current.layout.contentWidth = block.contentWidth === "narrow" || block.contentWidth === "content" || block.contentWidth === "wide" || block.contentWidth === "full" || block.contentWidth === "inherit" ? block.contentWidth : current.layout.contentWidth;
|
|
145
150
|
current.layout.sectionPaddingX = block.sectionPaddingX === "none" || block.sectionPaddingX === "sm" || block.sectionPaddingX === "md" || block.sectionPaddingX === "lg" || block.sectionPaddingX === "inherit" ? block.sectionPaddingX : current.layout.sectionPaddingX;
|
|
146
151
|
current.layout.sectionPaddingY = block.sectionPaddingY === "none" || block.sectionPaddingY === "sm" || block.sectionPaddingY === "lg" ? block.sectionPaddingY : current.layout.sectionPaddingY;
|
|
@@ -177,8 +182,8 @@ var legacyBlockToV2Settings = (block) => {
|
|
|
177
182
|
current.media.positionX = parsePercent(block.imagePositionX ?? block.backgroundImagePositionX);
|
|
178
183
|
current.media.positionY = parsePercent(block.imagePositionY ?? block.backgroundImagePositionY);
|
|
179
184
|
current.media.height = parsePixel(block.imageHeight);
|
|
180
|
-
current.typography.headingAlign = block.textHeadingAlign
|
|
181
|
-
current.typography.bodyAlign = block.textBodyAlign
|
|
185
|
+
current.typography.headingAlign = isTextAlign(block.textHeadingAlign) ? block.textHeadingAlign : current.typography.headingAlign;
|
|
186
|
+
current.typography.bodyAlign = isTextAlign(block.textBodyAlign) ? block.textBodyAlign : current.typography.bodyAlign;
|
|
182
187
|
current.typography.maxTextWidth = block.textMaxWidth === "auto" || block.textMaxWidth === "sm" || block.textMaxWidth === "md" || block.textMaxWidth === "lg" || block.textMaxWidth === "full" ? block.textMaxWidth : current.typography.maxTextWidth;
|
|
183
188
|
current.typography.lineHeightPreset = block.textLineHeightPreset === "tight" || block.textLineHeightPreset === "normal" || block.textLineHeightPreset === "relaxed" ? block.textLineHeightPreset : current.typography.lineHeightPreset;
|
|
184
189
|
current.typography.letterSpacingPreset = block.textLetterSpacingPreset === "tight" || block.textLetterSpacingPreset === "normal" || block.textLetterSpacingPreset === "relaxed" ? block.textLetterSpacingPreset : current.typography.letterSpacingPreset;
|
package/dist/index.js
CHANGED
|
@@ -3740,6 +3740,7 @@ var defaultBuilderThemeTokens = {
|
|
|
3740
3740
|
|
|
3741
3741
|
// src/studio-pages/builder/adapters/settingsV2.ts
|
|
3742
3742
|
var isRecord3 = (value) => Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
3743
|
+
var isTextAlign = (value) => value === "left" || value === "center" || value === "right" || value === "justify";
|
|
3743
3744
|
var parsePercent = (value) => {
|
|
3744
3745
|
if (typeof value === "number" && Number.isFinite(value)) {
|
|
3745
3746
|
return Math.max(0, Math.min(100, value));
|
|
@@ -3782,6 +3783,10 @@ var mergeSettings = (defaults, input) => {
|
|
|
3782
3783
|
};
|
|
3783
3784
|
var legacyBlockToV2Settings = (block) => {
|
|
3784
3785
|
const current = structuredClone(defaultBuilderBlockSettingsV2);
|
|
3786
|
+
if (block.blockType === "hero" && block.variant === "centered") {
|
|
3787
|
+
current.typography.headingAlign = "center";
|
|
3788
|
+
current.typography.bodyAlign = "center";
|
|
3789
|
+
}
|
|
3785
3790
|
current.layout.contentWidth = block.contentWidth === "narrow" || block.contentWidth === "content" || block.contentWidth === "wide" || block.contentWidth === "full" || block.contentWidth === "inherit" ? block.contentWidth : current.layout.contentWidth;
|
|
3786
3791
|
current.layout.sectionPaddingX = block.sectionPaddingX === "none" || block.sectionPaddingX === "sm" || block.sectionPaddingX === "md" || block.sectionPaddingX === "lg" || block.sectionPaddingX === "inherit" ? block.sectionPaddingX : current.layout.sectionPaddingX;
|
|
3787
3792
|
current.layout.sectionPaddingY = block.sectionPaddingY === "none" || block.sectionPaddingY === "sm" || block.sectionPaddingY === "lg" ? block.sectionPaddingY : current.layout.sectionPaddingY;
|
|
@@ -3818,8 +3823,8 @@ var legacyBlockToV2Settings = (block) => {
|
|
|
3818
3823
|
current.media.positionX = parsePercent(block.imagePositionX ?? block.backgroundImagePositionX);
|
|
3819
3824
|
current.media.positionY = parsePercent(block.imagePositionY ?? block.backgroundImagePositionY);
|
|
3820
3825
|
current.media.height = parsePixel(block.imageHeight);
|
|
3821
|
-
current.typography.headingAlign = block.textHeadingAlign
|
|
3822
|
-
current.typography.bodyAlign = block.textBodyAlign
|
|
3826
|
+
current.typography.headingAlign = isTextAlign(block.textHeadingAlign) ? block.textHeadingAlign : current.typography.headingAlign;
|
|
3827
|
+
current.typography.bodyAlign = isTextAlign(block.textBodyAlign) ? block.textBodyAlign : current.typography.bodyAlign;
|
|
3823
3828
|
current.typography.maxTextWidth = block.textMaxWidth === "auto" || block.textMaxWidth === "sm" || block.textMaxWidth === "md" || block.textMaxWidth === "lg" || block.textMaxWidth === "full" ? block.textMaxWidth : current.typography.maxTextWidth;
|
|
3824
3829
|
current.typography.lineHeightPreset = block.textLineHeightPreset === "tight" || block.textLineHeightPreset === "normal" || block.textLineHeightPreset === "relaxed" ? block.textLineHeightPreset : current.typography.lineHeightPreset;
|
|
3825
3830
|
current.typography.letterSpacingPreset = block.textLetterSpacingPreset === "tight" || block.textLetterSpacingPreset === "normal" || block.textLetterSpacingPreset === "relaxed" ? block.textLetterSpacingPreset : current.typography.letterSpacingPreset;
|
package/dist/index.mjs
CHANGED
|
@@ -10,13 +10,13 @@ import {
|
|
|
10
10
|
} from "./chunk-JQAHXYAM.mjs";
|
|
11
11
|
import {
|
|
12
12
|
nextjs_exports
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-H4GTEY24.mjs";
|
|
14
14
|
import "./chunk-ZTXJG4K5.mjs";
|
|
15
15
|
import {
|
|
16
16
|
studio_pages_exports
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-EDW7DPXW.mjs";
|
|
18
18
|
import "./chunk-OQSEJXC4.mjs";
|
|
19
|
-
import "./chunk-
|
|
19
|
+
import "./chunk-4LSIUED5.mjs";
|
|
20
20
|
import {
|
|
21
21
|
studio_exports
|
|
22
22
|
} from "./chunk-ADIIWIYL.mjs";
|
package/dist/nextjs/index.js
CHANGED
|
@@ -166,6 +166,7 @@ var defaultBuilderItemSettingsV2 = {
|
|
|
166
166
|
|
|
167
167
|
// src/studio-pages/builder/adapters/settingsV2.ts
|
|
168
168
|
var isRecord2 = (value) => Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
169
|
+
var isTextAlign = (value) => value === "left" || value === "center" || value === "right" || value === "justify";
|
|
169
170
|
var parsePercent = (value) => {
|
|
170
171
|
if (typeof value === "number" && Number.isFinite(value)) {
|
|
171
172
|
return Math.max(0, Math.min(100, value));
|
|
@@ -208,6 +209,10 @@ var mergeSettings = (defaults, input) => {
|
|
|
208
209
|
};
|
|
209
210
|
var legacyBlockToV2Settings = (block) => {
|
|
210
211
|
const current = structuredClone(defaultBuilderBlockSettingsV2);
|
|
212
|
+
if (block.blockType === "hero" && block.variant === "centered") {
|
|
213
|
+
current.typography.headingAlign = "center";
|
|
214
|
+
current.typography.bodyAlign = "center";
|
|
215
|
+
}
|
|
211
216
|
current.layout.contentWidth = block.contentWidth === "narrow" || block.contentWidth === "content" || block.contentWidth === "wide" || block.contentWidth === "full" || block.contentWidth === "inherit" ? block.contentWidth : current.layout.contentWidth;
|
|
212
217
|
current.layout.sectionPaddingX = block.sectionPaddingX === "none" || block.sectionPaddingX === "sm" || block.sectionPaddingX === "md" || block.sectionPaddingX === "lg" || block.sectionPaddingX === "inherit" ? block.sectionPaddingX : current.layout.sectionPaddingX;
|
|
213
218
|
current.layout.sectionPaddingY = block.sectionPaddingY === "none" || block.sectionPaddingY === "sm" || block.sectionPaddingY === "lg" ? block.sectionPaddingY : current.layout.sectionPaddingY;
|
|
@@ -244,8 +249,8 @@ var legacyBlockToV2Settings = (block) => {
|
|
|
244
249
|
current.media.positionX = parsePercent(block.imagePositionX ?? block.backgroundImagePositionX);
|
|
245
250
|
current.media.positionY = parsePercent(block.imagePositionY ?? block.backgroundImagePositionY);
|
|
246
251
|
current.media.height = parsePixel(block.imageHeight);
|
|
247
|
-
current.typography.headingAlign = block.textHeadingAlign
|
|
248
|
-
current.typography.bodyAlign = block.textBodyAlign
|
|
252
|
+
current.typography.headingAlign = isTextAlign(block.textHeadingAlign) ? block.textHeadingAlign : current.typography.headingAlign;
|
|
253
|
+
current.typography.bodyAlign = isTextAlign(block.textBodyAlign) ? block.textBodyAlign : current.typography.bodyAlign;
|
|
249
254
|
current.typography.maxTextWidth = block.textMaxWidth === "auto" || block.textMaxWidth === "sm" || block.textMaxWidth === "md" || block.textMaxWidth === "lg" || block.textMaxWidth === "full" ? block.textMaxWidth : current.typography.maxTextWidth;
|
|
250
255
|
current.typography.lineHeightPreset = block.textLineHeightPreset === "tight" || block.textLineHeightPreset === "normal" || block.textLineHeightPreset === "relaxed" ? block.textLineHeightPreset : current.typography.lineHeightPreset;
|
|
251
256
|
current.typography.letterSpacingPreset = block.textLetterSpacingPreset === "tight" || block.textLetterSpacingPreset === "normal" || block.textLetterSpacingPreset === "relaxed" ? block.textLetterSpacingPreset : current.typography.letterSpacingPreset;
|
package/dist/nextjs/index.mjs
CHANGED
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
createSiteQueries,
|
|
6
6
|
resolveMedia,
|
|
7
7
|
resolveSocialMediaLinks
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-H4GTEY24.mjs";
|
|
9
9
|
import "../chunk-ZTXJG4K5.mjs";
|
|
10
|
-
import "../chunk-
|
|
10
|
+
import "../chunk-4LSIUED5.mjs";
|
|
11
11
|
import "../chunk-ADIIWIYL.mjs";
|
|
12
12
|
import "../chunk-6BWS3CLP.mjs";
|
|
13
13
|
export {
|
|
@@ -156,6 +156,7 @@ var defaultBuilderThemeTokens = {
|
|
|
156
156
|
|
|
157
157
|
// src/studio-pages/builder/adapters/settingsV2.ts
|
|
158
158
|
var isRecord = (value) => Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
159
|
+
var isTextAlign = (value) => value === "left" || value === "center" || value === "right" || value === "justify";
|
|
159
160
|
var parsePercent = (value) => {
|
|
160
161
|
if (typeof value === "number" && Number.isFinite(value)) {
|
|
161
162
|
return Math.max(0, Math.min(100, value));
|
|
@@ -198,6 +199,10 @@ var mergeSettings = (defaults, input) => {
|
|
|
198
199
|
};
|
|
199
200
|
var legacyBlockToV2Settings = (block) => {
|
|
200
201
|
const current = structuredClone(defaultBuilderBlockSettingsV2);
|
|
202
|
+
if (block.blockType === "hero" && block.variant === "centered") {
|
|
203
|
+
current.typography.headingAlign = "center";
|
|
204
|
+
current.typography.bodyAlign = "center";
|
|
205
|
+
}
|
|
201
206
|
current.layout.contentWidth = block.contentWidth === "narrow" || block.contentWidth === "content" || block.contentWidth === "wide" || block.contentWidth === "full" || block.contentWidth === "inherit" ? block.contentWidth : current.layout.contentWidth;
|
|
202
207
|
current.layout.sectionPaddingX = block.sectionPaddingX === "none" || block.sectionPaddingX === "sm" || block.sectionPaddingX === "md" || block.sectionPaddingX === "lg" || block.sectionPaddingX === "inherit" ? block.sectionPaddingX : current.layout.sectionPaddingX;
|
|
203
208
|
current.layout.sectionPaddingY = block.sectionPaddingY === "none" || block.sectionPaddingY === "sm" || block.sectionPaddingY === "lg" ? block.sectionPaddingY : current.layout.sectionPaddingY;
|
|
@@ -234,8 +239,8 @@ var legacyBlockToV2Settings = (block) => {
|
|
|
234
239
|
current.media.positionX = parsePercent(block.imagePositionX ?? block.backgroundImagePositionX);
|
|
235
240
|
current.media.positionY = parsePercent(block.imagePositionY ?? block.backgroundImagePositionY);
|
|
236
241
|
current.media.height = parsePixel(block.imageHeight);
|
|
237
|
-
current.typography.headingAlign = block.textHeadingAlign
|
|
238
|
-
current.typography.bodyAlign = block.textBodyAlign
|
|
242
|
+
current.typography.headingAlign = isTextAlign(block.textHeadingAlign) ? block.textHeadingAlign : current.typography.headingAlign;
|
|
243
|
+
current.typography.bodyAlign = isTextAlign(block.textBodyAlign) ? block.textBodyAlign : current.typography.bodyAlign;
|
|
239
244
|
current.typography.maxTextWidth = block.textMaxWidth === "auto" || block.textMaxWidth === "sm" || block.textMaxWidth === "md" || block.textMaxWidth === "lg" || block.textMaxWidth === "full" ? block.textMaxWidth : current.typography.maxTextWidth;
|
|
240
245
|
current.typography.lineHeightPreset = block.textLineHeightPreset === "tight" || block.textLineHeightPreset === "normal" || block.textLineHeightPreset === "relaxed" ? block.textLineHeightPreset : current.typography.lineHeightPreset;
|
|
241
246
|
current.typography.letterSpacingPreset = block.textLetterSpacingPreset === "tight" || block.textLetterSpacingPreset === "normal" || block.textLetterSpacingPreset === "relaxed" ? block.textLetterSpacingPreset : current.typography.letterSpacingPreset;
|
|
@@ -129,6 +129,7 @@ var defaultBuilderThemeTokens = {
|
|
|
129
129
|
|
|
130
130
|
// src/studio-pages/builder/adapters/settingsV2.ts
|
|
131
131
|
var isRecord = (value) => Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
132
|
+
var isTextAlign = (value) => value === "left" || value === "center" || value === "right" || value === "justify";
|
|
132
133
|
var parsePercent = (value) => {
|
|
133
134
|
if (typeof value === "number" && Number.isFinite(value)) {
|
|
134
135
|
return Math.max(0, Math.min(100, value));
|
|
@@ -171,6 +172,10 @@ var mergeSettings = (defaults, input) => {
|
|
|
171
172
|
};
|
|
172
173
|
var legacyBlockToV2Settings = (block) => {
|
|
173
174
|
const current = structuredClone(defaultBuilderBlockSettingsV2);
|
|
175
|
+
if (block.blockType === "hero" && block.variant === "centered") {
|
|
176
|
+
current.typography.headingAlign = "center";
|
|
177
|
+
current.typography.bodyAlign = "center";
|
|
178
|
+
}
|
|
174
179
|
current.layout.contentWidth = block.contentWidth === "narrow" || block.contentWidth === "content" || block.contentWidth === "wide" || block.contentWidth === "full" || block.contentWidth === "inherit" ? block.contentWidth : current.layout.contentWidth;
|
|
175
180
|
current.layout.sectionPaddingX = block.sectionPaddingX === "none" || block.sectionPaddingX === "sm" || block.sectionPaddingX === "md" || block.sectionPaddingX === "lg" || block.sectionPaddingX === "inherit" ? block.sectionPaddingX : current.layout.sectionPaddingX;
|
|
176
181
|
current.layout.sectionPaddingY = block.sectionPaddingY === "none" || block.sectionPaddingY === "sm" || block.sectionPaddingY === "lg" ? block.sectionPaddingY : current.layout.sectionPaddingY;
|
|
@@ -207,8 +212,8 @@ var legacyBlockToV2Settings = (block) => {
|
|
|
207
212
|
current.media.positionX = parsePercent(block.imagePositionX ?? block.backgroundImagePositionX);
|
|
208
213
|
current.media.positionY = parsePercent(block.imagePositionY ?? block.backgroundImagePositionY);
|
|
209
214
|
current.media.height = parsePixel(block.imageHeight);
|
|
210
|
-
current.typography.headingAlign = block.textHeadingAlign
|
|
211
|
-
current.typography.bodyAlign = block.textBodyAlign
|
|
215
|
+
current.typography.headingAlign = isTextAlign(block.textHeadingAlign) ? block.textHeadingAlign : current.typography.headingAlign;
|
|
216
|
+
current.typography.bodyAlign = isTextAlign(block.textBodyAlign) ? block.textBodyAlign : current.typography.bodyAlign;
|
|
212
217
|
current.typography.maxTextWidth = block.textMaxWidth === "auto" || block.textMaxWidth === "sm" || block.textMaxWidth === "md" || block.textMaxWidth === "lg" || block.textMaxWidth === "full" ? block.textMaxWidth : current.typography.maxTextWidth;
|
|
213
218
|
current.typography.lineHeightPreset = block.textLineHeightPreset === "tight" || block.textLineHeightPreset === "normal" || block.textLineHeightPreset === "relaxed" ? block.textLineHeightPreset : current.typography.lineHeightPreset;
|
|
214
219
|
current.typography.letterSpacingPreset = block.textLetterSpacingPreset === "tight" || block.textLetterSpacingPreset === "normal" || block.textLetterSpacingPreset === "relaxed" ? block.textLetterSpacingPreset : current.typography.letterSpacingPreset;
|
|
@@ -156,6 +156,7 @@ var defaultBuilderThemeTokens = {
|
|
|
156
156
|
|
|
157
157
|
// src/studio-pages/builder/adapters/settingsV2.ts
|
|
158
158
|
var isRecord = (value) => Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
159
|
+
var isTextAlign = (value) => value === "left" || value === "center" || value === "right" || value === "justify";
|
|
159
160
|
var parsePercent = (value) => {
|
|
160
161
|
if (typeof value === "number" && Number.isFinite(value)) {
|
|
161
162
|
return Math.max(0, Math.min(100, value));
|
|
@@ -198,6 +199,10 @@ var mergeSettings = (defaults, input) => {
|
|
|
198
199
|
};
|
|
199
200
|
var legacyBlockToV2Settings = (block) => {
|
|
200
201
|
const current = structuredClone(defaultBuilderBlockSettingsV2);
|
|
202
|
+
if (block.blockType === "hero" && block.variant === "centered") {
|
|
203
|
+
current.typography.headingAlign = "center";
|
|
204
|
+
current.typography.bodyAlign = "center";
|
|
205
|
+
}
|
|
201
206
|
current.layout.contentWidth = block.contentWidth === "narrow" || block.contentWidth === "content" || block.contentWidth === "wide" || block.contentWidth === "full" || block.contentWidth === "inherit" ? block.contentWidth : current.layout.contentWidth;
|
|
202
207
|
current.layout.sectionPaddingX = block.sectionPaddingX === "none" || block.sectionPaddingX === "sm" || block.sectionPaddingX === "md" || block.sectionPaddingX === "lg" || block.sectionPaddingX === "inherit" ? block.sectionPaddingX : current.layout.sectionPaddingX;
|
|
203
208
|
current.layout.sectionPaddingY = block.sectionPaddingY === "none" || block.sectionPaddingY === "sm" || block.sectionPaddingY === "lg" ? block.sectionPaddingY : current.layout.sectionPaddingY;
|
|
@@ -234,8 +239,8 @@ var legacyBlockToV2Settings = (block) => {
|
|
|
234
239
|
current.media.positionX = parsePercent(block.imagePositionX ?? block.backgroundImagePositionX);
|
|
235
240
|
current.media.positionY = parsePercent(block.imagePositionY ?? block.backgroundImagePositionY);
|
|
236
241
|
current.media.height = parsePixel(block.imageHeight);
|
|
237
|
-
current.typography.headingAlign = block.textHeadingAlign
|
|
238
|
-
current.typography.bodyAlign = block.textBodyAlign
|
|
242
|
+
current.typography.headingAlign = isTextAlign(block.textHeadingAlign) ? block.textHeadingAlign : current.typography.headingAlign;
|
|
243
|
+
current.typography.bodyAlign = isTextAlign(block.textBodyAlign) ? block.textBodyAlign : current.typography.bodyAlign;
|
|
239
244
|
current.typography.maxTextWidth = block.textMaxWidth === "auto" || block.textMaxWidth === "sm" || block.textMaxWidth === "md" || block.textMaxWidth === "lg" || block.textMaxWidth === "full" ? block.textMaxWidth : current.typography.maxTextWidth;
|
|
240
245
|
current.typography.lineHeightPreset = block.textLineHeightPreset === "tight" || block.textLineHeightPreset === "normal" || block.textLineHeightPreset === "relaxed" ? block.textLineHeightPreset : current.typography.lineHeightPreset;
|
|
241
246
|
current.typography.letterSpacingPreset = block.textLetterSpacingPreset === "tight" || block.textLetterSpacingPreset === "normal" || block.textLetterSpacingPreset === "relaxed" ? block.textLetterSpacingPreset : current.typography.letterSpacingPreset;
|
|
@@ -7,14 +7,14 @@ import {
|
|
|
7
7
|
pageStudioModuleManifest,
|
|
8
8
|
resolveBuilderThemeTokens,
|
|
9
9
|
toEditorInitialDoc
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-EDW7DPXW.mjs";
|
|
11
11
|
import "../chunk-OQSEJXC4.mjs";
|
|
12
12
|
import {
|
|
13
13
|
createDefaultStudioDocument,
|
|
14
14
|
defaultBuilderThemeTokens,
|
|
15
15
|
layoutToStudioDocument,
|
|
16
16
|
studioDocumentToLayout
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-4LSIUED5.mjs";
|
|
18
18
|
import "../chunk-ADIIWIYL.mjs";
|
|
19
19
|
import "../chunk-6BWS3CLP.mjs";
|
|
20
20
|
export {
|
package/package.json
CHANGED