@cmk/fe_utils
Version:
frontend utility library
24 lines (22 loc) • 505 B
text/typescript
export enum UI_POINTER_MODE {
mixed = 'mixed',
// design = "design",
production = 'production',
}
export const UI_POINTER_MODE_OPTIONS: {
value: string
label: string
tooltip: string
}[] = [
{
value: UI_POINTER_MODE.mixed,
label: 'Editor',
tooltip:
'Enables all pointer features of the editor and limited pointer features of the app',
},
{
value: UI_POINTER_MODE.production,
label: 'Production',
tooltip: 'Enables all pointer features of the app',
},
]