@progress/kendo-angular-common 24.2.2 → 25.0.0-develop.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/fesm2022/progress-kendo-angular-common.mjs +176 -88
  2. package/index.d.ts +775 -20
  3. package/package.json +5 -5
  4. package/adornments/prefix.directive.d.ts +0 -36
  5. package/adornments/separator-orientation.d.ts +0 -8
  6. package/adornments/separator.component.d.ts +0 -47
  7. package/adornments/suffix.directive.d.ts +0 -42
  8. package/adornments.d.ts +0 -8
  9. package/directives.d.ts +0 -45
  10. package/dom-queries/closest-by-selector.d.ts +0 -5
  11. package/dom-queries/closest-in-scope.d.ts +0 -5
  12. package/dom-queries/closest.d.ts +0 -5
  13. package/dom-queries/contains.d.ts +0 -5
  14. package/dom-queries/find-element.d.ts +0 -5
  15. package/dom-queries/find-focusable-child.d.ts +0 -5
  16. package/dom-queries/find-focusable.d.ts +0 -5
  17. package/dom-queries/has-classes.d.ts +0 -5
  18. package/dom-queries/is-focusable-with-tab-key.d.ts +0 -5
  19. package/dom-queries/is-focusable.d.ts +0 -6
  20. package/dom-queries/is-visible.d.ts +0 -5
  21. package/dom-queries/matches-classes.d.ts +0 -5
  22. package/dom-queries/matches-node-name.d.ts +0 -5
  23. package/dom-queries/rtl-scroll-position.d.ts +0 -8
  24. package/dom-queries.d.ts +0 -19
  25. package/draggable/draggable.directive.d.ts +0 -23
  26. package/draggable.d.ts +0 -5
  27. package/enums/keys.d.ts +0 -74
  28. package/enums.d.ts +0 -5
  29. package/events/events-outside-angular.directive.d.ts +0 -22
  30. package/events.d.ts +0 -5
  31. package/localization/replace-message-placeholder.d.ts +0 -8
  32. package/preventable-event.d.ts +0 -18
  33. package/resize-sensor/compat.service.d.ts +0 -23
  34. package/resize-sensor/observer.service.d.ts +0 -19
  35. package/resize-sensor/resize-batch.service.d.ts +0 -24
  36. package/resize-sensor/resize-sensor.component.d.ts +0 -32
  37. package/resize-sensor/resize.service.d.ts +0 -28
  38. package/resize-sensor.d.ts +0 -8
  39. package/template-context/index.d.ts +0 -5
  40. package/template-context/template-context.directive.d.ts +0 -17
  41. package/toggle-button-tab-stop/toggle-button-tab-stop.d.ts +0 -11
  42. package/toggle-button-tab-stop/toggle-button-tab-stop.directive.d.ts +0 -72
  43. package/toggle-button-tab-stop.d.ts +0 -6
  44. package/tokens.d.ts +0 -14
  45. package/utils/any-changed.d.ts +0 -9
  46. package/utils/detect-browser.d.ts +0 -20
  47. package/utils/focusable-selectors.d.ts +0 -8
  48. package/utils/forms-utils.d.ts +0 -9
  49. package/utils/getter.d.ts +0 -8
  50. package/utils/guid.d.ts +0 -8
  51. package/utils/has-observers.d.ts +0 -9
  52. package/utils/html-attributes.d.ts +0 -33
  53. package/utils/is-changed.d.ts +0 -9
  54. package/utils/is-document-available.d.ts +0 -8
  55. package/utils/keys-normalizer.d.ts +0 -23
  56. package/utils/ng-class-parser.d.ts +0 -34
  57. package/utils/objects-equal.d.ts +0 -5
  58. package/utils/process-css-value.d.ts +0 -5
  59. package/utils/scrollbar.service.d.ts +0 -27
  60. package/utils/setter.d.ts +0 -8
  61. package/utils.d.ts +0 -14
  62. package/watermark/index.d.ts +0 -6
  63. package/watermark/utils.d.ts +0 -12
  64. package/watermark/validation.d.ts +0 -15
  65. package/watermark/watermark.component.d.ts +0 -44
@@ -1,28 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EventEmitter } from '@angular/core';
6
- import { ResizeBatchService } from './resize-batch.service';
7
- export declare const enum ServiceState {
8
- Initial = 0,
9
- Initializing = 1,
10
- Initialized = 2
11
- }
12
- export declare abstract class ResizeService {
13
- protected resizeBatchService: ResizeBatchService;
14
- resize: EventEmitter<any>;
15
- acceptedSize: boolean;
16
- lastWidth?: number;
17
- lastHeight?: number;
18
- protected state: ServiceState;
19
- protected parentElement: any;
20
- protected abstract init(): void;
21
- constructor(resizeBatchService: ResizeBatchService);
22
- acceptSize(size?: any): void;
23
- checkChanges(): void;
24
- destroy(): void;
25
- protected checkSize(): boolean;
26
- protected initSize(): void;
27
- protected measure(): any;
28
- }
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { ResizeSensorComponent } from './resize-sensor/resize-sensor.component';
6
- export { ResizeBatchService } from './resize-sensor/resize-batch.service';
7
- export { ResizeCompatService } from './resize-sensor/compat.service';
8
- export { ResizeObserverService } from './resize-sensor/observer.service';
@@ -1,5 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { TemplateContextDirective } from './template-context.directive';
@@ -1,17 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ViewContainerRef } from '@angular/core';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * @hidden
9
- */
10
- export declare class TemplateContextDirective {
11
- set templateContext(context: any);
12
- private insertedViewRef;
13
- private viewContainerRef;
14
- constructor(viewContainerRef: ViewContainerRef);
15
- static ɵfac: i0.ɵɵFactoryDeclaration<TemplateContextDirective, never>;
16
- static ɵdir: i0.ɵɵDirectiveDeclaration<TemplateContextDirective, "[templateContext]", never, { "templateContext": { "alias": "templateContext"; "required": false; }; }, {}, never, never, true, never>;
17
- }
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EventEmitter } from "@angular/core";
6
- /**
7
- * @hidden
8
- */
9
- export declare abstract class MultiTabStop {
10
- escape: EventEmitter<any>;
11
- }
@@ -1,72 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, NgZone, Renderer2, SimpleChanges } from "@angular/core";
6
- import { MultiTabStop } from "./toggle-button-tab-stop";
7
- import * as i0 from "@angular/core";
8
- /**
9
- * Includes the button that toggles the Popup in the tab sequence when applied
10
- * to a SplitButton, ComboBox, MultiComboBox, DatePicker, TimePicker, and DateTimePicker component.
11
- * ```ts-no-run
12
- * _@Component({
13
- * selector: 'my-app',
14
- * template: `
15
- * <kendo-combobox [data]="data"
16
- * kendoToggleButtonTabStop>
17
- * </kendo-combobox>
18
- *
19
- * <kendo-datepicker [(ngModel)]="value"
20
- * kendoToggleButtonTabStop>
21
- * </kendo-datepicker>
22
- * `
23
- * })
24
- * class AppComponent {}
25
- * ```
26
- */
27
- export declare class ToggleButtonTabStopDirective {
28
- private hostEl;
29
- private renderer;
30
- private zone;
31
- private hostComponent;
32
- /**
33
- * @hidden
34
- *
35
- * Allows setting the interactive state of the toggle button.
36
- *
37
- * @default true
38
- */
39
- active: any;
40
- /**
41
- * Defines the value of the `aria-label` attribute of the toggle button when active.
42
- *
43
- * @default "toggle popup"
44
- */
45
- toggleButtonAriaLabel: string;
46
- private button;
47
- private sub;
48
- private focusButton;
49
- private isSplitButton;
50
- private observer;
51
- /**
52
- * @hidden
53
- */
54
- constructor(hostEl: ElementRef, renderer: Renderer2, zone: NgZone, hostComponent: MultiTabStop);
55
- ngOnInit(): void;
56
- ngAfterViewInit(): void;
57
- ngOnChanges(changes: SimpleChanges): void;
58
- ngOnDestroy(): void;
59
- private activateButton;
60
- private deactivateButton;
61
- private onFocus;
62
- private onBlur;
63
- private onClick;
64
- private onKeyDown;
65
- private addListeners;
66
- private removeListeners;
67
- private focusToggleButton;
68
- private returnFocusToToggleButton;
69
- private initializeObserver;
70
- static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonTabStopDirective, never>;
71
- static ɵdir: i0.ɵɵDirectiveDeclaration<ToggleButtonTabStopDirective, "[kendoToggleButtonTabStop]", never, { "active": { "alias": "kendoToggleButtonTabStop"; "required": false; }; "toggleButtonAriaLabel": { "alias": "toggleButtonAriaLabel"; "required": false; }; }, {}, never, never, true, never>;
72
- }
@@ -1,6 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { ToggleButtonTabStopDirective } from './toggle-button-tab-stop/toggle-button-tab-stop.directive';
6
- export { MultiTabStop } from './toggle-button-tab-stop/toggle-button-tab-stop';
package/tokens.d.ts DELETED
@@ -1,14 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { InjectionToken } from '@angular/core';
6
- export declare class KendoInput {
7
- }
8
- /**
9
- * @hidden
10
- *
11
- * Token used by the kendoWebMcp directive to resolve the host component instance.
12
- * Each supported Kendo component provides itself under this token.
13
- */
14
- export declare const KENDO_WEBMCP_HOST: InjectionToken<any>;
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { SimpleChanges } from '@angular/core';
6
- /**
7
- * @hidden
8
- */
9
- export declare const anyChanged: (propertyNames: string[], changes: SimpleChanges, skipFirstChange?: boolean) => boolean;
@@ -1,20 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- *
8
- * Returns true if the used browser is Safari.
9
- */
10
- export declare const isSafari: (userAgent: any) => boolean;
11
- /**
12
- * @hidden
13
- *
14
- * Returns true if the used browser is Firefox.
15
- */
16
- export declare const isFirefox: (userAgent: any) => boolean;
17
- /**
18
- * @hidden
19
- */
20
- export declare const firefoxMaxHeight = 17895697;
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare const focusableSelector: string;
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { AbstractControl } from "@angular/forms";
6
- /**
7
- * @hidden
8
- */
9
- export declare const isControlRequired: (control: AbstractControl) => boolean;
package/utils/getter.d.ts DELETED
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare function getter(field: string): any;
package/utils/guid.d.ts DELETED
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare const guid: Function;
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EventEmitter } from '@angular/core';
6
- /**
7
- * @hidden
8
- */
9
- export declare const hasObservers: (emitter: EventEmitter<any>) => boolean;
@@ -1,33 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NgZone, Renderer2 } from "@angular/core";
6
- /**
7
- * @hidden
8
- */
9
- export declare const setHTMLAttributes: (attributes: {
10
- [key: string]: string;
11
- }, renderer: Renderer2, element: Element, zone?: NgZone) => void;
12
- /**
13
- * @hidden
14
- */
15
- export declare const removeHTMLAttributes: (attributes: {
16
- [key: string]: string;
17
- }, renderer: Renderer2, element: Element) => void;
18
- /**
19
- * @hidden
20
- */
21
- export declare const parseAttributes: (target: {
22
- [key: string]: string;
23
- }, source: {
24
- [key: string]: string;
25
- }) => {
26
- [key: string]: string;
27
- };
28
- /**
29
- * @hidden
30
- */
31
- export declare const applyAttributes: (attributes: {
32
- [key: string]: string;
33
- }, renderer: Renderer2, element: Element) => void;
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { SimpleChanges } from '@angular/core';
6
- /**
7
- * @hidden
8
- */
9
- export declare const isChanged: (propertyName: string, changes: SimpleChanges, skipFirstChange?: boolean) => boolean;
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare const isDocumentAvailable: () => boolean;
@@ -1,23 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- *
8
- * Normalizes keyboard events to ensure consistent key handling across different keyboard layouts.
9
- *
10
- * This function addresses the following scenarios:
11
- * 1. On some keyboards, PageUp/Down, Home/End, and arrow keys are mapped to Numpad keys
12
- * 2. For letter keys (KeyA-KeyZ), checks the deprecated keyCode property to handle non-QWERTY layouts
13
- * (e.g., AZERTY, QWERTZ) where event.code may not match the expected letter
14
- *
15
- * @param event - The keyboard event to normalize
16
- * @returns The normalized key code string (e.g., 'KeyA', 'ArrowDown', 'Enter')
17
- *
18
- * @example
19
- * // On an AZERTY layout, pressing Ctrl+A (where 'A' is physically at 'Q' position)
20
- * // event.code = 'KeyQ', event.keyCode = 65
21
- * const code = normalizeKeys(event); // Returns 'KeyA'
22
- */
23
- export declare const normalizeKeys: (event: KeyboardEvent) => string;
@@ -1,34 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare const isPresent: (value: any) => boolean;
9
- /**
10
- * @hidden
11
- */
12
- export declare const isObjectPresent: (value: any) => boolean;
13
- /**
14
- * @hidden
15
- */
16
- export declare const isString: (value: any) => value is string;
17
- /**
18
- * @hidden
19
- */
20
- export declare const isObject: (value: any) => value is object;
21
- /**
22
- * @hidden
23
- */
24
- export declare const isSet: (value: any) => value is Set<any>;
25
- /**
26
- * @hidden
27
- */
28
- export declare const splitStringToArray: (value: string) => string[];
29
- /**
30
- * Receives CSS class declarations either as an object, string, set or array and returns an array of the class names.
31
- *
32
- * @hidden
33
- */
34
- export declare const parseCSSClassNames: (value: any) => Array<string>;
@@ -1,5 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export declare const areObjectsEqual: (firstObject: any, secondObject: any) => boolean;
@@ -1,5 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export declare const processCssValue: (value: number | string) => string | null;
@@ -1,27 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EventEmitter, NgZone, OnDestroy } from '@angular/core';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * @hidden
9
- */
10
- export declare const scrollbarWidth: () => number;
11
- /**
12
- * @hidden
13
- */
14
- export declare const rtlScrollLeft: () => number;
15
- /**
16
- * @hidden
17
- */
18
- export declare class ScrollbarService implements OnDestroy {
19
- changes: EventEmitter<any>;
20
- private subscription;
21
- constructor(ngZone: NgZone);
22
- get scrollbarWidth(): number;
23
- get rtlScrollLeft(): number;
24
- ngOnDestroy(): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<ScrollbarService, never>;
26
- static ɵprov: i0.ɵɵInjectableDeclaration<ScrollbarService>;
27
- }
package/utils/setter.d.ts DELETED
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare function setter(field: string): any;
package/utils.d.ts DELETED
@@ -1,14 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { isDocumentAvailable } from './utils/is-document-available';
6
- export { isChanged } from './utils/is-changed';
7
- export { anyChanged } from './utils/any-changed';
8
- export { hasObservers } from './utils/has-observers';
9
- export { guid } from './utils/guid';
10
- export { isSafari, isFirefox, firefoxMaxHeight } from './utils/detect-browser';
11
- export * from './utils/html-attributes';
12
- export { isControlRequired } from './utils/forms-utils';
13
- export { areObjectsEqual } from './utils/objects-equal';
14
- export { processCssValue } from './utils/process-css-value';
@@ -1,6 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { WatermarkOverlayComponent } from './watermark.component';
6
- export { shouldShowValidationUI, getLicenseMessage } from './validation';
@@ -1,12 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare const watermarkStyles = "\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n opacity: 0.2;\n zIndex: 101;\n pointerEvents: none;\n backgroundImage: url('data:image/png;base64,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');\n";
9
- /**
10
- * @hidden
11
- */
12
- export declare const licenseKeyUrl = "https://www.telerik.com/kendo-angular-ui/components/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-banner";
@@ -1,15 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { LicenseMessage, PackageMetadata } from "@progress/kendo-licensing";
6
- /**
7
- * @hidden
8
- */
9
- export declare function shouldShowValidationUI(isPackageValid: boolean): boolean;
10
- /**
11
- * @hidden
12
- *
13
- * Returns the notification message to display, if any.
14
- */
15
- export declare function getLicenseMessage(meta: PackageMetadata): LicenseMessage | undefined;
@@ -1,44 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { AfterViewInit, ElementRef, OnDestroy, OnInit } from '@angular/core';
6
- import { LicenseMessage } from '@progress/kendo-licensing';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export declare class WatermarkOverlayComponent implements OnInit, AfterViewInit, OnDestroy {
12
- licenseMessage?: LicenseMessage;
13
- banner: ElementRef;
14
- watermarkStyle: string;
15
- isOpen: boolean;
16
- isMobile: boolean;
17
- isNarrow: boolean;
18
- isCloseHovered: boolean;
19
- isCTAHovered: boolean;
20
- bannerMounted: boolean;
21
- get messages(): LicenseMessage[];
22
- extraMessages: LicenseMessage[];
23
- get primaryMessage(): LicenseMessage;
24
- licenseKeyUrl: string;
25
- getContent(msg: LicenseMessage): {
26
- iconSrc?: string;
27
- title: string;
28
- description: string;
29
- buttonText: string;
30
- buttonLink: string;
31
- };
32
- private unsubscribeLicenseMessage;
33
- private unsubscribeResize;
34
- ngOnInit(): void;
35
- ngAfterViewInit(): void;
36
- ngOnDestroy(): void;
37
- closeBanner(): void;
38
- get isBannerRendered(): boolean;
39
- private subscribeLicenseMessage;
40
- private subscribeResize;
41
- resetPresenceCheck(): void;
42
- static ɵfac: i0.ɵɵFactoryDeclaration<WatermarkOverlayComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<WatermarkOverlayComponent, "div[kendoWatermarkOverlay], kendo-watermark-overlay", never, { "licenseMessage": { "alias": "licenseMessage"; "required": false; }; }, {}, never, never, true, never>;
44
- }