Reinstated (and deprecated) the submitLabel property on public interfaces

This commit is contained in:
leekelleher
2024-08-12 18:42:30 +01:00
parent 7158112c45
commit aa5a8c5926
2 changed files with 8 additions and 2 deletions

View File

@@ -1,6 +1,9 @@
import { UmbModalToken } from './modal-token.js';
export interface UmbPropertyEditorUIPickerModalData {}
export interface UmbPropertyEditorUIPickerModalData {
/** @deprecated This property will be removed in Umbraco 15. */
submitLabel?: string;
}
export type UmbPropertyEditorUIPickerModalValue = {
selection: Array<string>;

View File

@@ -1,6 +1,9 @@
import { UmbModalToken } from '@umbraco-cms/backoffice/modal';
export interface UmbDataTypePickerFlowModalData {}
export interface UmbDataTypePickerFlowModalData {
/** @deprecated This property will be removed in Umbraco 15. */
submitLabel?: string;
}
export type UmbDataTypePickerFlowModalValue = {
selection: Array<string>;