UNPKG

@itwin/appui-abstract

Version:
28 lines 1.36 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 Properties */ /** * Standard Editor Names for property editors. * @public */ export var StandardEditorNames; (function (StandardEditorNames) { StandardEditorNames["ColorPicker"] = "color-picker"; StandardEditorNames["LongDate"] = "long-date-picker"; StandardEditorNames["ShortDate"] = "short-date-picker"; StandardEditorNames["EnumButtonGroup"] = "enum-buttongroup"; StandardEditorNames["IconPicker"] = "icon-picker"; StandardEditorNames["MultiLine"] = "multi-line"; StandardEditorNames["NumberCustom"] = "number-custom"; StandardEditorNames["NumericInput"] = "numeric-input"; StandardEditorNames["Slider"] = "slider"; StandardEditorNames["Toggle"] = "toggle"; StandardEditorNames["WeightPicker"] = "weight-picker"; StandardEditorNames["ImageCheckBox"] = "image-check-box"; StandardEditorNames["ThemedEnum"] = "themed-enum"; })(StandardEditorNames || (StandardEditorNames = {})); //# sourceMappingURL=StandardEditorNames.js.map