@syncfusion/ej2-inplace-editor 29.1.33 → 30.1.37

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 (57) hide show
  1. package/dist/ej2-inplace-editor.min.js +1 -1
  2. package/dist/ej2-inplace-editor.umd.min.js +1 -1
  3. package/dist/global/ej2-inplace-editor.min.js +1 -1
  4. package/dist/global/index.d.ts +1 -1
  5. package/dist/ts/index.d.ts +4 -0
  6. package/dist/ts/index.ts +4 -0
  7. package/dist/ts/inplace-editor/base/classes.d.ts +63 -0
  8. package/dist/ts/inplace-editor/base/classes.ts +63 -0
  9. package/dist/ts/inplace-editor/base/events.d.ts +17 -0
  10. package/dist/ts/inplace-editor/base/events.ts +18 -0
  11. package/dist/ts/inplace-editor/base/index.d.ts +10 -0
  12. package/dist/ts/inplace-editor/base/index.ts +10 -0
  13. package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +344 -0
  14. package/dist/ts/inplace-editor/base/inplace-editor.d.ts +623 -0
  15. package/dist/ts/inplace-editor/base/inplace-editor.ts +1762 -0
  16. package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
  17. package/dist/ts/inplace-editor/base/interface.ts +127 -0
  18. package/dist/ts/inplace-editor/base/models-model.d.ts +22 -0
  19. package/dist/ts/inplace-editor/base/models.d.ts +31 -0
  20. package/dist/ts/inplace-editor/base/models.ts +45 -0
  21. package/dist/ts/inplace-editor/base/util.d.ts +28 -0
  22. package/dist/ts/inplace-editor/base/util.ts +104 -0
  23. package/dist/ts/inplace-editor/index.d.ts +5 -0
  24. package/dist/ts/inplace-editor/index.ts +5 -0
  25. package/dist/ts/inplace-editor/modules/auto-complete.d.ts +34 -0
  26. package/dist/ts/inplace-editor/modules/auto-complete.ts +65 -0
  27. package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
  28. package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
  29. package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
  30. package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
  31. package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
  32. package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
  33. package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
  34. package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -0
  35. package/dist/ts/inplace-editor/modules/index.d.ts +12 -0
  36. package/dist/ts/inplace-editor/modules/index.ts +12 -0
  37. package/dist/ts/inplace-editor/modules/multi-select.d.ts +35 -0
  38. package/dist/ts/inplace-editor/modules/multi-select.ts +88 -0
  39. package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
  40. package/dist/ts/inplace-editor/modules/rte.ts +73 -0
  41. package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
  42. package/dist/ts/inplace-editor/modules/slider.ts +59 -0
  43. package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -0
  44. package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
  45. package/package.json +18 -19
  46. package/styles/bootstrap4-lite.css +10 -10
  47. package/styles/bootstrap4.css +10 -10
  48. package/styles/bootstrap5-dark-lite.css +9 -9
  49. package/styles/bootstrap5-dark.css +9 -9
  50. package/styles/bootstrap5-lite.css +2 -2
  51. package/styles/bootstrap5.3-lite.css +2 -2
  52. package/styles/bootstrap5.3.css +2 -2
  53. package/styles/bootstrap5.css +2 -2
  54. package/styles/inplace-editor/bootstrap4.css +10 -10
  55. package/styles/inplace-editor/bootstrap5-dark.css +9 -9
  56. package/styles/inplace-editor/bootstrap5.3.css +2 -2
  57. package/styles/inplace-editor/bootstrap5.css +2 -2
@@ -0,0 +1,623 @@
1
+ import { Component, INotifyPropertyChanged, EmitType } from '@syncfusion/ej2-base';
2
+ import { ModuleDeclaration } from '@syncfusion/ej2-base';
3
+ import { ButtonModel } from '@syncfusion/ej2-buttons';
4
+ import { RichTextEditorModel } from '@syncfusion/ej2-richtexteditor';
5
+ import { DatePickerModel, DateRange } from '@syncfusion/ej2-calendars';
6
+ import { DateTimePickerModel, DateRangePickerModel, TimePickerModel } from '@syncfusion/ej2-calendars';
7
+ import { NumericTextBoxModel, TextBoxModel } from '@syncfusion/ej2-inputs';
8
+ import { ColorPickerModel, MaskedTextBoxModel, SliderModel } from '@syncfusion/ej2-inputs';
9
+ import { AutoCompleteModel, ComboBoxModel, DropDownListModel, MultiSelectModel } from '@syncfusion/ej2-dropdowns';
10
+ import { Rte } from '../modules/rte';
11
+ import { Slider } from '../modules/slider';
12
+ import { ComboBox } from '../modules/combo-box';
13
+ import { TimePicker } from '../modules/time-picker';
14
+ import { MultiSelect } from '../modules/multi-select';
15
+ import { ColorPicker } from '../modules/color-picker';
16
+ import { AutoComplete } from '../modules/auto-complete';
17
+ import { DateRangePicker } from '../modules/date-range-picker';
18
+ import { InPlaceEditorModel } from './inplace-editor-model';
19
+ import { PopupSettingsModel } from './models-model';
20
+ import { ActionBeginEventArgs, ActionEventArgs, ValidateEventArgs, BeginEditEventArgs } from './interface';
21
+ import { ChangeEventArgs, EndEditEventArgs } from './interface';
22
+ /**
23
+ * Provides information about a SanitizeSelectors.
24
+ */
25
+ export interface SanitizeSelectors {
26
+ /** Returns the tags. */
27
+ tags?: string[];
28
+ /** Returns the attributes. */
29
+ attributes?: SanitizeRemoveAttrs[];
30
+ }
31
+ /**
32
+ * Provides information about a BeforeSanitizeHtml event.
33
+ */
34
+ export interface BeforeSanitizeHtmlArgs {
35
+ /** Illustrates whether the current action needs to be prevented or not. */
36
+ cancel?: boolean;
37
+ /** It is a callback function and executed it before our inbuilt action. It should return HTML as a string.
38
+ *
39
+ * @function
40
+ * @param {string} value - Returns the value.
41
+ * @returns {string} - returns the string value
42
+ */
43
+ helper?: Function;
44
+ /** Returns the selectors object which carrying both tags and attributes selectors to block list of cross-site scripting attack.
45
+ * Also possible to modify the block list in this event.
46
+ */
47
+ selectors?: SanitizeSelectors;
48
+ }
49
+ /**
50
+ * Provides information about a SanitizeRemoveAttributes.
51
+ */
52
+ export interface SanitizeRemoveAttrs {
53
+ /** Defines the attribute name to sanitize */
54
+ attribute?: string;
55
+ /** Defines the selector that sanitize the specified attributes within the selector */
56
+ selector?: string;
57
+ }
58
+ /**
59
+ * Specifies the mode to be render while editing.
60
+ */
61
+ export declare type RenderMode = 'Inline' | 'Popup';
62
+ /**
63
+ * Specifies the action to be perform when user clicks outside the container, that is focus out of editable content.
64
+ */
65
+ export declare type ActionBlur = 'Cancel' | 'Submit' | 'Ignore';
66
+ /**
67
+ * Specifies the event action of input to enter edit mode instead of using edit icon.
68
+ */
69
+ export declare type EditableType = 'Click' | 'DblClick' | 'EditIconClick';
70
+ /**
71
+ * Specifies the value to be set when initial rendering.
72
+ */
73
+ export declare type textOptionType = 'Never' | 'Always';
74
+ /**
75
+ * Specifies the adaptor type that are used DataManager to communicate with DataSource.
76
+ */
77
+ export declare type AdaptorType = 'UrlAdaptor' | 'ODataV4Adaptor' | 'WebApiAdaptor';
78
+ /**
79
+ * Specifies the type of components that integrated with In-place editor to make it as editable.
80
+ */
81
+ export declare type InputType = 'AutoComplete' | 'Color' | 'ComboBox' | 'Date' | 'DateRange' | 'DateTime' | 'DropDownList' | 'Mask' | 'MultiSelect' | 'Numeric' | 'RTE' | 'Slider' | 'Text' | 'Time';
82
+ /**
83
+ * ```html
84
+ * * The In-place editor control is used to edit an element in a place and to update the value in server.
85
+ * <div id='element' />
86
+ * <script>
87
+ * var editorObj = new InPlaceEditor();
88
+ * editorObj.appendTo('#element');
89
+ * </script>
90
+ * ```
91
+ */
92
+ export declare class InPlaceEditor extends Component<HTMLElement> implements INotifyPropertyChanged {
93
+ private tipObj;
94
+ private touchModule;
95
+ private loader;
96
+ private editEle;
97
+ private spinObj;
98
+ private formEle;
99
+ private valueEle;
100
+ private titleEle;
101
+ private editIcon;
102
+ private valueWrap;
103
+ private templateEle;
104
+ private containerEle;
105
+ private initRender;
106
+ private inlineWrapper;
107
+ private isTemplate;
108
+ private formValidate;
109
+ private componentObj;
110
+ private isExtModule;
111
+ private submitBtn;
112
+ private cancelBtn;
113
+ private isClearTarget;
114
+ private beginEditArgs;
115
+ private btnElements;
116
+ private dataManager;
117
+ private oldValue;
118
+ private componentRoot;
119
+ private dataAdaptor;
120
+ private prevValue;
121
+ private divComponents;
122
+ private clearComponents;
123
+ private dateType;
124
+ private inputDataEle;
125
+ private dropDownEle;
126
+ private compPrevValue;
127
+ private moduleList;
128
+ private afterOpenEvent;
129
+ private onScrollResizeHandler;
130
+ /**
131
+ * @hidden
132
+ */
133
+ printValue: string;
134
+ /**
135
+ * @hidden
136
+ */
137
+ needsID: boolean;
138
+ /**
139
+ * @hidden
140
+ */
141
+ atcModule: AutoComplete;
142
+ /**
143
+ * @hidden
144
+ */
145
+ colorModule: ColorPicker;
146
+ /**
147
+ * @hidden
148
+ */
149
+ comboBoxModule: ComboBox;
150
+ /**
151
+ * @hidden
152
+ */
153
+ dateRangeModule: DateRangePicker;
154
+ /**
155
+ * @hidden
156
+ */
157
+ multiSelectModule: MultiSelect;
158
+ /**
159
+ * @hidden
160
+ */
161
+ rteModule: Rte;
162
+ /**
163
+ * @hidden
164
+ */
165
+ sliderModule: Slider;
166
+ /**
167
+ * @hidden
168
+ */
169
+ timeModule: TimePicker;
170
+ /**
171
+ * Specifies the name of the field which is used to map data to the server.
172
+ * If name is not given, then component ID is taken as mapping field name.
173
+ *
174
+ * {% codeBlock src='inplace-editor/name/index.md' %}{% endcodeBlock %}
175
+ *
176
+ * @default ''
177
+ */
178
+ name: string;
179
+ /**
180
+ * Specifies the display value for input when original input value is empty.
181
+ *
182
+ * {% codeBlock src='inplace-editor/value/index.md' %}{% endcodeBlock %}
183
+ *
184
+ * @default null
185
+ * @isGenericType true
186
+ */
187
+ value: string | number | Date | string[] | Date[] | number[];
188
+ /**
189
+ * Specifies the HTML element ID as a string that can be added as a editable field.
190
+ *
191
+ * {% codeBlock src='inplace-editor/template/index.md' %}{% endcodeBlock %}
192
+ *
193
+ * @default ''
194
+ * @blazorType string
195
+ * @aspType string
196
+ */
197
+ template: string | HTMLElement | Function;
198
+ /**
199
+ * Defines whether to allow the cross-scripting site or not.
200
+ *
201
+ * @default true
202
+ */
203
+ enableHtmlSanitizer: boolean;
204
+ /**
205
+ * It enables or disables the parsing of HTML string content into HTML DOM elements for In-place Editor.
206
+ * If the value of the property is set to false, the In-place Editor value will be displayed as HTML string instead of HTML DOM elements.
207
+ *
208
+ * @default true
209
+ */
210
+ enableHtmlParse: boolean;
211
+ /**
212
+ * Defines single/multiple classes (separated by space) to be used for customization of In-place editor.
213
+ *
214
+ * @default ''
215
+ */
216
+ cssClass: string;
217
+ /**
218
+ * Defines the unique primary key of editable field which can be used for saving data in data-base.
219
+ *
220
+ * {% codeBlock src='inplace-editor/primary-key/index.md' %}{% endcodeBlock %}
221
+ *
222
+ * @default ''
223
+ */
224
+ primaryKey: string | number;
225
+ /**
226
+ * Sets the text to be shown when an element has 'Empty' value.
227
+ *
228
+ * {% codeBlock src='inplace-editor/empty-text/index.md' %}{% endcodeBlock %}
229
+ *
230
+ * @default 'Empty'
231
+ */
232
+ emptyText: string;
233
+ /**
234
+ * Gets the url for server submit action.
235
+ *
236
+ * {% codeBlock src='inplace-editor/url/index.md' %}{% endcodeBlock %}
237
+ *
238
+ * @default ''
239
+ */
240
+ url: string;
241
+ /**
242
+ * Specifies the mode to be render while editing. The possible modes are :
243
+ *
244
+ * - `Inline`: Editable content is displayed as inline text and ok/cancel buttons are displayed at right bottom corner of input.
245
+ * - `Popup`: Editable content and ok/cancel buttons are displayed inside popup while editing.
246
+ *
247
+ * {% codeBlock src='inplace-editor/mode/index.md' %}{% endcodeBlock %}
248
+ *
249
+ * @default 'Popup'
250
+ */
251
+ mode: RenderMode;
252
+ /**
253
+ * Specifies the adaptor type that are used DataManager to communicate with DataSource. The possible values are,
254
+ *
255
+ * - `UrlAdaptor`: Base adaptor for interacting with remote data services.
256
+ * - `ODataV4Adaptor`: Used to interact with ODataV4 service.
257
+ * - `WebApiAdaptor`: Used to interact with Web api created with OData endpoint.
258
+ *
259
+ * {% codeBlock src='inplace-editor/adaptor/index.md' %}{% endcodeBlock %}
260
+ *
261
+ * @default 'UrlAdaptor'
262
+ */
263
+ adaptor: AdaptorType;
264
+ /**
265
+ * Specifies the type of components that integrated with In-place editor to make it as editable.
266
+ *
267
+ * {% codeBlock src='inplace-editor/type/index.md' %}{% endcodeBlock %}
268
+ *
269
+ * @default 'Text'
270
+ */
271
+ type: InputType;
272
+ /**
273
+ * Specifies the event action of input to enter edit mode instead of using edit icon. The possible values are:
274
+ *
275
+ * - `Click`: Do the single click action on input to enter into the edit mode.
276
+ * - `DblClick`: Do the single double click action on input to enter into the edit mode.
277
+ * - `EditIconClick`: Disables the editing of event action of input and allows user to edit only through edit icon.
278
+ *
279
+ * {% codeBlock src='inplace-editor/editable-on/index.md' %}{% endcodeBlock %}
280
+ *
281
+ * @default 'Click'
282
+ */
283
+ editableOn: EditableType;
284
+ /**
285
+ * Specifies the option to be set on initial rendering. It is applicable for DropDownList,
286
+ * AutoComplete, ComboBox, and MultiSelect component types.
287
+ * The possible options are:
288
+ *
289
+ * - `Never`: The corresponding field value will never be set initially in the component.
290
+ * - `Always`: The corresponding field value will be set initially in the component.
291
+ *
292
+ * @default 'Never'
293
+ */
294
+ textOption: textOptionType;
295
+ /**
296
+ * Specifies the action to be perform when user clicks outside the container, that is focus out of editable content.
297
+ * The possible options are,
298
+ *
299
+ * - `Cancel`: Cancel's the editing and resets the old content.
300
+ * - `Submit`: Submit the edited content to the server.
301
+ * - `Ignore`: No action is perform with this type and allows to have many containers open.
302
+ *
303
+ * @default 'Submit'
304
+ */
305
+ actionOnBlur: ActionBlur;
306
+ /**
307
+ * Enable or disable persisting component's state between page reloads. If enabled, following list of states will be persisted.
308
+ * 1. value
309
+ *
310
+ * {% codeBlock src='inplace-editor/enable-persistence/index.md' %}{% endcodeBlock %}
311
+ *
312
+ * @default false
313
+ */
314
+ enablePersistence: boolean;
315
+ /**
316
+ * Specifies whether to enable editing mode or not.
317
+ *
318
+ * @default false
319
+ */
320
+ disabled: boolean;
321
+ /**
322
+ * Used to show/hide the ok/cancel buttons of In-place editor.
323
+ *
324
+ * {% codeBlock src='inplace-editor/show-buttons/index.md' %}{% endcodeBlock %}
325
+ *
326
+ * @default true
327
+ */
328
+ showButtons: boolean;
329
+ /**
330
+ * Specifies to show/hide the editing mode.
331
+ *
332
+ * {% codeBlock src='inplace-editor/enable-edit-mode/index.md' %}{% endcodeBlock %}
333
+ *
334
+ * @default false
335
+ */
336
+ enableEditMode: boolean;
337
+ /**
338
+ * Sets to trigger the submit action with enter key pressing of input.
339
+ *
340
+ * {% codeBlock src='inplace-editor/submit-on-enter/index.md' %}{% endcodeBlock %}
341
+ *
342
+ * @default true
343
+ */
344
+ submitOnEnter: boolean;
345
+ /**
346
+ * Specifies the object to customize popup display settings like positions, animation etc.
347
+ *
348
+ * {% codeBlock src='inplace-editor/popup-settings/index.md' %}{% endcodeBlock %}
349
+ *
350
+ * @default {}
351
+ */
352
+ popupSettings: PopupSettingsModel;
353
+ /**
354
+ * Specifies the model object configuration for the integrated components like AutoComplete, DatePicker,NumericTextBox, etc.
355
+ *
356
+ * {% codeBlock src='inplace-editor/model/index.md' %}{% endcodeBlock %}
357
+ *
358
+ * @default null
359
+ */
360
+ model: AutoCompleteModel | ColorPickerModel | ComboBoxModel | DatePickerModel | DateRangePickerModel | DateTimePickerModel | DropDownListModel | MaskedTextBoxModel | MultiSelectModel | NumericTextBoxModel | RichTextEditorModel | SliderModel | TextBoxModel | TimePickerModel;
361
+ /**
362
+ * Used to customize the "Save" button UI appearance by defining Button model configuration.
363
+ *
364
+ * {% codeBlock src='inplace-editor/save-button/index.md' %}{% endcodeBlock %}
365
+ *
366
+ * @default { iconCss: 'e-icons e-save-icon' }
367
+ */
368
+ saveButton: ButtonModel;
369
+ /**
370
+ * Used to customize the "Cancel" button UI appearance by defining Button model configuration.
371
+ *
372
+ * {% codeBlock src='inplace-editor/cancel-button/index.md' %}{% endcodeBlock %}
373
+ *
374
+ * @default { iconCss: 'e-icons e-cancel-icon' }
375
+ */
376
+ cancelButton: ButtonModel;
377
+ /**
378
+ * Maps the validation rules for the input.
379
+ *
380
+ * {% codeBlock src='inplace-editor/validation-rules/index.md' %}{% endcodeBlock %}
381
+ *
382
+ * @default null
383
+ */
384
+ validationRules: {
385
+ [name: string]: {
386
+ [rule: string]: Object;
387
+ };
388
+ };
389
+ /**
390
+ * The event will be fired once the component rendering is completed.
391
+ *
392
+ * @event 'event'
393
+ * @blazorProperty 'Created'
394
+ */
395
+ created: EmitType<Event>;
396
+ /**
397
+ * Event triggers before sanitize the value.
398
+ * @event
399
+ * @blazorProperty 'OnSanitizeHtml'
400
+ */
401
+ beforeSanitizeHtml: EmitType<BeforeSanitizeHtmlArgs>;
402
+ /**
403
+ * The event will be fired before the data submitted to the server.
404
+ *
405
+ * @event 'event'
406
+ * @blazorProperty 'OnActionBegin'
407
+ */
408
+ actionBegin: EmitType<ActionBeginEventArgs>;
409
+ /**
410
+ * The event will be fired when data submitted successfully to the server.
411
+ *
412
+ * @event 'event'
413
+ * @blazorProperty 'OnActionSuccess'
414
+ */
415
+ actionSuccess: EmitType<ActionEventArgs>;
416
+ /**
417
+ * The event will be fired when data submission failed.
418
+ *
419
+ * @event 'event'
420
+ * @blazorProperty 'OnActionFailure'
421
+ */
422
+ actionFailure: EmitType<ActionEventArgs>;
423
+ /**
424
+ * The event will be fired while validating current value.
425
+ *
426
+ * @event 'event'
427
+ * @blazorProperty 'Validating'
428
+ */
429
+ validating: EmitType<ValidateEventArgs>;
430
+ /**
431
+ * The event will be fired before changing the mode from default to edit mode.
432
+ *
433
+ * @event 'event'
434
+ */
435
+ beginEdit: EmitType<BeginEditEventArgs>;
436
+ /**
437
+ * The event will be fired when the edit action is finished and begin to submit/cancel the current value.
438
+ *
439
+ * @event 'event'
440
+ */
441
+ endEdit: EmitType<EndEditEventArgs>;
442
+ /**
443
+ * The event will be fired when the integrated component value has changed that render based on the `type` property
444
+ * in the In-place editor.
445
+ *
446
+ * @event 'event'
447
+ * @blazorProperty 'ValueChange'
448
+ */
449
+ change: EmitType<ChangeEventArgs>;
450
+ /**
451
+ * Event triggers when click the submit button.
452
+ *
453
+ * @event 'event'
454
+ * @blazorProperty 'SubmitClick'
455
+ */
456
+ submitClick: EmitType<MouseEvent>;
457
+ /**
458
+ * Event triggers when click the cancel button.
459
+ *
460
+ * @event 'event'
461
+ * @blazorProperty 'CancelClick'
462
+ */
463
+ cancelClick: EmitType<MouseEvent>;
464
+ /**
465
+ * The event will be fired when the component gets destroyed.
466
+ *
467
+ * @event 'event'
468
+ * @blazorProperty 'Destroyed'
469
+ */
470
+ destroyed: EmitType<Event>;
471
+ private initializeValue;
472
+ /**
473
+ * Initialize the event handler
474
+ *
475
+ * @returns {void}
476
+ * @private
477
+ */
478
+ protected preRender(): void;
479
+ /**
480
+ * To Initialize the In-place editor rendering
481
+ *
482
+ * @returns {void}
483
+ * @private
484
+ */
485
+ protected render(): void;
486
+ /**
487
+ * Initializes a new instance of the In-place editor class.
488
+ *
489
+ * @param {InPlaceEditorModel} options - Specifies In-place editor model properties as options.
490
+ * @param {string} element - Specifies the element for which In-place editor applies.
491
+ */
492
+ constructor(options?: InPlaceEditorModel, element?: string | HTMLElement);
493
+ private setClass;
494
+ private appendValueElement;
495
+ private renderInitialValue;
496
+ private getInitFieldMapValue;
497
+ private getInitQuery;
498
+ private updateInitValue;
499
+ private renderValue;
500
+ private isEditorOpen;
501
+ private renderEditor;
502
+ private renderAndOpen;
503
+ private checkRemoteData;
504
+ private showDropDownPopup;
505
+ private setAttribute;
506
+ private renderControl;
507
+ private appendButtons;
508
+ private renderButtons;
509
+ private createButtons;
510
+ private renderComponent;
511
+ private updateAdaptor;
512
+ private loadSpinner;
513
+ private removeSpinner;
514
+ private getEditElement;
515
+ private getLocale;
516
+ private checkValue;
517
+ extendModelValue(val: string | number | boolean | Date | object | DateRange | string[] | Date[] | number[] | boolean[] | object[]): void;
518
+ private updateValue;
519
+ private updateModelValue;
520
+ setValue(): void;
521
+ private getDropDownsValue;
522
+ private getSendValue;
523
+ private getRenderValue;
524
+ private setRtl;
525
+ private setFocus;
526
+ private removeEditor;
527
+ private destroyComponents;
528
+ private destroyButtons;
529
+ private getQuery;
530
+ private sendValue;
531
+ private isEmpty;
532
+ private checkIsTemplate;
533
+ private templateCompile;
534
+ /**
535
+ * @param {string} value - specifies the string value
536
+ * @returns {string} - returns the string
537
+ * @hidden
538
+ */
539
+ sanitizeHelper(value: string): string;
540
+ private appendTemplate;
541
+ private disable;
542
+ private enableEditor;
543
+ private checkValidation;
544
+ private afterValidation;
545
+ private toggleErrorClass;
546
+ private updateArrow;
547
+ private triggerSuccess;
548
+ private triggerEndEdit;
549
+ private wireEvents;
550
+ private wireDocEvent;
551
+ private wireEditEvent;
552
+ private wireEditorKeyDownEvent;
553
+ private wireBtnEvents;
554
+ private cancelBtnClick;
555
+ private unWireEvents;
556
+ private unWireDocEvent;
557
+ private unWireEditEvent;
558
+ private unWireEditorKeyDownEvent;
559
+ private submitPrevent;
560
+ private btnKeyDownHandler;
561
+ private afterOpenHandler;
562
+ private popMouseDown;
563
+ private doubleTapHandler;
564
+ private clickHandler;
565
+ private submitHandler;
566
+ private cancelHandler;
567
+ private popClickHandler;
568
+ private successHandler;
569
+ private failureHandler;
570
+ private enterKeyDownHandler;
571
+ private valueKeyDownHandler;
572
+ private mouseDownHandler;
573
+ private scrollResizeHandler;
574
+ private docClickHandler;
575
+ private changeHandler;
576
+ /**
577
+ * Validate current editor value.
578
+ *
579
+ * @returns {void}
580
+ */
581
+ validate(): void;
582
+ /**
583
+ * Submit the edited input value to the server.
584
+ *
585
+ * @returns {void}
586
+ */
587
+ save(): void;
588
+ /**
589
+ * Removes the control from the DOM and also removes all its related events.
590
+ *
591
+ * @returns {void}
592
+ */
593
+ destroy(): void;
594
+ /**
595
+ * Get the properties to be maintained in the persisted state.
596
+ *
597
+ * @returns {string} - returns the string
598
+ */
599
+ protected getPersistData(): string;
600
+ /**
601
+ * To provide the array of modules needed for component rendering
602
+ *
603
+ * @returns {ModuleDeclaration[]} - returns the module declaration
604
+ * @hidden
605
+ */
606
+ requiredModules(): ModuleDeclaration[];
607
+ /**
608
+ * Returns the current module name.
609
+ *
610
+ * @returns {string} - returrns the string
611
+ * @private
612
+ */
613
+ protected getModuleName(): string;
614
+ /**
615
+ * Gets called when the model property changes.The data that describes the old and new values of property that changed.
616
+ *
617
+ * @param {InPlaceEditorModel} newProp - specifies the new property
618
+ * @param {InPlaceEditorModel} oldProp - specifies the old property
619
+ * @returns {void}
620
+ * @private
621
+ */
622
+ onPropertyChanged(newProp: InPlaceEditorModel, oldProp: InPlaceEditorModel): void;
623
+ }