@glidevvr/storage-payload-types-pkg 1.0.235 → 1.0.237

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 +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.235",
3
+ "version": "1.0.237",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -3773,6 +3773,16 @@ export interface RowGroupBlock {
3773
3773
  };
3774
3774
  [k: string]: unknown;
3775
3775
  } | null;
3776
+ /**
3777
+ * Controls layout on mobile devices. "Stack" makes items vertical and centered. "Side-by-side" options keep items horizontal.
3778
+ */
3779
+ mobileAlignment?:
3780
+ | ('vertical' | 'start' | 'center' | 'end' | 'space-between' | 'space-around' | 'space-evenly')
3781
+ | null;
3782
+ /**
3783
+ * Controls how items are aligned on tablet and desktop.
3784
+ */
3785
+ desktopAlignment?: ('start' | 'center' | 'end' | 'space-between' | 'space-around' | 'space-evenly') | null;
3776
3786
  id?: string | null;
3777
3787
  blockName?: string | null;
3778
3788
  blockType: 'rowGroup';