-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
707c040
commit b505ac4
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
formlyui/src/app/modules/kiss/kiss-components/visibility-modes.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
|
||
/** | ||
* Modo de visibilidad de la encuesta. | ||
* | ||
* - __Editor__ : Modo de edición. | ||
* - El usuario puede editar la encuesta. | ||
* | ||
* - __Preview__ : Modo de previsualización. | ||
* - El usuario editor puede ver como va a ser la encuesta. | ||
* | ||
* - __Answering__: Modo de contestando encuesta. | ||
* - El usuario puede contestar la encuesta. | ||
* | ||
* - __Closed__ : Modo de cerrada o finalizada. | ||
* - El usuario no puede editar ni contestar. | ||
* | ||
* - __Hidding__ : Modo de ocultación del control. | ||
* - El control será visible dependiendo la configuración del control de la encuesta. | ||
**/ | ||
export enum VisibilityMode { | ||
Editor = 'editor', | ||
Preview = 'preview', | ||
Answering = 'answering', | ||
Closed = 'closed', | ||
Hidding = 'hidding' | ||
} |