UNPKG

@progress/kendo-angular-editor

Version:
17 lines (16 loc) 1.37 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * @hidden */ export const EditorErrorMessages = { schemaType: 'Expected value of type Schema. See https://www.telerik.com/kendo-angular-ui/components/editor/schema/', setSchemaOnce: 'The Schema cannot be changed dynamically. See https://www.telerik.com/kendo-angular-ui/components/editor/schema/', pluginsCallbackType: (arg) => `plugins must be a function, but received ${JSON.stringify(arg)}.`, pastedContentCallbackType: (arg) => `pastedContent must be a function, but received ${JSON.stringify(arg)}.`, setPluginsOnce: 'The plugins cannot be changed dynamically. See https://www.telerik.com/kendo-angular-ui/components/editor/plugins/', setPlaceHolderOnce: 'The placeholder cannot be changed dynamically. See https://www.telerik.com/kendo-angular-ui/components/editor/plugins/#toc-custom-plugins/', printTool: 'The Print tool and functionality are supported only in iframe mode. See https://www.telerik.com/kendo-angular-ui-develop/components/editor/api/EditorPrintDirective/' };