UNPKG

@itwin/presentation-common

Version:

Common pieces for iModel.js presentation packages

27 lines 1.39 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** @packageDocumentation * @module Content */ /** * Displayed content types. Affects how the content is formatted, e.g. * the [[ContentFlags]]. * * @public */ export var DefaultContentDisplayTypes; (function (DefaultContentDisplayTypes) { /** Unknown content type. */ DefaultContentDisplayTypes["Undefined"] = "Undefined"; /** Grid or table view content type. By default adds [[ContentFlags.ShowLabels]] flag. */ DefaultContentDisplayTypes["Grid"] = "Grid"; /** Property pane content type. By default adds [[ContentFlags.MergeResults]] flag. */ DefaultContentDisplayTypes["PropertyPane"] = "PropertyPane"; /** List content type. By default adds [[ContentFlags.NoFields]] and [[ContentFlags.ShowLabels]] flags */ DefaultContentDisplayTypes["List"] = "List"; /** Viewport content type. By default adds [[ContentFlags.KeysOnly]] flag. */ DefaultContentDisplayTypes["Viewport"] = "Graphics"; })(DefaultContentDisplayTypes || (DefaultContentDisplayTypes = {})); //# sourceMappingURL=DisplayTypes.js.map