@arcgis/core
Version:
ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API
20 lines (18 loc) • 608 B
TypeScript
import type Accessor from "../../core/Accessor.js";
/** @since 5.0 */
export interface VisibleElementsProperties extends Partial<Pick<VisibleElements, "readOnlyNotice">> {}
/**
* An object containing properties that control the visibility of certain elements within the FeatureForm widget.
*
* @since 5.0
*/
export default class VisibleElements extends Accessor {
constructor(properties?: VisibleElementsProperties);
/**
* Default value is `true`. Indicates whether to display the read-only notice for the form.
*
* @default true
* @since 5.0
*/
accessor readOnlyNotice: boolean;
}