@orion-studios/payload-studio 0.5.0-beta.30 → 0.5.0-beta.32
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/blocks/index.js +33 -0
- package/dist/blocks/index.mjs +1 -1
- package/dist/{chunk-H7DSTEVT.mjs → chunk-DP7GYWJA.mjs} +33 -0
- package/dist/index.js +33 -0
- package/dist/index.mjs +1 -1
- package/dist/studio-pages/client.js +1092 -738
- package/dist/studio-pages/client.mjs +1092 -738
- package/package.json +23 -11
package/dist/blocks/index.js
CHANGED
|
@@ -245,6 +245,17 @@ var BeforeAfterBlock = {
|
|
|
245
245
|
relationTo: "media",
|
|
246
246
|
required: false
|
|
247
247
|
},
|
|
248
|
+
{
|
|
249
|
+
name: "imageHeight",
|
|
250
|
+
type: "number",
|
|
251
|
+
defaultValue: 160,
|
|
252
|
+
min: 60,
|
|
253
|
+
max: 600,
|
|
254
|
+
admin: {
|
|
255
|
+
description: "Overrides the before/after image height (in pixels).",
|
|
256
|
+
step: 10
|
|
257
|
+
}
|
|
258
|
+
},
|
|
248
259
|
{
|
|
249
260
|
name: "imageFit",
|
|
250
261
|
type: "select",
|
|
@@ -473,6 +484,17 @@ var FeatureGridBlock = {
|
|
|
473
484
|
relationTo: "media",
|
|
474
485
|
required: false
|
|
475
486
|
},
|
|
487
|
+
{
|
|
488
|
+
name: "imageHeight",
|
|
489
|
+
type: "number",
|
|
490
|
+
defaultValue: 160,
|
|
491
|
+
min: 40,
|
|
492
|
+
max: 600,
|
|
493
|
+
admin: {
|
|
494
|
+
description: "Overrides the image height in the builder/section (in pixels).",
|
|
495
|
+
step: 10
|
|
496
|
+
}
|
|
497
|
+
},
|
|
476
498
|
{
|
|
477
499
|
name: "imageFit",
|
|
478
500
|
type: "select",
|
|
@@ -757,6 +779,17 @@ var LogoWallBlock = {
|
|
|
757
779
|
relationTo: "media",
|
|
758
780
|
required: false
|
|
759
781
|
},
|
|
782
|
+
{
|
|
783
|
+
name: "imageHeight",
|
|
784
|
+
type: "number",
|
|
785
|
+
defaultValue: 64,
|
|
786
|
+
min: 24,
|
|
787
|
+
max: 200,
|
|
788
|
+
admin: {
|
|
789
|
+
description: "Overrides the logo image height (in pixels).",
|
|
790
|
+
step: 4
|
|
791
|
+
}
|
|
792
|
+
},
|
|
760
793
|
{
|
|
761
794
|
name: "imageFit",
|
|
762
795
|
type: "select",
|
package/dist/blocks/index.mjs
CHANGED
|
@@ -81,6 +81,17 @@ var BeforeAfterBlock = {
|
|
|
81
81
|
relationTo: "media",
|
|
82
82
|
required: false
|
|
83
83
|
},
|
|
84
|
+
{
|
|
85
|
+
name: "imageHeight",
|
|
86
|
+
type: "number",
|
|
87
|
+
defaultValue: 160,
|
|
88
|
+
min: 60,
|
|
89
|
+
max: 600,
|
|
90
|
+
admin: {
|
|
91
|
+
description: "Overrides the before/after image height (in pixels).",
|
|
92
|
+
step: 10
|
|
93
|
+
}
|
|
94
|
+
},
|
|
84
95
|
{
|
|
85
96
|
name: "imageFit",
|
|
86
97
|
type: "select",
|
|
@@ -309,6 +320,17 @@ var FeatureGridBlock = {
|
|
|
309
320
|
relationTo: "media",
|
|
310
321
|
required: false
|
|
311
322
|
},
|
|
323
|
+
{
|
|
324
|
+
name: "imageHeight",
|
|
325
|
+
type: "number",
|
|
326
|
+
defaultValue: 160,
|
|
327
|
+
min: 40,
|
|
328
|
+
max: 600,
|
|
329
|
+
admin: {
|
|
330
|
+
description: "Overrides the image height in the builder/section (in pixels).",
|
|
331
|
+
step: 10
|
|
332
|
+
}
|
|
333
|
+
},
|
|
312
334
|
{
|
|
313
335
|
name: "imageFit",
|
|
314
336
|
type: "select",
|
|
@@ -593,6 +615,17 @@ var LogoWallBlock = {
|
|
|
593
615
|
relationTo: "media",
|
|
594
616
|
required: false
|
|
595
617
|
},
|
|
618
|
+
{
|
|
619
|
+
name: "imageHeight",
|
|
620
|
+
type: "number",
|
|
621
|
+
defaultValue: 64,
|
|
622
|
+
min: 24,
|
|
623
|
+
max: 200,
|
|
624
|
+
admin: {
|
|
625
|
+
description: "Overrides the logo image height (in pixels).",
|
|
626
|
+
step: 4
|
|
627
|
+
}
|
|
628
|
+
},
|
|
596
629
|
{
|
|
597
630
|
name: "imageFit",
|
|
598
631
|
type: "select",
|
package/dist/index.js
CHANGED
|
@@ -786,6 +786,17 @@ var BeforeAfterBlock = {
|
|
|
786
786
|
relationTo: "media",
|
|
787
787
|
required: false
|
|
788
788
|
},
|
|
789
|
+
{
|
|
790
|
+
name: "imageHeight",
|
|
791
|
+
type: "number",
|
|
792
|
+
defaultValue: 160,
|
|
793
|
+
min: 60,
|
|
794
|
+
max: 600,
|
|
795
|
+
admin: {
|
|
796
|
+
description: "Overrides the before/after image height (in pixels).",
|
|
797
|
+
step: 10
|
|
798
|
+
}
|
|
799
|
+
},
|
|
789
800
|
{
|
|
790
801
|
name: "imageFit",
|
|
791
802
|
type: "select",
|
|
@@ -1014,6 +1025,17 @@ var FeatureGridBlock = {
|
|
|
1014
1025
|
relationTo: "media",
|
|
1015
1026
|
required: false
|
|
1016
1027
|
},
|
|
1028
|
+
{
|
|
1029
|
+
name: "imageHeight",
|
|
1030
|
+
type: "number",
|
|
1031
|
+
defaultValue: 160,
|
|
1032
|
+
min: 40,
|
|
1033
|
+
max: 600,
|
|
1034
|
+
admin: {
|
|
1035
|
+
description: "Overrides the image height in the builder/section (in pixels).",
|
|
1036
|
+
step: 10
|
|
1037
|
+
}
|
|
1038
|
+
},
|
|
1017
1039
|
{
|
|
1018
1040
|
name: "imageFit",
|
|
1019
1041
|
type: "select",
|
|
@@ -1298,6 +1320,17 @@ var LogoWallBlock = {
|
|
|
1298
1320
|
relationTo: "media",
|
|
1299
1321
|
required: false
|
|
1300
1322
|
},
|
|
1323
|
+
{
|
|
1324
|
+
name: "imageHeight",
|
|
1325
|
+
type: "number",
|
|
1326
|
+
defaultValue: 64,
|
|
1327
|
+
min: 24,
|
|
1328
|
+
max: 200,
|
|
1329
|
+
admin: {
|
|
1330
|
+
description: "Overrides the logo image height (in pixels).",
|
|
1331
|
+
step: 4
|
|
1332
|
+
}
|
|
1333
|
+
},
|
|
1301
1334
|
{
|
|
1302
1335
|
name: "imageFit",
|
|
1303
1336
|
type: "select",
|