@glidevvr/storage-payload-types-pkg 1.0.357 → 1.0.358
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/package.json +1 -1
- package/payload-types.ts +39 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -5181,6 +5181,45 @@ export interface SearchFormBlock {
|
|
|
5181
5181
|
blockName?: string | null;
|
|
5182
5182
|
blockType: 'searchForm';
|
|
5183
5183
|
}
|
|
5184
|
+
/**
|
|
5185
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
5186
|
+
* via the `definition` "TableBlock".
|
|
5187
|
+
*/
|
|
5188
|
+
export interface TableBlock {
|
|
5189
|
+
table:
|
|
5190
|
+
| {
|
|
5191
|
+
[k: string]: unknown;
|
|
5192
|
+
}
|
|
5193
|
+
| unknown[]
|
|
5194
|
+
| string
|
|
5195
|
+
| number
|
|
5196
|
+
| boolean
|
|
5197
|
+
| null;
|
|
5198
|
+
/**
|
|
5199
|
+
* Renders the top row as column headers (<th scope="col">).
|
|
5200
|
+
*/
|
|
5201
|
+
firstRowIsHeader?: boolean | null;
|
|
5202
|
+
/**
|
|
5203
|
+
* Renders the left column as row headers (<th scope="row">).
|
|
5204
|
+
*/
|
|
5205
|
+
firstColumnIsHeader?: boolean | null;
|
|
5206
|
+
/**
|
|
5207
|
+
* Table shading color. None = no shading. The header renders as a solid bar in this color.
|
|
5208
|
+
*/
|
|
5209
|
+
rowShading?: ('' | 'primary-light' | 'secondary-light' | 'tertiary-light' | 'neutral-light') | null;
|
|
5210
|
+
/**
|
|
5211
|
+
* How the shading color fills the body: striped alternating rows, or a single solid fill. Only takes effect when a shading color is selected.
|
|
5212
|
+
*/
|
|
5213
|
+
shadingFill?: ('striped' | 'solid') | null;
|
|
5214
|
+
/**
|
|
5215
|
+
* Header row style (when "First row is a header"): a solid brand-color bar, or the same light color as the rows. Requires a shading color.
|
|
5216
|
+
*/
|
|
5217
|
+
headerStyle?: ('bar' | 'match') | null;
|
|
5218
|
+
borders: 'all' | 'outer' | 'inner' | 'rows' | 'columns' | 'none';
|
|
5219
|
+
id?: string | null;
|
|
5220
|
+
blockName?: string | null;
|
|
5221
|
+
blockType: 'table';
|
|
5222
|
+
}
|
|
5184
5223
|
/**
|
|
5185
5224
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
5186
5225
|
* via the `definition` "UnitsTableBlock".
|