smart-webcomponents-angular
Version:
[](https://jqwidgets.com/license/)
46 lines (45 loc) • 3.74 kB
TypeScript
import { RibbonGroup } from './../index';
import { RibbonGroupDirection, RibbonGroupWrapSize, RibbonGroupDialogLauncher } from './../index';
import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
import { BaseElement } from './smart.element';
import * as i0 from "@angular/core";
export { RibbonGroupDirection, RibbonGroupWrapSize, RibbonGroupDialogLauncher, ElementRenderMode } from './../index';
export { Smart } from './smart.element';
export { RibbonGroup } from './../index';
export declare class RibbonGroupComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {
constructor(ref: ElementRef<RibbonGroup>);
private eventHandlers;
nativeElement: RibbonGroup;
/** @description Creates the component on demand.
* @param properties An optional object of properties, which will be added to the template binded ones.
*/
createComponent(properties?: {}): any;
/** @description Specifies the text or title displayed as the label for the ribbon group, helping users identify the purpose or category of the grouped controls within the ribbon interface. */
get label(): string;
set label(value: string);
/** @description Specifies the icon displayed for the ribbon group. This property defines the visual symbol or image that represents the group within the ribbon interface, enhancing usability and quick identification for users. */
get icon(): string;
set icon(value: string);
/** @description Specifies the CSS class applied to the ribbon group, which controls its appearance and styling. Use this property to customize the look and feel of the ribbon group by assigning one or more class names. */
get cssClass(): string;
set cssClass(value: string);
/** @description Defines the collection of items displayed within the ribbon group, specifying the individual controls, buttons, menus, or tools that appear as part of the ribbon interface. This property allows customization of the content and arrangement of the ribbon group elements. */
get ribbonItems(): any;
set ribbonItems(value: any);
/** @description Specifies the orientation of the ribbon group, such as horizontal or vertical, affecting how its contained items are arranged and displayed within the user interface. */
get direction(): RibbonGroupDirection | string;
set direction(value: RibbonGroupDirection | string);
/** @description Defines the configuration options for the dialog launcher button within the ribbon group, specifying its appearance, behavior, and associated actions when activated by the user. */
get dialogLauncher(): RibbonGroupDialogLauncher;
set dialogLauncher(value: RibbonGroupDialogLauncher);
/** @description Specifies the minimum width (in pixels) at which the ribbon group will be displayed on a single line. If the available space becomes smaller than this value, the ribbon group will automatically wrap to a new line to maintain a responsive layout. */
get wrapSize(): RibbonGroupWrapSize | string;
set wrapSize(value: RibbonGroupWrapSize | string);
get isRendered(): boolean;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngOnChanges(changes: SimpleChanges): void;
static ɵfac: i0.ɵɵFactoryDeclaration<RibbonGroupComponent, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<RibbonGroupComponent, "smart-ribbon-group, [smart-ribbon-group]", ["smart-ribbon-group"], { "label": "label"; "icon": "icon"; "cssClass": "cssClass"; "ribbonItems": "ribbonItems"; "direction": "direction"; "dialogLauncher": "dialogLauncher"; "wrapSize": "wrapSize"; }, {}, never>;
}