editing.d.ts 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 DevExpress from 'devextreme/bundles/dx.all';
  14. import { NestedOptionHost } from '../../core/nested-option';
  15. import { NestedOption } from '../../core/nested-option';
  16. export declare class DxoEditingComponent extends NestedOption {
  17. allowAdding: boolean | Function;
  18. allowDeleting: boolean | Function;
  19. allowUpdating: boolean | Function;
  20. form: DevExpress.ui.dxFormOptions;
  21. mode: string;
  22. popup: DevExpress.ui.dxPopupOptions;
  23. refreshMode: string;
  24. selectTextOnEditStart: boolean;
  25. startEditAction: string;
  26. texts: {
  27. addRow?: string;
  28. cancelAllChanges?: string;
  29. cancelRowChanges?: string;
  30. confirmDeleteMessage?: string;
  31. confirmDeleteTitle?: string;
  32. deleteRow?: string;
  33. editRow?: string;
  34. saveAllChanges?: string;
  35. saveRowChanges?: string;
  36. undeleteRow?: string;
  37. validationCancelChanges?: string;
  38. } | {
  39. addRow?: string;
  40. addRowToNode?: string;
  41. cancelAllChanges?: string;
  42. cancelRowChanges?: string;
  43. confirmDeleteMessage?: string;
  44. confirmDeleteTitle?: string;
  45. deleteRow?: string;
  46. editRow?: string;
  47. saveAllChanges?: string;
  48. saveRowChanges?: string;
  49. undeleteRow?: string;
  50. validationCancelChanges?: string;
  51. };
  52. useIcons: boolean;
  53. allowDragging: boolean;
  54. allowResizing: boolean;
  55. protected readonly _optionPath: string;
  56. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  57. }
  58. export declare class DxoEditingModule {
  59. }