@farris/ui-vue
Version:
Farris Vue, a Farris Design based Vue3 component library.
16 lines (15 loc) • 700 B
TypeScript
import { DesignerItemContext } from "../../../designer-canvas";
import { BaseControlProperty } from "../../../property-panel/src/composition/entity/base-property";
export declare class SplitterPaneProperty extends BaseControlProperty {
parentSplitterDirectionIsRow: boolean;
positionIndex: number;
notifyService: any;
designItemContext: DesignerItemContext | null;
constructor(componentId: string, designerHostService: any);
getPropertyConfig(propertyData: any, designContext: DesignerItemContext, parentDirectionIsRow?: boolean, index?: number): {
type: string;
categories: {};
};
private getAppearanceProperties;
private getBehaviorProperties;
}