@progress/kendo-angular-common
Version:
Kendo UI for Angular - Utility Package
13 lines (12 loc) • 649 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
const allowed = ['telerik.com', 'progress.com', 'stackblitz.io', 'csb.app'];
/**
* @hidden
*/
export function shouldShowValidationUI(isPackageValid) {
const skip = allowed.some((hostname) => globalThis.document?.location.hostname.endsWith(hostname));
return !skip && !isPackageValid;
}