@orion-studios/payload-studio 0.6.0-beta.7 → 0.6.0-beta.71
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/admin/client.js +2076 -618
- package/dist/admin/client.mjs +2037 -590
- package/dist/admin/index.d.mts +2 -2
- package/dist/admin/index.d.ts +2 -2
- package/dist/admin/index.js +140 -17
- package/dist/admin/index.mjs +2 -2
- package/dist/admin-app/client.js +11 -4
- package/dist/admin-app/client.mjs +1 -1
- package/dist/admin-app/index.d.mts +2 -2
- package/dist/admin-app/index.d.ts +2 -2
- package/dist/admin-app/styles.css +343 -41
- package/dist/admin.css +18 -2
- package/dist/builder-v2/client.d.mts +18 -0
- package/dist/builder-v2/client.d.ts +18 -0
- package/dist/builder-v2/client.js +1673 -0
- package/dist/builder-v2/client.mjs +1548 -0
- package/dist/builder-v2/index.d.mts +241 -0
- package/dist/builder-v2/index.d.ts +241 -0
- package/dist/builder-v2/index.js +760 -0
- package/dist/builder-v2/index.mjs +710 -0
- package/dist/builder-v2/styles.css +1524 -0
- package/dist/{chunk-XKUTZ7IU.mjs → chunk-276KAPGM.mjs} +56 -5
- package/dist/{chunk-KPIX7OSV.mjs → chunk-2XH7X34N.mjs} +11 -4
- package/dist/{chunk-PF3EBZXF.mjs → chunk-7ZMXZRBP.mjs} +39 -3
- package/dist/{chunk-5FNTVRCR.mjs → chunk-KHK6RTGC.mjs} +143 -20
- package/dist/{chunk-OTHERBGX.mjs → chunk-ZADL33R6.mjs} +1 -1
- package/dist/{index-QPDAedIX.d.ts → index-BV0vEGl6.d.ts} +4 -2
- package/dist/{index-Cv-6qnrw.d.mts → index-D5zrOdyv.d.mts} +3 -1
- package/dist/{index-52HdVLQq.d.ts → index-DAdN56fM.d.ts} +1 -1
- package/dist/{index-DyMmaRfI.d.mts → index-DLfPOqYA.d.mts} +4 -2
- package/dist/{index-Crx_MtPw.d.ts → index-Dv-Alx4h.d.ts} +3 -1
- package/dist/{index-DEQC3Dwj.d.mts → index-G_uTNffQ.d.mts} +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +231 -21
- package/dist/index.mjs +10 -10
- package/dist/nextjs/index.js +39 -3
- package/dist/nextjs/index.mjs +2 -2
- package/dist/{sitePreviewTypes-BkHCWxNW.d.mts → sitePreviewTypes-BrJwGzJj.d.mts} +1 -1
- package/dist/{sitePreviewTypes-BkHCWxNW.d.ts → sitePreviewTypes-BrJwGzJj.d.ts} +1 -1
- package/dist/studio-pages/builder.css +24 -5
- package/dist/studio-pages/client.js +574 -64
- package/dist/studio-pages/client.mjs +574 -64
- package/dist/studio-pages/index.d.mts +1 -1
- package/dist/studio-pages/index.d.ts +1 -1
- package/dist/studio-pages/index.js +91 -4
- package/dist/studio-pages/index.mjs +3 -3
- package/package.json +22 -3
|
@@ -116,6 +116,12 @@ h4 {
|
|
|
116
116
|
--orion-shell-max: 100%;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
@media (max-width: 767px) {
|
|
120
|
+
.orion-builder-hide-mobile {
|
|
121
|
+
display: none !important;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
119
125
|
.orion-builder-content {
|
|
120
126
|
width: min(var(--orion-shell-max), calc(100% - (var(--orion-shell-inline) * 2)));
|
|
121
127
|
margin-inline: auto;
|
|
@@ -256,36 +262,44 @@ h4 {
|
|
|
256
262
|
}
|
|
257
263
|
|
|
258
264
|
.hero-content {
|
|
259
|
-
position: absolute;
|
|
260
|
-
inset: 0;
|
|
261
265
|
display: flex;
|
|
262
266
|
flex-direction: column;
|
|
263
267
|
justify-content: center;
|
|
264
|
-
|
|
268
|
+
inset: 0;
|
|
265
269
|
max-width: 610px;
|
|
270
|
+
padding: 2rem;
|
|
271
|
+
position: absolute;
|
|
272
|
+
text-align: var(--orion-builder-body-align, left);
|
|
266
273
|
}
|
|
267
274
|
|
|
268
275
|
.hero h1 {
|
|
269
276
|
font-size: clamp(2rem, 4vw, 3.1rem);
|
|
270
277
|
letter-spacing: -0.02em;
|
|
271
278
|
margin: 0;
|
|
279
|
+
text-align: var(--orion-builder-heading-align, var(--orion-builder-body-align, left));
|
|
272
280
|
}
|
|
273
281
|
|
|
274
282
|
.hero p {
|
|
283
|
+
color: color-mix(in srgb, var(--orion-studio-accent-contrast) 90%, transparent);
|
|
275
284
|
margin-top: 0.75rem;
|
|
276
285
|
max-width: 48ch;
|
|
277
|
-
|
|
286
|
+
text-align: var(--orion-builder-body-align, left);
|
|
278
287
|
}
|
|
279
288
|
|
|
280
289
|
.hero-actions {
|
|
281
290
|
display: flex;
|
|
282
291
|
flex-wrap: wrap;
|
|
283
292
|
gap: 0.75rem;
|
|
293
|
+
justify-content: var(--orion-builder-actions-align, flex-start);
|
|
284
294
|
margin-top: 1.1rem;
|
|
285
295
|
}
|
|
286
296
|
|
|
287
297
|
.hero-centered .hero-content {
|
|
288
|
-
text-align: center;
|
|
298
|
+
text-align: var(--orion-builder-body-align, center);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.hero .kicker {
|
|
302
|
+
text-align: var(--orion-builder-heading-align, var(--orion-builder-body-align, left));
|
|
289
303
|
}
|
|
290
304
|
|
|
291
305
|
.features {
|
|
@@ -984,6 +998,11 @@ h4 {
|
|
|
984
998
|
text-align: var(--orion-builder-heading-align, inherit);
|
|
985
999
|
}
|
|
986
1000
|
|
|
1001
|
+
.orion-builder-content p,
|
|
1002
|
+
.orion-builder-content li {
|
|
1003
|
+
text-align: var(--orion-builder-body-align, inherit);
|
|
1004
|
+
}
|
|
1005
|
+
|
|
987
1006
|
/* Builder-only override: show full testimonial copy even if host app globals clamp it. */
|
|
988
1007
|
.orion-builder-shell .orion-builder-content .testimonial-quote {
|
|
989
1008
|
-webkit-box-orient: initial;
|