596312ab0e
* ProjectsAdd wrapper * WorkspaceMoveProject wrapper added * move wrapper finalized * passing through location * more cleanup * model add wrapper * permissions cleanup * add invite wrapper * vue-tippy bugfix * ViewerLimitsDialog prep * upgrade limit alert prep * limit alerts * movemanager fix * new add flow * slug update fix * add model flow * invites? * some extra fixes * move unmount fix? * more fixes * vue-tsc update * style: remove h-32 for smaller screens * vue-tsc parser fix * prep for new viewer limits dialog * updated viewer dialogs * comment variant cleanup * CR comments --------- Co-authored-by: michalspeckle <michal@speckle.systems>
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
export const ViewerLimitsDialogType = {
|
|
Version: 'version',
|
|
Comment: 'comment',
|
|
Federated: 'federated'
|
|
} as const
|
|
export type ViewerLimitsDialogType =
|
|
(typeof ViewerLimitsDialogType)[keyof typeof ViewerLimitsDialogType]
|