@orion-studios/payload-studio 0.6.0-beta.1 → 0.6.0-beta.103
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.d.mts +2 -1
- package/dist/admin/client.d.ts +2 -1
- package/dist/admin/client.js +4327 -2037
- package/dist/admin/client.mjs +3823 -1538
- package/dist/admin/index.d.mts +2 -2
- package/dist/admin/index.d.ts +2 -2
- package/dist/admin/index.js +146 -17
- package/dist/admin/index.mjs +1 -1
- package/dist/admin-app/client.js +2 -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 +764 -41
- package/dist/admin.css +98 -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 +3298 -0
- package/dist/builder-v2/client.mjs +3173 -0
- package/dist/builder-v2/index.d.mts +242 -0
- package/dist/builder-v2/index.d.ts +242 -0
- package/dist/builder-v2/index.js +805 -0
- package/dist/builder-v2/index.mjs +755 -0
- package/dist/builder-v2/styles.css +2365 -0
- package/dist/{chunk-KPIX7OSV.mjs → chunk-3ZKXHSG5.mjs} +2 -4
- package/dist/{chunk-PF3EBZXF.mjs → chunk-7ZMXZRBP.mjs} +39 -3
- package/dist/{chunk-Q2HGC67S.mjs → chunk-JC3UV74N.mjs} +146 -17
- package/dist/{chunk-XKUTZ7IU.mjs → chunk-NGLIA2OE.mjs} +53 -2
- package/dist/{chunk-OTHERBGX.mjs → chunk-ZADL33R6.mjs} +1 -1
- package/dist/index-BV0vEGl6.d.ts +188 -0
- 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-DLfPOqYA.d.mts +188 -0
- 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 +237 -21
- package/dist/index.mjs +4 -4
- 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 +66 -5
- package/dist/studio-pages/client.js +618 -73
- package/dist/studio-pages/client.mjs +641 -96
- 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 +2 -2
- package/package.json +23 -3
- package/dist/index-BMitiKK8.d.ts +0 -435
- package/dist/index-D_b24Gef.d.mts +0 -435
|
@@ -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 {
|
|
@@ -877,6 +891,48 @@ h4 {
|
|
|
877
891
|
padding: 0.2rem;
|
|
878
892
|
}
|
|
879
893
|
|
|
894
|
+
.orion-builder-settings-color-control {
|
|
895
|
+
display: grid;
|
|
896
|
+
grid-template-columns: minmax(0, 1fr) 36px;
|
|
897
|
+
width: 100%;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.orion-builder-settings-color-control .orion-builder-settings-input.is-color {
|
|
901
|
+
border-bottom-right-radius: 0;
|
|
902
|
+
border-top-right-radius: 0;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
.orion-builder-settings-eyedropper {
|
|
906
|
+
align-items: center;
|
|
907
|
+
appearance: none;
|
|
908
|
+
background: #fffaf4;
|
|
909
|
+
border: 1px solid var(--orion-studio-accent-border);
|
|
910
|
+
border-left: 0;
|
|
911
|
+
border-radius: 0 10px 10px 0;
|
|
912
|
+
color: var(--orion-studio-ink);
|
|
913
|
+
cursor: pointer;
|
|
914
|
+
display: flex;
|
|
915
|
+
height: 35px;
|
|
916
|
+
justify-content: center;
|
|
917
|
+
padding: 0;
|
|
918
|
+
transition:
|
|
919
|
+
background 160ms ease,
|
|
920
|
+
color 160ms ease;
|
|
921
|
+
width: 36px;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.orion-builder-settings-eyedropper:hover,
|
|
925
|
+
.orion-builder-settings-eyedropper:focus-visible {
|
|
926
|
+
background: var(--orion-studio-accent);
|
|
927
|
+
color: #fffaf4;
|
|
928
|
+
outline: none;
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.orion-builder-settings-eyedropper svg {
|
|
932
|
+
height: 16px;
|
|
933
|
+
width: 16px;
|
|
934
|
+
}
|
|
935
|
+
|
|
880
936
|
.orion-builder-settings-input-split {
|
|
881
937
|
align-items: center;
|
|
882
938
|
display: grid;
|
|
@@ -984,6 +1040,11 @@ h4 {
|
|
|
984
1040
|
text-align: var(--orion-builder-heading-align, inherit);
|
|
985
1041
|
}
|
|
986
1042
|
|
|
1043
|
+
.orion-builder-content p,
|
|
1044
|
+
.orion-builder-content li {
|
|
1045
|
+
text-align: var(--orion-builder-body-align, inherit);
|
|
1046
|
+
}
|
|
1047
|
+
|
|
987
1048
|
/* Builder-only override: show full testimonial copy even if host app globals clamp it. */
|
|
988
1049
|
.orion-builder-shell .orion-builder-content .testimonial-quote {
|
|
989
1050
|
-webkit-box-orient: initial;
|