@glidevvr/storage-payload-types-pkg 1.0.289 → 1.0.291

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 +19 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.289",
3
+ "version": "1.0.291",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1965,6 +1965,24 @@ export interface ContentTabs {
1965
1965
  * Customize the tab name (20 character limit).
1966
1966
  */
1967
1967
  label?: string | null;
1968
+ /**
1969
+ * This content displays above the map.
1970
+ */
1971
+ contentAbove?: {
1972
+ root: {
1973
+ type: string;
1974
+ children: {
1975
+ type: any;
1976
+ version: number;
1977
+ [k: string]: unknown;
1978
+ }[];
1979
+ direction: ('ltr' | 'rtl') | null;
1980
+ format: 'left' | 'start' | 'center' | 'right' | 'end' | 'justify' | '';
1981
+ indent: number;
1982
+ version: number;
1983
+ };
1984
+ [k: string]: unknown;
1985
+ } | null;
1968
1986
  /**
1969
1987
  * This content, like directions to the facility, is displayed below the map.
1970
1988
  */
@@ -4083,6 +4101,7 @@ export interface ContentTabsSelect<T extends boolean = true> {
4083
4101
  | {
4084
4102
  enabled?: T;
4085
4103
  label?: T;
4104
+ contentAbove?: T;
4086
4105
  content?: T;
4087
4106
  };
4088
4107
  customTab1?: