box.d.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*!
  2. * devextreme-angular
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. *
  8. * This software may be modified and distributed under the terms
  9. * of the MIT license. See the LICENSE file in the root of the project for details.
  10. *
  11. * https://github.com/DevExpress/devextreme-angular
  12. */
  13. import { EventEmitter, QueryList } from '@angular/core';
  14. import DevExpress from 'devextreme/bundles/dx.all';
  15. import { NestedOptionHost } from '../../core/nested-option';
  16. import { DxoBoxOptions } from './base/box-options';
  17. import { DxiItemComponent } from './item-dxi';
  18. export declare class DxoBoxComponent extends DxoBoxOptions {
  19. /**
  20. * This member supports the internal infrastructure and is not intended to be used directly from your code.
  21. */
  22. itemsChange: EventEmitter<Array<string | any | {
  23. baseSize?: number | string;
  24. box?: DevExpress.ui.dxBoxOptions;
  25. disabled?: boolean;
  26. html?: string;
  27. ratio?: number;
  28. shrink?: number;
  29. template?: any;
  30. text?: string;
  31. visible?: boolean;
  32. }>>;
  33. protected readonly _optionPath: string;
  34. itemsChildren: QueryList<DxiItemComponent>;
  35. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  36. }
  37. export declare class DxoBoxModule {
  38. }