UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

21 lines 970 B
/** * Documents the possible EntityFinder version selection configurations */ export declare enum VersionSelectionType { /** Versions cannot be selected. In dual-pane mode, the version column will not be shown. */ DISALLOWED = "DISALLOWED", /** A numbered version must be selected. The current version of tables will not be shown. */ REQUIRED = "REQUIRED", /** * Versions can be selected, including "Always Latest" version for any versionable entity type. * This should be selected if updates to the entity will not be "tracked" by the use case, * i.e. the widget will update when the entity is updated. */ TRACKED = "TRACKED", /** * Versions can be selected. Tables and views will allow selection of the "Current"/"Draft" version. * This should be selected if updates to the entity will not be "tracked" by the use case. */ UNTRACKED = "UNTRACKED" } //# sourceMappingURL=VersionSelectionType.d.ts.map