Property Editor Value Summary
A guide to adding a Value Summary to a custom Property Editor in Umbraco.
Defining the Value Type
export interface MyPropertyEditorValue {
value: string;
label: string;
}
export const MY_PROPERTY_EDITOR_VALUE_TYPE = 'My.PropertyEditor.Alias' as const;
declare global {
interface UmbValueTypeMap {
[MY_PROPERTY_EDITOR_VALUE_TYPE]: MyPropertyEditorValue;
}
}Registering the Value Summary
Implementing the Element
Last updated
Was this helpful?