@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.
Files changed (52) hide show
  1. package/dist/admin/client.d.mts +2 -1
  2. package/dist/admin/client.d.ts +2 -1
  3. package/dist/admin/client.js +4327 -2037
  4. package/dist/admin/client.mjs +3823 -1538
  5. package/dist/admin/index.d.mts +2 -2
  6. package/dist/admin/index.d.ts +2 -2
  7. package/dist/admin/index.js +146 -17
  8. package/dist/admin/index.mjs +1 -1
  9. package/dist/admin-app/client.js +2 -4
  10. package/dist/admin-app/client.mjs +1 -1
  11. package/dist/admin-app/index.d.mts +2 -2
  12. package/dist/admin-app/index.d.ts +2 -2
  13. package/dist/admin-app/styles.css +764 -41
  14. package/dist/admin.css +98 -2
  15. package/dist/builder-v2/client.d.mts +18 -0
  16. package/dist/builder-v2/client.d.ts +18 -0
  17. package/dist/builder-v2/client.js +3298 -0
  18. package/dist/builder-v2/client.mjs +3173 -0
  19. package/dist/builder-v2/index.d.mts +242 -0
  20. package/dist/builder-v2/index.d.ts +242 -0
  21. package/dist/builder-v2/index.js +805 -0
  22. package/dist/builder-v2/index.mjs +755 -0
  23. package/dist/builder-v2/styles.css +2365 -0
  24. package/dist/{chunk-KPIX7OSV.mjs → chunk-3ZKXHSG5.mjs} +2 -4
  25. package/dist/{chunk-PF3EBZXF.mjs → chunk-7ZMXZRBP.mjs} +39 -3
  26. package/dist/{chunk-Q2HGC67S.mjs → chunk-JC3UV74N.mjs} +146 -17
  27. package/dist/{chunk-XKUTZ7IU.mjs → chunk-NGLIA2OE.mjs} +53 -2
  28. package/dist/{chunk-OTHERBGX.mjs → chunk-ZADL33R6.mjs} +1 -1
  29. package/dist/index-BV0vEGl6.d.ts +188 -0
  30. package/dist/{index-Cv-6qnrw.d.mts → index-D5zrOdyv.d.mts} +3 -1
  31. package/dist/{index-52HdVLQq.d.ts → index-DAdN56fM.d.ts} +1 -1
  32. package/dist/index-DLfPOqYA.d.mts +188 -0
  33. package/dist/{index-Crx_MtPw.d.ts → index-Dv-Alx4h.d.ts} +3 -1
  34. package/dist/{index-DEQC3Dwj.d.mts → index-G_uTNffQ.d.mts} +1 -1
  35. package/dist/index.d.mts +4 -4
  36. package/dist/index.d.ts +4 -4
  37. package/dist/index.js +237 -21
  38. package/dist/index.mjs +4 -4
  39. package/dist/nextjs/index.js +39 -3
  40. package/dist/nextjs/index.mjs +2 -2
  41. package/dist/{sitePreviewTypes-BkHCWxNW.d.mts → sitePreviewTypes-BrJwGzJj.d.mts} +1 -1
  42. package/dist/{sitePreviewTypes-BkHCWxNW.d.ts → sitePreviewTypes-BrJwGzJj.d.ts} +1 -1
  43. package/dist/studio-pages/builder.css +66 -5
  44. package/dist/studio-pages/client.js +618 -73
  45. package/dist/studio-pages/client.mjs +641 -96
  46. package/dist/studio-pages/index.d.mts +1 -1
  47. package/dist/studio-pages/index.d.ts +1 -1
  48. package/dist/studio-pages/index.js +91 -4
  49. package/dist/studio-pages/index.mjs +2 -2
  50. package/package.json +23 -3
  51. package/dist/index-BMitiKK8.d.ts +0 -435
  52. 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
- padding: 2rem;
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
- color: color-mix(in srgb, var(--orion-studio-accent-contrast) 90%, transparent);
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;