@orion-studios/payload-studio 0.5.0-beta.32 → 0.5.0-beta.33
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 +60 -0
- package/dist/blocks/index.mjs +1 -1
- package/dist/{chunk-DP7GYWJA.mjs → chunk-DUPYIJJH.mjs} +60 -0
- package/dist/index.js +60 -0
- package/dist/index.mjs +7 -7
- package/dist/nextjs/index.mjs +2 -2
- package/dist/studio-pages/client.js +479 -112
- package/dist/studio-pages/client.mjs +479 -112
- package/package.json +1 -1
- package/dist/{chunk-GPQPDEB5.mjs → chunk-RZZFLVWG.mjs} +3 -3
package/dist/blocks/index.js
CHANGED
|
@@ -286,6 +286,26 @@ var BeforeAfterBlock = {
|
|
|
286
286
|
{ label: "Right", value: "right" }
|
|
287
287
|
]
|
|
288
288
|
},
|
|
289
|
+
{
|
|
290
|
+
name: "imagePositionX",
|
|
291
|
+
type: "number",
|
|
292
|
+
min: 0,
|
|
293
|
+
max: 100,
|
|
294
|
+
admin: {
|
|
295
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
296
|
+
step: 1
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
name: "imagePositionY",
|
|
301
|
+
type: "number",
|
|
302
|
+
min: 0,
|
|
303
|
+
max: 100,
|
|
304
|
+
admin: {
|
|
305
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
306
|
+
step: 1
|
|
307
|
+
}
|
|
308
|
+
},
|
|
289
309
|
{
|
|
290
310
|
name: "description",
|
|
291
311
|
type: "textarea"
|
|
@@ -524,6 +544,26 @@ var FeatureGridBlock = {
|
|
|
524
544
|
{ label: "Left", value: "left" },
|
|
525
545
|
{ label: "Right", value: "right" }
|
|
526
546
|
]
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
name: "imagePositionX",
|
|
550
|
+
type: "number",
|
|
551
|
+
min: 0,
|
|
552
|
+
max: 100,
|
|
553
|
+
admin: {
|
|
554
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
555
|
+
step: 1
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
name: "imagePositionY",
|
|
560
|
+
type: "number",
|
|
561
|
+
min: 0,
|
|
562
|
+
max: 100,
|
|
563
|
+
admin: {
|
|
564
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
565
|
+
step: 1
|
|
566
|
+
}
|
|
527
567
|
}
|
|
528
568
|
]
|
|
529
569
|
},
|
|
@@ -820,6 +860,26 @@ var LogoWallBlock = {
|
|
|
820
860
|
{ label: "Right", value: "right" }
|
|
821
861
|
]
|
|
822
862
|
},
|
|
863
|
+
{
|
|
864
|
+
name: "imagePositionX",
|
|
865
|
+
type: "number",
|
|
866
|
+
min: 0,
|
|
867
|
+
max: 100,
|
|
868
|
+
admin: {
|
|
869
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
870
|
+
step: 1
|
|
871
|
+
}
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
name: "imagePositionY",
|
|
875
|
+
type: "number",
|
|
876
|
+
min: 0,
|
|
877
|
+
max: 100,
|
|
878
|
+
admin: {
|
|
879
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
880
|
+
step: 1
|
|
881
|
+
}
|
|
882
|
+
},
|
|
823
883
|
{
|
|
824
884
|
name: "href",
|
|
825
885
|
type: "text"
|
package/dist/blocks/index.mjs
CHANGED
|
@@ -122,6 +122,26 @@ var BeforeAfterBlock = {
|
|
|
122
122
|
{ label: "Right", value: "right" }
|
|
123
123
|
]
|
|
124
124
|
},
|
|
125
|
+
{
|
|
126
|
+
name: "imagePositionX",
|
|
127
|
+
type: "number",
|
|
128
|
+
min: 0,
|
|
129
|
+
max: 100,
|
|
130
|
+
admin: {
|
|
131
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
132
|
+
step: 1
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
name: "imagePositionY",
|
|
137
|
+
type: "number",
|
|
138
|
+
min: 0,
|
|
139
|
+
max: 100,
|
|
140
|
+
admin: {
|
|
141
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
142
|
+
step: 1
|
|
143
|
+
}
|
|
144
|
+
},
|
|
125
145
|
{
|
|
126
146
|
name: "description",
|
|
127
147
|
type: "textarea"
|
|
@@ -360,6 +380,26 @@ var FeatureGridBlock = {
|
|
|
360
380
|
{ label: "Left", value: "left" },
|
|
361
381
|
{ label: "Right", value: "right" }
|
|
362
382
|
]
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
name: "imagePositionX",
|
|
386
|
+
type: "number",
|
|
387
|
+
min: 0,
|
|
388
|
+
max: 100,
|
|
389
|
+
admin: {
|
|
390
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
391
|
+
step: 1
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
name: "imagePositionY",
|
|
396
|
+
type: "number",
|
|
397
|
+
min: 0,
|
|
398
|
+
max: 100,
|
|
399
|
+
admin: {
|
|
400
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
401
|
+
step: 1
|
|
402
|
+
}
|
|
363
403
|
}
|
|
364
404
|
]
|
|
365
405
|
},
|
|
@@ -656,6 +696,26 @@ var LogoWallBlock = {
|
|
|
656
696
|
{ label: "Right", value: "right" }
|
|
657
697
|
]
|
|
658
698
|
},
|
|
699
|
+
{
|
|
700
|
+
name: "imagePositionX",
|
|
701
|
+
type: "number",
|
|
702
|
+
min: 0,
|
|
703
|
+
max: 100,
|
|
704
|
+
admin: {
|
|
705
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
706
|
+
step: 1
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
name: "imagePositionY",
|
|
711
|
+
type: "number",
|
|
712
|
+
min: 0,
|
|
713
|
+
max: 100,
|
|
714
|
+
admin: {
|
|
715
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
716
|
+
step: 1
|
|
717
|
+
}
|
|
718
|
+
},
|
|
659
719
|
{
|
|
660
720
|
name: "href",
|
|
661
721
|
type: "text"
|
package/dist/index.js
CHANGED
|
@@ -827,6 +827,26 @@ var BeforeAfterBlock = {
|
|
|
827
827
|
{ label: "Right", value: "right" }
|
|
828
828
|
]
|
|
829
829
|
},
|
|
830
|
+
{
|
|
831
|
+
name: "imagePositionX",
|
|
832
|
+
type: "number",
|
|
833
|
+
min: 0,
|
|
834
|
+
max: 100,
|
|
835
|
+
admin: {
|
|
836
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
837
|
+
step: 1
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
name: "imagePositionY",
|
|
842
|
+
type: "number",
|
|
843
|
+
min: 0,
|
|
844
|
+
max: 100,
|
|
845
|
+
admin: {
|
|
846
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
847
|
+
step: 1
|
|
848
|
+
}
|
|
849
|
+
},
|
|
830
850
|
{
|
|
831
851
|
name: "description",
|
|
832
852
|
type: "textarea"
|
|
@@ -1065,6 +1085,26 @@ var FeatureGridBlock = {
|
|
|
1065
1085
|
{ label: "Left", value: "left" },
|
|
1066
1086
|
{ label: "Right", value: "right" }
|
|
1067
1087
|
]
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
name: "imagePositionX",
|
|
1091
|
+
type: "number",
|
|
1092
|
+
min: 0,
|
|
1093
|
+
max: 100,
|
|
1094
|
+
admin: {
|
|
1095
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
1096
|
+
step: 1
|
|
1097
|
+
}
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
name: "imagePositionY",
|
|
1101
|
+
type: "number",
|
|
1102
|
+
min: 0,
|
|
1103
|
+
max: 100,
|
|
1104
|
+
admin: {
|
|
1105
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
1106
|
+
step: 1
|
|
1107
|
+
}
|
|
1068
1108
|
}
|
|
1069
1109
|
]
|
|
1070
1110
|
},
|
|
@@ -1361,6 +1401,26 @@ var LogoWallBlock = {
|
|
|
1361
1401
|
{ label: "Right", value: "right" }
|
|
1362
1402
|
]
|
|
1363
1403
|
},
|
|
1404
|
+
{
|
|
1405
|
+
name: "imagePositionX",
|
|
1406
|
+
type: "number",
|
|
1407
|
+
min: 0,
|
|
1408
|
+
max: 100,
|
|
1409
|
+
admin: {
|
|
1410
|
+
description: "Optional custom horizontal focus (0-100). Overrides Image Position when set.",
|
|
1411
|
+
step: 1
|
|
1412
|
+
}
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
name: "imagePositionY",
|
|
1416
|
+
type: "number",
|
|
1417
|
+
min: 0,
|
|
1418
|
+
max: 100,
|
|
1419
|
+
admin: {
|
|
1420
|
+
description: "Optional custom vertical focus (0-100). Overrides Image Position when set.",
|
|
1421
|
+
step: 1
|
|
1422
|
+
}
|
|
1423
|
+
},
|
|
1364
1424
|
{
|
|
1365
1425
|
name: "href",
|
|
1366
1426
|
type: "text"
|
package/dist/index.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
+
import {
|
|
2
|
+
blocks_exports
|
|
3
|
+
} from "./chunk-DUPYIJJH.mjs";
|
|
1
4
|
import {
|
|
2
5
|
admin_exports
|
|
3
6
|
} from "./chunk-7IGLXLUB.mjs";
|
|
4
7
|
import {
|
|
5
8
|
admin_app_exports
|
|
6
9
|
} from "./chunk-XVH5SCBD.mjs";
|
|
7
|
-
import {
|
|
8
|
-
blocks_exports
|
|
9
|
-
} from "./chunk-DP7GYWJA.mjs";
|
|
10
10
|
import {
|
|
11
11
|
nextjs_exports
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import {
|
|
14
|
-
studio_exports
|
|
15
|
-
} from "./chunk-N67KVM2S.mjs";
|
|
12
|
+
} from "./chunk-RZZFLVWG.mjs";
|
|
16
13
|
import {
|
|
17
14
|
studio_pages_exports
|
|
18
15
|
} from "./chunk-QW24Y4UH.mjs";
|
|
19
16
|
import "./chunk-SIL2J5MF.mjs";
|
|
17
|
+
import {
|
|
18
|
+
studio_exports
|
|
19
|
+
} from "./chunk-N67KVM2S.mjs";
|
|
20
20
|
import "./chunk-6BWS3CLP.mjs";
|
|
21
21
|
export {
|
|
22
22
|
admin_exports as admin,
|
package/dist/nextjs/index.mjs
CHANGED
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
createPayloadClient,
|
|
5
5
|
createSiteQueries,
|
|
6
6
|
resolveMedia
|
|
7
|
-
} from "../chunk-
|
|
8
|
-
import "../chunk-N67KVM2S.mjs";
|
|
7
|
+
} from "../chunk-RZZFLVWG.mjs";
|
|
9
8
|
import "../chunk-QW24Y4UH.mjs";
|
|
10
9
|
import "../chunk-SIL2J5MF.mjs";
|
|
10
|
+
import "../chunk-N67KVM2S.mjs";
|
|
11
11
|
import "../chunk-6BWS3CLP.mjs";
|
|
12
12
|
export {
|
|
13
13
|
WEBSITE_CONTENT_TAG,
|