@itwin/appui-abstract
Version:
iTwin.js UI abstractions
28 lines • 1.36 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* 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