@itwin/presentation-components
Version:
React components based on iTwin.js Presentation library
29 lines • 1.13 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
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.NavigationEditorName = exports.NumericEditorName = exports.QuantityEditorName = void 0;
const core_bentley_1 = require("@itwin/core-bentley");
const editorSuffix = core_bentley_1.Guid.createValue();
/**
* Name for `QuantityPropertyEditor`.
* @internal
*/
exports.QuantityEditorName = `presentation-quantity-editor-${editorSuffix}`;
/**
* Name for `NumericPropertyEditor`.
* @internal
*/
exports.NumericEditorName = `presentation-numeric-editor-${editorSuffix}`;
/**
* Name for `NavigationPropertyEditor`.
* @internal
*/
exports.NavigationEditorName = `presentation-navigation-editor-${editorSuffix}`;
//# sourceMappingURL=EditorNames.js.map