@glidevvr/storage-payload-types-pkg 1.0.247 → 1.0.248
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 +10 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -943,6 +943,14 @@ export interface ContentTabs {
|
|
|
943
943
|
* Select which tab should be open when users first land on the facility page. Only enabled tabs can be selected.
|
|
944
944
|
*/
|
|
945
945
|
defaultTab?: ('findUnit' | 'features' | 'about' | 'map' | 'customTab1' | 'customTab2') | null;
|
|
946
|
+
/**
|
|
947
|
+
* Enable this to customize the order in which tabs appear on the facility page. If disabled, tabs will appear in the default order.
|
|
948
|
+
*/
|
|
949
|
+
customizeTabOrder?: boolean | null;
|
|
950
|
+
/**
|
|
951
|
+
* Drag to reorder how tabs appear on the facility page. Disabled tabs must be removed from this list (click the X). Only enabled tabs should be included.
|
|
952
|
+
*/
|
|
953
|
+
tabOrder?: ('findUnit' | 'features' | 'about' | 'map' | 'customTab1' | 'customTab2')[] | null;
|
|
946
954
|
findUnit?: {
|
|
947
955
|
/**
|
|
948
956
|
* Show or hide the "Find a unit" tab on the facility page.
|
|
@@ -2987,6 +2995,8 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
2987
2995
|
*/
|
|
2988
2996
|
export interface ContentTabsSelect<T extends boolean = true> {
|
|
2989
2997
|
defaultTab?: T;
|
|
2998
|
+
customizeTabOrder?: T;
|
|
2999
|
+
tabOrder?: T;
|
|
2990
3000
|
findUnit?:
|
|
2991
3001
|
| T
|
|
2992
3002
|
| {
|