@jsonforms/vue-vuetify
Version:
Vue Vuetify renderers for JSON Forms
20 lines (18 loc) • 789 B
TypeScript
import { ComputedRef } from 'vue';
export interface AdditionalPropertiesDefaultTranslation {
key: AdditionalPropertiesTranslationEnum;
default: (variable?: string | null) => string;
}
export declare enum AdditionalPropertiesTranslationEnum {
addTooltip = "addTooltip",
addAriaLabel = "addAriaLabel",
removeTooltip = "removeTooltip",
removeAriaLabel = "removeAriaLabel",
propertyNameLabel = "propertyNameLabel",
propertyNameInvalid = "propertyNameInvalid",
propertyAlreadyDefined = "propertyAlreadyDefined"
}
export type AdditionalPropertiesTranslations = {
[key in AdditionalPropertiesTranslationEnum]?: string | ComputedRef<string | null>;
};
export declare const additionalPropertiesDefaultTranslations: AdditionalPropertiesDefaultTranslation[];