@itwin/presentation-components
Version:
React components based on iTwin.js Presentation library
24 lines • 974 B
TypeScript
/** @packageDocumentation
* @module InstancesFilter
*/
import "./PresentationInstanceFilterProperty.scss";
import { PropertyDescription } from "@itwin/appui-abstract";
/**
* Props for [[PresentationInstanceFilterProperty]] component.
* @internal
*/
export interface PresentationInstanceFilterPropertyProps {
/** Description of property. */
propertyDescription: PropertyDescription;
/** Full name of property class. Format: `<schema-name>:<class-name>`. */
fullClassName: string;
/** Label of property category */
categoryLabel?: string;
}
/**
* Component for rendering property in [FilterBuilder]($components-react) property selector. Property category and
* class info is rendered in addition to property label.
* @internal
*/
export declare function PresentationInstanceFilterProperty(props: PresentationInstanceFilterPropertyProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=PresentationInstanceFilterProperty.d.ts.map