@progress/kendo-angular-ripple
Version:
Ripple Package for Angular
28 lines (27 loc) • 1.14 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { RippleContainerDirective } from "./ripple-container.directive";
/**
* Use the `KENDO_RIPPLE` utility array to add all `@progress/kendo-angular-ripple` related components and directives to a standalone Angular component.
*
* @example
* ```typescript
* import { Component } from '@angular/core';
* import { KENDO_RIPPLE } from '@progress/kendo-angular-ripple';
* import { KENDO_BUTTON } from "@progress/kendo-angular-buttons";
*
* @Component({
* standalone: true,
* imports: [KENDO_RIPPLE, KENDO_BUTTON],
* template: `
* <div kendoRippleContainer>
* <button kendoButton>Ripple Button</button>
* </div>
* `,
* })
* export class AppComponent {}
* ```
*/
export declare const KENDO_RIPPLE: readonly [typeof RippleContainerDirective];