@glidevvr/storage-payload-types-pkg 1.0.307 → 1.0.308

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 (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +7 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.307",
3
+ "version": "1.0.308",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -320,9 +320,9 @@ export interface Page {
320
320
  */
321
321
  backdropOpacity?: number | null;
322
322
  /**
323
- * Position of the content backdrop within the block. On mobile, always centers.
323
+ * Position of the content within the block. On mobile, always centers.
324
324
  */
325
- backdropPosition?:
325
+ contentPosition?:
326
326
  | (
327
327
  | 'top-left'
328
328
  | 'top-center'
@@ -799,9 +799,9 @@ export interface Page {
799
799
  */
800
800
  backdropOpacity?: number | null;
801
801
  /**
802
- * Position of the content backdrop within the block. On mobile, always centers.
802
+ * Position of the content within the block. On mobile, always centers.
803
803
  */
804
- backdropPosition?:
804
+ contentPosition?:
805
805
  | (
806
806
  | 'top-left'
807
807
  | 'top-center'
@@ -3134,9 +3134,9 @@ export interface MediaOverlayBlock {
3134
3134
  */
3135
3135
  backdropOpacity?: number | null;
3136
3136
  /**
3137
- * Position of the content backdrop within the block. On mobile, always centers.
3137
+ * Position of the content within the block. On mobile, always centers.
3138
3138
  */
3139
- backdropPosition?:
3139
+ contentPosition?:
3140
3140
  | (
3141
3141
  | 'top-left'
3142
3142
  | 'top-center'
@@ -4119,7 +4119,7 @@ export interface MediaOverlayBlockSelect<T extends boolean = true> {
4119
4119
  enableBackdrop?: T;
4120
4120
  backdropColor?: T;
4121
4121
  backdropOpacity?: T;
4122
- backdropPosition?: T;
4122
+ contentPosition?: T;
4123
4123
  content?: T;
4124
4124
  id?: T;
4125
4125
  blockName?: T;