@syncfusion/ej2-inplace-editor 25.1.35 → 26.1.35

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 (104) hide show
  1. package/.eslintrc.json +3 -2
  2. package/dist/ej2-inplace-editor.umd.min.js +2 -2
  3. package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-inplace-editor.es2015.js +22 -43
  5. package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
  6. package/dist/es6/ej2-inplace-editor.es5.js +77 -98
  7. package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
  8. package/dist/global/ej2-inplace-editor.min.js +2 -2
  9. package/dist/global/ej2-inplace-editor.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/dist/ts/index.d.ts +4 -0
  12. package/dist/ts/index.ts +4 -0
  13. package/dist/ts/inplace-editor/base/classes.d.ts +63 -0
  14. package/dist/ts/inplace-editor/base/events.d.ts +17 -0
  15. package/dist/ts/inplace-editor/base/index.d.ts +10 -0
  16. package/dist/ts/inplace-editor/base/index.ts +10 -0
  17. package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +344 -0
  18. package/dist/ts/inplace-editor/base/inplace-editor.d.ts +623 -0
  19. package/dist/ts/inplace-editor/base/inplace-editor.ts +0 -1
  20. package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
  21. package/dist/ts/inplace-editor/base/models-model.d.ts +22 -0
  22. package/dist/ts/inplace-editor/base/models.d.ts +31 -0
  23. package/dist/ts/inplace-editor/base/models.ts +0 -2
  24. package/dist/ts/inplace-editor/base/util.d.ts +28 -0
  25. package/dist/ts/inplace-editor/index.d.ts +5 -0
  26. package/dist/ts/inplace-editor/index.ts +5 -0
  27. package/dist/ts/inplace-editor/modules/auto-complete.d.ts +34 -0
  28. package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
  29. package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
  30. package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
  31. package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
  32. package/dist/ts/inplace-editor/modules/index.d.ts +12 -0
  33. package/dist/ts/inplace-editor/modules/index.ts +12 -0
  34. package/dist/ts/inplace-editor/modules/multi-select.d.ts +35 -0
  35. package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
  36. package/dist/ts/inplace-editor/modules/rte.ts +3 -2
  37. package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
  38. package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -0
  39. package/package.json +18 -18
  40. package/src/inplace-editor/base/inplace-editor.d.ts +0 -1
  41. package/src/inplace-editor/base/interface.js +0 -1
  42. package/src/inplace-editor/base/models.js +0 -2
  43. package/styles/bootstrap-dark.css +65 -14
  44. package/styles/bootstrap-dark.scss +26 -1
  45. package/styles/bootstrap.css +67 -15
  46. package/styles/bootstrap.scss +26 -1
  47. package/styles/bootstrap4.css +71 -19
  48. package/styles/bootstrap4.scss +26 -1
  49. package/styles/bootstrap5-dark.css +62 -14
  50. package/styles/bootstrap5-dark.scss +26 -1
  51. package/styles/bootstrap5.css +62 -14
  52. package/styles/bootstrap5.scss +26 -1
  53. package/styles/fabric-dark.css +59 -13
  54. package/styles/fabric-dark.scss +26 -1
  55. package/styles/fabric.css +61 -14
  56. package/styles/fabric.scss +26 -1
  57. package/styles/fluent-dark.css +67 -14
  58. package/styles/fluent-dark.scss +26 -1
  59. package/styles/fluent.css +67 -14
  60. package/styles/fluent.scss +26 -1
  61. package/styles/fluent2.css +1996 -0
  62. package/styles/fluent2.scss +26 -0
  63. package/styles/highcontrast-light.css +62 -13
  64. package/styles/highcontrast-light.scss +26 -1
  65. package/styles/highcontrast.css +64 -14
  66. package/styles/highcontrast.scss +26 -1
  67. package/styles/inplace-editor/_bootstrap5.3-definition.scss +69 -0
  68. package/styles/inplace-editor/_fluent2-definition.scss +71 -0
  69. package/styles/inplace-editor/_theme.scss +8 -3
  70. package/styles/inplace-editor/bootstrap-dark.css +65 -14
  71. package/styles/inplace-editor/bootstrap.css +67 -15
  72. package/styles/inplace-editor/bootstrap4.css +71 -19
  73. package/styles/inplace-editor/bootstrap5-dark.css +62 -14
  74. package/styles/inplace-editor/bootstrap5.css +62 -14
  75. package/styles/inplace-editor/fabric-dark.css +59 -13
  76. package/styles/inplace-editor/fabric.css +61 -14
  77. package/styles/inplace-editor/fluent-dark.css +67 -14
  78. package/styles/inplace-editor/fluent.css +67 -14
  79. package/styles/inplace-editor/fluent2.css +1996 -0
  80. package/styles/inplace-editor/fluent2.scss +26 -0
  81. package/styles/inplace-editor/highcontrast-light.css +62 -13
  82. package/styles/inplace-editor/highcontrast.css +64 -14
  83. package/styles/inplace-editor/icons/_bootstrap5.3.scss +19 -0
  84. package/styles/inplace-editor/icons/_fluent2.scss +19 -0
  85. package/styles/inplace-editor/material-dark.css +88 -17
  86. package/styles/inplace-editor/material.css +104 -20
  87. package/styles/inplace-editor/material3-dark.css +101 -21
  88. package/styles/inplace-editor/material3.css +101 -21
  89. package/styles/inplace-editor/tailwind-dark.css +72 -17
  90. package/styles/inplace-editor/tailwind.css +72 -17
  91. package/styles/material-dark.css +88 -17
  92. package/styles/material-dark.scss +26 -1
  93. package/styles/material.css +104 -20
  94. package/styles/material.scss +26 -1
  95. package/styles/material3-dark.css +101 -21
  96. package/styles/material3-dark.scss +26 -1
  97. package/styles/material3.css +101 -21
  98. package/styles/material3.scss +26 -1
  99. package/styles/tailwind-dark.css +72 -17
  100. package/styles/tailwind-dark.scss +26 -1
  101. package/styles/tailwind.css +72 -17
  102. package/styles/tailwind.scss +26 -1
  103. package/CHANGELOG.md +0 -262
  104. package/dist/ej2-inplace-editor.min.js +0 -10
@@ -0,0 +1,117 @@
1
+ import { ButtonModel } from '@syncfusion/ej2-buttons';
2
+ import { ColorPicker, Slider } from '@syncfusion/ej2-inputs';
3
+ import { RichTextEditor } from '@syncfusion/ej2-richtexteditor';
4
+ import { DateRangePicker, TimePicker, DateRange } from '@syncfusion/ej2-calendars';
5
+ import { AutoComplete, ComboBox, MultiSelect, FieldSettingsModel } from '@syncfusion/ej2-dropdowns';
6
+ import { RenderMode } from './inplace-editor';
7
+ /**
8
+ * Defines component types that can be used in the In-place Editor.
9
+ *
10
+ * @hidden
11
+ */
12
+ export declare type Component = AutoComplete | ColorPicker | ComboBox | DateRangePicker | MultiSelect | RichTextEditor | Slider | TimePicker;
13
+ /**
14
+ * Provides information about a Notify.
15
+ */
16
+ export interface NotifyParams {
17
+ type?: string;
18
+ module: string;
19
+ target?: HTMLElement | HTMLInputElement;
20
+ }
21
+ /**
22
+ * Provides information about a Component.
23
+ */
24
+ export interface IComponent {
25
+ showPopup?(): void;
26
+ compObj: Component;
27
+ render(e: NotifyParams): void;
28
+ focus(): void;
29
+ updateValue(e: NotifyParams): void;
30
+ refresh?(): void;
31
+ getRenderValue?(): void;
32
+ }
33
+ /**
34
+ * Provides information about a Button.
35
+ */
36
+ export interface IButton {
37
+ type: string;
38
+ constant: string;
39
+ title: object;
40
+ className: string;
41
+ model: ButtonModel;
42
+ container: HTMLElement;
43
+ }
44
+ /**
45
+ * Provides information about a ActionBegin event.
46
+ */
47
+ export interface ActionBeginEventArgs {
48
+ /** Defines the name of the field */
49
+ data: {
50
+ [key: string]: string | number;
51
+ };
52
+ /** Prevent the submit action. */
53
+ cancel?: boolean;
54
+ }
55
+ /**
56
+ * Provides information about a Action event.
57
+ */
58
+ export interface ActionEventArgs {
59
+ /** Prevents the current value render in the editor. */
60
+ cancel?: boolean;
61
+ /** Defines the data manager action result. */
62
+ data: object;
63
+ /** Defines the current editor value */
64
+ value: string;
65
+ }
66
+ /**
67
+ * Provides information about a Form event.
68
+ */
69
+ export interface FormEventArgs {
70
+ inputName: string;
71
+ message: string;
72
+ element: HTMLInputElement;
73
+ status?: string;
74
+ errorElement?: HTMLElement;
75
+ }
76
+ /**
77
+ * Provides information about a Validate event.
78
+ */
79
+ export interface ValidateEventArgs extends ActionBeginEventArgs {
80
+ /** Defines form validation error message. */
81
+ errorMessage: string;
82
+ }
83
+ /**
84
+ * Provides information about a BeginEdit event.
85
+ */
86
+ export interface BeginEditEventArgs {
87
+ /** Specifies whether to cancel the open action of the editor. */
88
+ cancel?: boolean;
89
+ /** Specifies whether to cancel the focus action, before open a editor. */
90
+ cancelFocus?: boolean;
91
+ /** Defines the current editor mode. */
92
+ mode?: RenderMode;
93
+ }
94
+ /**
95
+ * Provides information about the EndEdit event.
96
+ */
97
+ export interface EndEditEventArgs {
98
+ /** Defines the type of action ends the edit. */
99
+ action?: string;
100
+ /** Specifies whether to cancel the end edit action. */
101
+ cancel?: boolean;
102
+ /** Defines the current editor mode. */
103
+ mode?: RenderMode;
104
+ }
105
+ /**
106
+ * Provides information about the Change event.
107
+ */
108
+ export interface ChangeEventArgs {
109
+ /** Returns the selected item as JSON Object from the AutoComplete/ComboBox/DropDownList data source. */
110
+ itemData?: FieldSettingsModel;
111
+ /** Returns the previous selected item as JSON Object from the AutoComplete/ComboBox/DropDownList data source. */
112
+ previousItemData?: FieldSettingsModel;
113
+ /** Returns the previous value of integrated component that renders based on the `type` property in the In-place editor. */
114
+ previousValue: string | string[] | number | number[] | boolean[] | Date | Date[] | DateRange;
115
+ /** Returns the value of integrated component that renders based on the `type` property in the In-place editor. */
116
+ value: string | string[] | number | number[] | boolean[] | Date | Date[] | DateRange;
117
+ }
@@ -0,0 +1,22 @@
1
+ import { ChildProperty, Property } from '@syncfusion/ej2-base';import { TooltipModel } from '@syncfusion/ej2-popups';
2
+
3
+ /**
4
+ * Interface for a class PopupSettings
5
+ */
6
+ export interface PopupSettingsModel {
7
+
8
+ /**
9
+ * Specifies title for the editor popup.
10
+ *
11
+ * @default ''
12
+ */
13
+ title?: string;
14
+
15
+ /**
16
+ * Specifies model for editor popup customization like position, animation,etc.
17
+ *
18
+ * @default null
19
+ */
20
+ model?: TooltipModel;
21
+
22
+ }
@@ -0,0 +1,31 @@
1
+ import { ChildProperty } from '@syncfusion/ej2-base';
2
+ import { TooltipModel } from '@syncfusion/ej2-popups';
3
+ /**
4
+ * Configures the popup settings of the In-place editor.
5
+ */
6
+ export declare class PopupSettings extends ChildProperty<PopupSettings> {
7
+ /**
8
+ * Specifies title for the editor popup.
9
+ *
10
+ * @default ''
11
+ */
12
+ title: string;
13
+ /**
14
+ * Specifies model for editor popup customization like position, animation,etc.
15
+ *
16
+ * @default null
17
+ */
18
+ model: TooltipModel;
19
+ }
20
+ /**
21
+ * @hidden
22
+ */
23
+ export declare const modulesList: {
24
+ [key: string]: string;
25
+ };
26
+ /**
27
+ * @hidden
28
+ */
29
+ export declare let localeConstant: {
30
+ [key: string]: object;
31
+ };
@@ -38,10 +38,8 @@ export const modulesList: { [key: string]: string } = {
38
38
  /**
39
39
  * @hidden
40
40
  */
41
- // eslint-disable-next-line
42
41
  export let localeConstant: { [key: string]: object } = {
43
42
  'Click': { 'editAreaClick': 'Click to edit' },
44
43
  'DblClick': { 'editAreaDoubleClick': 'Double click to edit' },
45
44
  'EditIconClick': { 'editAreaClick': 'Click to edit' }
46
- /* eslint-enable */
47
45
  };
@@ -0,0 +1,28 @@
1
+ import { RichTextEditorModel } from '@syncfusion/ej2-richtexteditor';
2
+ import { DatePickerModel } from '@syncfusion/ej2-calendars';
3
+ import { DateTimePickerModel, DateRangePickerModel, TimePickerModel } from '@syncfusion/ej2-calendars';
4
+ import { NumericTextBoxModel, TextBoxModel } from '@syncfusion/ej2-inputs';
5
+ import { ColorPickerModel, MaskedTextBoxModel, SliderModel } from '@syncfusion/ej2-inputs';
6
+ import { AutoCompleteModel, ComboBoxModel, DropDownListModel, MultiSelectModel } from '@syncfusion/ej2-dropdowns';
7
+ declare type valueType = string | number | Date | string[] | Date[] | number[];
8
+ declare type modelType = AutoCompleteModel | ColorPickerModel | ComboBoxModel | DatePickerModel | DateRangePickerModel | DateTimePickerModel | DropDownListModel | MaskedTextBoxModel | MultiSelectModel | NumericTextBoxModel | RichTextEditorModel | SliderModel | TextBoxModel | TimePickerModel;
9
+ /**
10
+ * @param {string} type - specifies the string type
11
+ * @param {valueType} val - specifies the value type
12
+ * @param {modelType} model - specifies the model type
13
+ * @returns {string} - returns the string
14
+ */
15
+ export declare function parseValue(type: string, val: valueType, model: modelType): string;
16
+ /**
17
+ * @param {string} type - specifies the string value
18
+ * @param {valueType} val - specifies the value type
19
+ * @returns {valueType} - returns the value type
20
+ */
21
+ export declare function getCompValue(type: string, val: valueType): valueType;
22
+ /**
23
+ * @param {string} value - specifies the string value
24
+ * @returns {string} - returns the string
25
+ * @hidden
26
+ */
27
+ export declare function encode(value: string): string;
28
+ export {};
@@ -0,0 +1,5 @@
1
+ /**
2
+ *
3
+ */
4
+ export * from './base/index';
5
+ export * from './modules/index';
@@ -0,0 +1,5 @@
1
+ /**
2
+ *
3
+ */
4
+ export * from './base/index';
5
+ export * from './modules/index';
@@ -0,0 +1,34 @@
1
+ import { AutoComplete as EJ2AutoComplete } from '@syncfusion/ej2-dropdowns';
2
+ import { InPlaceEditor } from '../base/inplace-editor';
3
+ import { NotifyParams, IComponent } from '../base/interface';
4
+ /**
5
+ * The `AutoComplete` module is used configure the properties of Auto complete type editor.
6
+ */
7
+ export declare class AutoComplete implements IComponent {
8
+ private base;
9
+ protected parent: InPlaceEditor;
10
+ compObj: EJ2AutoComplete;
11
+ constructor(parent?: InPlaceEditor);
12
+ render(e: NotifyParams): void;
13
+ /**
14
+ * @hidden
15
+ * @returns {void}
16
+ */
17
+ showPopup(): void;
18
+ focus(): void;
19
+ updateValue(e: NotifyParams): void;
20
+ /**
21
+ * Destroys the module.
22
+ *
23
+ * @function destroy
24
+ * @returns {void}
25
+ * @hidden
26
+ */
27
+ destroy(): void;
28
+ /**
29
+ * For internal use only - Get the module name.
30
+ *
31
+ * @returns {string} - returns the string
32
+ */
33
+ private getModuleName;
34
+ }
@@ -0,0 +1,19 @@
1
+ import { InPlaceEditor } from '../base/inplace-editor';
2
+ import { IComponent } from '../base/interface';
3
+ /**
4
+ * The `Base` module.
5
+ */
6
+ export declare class Base {
7
+ protected parent: InPlaceEditor;
8
+ protected module: IComponent;
9
+ constructor(parent: InPlaceEditor, module: IComponent);
10
+ private render;
11
+ private showPopup;
12
+ private focus;
13
+ private update;
14
+ private getValue;
15
+ private destroyComponent;
16
+ destroy(): void;
17
+ protected addEventListener(): void;
18
+ protected removeEventListener(): void;
19
+ }
@@ -0,0 +1,29 @@
1
+ import { ColorPicker as EJ2ColorPicker } from '@syncfusion/ej2-inputs';
2
+ import { InPlaceEditor } from '../base/inplace-editor';
3
+ import { NotifyParams, IComponent } from '../base/interface';
4
+ /**
5
+ * The `ColorPicker` module is used configure the properties of Color picker type editor.
6
+ */
7
+ export declare class ColorPicker implements IComponent {
8
+ private base;
9
+ protected parent: InPlaceEditor;
10
+ compObj: EJ2ColorPicker;
11
+ constructor(parent?: InPlaceEditor);
12
+ render(e: NotifyParams): void;
13
+ focus(): void;
14
+ updateValue(e: NotifyParams): void;
15
+ /**
16
+ * Destroys the module.
17
+ *
18
+ * @function destroy
19
+ * @returns {void}
20
+ * @hidden
21
+ */
22
+ destroy(): void;
23
+ /**
24
+ * For internal use only - Get the module name.
25
+ *
26
+ * @returns {string} - retunrs the string
27
+ */
28
+ private getModuleName;
29
+ }
@@ -0,0 +1,34 @@
1
+ import { ComboBox as EJ2ComboBox } from '@syncfusion/ej2-dropdowns';
2
+ import { InPlaceEditor } from '../base/inplace-editor';
3
+ import { NotifyParams, IComponent } from '../base/interface';
4
+ /**
5
+ * The `ComboBox` module is used configure the properties of Combo box type editor.
6
+ */
7
+ export declare class ComboBox implements IComponent {
8
+ private base;
9
+ protected parent: InPlaceEditor;
10
+ compObj: EJ2ComboBox;
11
+ constructor(parent?: InPlaceEditor);
12
+ render(e: NotifyParams): void;
13
+ focus(): void;
14
+ /**
15
+ * @hidden
16
+ * @returns {void}
17
+ */
18
+ showPopup(): void;
19
+ /**
20
+ * Destroys the module.
21
+ *
22
+ * @function destroy
23
+ * @returns {void}
24
+ * @hidden
25
+ */
26
+ destroy(): void;
27
+ updateValue(e: NotifyParams): void;
28
+ /**
29
+ * For internal use only - Get the module name.
30
+ *
31
+ * @returns {string} - returns the string
32
+ */
33
+ private getModuleName;
34
+ }
@@ -0,0 +1,29 @@
1
+ import { DateRangePicker as EJ2DateRangePicker } from '@syncfusion/ej2-calendars';
2
+ import { InPlaceEditor } from '../base/inplace-editor';
3
+ import { NotifyParams, IComponent } from '../base/interface';
4
+ /**
5
+ * The `DateRangePicker` module is used configure the properties of Date range picker type editor.
6
+ */
7
+ export declare class DateRangePicker implements IComponent {
8
+ private base;
9
+ compObj: EJ2DateRangePicker;
10
+ protected parent: InPlaceEditor;
11
+ constructor(parent?: InPlaceEditor);
12
+ render(e: NotifyParams): void;
13
+ focus(): void;
14
+ /**
15
+ * For internal use only - Get the module name.
16
+ *
17
+ * @returns {string} - returns the string
18
+ */
19
+ private getModuleName;
20
+ updateValue(e: NotifyParams): void;
21
+ /**
22
+ * Destroys the module.
23
+ *
24
+ * @function destroy
25
+ * @returns {void}
26
+ * @hidden
27
+ */
28
+ destroy(): void;
29
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ *
3
+ */
4
+ export * from './base-module';
5
+ export * from './auto-complete';
6
+ export * from './color-picker';
7
+ export * from './combo-box';
8
+ export * from './date-range-picker';
9
+ export * from './multi-select';
10
+ export * from './rte';
11
+ export * from './slider';
12
+ export * from './time-picker';
@@ -0,0 +1,12 @@
1
+ /**
2
+ *
3
+ */
4
+ export * from './base-module';
5
+ export * from './auto-complete';
6
+ export * from './color-picker';
7
+ export * from './combo-box';
8
+ export * from './date-range-picker';
9
+ export * from './multi-select';
10
+ export * from './rte';
11
+ export * from './slider';
12
+ export * from './time-picker';
@@ -0,0 +1,35 @@
1
+ import { MultiSelect as EJ2MultiSelect } from '@syncfusion/ej2-dropdowns';
2
+ import { InPlaceEditor } from '../base/inplace-editor';
3
+ import { NotifyParams, IComponent } from '../base/interface';
4
+ /**
5
+ * The `MultiSelect` module is used configure the properties of Multi select type editor.
6
+ */
7
+ export declare class MultiSelect implements IComponent {
8
+ private base;
9
+ protected parent: InPlaceEditor;
10
+ private isPopOpen;
11
+ compObj: EJ2MultiSelect;
12
+ private openEvent;
13
+ private closeEvent;
14
+ constructor(parent?: InPlaceEditor);
15
+ render(e: NotifyParams): void;
16
+ private openHandler;
17
+ private closeHandler;
18
+ focus(): void;
19
+ updateValue(e: NotifyParams): void;
20
+ getRenderValue(): void;
21
+ /**
22
+ * Destroys the module.
23
+ *
24
+ * @function destroy
25
+ * @returns {void}
26
+ * @hidden
27
+ */
28
+ destroy(): void;
29
+ /**
30
+ * For internal use only - Get the module name.
31
+ *
32
+ * @returns {string} - returns the string
33
+ */
34
+ private getModuleName;
35
+ }
@@ -0,0 +1,31 @@
1
+ import { RichTextEditor } from '@syncfusion/ej2-richtexteditor';
2
+ import { InPlaceEditor } from '../base/inplace-editor';
3
+ import { NotifyParams, IComponent } from '../base/interface';
4
+ /**
5
+ * The `RTE` module is used configure the properties of RTE type editor.
6
+ */
7
+ export declare class Rte implements IComponent {
8
+ private base;
9
+ protected parent: InPlaceEditor;
10
+ compObj: RichTextEditor;
11
+ constructor(parent?: InPlaceEditor);
12
+ render(e: NotifyParams): void;
13
+ focus(): void;
14
+ updateValue(e: NotifyParams): void;
15
+ private getRteValue;
16
+ refresh(): void;
17
+ /**
18
+ * Destroys the rte module.
19
+ *
20
+ * @function destroy
21
+ * @returns {void}
22
+ * @hidden
23
+ */
24
+ destroy(): void;
25
+ /**
26
+ * For internal use only - Get the module name.
27
+ *
28
+ * @returns {string} - returns the string
29
+ */
30
+ private getModuleName;
31
+ }
@@ -1,5 +1,5 @@
1
1
  import { RichTextEditor, RichTextEditorModel, HtmlEditor } from '@syncfusion/ej2-richtexteditor';
2
- import { MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager, PasteCleanup, EmojiPicker, Audio ,Video, FormatPainter, Count} from '@syncfusion/ej2-richtexteditor';
2
+ import { MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager, PasteCleanup, EmojiPicker, Audio , Video, FormatPainter, Count} from '@syncfusion/ej2-richtexteditor';
3
3
  import { Base } from './base-module';
4
4
  import { InPlaceEditor } from '../base/inplace-editor';
5
5
  import { NotifyParams, IComponent } from '../base/interface';
@@ -13,7 +13,8 @@ export class Rte implements IComponent {
13
13
  public compObj: RichTextEditor = undefined;
14
14
 
15
15
  public constructor(parent?: InPlaceEditor) {
16
- RichTextEditor.Inject(HtmlEditor, MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager, PasteCleanup, EmojiPicker, Audio ,Video, FormatPainter, Count);
16
+ RichTextEditor.Inject(HtmlEditor, MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table,
17
+ FileManager, PasteCleanup, EmojiPicker, Audio , Video, FormatPainter, Count);
17
18
  this.parent = parent;
18
19
  this.parent.rteModule = this;
19
20
  this.base = new Base(this.parent, this);
@@ -0,0 +1,30 @@
1
+ import { Slider as EJ2Slider } from '@syncfusion/ej2-inputs';
2
+ import { InPlaceEditor } from '../base/inplace-editor';
3
+ import { NotifyParams, IComponent } from '../base/interface';
4
+ /**
5
+ * The `Slider` module is used configure the properties of Slider type editor.
6
+ */
7
+ export declare class Slider implements IComponent {
8
+ private base;
9
+ protected parent: InPlaceEditor;
10
+ compObj: EJ2Slider;
11
+ constructor(parent?: InPlaceEditor);
12
+ render(e: NotifyParams): void;
13
+ focus(): void;
14
+ updateValue(e: NotifyParams): void;
15
+ refresh(): void;
16
+ /**
17
+ * Destroys the slider module.
18
+ *
19
+ * @function destroy
20
+ * @returns {void}
21
+ * @hidden
22
+ */
23
+ destroy(): void;
24
+ /**
25
+ * For internal use only - Get the module name.
26
+ *
27
+ * @returns {string} - returns the string
28
+ */
29
+ private getModuleName;
30
+ }
@@ -0,0 +1,29 @@
1
+ import { TimePicker as EJ2TimePicker } from '@syncfusion/ej2-calendars';
2
+ import { InPlaceEditor } from '../base/inplace-editor';
3
+ import { NotifyParams, IComponent } from '../base/interface';
4
+ /**
5
+ * The `TimePicker` module is used configure the properties of Time picker type editor.
6
+ */
7
+ export declare class TimePicker implements IComponent {
8
+ private base;
9
+ protected parent: InPlaceEditor;
10
+ compObj: EJ2TimePicker;
11
+ constructor(parent?: InPlaceEditor);
12
+ render(e: NotifyParams): void;
13
+ focus(): void;
14
+ updateValue(e: NotifyParams): void;
15
+ /**
16
+ * For internal use only - Get the module name.
17
+ *
18
+ * @returns {string} - returns the string
19
+ */
20
+ private getModuleName;
21
+ /**
22
+ * Destroys the module.
23
+ *
24
+ * @function destroy
25
+ * @returns {void}
26
+ * @hidden
27
+ */
28
+ destroy(): void;
29
+ }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-inplace-editor@*",
3
- "_id": "@syncfusion/ej2-inplace-editor@24.2.3",
3
+ "_id": "@syncfusion/ej2-inplace-editor@25.1.35",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-PZo0kebxvBLgEHJwOTBSWt+0jLRTtf+DNo93dMF2TiL1je666NtSca6PsNAhnEYgExGgZiJkfdoieysVVq374A==",
5
+ "_integrity": "sha512-JYlDibbKsD1TGQrn6HLFW6owdwG5SGOkBKfz7Il6eeHqShd39IA8Et9BdlwZ7CquxJ/b18Mqh/sJwmmOiEp03w==",
6
6
  "_location": "/@syncfusion/ej2-inplace-editor",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -24,10 +24,10 @@
24
24
  "/@syncfusion/ej2-react-inplace-editor",
25
25
  "/@syncfusion/ej2-vue-inplace-editor"
26
26
  ],
27
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-24.2.3.tgz",
28
- "_shasum": "23117610c1661cdebaf3aba48e62f7a8bfebd625",
27
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-25.1.35.tgz",
28
+ "_shasum": "2c149ccebde2d8ccf48c6577a4c4b973d6d8fc47",
29
29
  "_spec": "@syncfusion/ej2-inplace-editor@*",
30
- "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
30
+ "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
31
31
  "author": {
32
32
  "name": "Syncfusion Inc."
33
33
  },
@@ -36,18 +36,18 @@
36
36
  },
37
37
  "bundleDependencies": false,
38
38
  "dependencies": {
39
- "@syncfusion/ej2-base": "~25.1.35",
40
- "@syncfusion/ej2-buttons": "~25.1.35",
41
- "@syncfusion/ej2-calendars": "~25.1.35",
42
- "@syncfusion/ej2-data": "~25.1.35",
43
- "@syncfusion/ej2-dropdowns": "~25.1.35",
44
- "@syncfusion/ej2-inputs": "~25.1.35",
45
- "@syncfusion/ej2-lists": "~25.1.35",
46
- "@syncfusion/ej2-navigations": "~25.1.35",
47
- "@syncfusion/ej2-notifications": "~25.1.35",
48
- "@syncfusion/ej2-popups": "~25.1.35",
49
- "@syncfusion/ej2-richtexteditor": "~25.1.35",
50
- "@syncfusion/ej2-splitbuttons": "~25.1.35"
39
+ "@syncfusion/ej2-base": "~26.1.35",
40
+ "@syncfusion/ej2-buttons": "~26.1.35",
41
+ "@syncfusion/ej2-calendars": "~26.1.35",
42
+ "@syncfusion/ej2-data": "~26.1.35",
43
+ "@syncfusion/ej2-dropdowns": "~26.1.35",
44
+ "@syncfusion/ej2-inputs": "~26.1.35",
45
+ "@syncfusion/ej2-lists": "~26.1.35",
46
+ "@syncfusion/ej2-navigations": "~26.1.35",
47
+ "@syncfusion/ej2-notifications": "~26.1.35",
48
+ "@syncfusion/ej2-popups": "~26.1.35",
49
+ "@syncfusion/ej2-richtexteditor": "~26.1.35",
50
+ "@syncfusion/ej2-splitbuttons": "~26.1.35"
51
51
  },
52
52
  "deprecated": false,
53
53
  "description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server.",
@@ -70,6 +70,6 @@
70
70
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
71
71
  },
72
72
  "typings": "index.d.ts",
73
- "version": "25.1.35",
73
+ "version": "26.1.35",
74
74
  "sideEffects": false
75
75
  }
@@ -105,7 +105,6 @@ export declare class InPlaceEditor extends Component<HTMLElement> implements INo
105
105
  private initRender;
106
106
  private inlineWrapper;
107
107
  private isTemplate;
108
- private isVue;
109
108
  private formValidate;
110
109
  private componentObj;
111
110
  private isExtModule;
@@ -1 +0,0 @@
1
-
@@ -52,10 +52,8 @@ export var modulesList = {
52
52
  /**
53
53
  * @hidden
54
54
  */
55
- // eslint-disable-next-line
56
55
  export var localeConstant = {
57
56
  'Click': { 'editAreaClick': 'Click to edit' },
58
57
  'DblClick': { 'editAreaDoubleClick': 'Double click to edit' },
59
58
  'EditIconClick': { 'editAreaClick': 'Click to edit' }
60
- /* eslint-enable */
61
59
  };