@syncfusion/ej2-angular-inplace-editor 31.1.17 → 31.2.2-ngcc
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.
- package/@syncfusion/ej2-angular-inplace-editor.es5.js +279 -0
- package/@syncfusion/ej2-angular-inplace-editor.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-inplace-editor.js +260 -0
- package/@syncfusion/ej2-angular-inplace-editor.js.map +1 -0
- package/LICENSE +10 -0
- package/dist/ej2-angular-inplace-editor.umd.js +354 -0
- package/dist/ej2-angular-inplace-editor.umd.js.map +1 -0
- package/dist/ej2-angular-inplace-editor.umd.min.js +11 -0
- package/dist/ej2-angular-inplace-editor.umd.min.js.map +1 -0
- package/ej2-angular-inplace-editor.d.ts +5 -0
- package/ej2-angular-inplace-editor.metadata.json +1 -0
- package/package.json +17 -61
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +4 -4
- package/src/inplace-editor/inplaceeditor-all.module.d.ts +14 -20
- package/src/inplace-editor/inplaceeditor.component.d.ts +58 -61
- package/src/inplace-editor/inplaceeditor.module.d.ts +5 -11
- package/CHANGELOG.md +0 -262
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/index.mjs +0 -5
- package/esm2020/src/inplace-editor/inplaceeditor-all.module.mjs +0 -50
- package/esm2020/src/inplace-editor/inplaceeditor.component.mjs +0 -147
- package/esm2020/src/inplace-editor/inplaceeditor.module.mjs +0 -25
- package/esm2020/syncfusion-ej2-angular-inplace-editor.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-inplace-editor.mjs +0 -220
- package/fesm2015/syncfusion-ej2-angular-inplace-editor.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-inplace-editor.mjs +0 -220
- package/fesm2020/syncfusion-ej2-angular-inplace-editor.mjs.map +0 -1
- package/syncfusion-ej2-angular-inplace-editor.d.ts +0 -5
|
@@ -1,20 +1,14 @@
|
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
*/
|
|
16
|
-
export declare class InPlaceEditorAllModule {
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InPlaceEditorAllModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<InPlaceEditorAllModule, never, [typeof i1.CommonModule, typeof i2.InPlaceEditorModule], [typeof i2.InPlaceEditorModule]>;
|
|
19
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<InPlaceEditorAllModule>;
|
|
20
|
-
}
|
|
1
|
+
import { ValueProvider } from '@angular/core';
|
|
2
|
+
export declare const AutoCompleteService: ValueProvider;
|
|
3
|
+
export declare const ColorPickerService: ValueProvider;
|
|
4
|
+
export declare const ComboBoxService: ValueProvider;
|
|
5
|
+
export declare const DateRangePickerService: ValueProvider;
|
|
6
|
+
export declare const MultiSelectService: ValueProvider;
|
|
7
|
+
export declare const RteService: ValueProvider;
|
|
8
|
+
export declare const SliderService: ValueProvider;
|
|
9
|
+
export declare const TimePickerService: ValueProvider;
|
|
10
|
+
/**
|
|
11
|
+
* NgModule definition for the InPlaceEditor component with providers.
|
|
12
|
+
*/
|
|
13
|
+
export declare class InPlaceEditorAllModule {
|
|
14
|
+
}
|
|
@@ -1,61 +1,58 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { InPlaceEditor } from '@syncfusion/ej2-inplace-editor';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
* @
|
|
42
|
-
* @
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InPlaceEditorComponent, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InPlaceEditorComponent, "ejs-inplaceeditor", never, { "actionOnBlur": "actionOnBlur"; "adaptor": "adaptor"; "cancelButton": "cancelButton"; "cssClass": "cssClass"; "disabled": "disabled"; "editableOn": "editableOn"; "emptyText": "emptyText"; "enableEditMode": "enableEditMode"; "enableHtmlParse": "enableHtmlParse"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "locale": "locale"; "mode": "mode"; "model": "model"; "name": "name"; "popupSettings": "popupSettings"; "primaryKey": "primaryKey"; "saveButton": "saveButton"; "showButtons": "showButtons"; "submitOnEnter": "submitOnEnter"; "template": "template"; "textOption": "textOption"; "type": "type"; "url": "url"; "validationRules": "validationRules"; "value": "value"; }, { "focus": "focus"; "blur": "blur"; "actionBegin": "actionBegin"; "actionFailure": "actionFailure"; "actionSuccess": "actionSuccess"; "beforeSanitizeHtml": "beforeSanitizeHtml"; "beginEdit": "beginEdit"; "cancelClick": "cancelClick"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "endEdit": "endEdit"; "submitClick": "submitClick"; "validating": "validating"; "valueChange": "valueChange"; }, ["template"], never>;
|
|
61
|
-
}
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { InPlaceEditor } from '@syncfusion/ej2-inplace-editor';
|
|
4
|
+
export declare const inputs: string[];
|
|
5
|
+
export declare const outputs: string[];
|
|
6
|
+
export declare const twoWays: string[];
|
|
7
|
+
/**
|
|
8
|
+
* `ejs-inplaceeditor` represents the Angular InPlaceEditor Component.
|
|
9
|
+
* ```html
|
|
10
|
+
* <ejs-inplaceeditor></ejs-inplaceeditor>
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class InPlaceEditorComponent extends InPlaceEditor implements IComponentBase {
|
|
14
|
+
private ngEle;
|
|
15
|
+
private srenderer;
|
|
16
|
+
private viewContainerRef;
|
|
17
|
+
private injector;
|
|
18
|
+
private cdr;
|
|
19
|
+
formCompContext: any;
|
|
20
|
+
formContext: any;
|
|
21
|
+
tagObjects: any;
|
|
22
|
+
actionBegin: any;
|
|
23
|
+
actionFailure: any;
|
|
24
|
+
actionSuccess: any;
|
|
25
|
+
beforeSanitizeHtml: any;
|
|
26
|
+
beginEdit: any;
|
|
27
|
+
cancelClick: any;
|
|
28
|
+
change: any;
|
|
29
|
+
created: any;
|
|
30
|
+
destroyed: any;
|
|
31
|
+
endEdit: any;
|
|
32
|
+
submitClick: any;
|
|
33
|
+
validating: any;
|
|
34
|
+
valueChange: any;
|
|
35
|
+
/**
|
|
36
|
+
* Specifies the HTML element ID as a string that can be added as a editable field.
|
|
37
|
+
*
|
|
38
|
+
* {% codeBlock src='inplace-editor/template/index.md' %}{% endcodeBlock %}
|
|
39
|
+
*
|
|
40
|
+
* @default ''
|
|
41
|
+
* @blazortype string
|
|
42
|
+
* @asptype string
|
|
43
|
+
*/
|
|
44
|
+
template: any;
|
|
45
|
+
focus: any;
|
|
46
|
+
blur: any;
|
|
47
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
|
|
48
|
+
registerOnChange(registerFunction: (_: any) => void): void;
|
|
49
|
+
registerOnTouched(registerFunction: () => void): void;
|
|
50
|
+
writeValue(value: any): void;
|
|
51
|
+
setDisabledState(disabled: boolean): void;
|
|
52
|
+
ngOnInit(): void;
|
|
53
|
+
ngAfterViewInit(): void;
|
|
54
|
+
ngOnDestroy(): void;
|
|
55
|
+
ngAfterContentChecked(): void;
|
|
56
|
+
registerEvents: (eventList: string[]) => void;
|
|
57
|
+
addTwoWay: (propList: string[]) => void;
|
|
58
|
+
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
7
|
-
export declare class InPlaceEditorModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InPlaceEditorModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<InPlaceEditorModule, [typeof i1.InPlaceEditorComponent], [typeof i2.CommonModule], [typeof i1.InPlaceEditorComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<InPlaceEditorModule>;
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the InPlaceEditor component.
|
|
3
|
+
*/
|
|
4
|
+
export declare class InPlaceEditorModule {
|
|
5
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,262 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [Unreleased]
|
|
4
|
-
|
|
5
|
-
## 20.4.54 (2023-03-14)
|
|
6
|
-
|
|
7
|
-
### In-place Editor
|
|
8
|
-
|
|
9
|
-
#### Bug Fixes
|
|
10
|
-
|
|
11
|
-
- `#I440965` - Now, the validation works properly when using two way binding for the `value` property.
|
|
12
|
-
|
|
13
|
-
- `#I443357` - Now, when you click the cancel button in the In-place Editor, the Rich Text Editor will no longer be focused.
|
|
14
|
-
|
|
15
|
-
## 20.4.48 (2023-02-01)
|
|
16
|
-
|
|
17
|
-
### In-place Editor
|
|
18
|
-
|
|
19
|
-
#### Bug Fixes
|
|
20
|
-
|
|
21
|
-
- `#I427677` - Resolved issue with `maxLength` validation rules for RTE type in In-place Editor.
|
|
22
|
-
|
|
23
|
-
## 19.4.38 (2021-12-17)
|
|
24
|
-
|
|
25
|
-
### In-place Editor
|
|
26
|
-
|
|
27
|
-
#### Bug Fixes
|
|
28
|
-
|
|
29
|
-
- `#I341653` - The issue with "Window `resize` event listener is not removed properly" has been resolved.
|
|
30
|
-
|
|
31
|
-
## 19.2.51 (2021-08-03)
|
|
32
|
-
|
|
33
|
-
### In-place Editor
|
|
34
|
-
|
|
35
|
-
#### Bug Fixes
|
|
36
|
-
|
|
37
|
-
- `#I335868` - The issue with "value is not being reset after form validation fails, and the cancel button is pressed" has been resolved.
|
|
38
|
-
|
|
39
|
-
- `#I335868` - In popup mode, pressing the close-icon on the In-place editor `numeric` type changes the value to -1 has been resolved.
|
|
40
|
-
|
|
41
|
-
## 19.2.44 (2021-06-30)
|
|
42
|
-
|
|
43
|
-
### In-place Editor
|
|
44
|
-
|
|
45
|
-
#### New Features
|
|
46
|
-
|
|
47
|
-
- `#I311906`, `#FB23798` - Provided the new event `endEdit` that triggers when the edit action is finished and begin to submit/cancel the current value.
|
|
48
|
-
|
|
49
|
-
#### Bug Fixes
|
|
50
|
-
|
|
51
|
-
- `#I330556` - Resolved the exception raised, when the large value is typed and starting to edit for the second time in In-Place Editor.
|
|
52
|
-
|
|
53
|
-
## 18.4.30 (2020-12-17)
|
|
54
|
-
|
|
55
|
-
### In-place Editor
|
|
56
|
-
|
|
57
|
-
#### Bug Fixes
|
|
58
|
-
|
|
59
|
-
`#292832` - The issue with Validation is not working when template has more then two input elements" has been resolved.
|
|
60
|
-
|
|
61
|
-
## 18.2.59 (2020-09-21)
|
|
62
|
-
|
|
63
|
-
### In-place Editor
|
|
64
|
-
|
|
65
|
-
#### Bug Fixes
|
|
66
|
-
|
|
67
|
-
`#289326` - The issue with "Script error is thrown when configuring more than two validation rules in the In-place editor" has been resolved.
|
|
68
|
-
|
|
69
|
-
## 18.2.57 (2020-09-08)
|
|
70
|
-
|
|
71
|
-
### In-place Editor
|
|
72
|
-
|
|
73
|
-
#### New Features
|
|
74
|
-
|
|
75
|
-
- `#288860` - Provided the new events `submitClick` and `cancelClick` that triggers when clicking the In-place editor submit and cancel buttons.
|
|
76
|
-
|
|
77
|
-
## 18.2.54 (2020-08-18)
|
|
78
|
-
|
|
79
|
-
### In-place Editor
|
|
80
|
-
|
|
81
|
-
#### New Features
|
|
82
|
-
|
|
83
|
-
- `#279315` - Provided new event `change` that triggers when the integrated component value has changed that render based on the `type` property in the In-place editor.
|
|
84
|
-
|
|
85
|
-
## 18.2.48 (2020-08-04)
|
|
86
|
-
|
|
87
|
-
### In-place Editor
|
|
88
|
-
|
|
89
|
-
#### Bug Fixes
|
|
90
|
-
|
|
91
|
-
- `#284643` - The issue with "Keyborad actions closes the editor and calls the save action" has been resolved.
|
|
92
|
-
|
|
93
|
-
## 18.2.45 (2020-07-14)
|
|
94
|
-
|
|
95
|
-
### In-place Editor
|
|
96
|
-
|
|
97
|
-
#### Bug Fixes
|
|
98
|
-
|
|
99
|
-
- `#F154491` - The issue with "`OnActionBegin` event triggers only during the second time, when configuring validation with Date mode in the In-place Editor" has been resolved.
|
|
100
|
-
|
|
101
|
-
- `#283160` - The issue with "validation occurs, when the `validationRules` API has not been configured in the In-place Editor" has been resolved.
|
|
102
|
-
|
|
103
|
-
## 18.2.44 (2020-07-07)
|
|
104
|
-
|
|
105
|
-
### In-place Editor
|
|
106
|
-
|
|
107
|
-
#### Bug Fixes
|
|
108
|
-
|
|
109
|
-
- `#273057` - Resolved the `EnableHtmlSanitizer` property is not working properly for In-place Editor value.
|
|
110
|
-
|
|
111
|
-
## 17.4.51 (2020-02-25)
|
|
112
|
-
|
|
113
|
-
### In-place Editor
|
|
114
|
-
|
|
115
|
-
#### Bug Fixes
|
|
116
|
-
|
|
117
|
-
- `#262774` - Resolved the focus not maintained issue when `type` is set to `DropDown` and enabling the `allowFiltering`.
|
|
118
|
-
|
|
119
|
-
## 17.4.50 (2020-02-18)
|
|
120
|
-
|
|
121
|
-
### In-place Editor
|
|
122
|
-
|
|
123
|
-
#### Bug Fixes
|
|
124
|
-
|
|
125
|
-
- `#255914` - Provided the `textOption` property and setting the value to `Always` will display field value on initial load when DropDown components are configured with the `fields` property.
|
|
126
|
-
|
|
127
|
-
## 17.4.46 (2020-01-30)
|
|
128
|
-
|
|
129
|
-
### In-place Editor
|
|
130
|
-
|
|
131
|
-
#### New Features
|
|
132
|
-
|
|
133
|
-
- `#258695` - Provided `cancel` argument in `beginEdit` event to prevent the open action of the editor.
|
|
134
|
-
|
|
135
|
-
## 17.4.43 (2020-01-14)
|
|
136
|
-
|
|
137
|
-
### In-place Editor
|
|
138
|
-
|
|
139
|
-
#### New Features
|
|
140
|
-
|
|
141
|
-
- `#255914` - Provided actual `text` field value display on initial load, when DropDown components are configured with the `fields` property.
|
|
142
|
-
|
|
143
|
-
## 17.4.40 (2019-12-24)
|
|
144
|
-
|
|
145
|
-
### In-place Editor
|
|
146
|
-
|
|
147
|
-
#### Bug Fixes
|
|
148
|
-
|
|
149
|
-
- `#254606` - Web accessibility related issues have been resolved.
|
|
150
|
-
|
|
151
|
-
## 17.3.29 (2019-11-26)
|
|
152
|
-
|
|
153
|
-
### In-place Editor
|
|
154
|
-
|
|
155
|
-
#### Bug Fixes
|
|
156
|
-
|
|
157
|
-
- `#253385` - The issue with displaying tooltip in the edit mode in the In-place Editor has been resolved.
|
|
158
|
-
|
|
159
|
-
## 17.3.16 (2019-10-09)
|
|
160
|
-
|
|
161
|
-
### In-place Editor
|
|
162
|
-
|
|
163
|
-
#### Bug Fixes
|
|
164
|
-
|
|
165
|
-
- `#247721` - The issue with rendering the MultiSelect type of In-place editor while configuring remote data source has been resolved.
|
|
166
|
-
|
|
167
|
-
## 17.3.9-beta (2019-09-20)
|
|
168
|
-
|
|
169
|
-
### In-place Editor
|
|
170
|
-
|
|
171
|
-
#### Bug Fixes
|
|
172
|
-
|
|
173
|
-
- `#F146947` - Resolved the argument issue that returns text field instead of value field in the action begin event when rendering the Combo Box within the In-place Editor.
|
|
174
|
-
|
|
175
|
-
- `#248388` - Resolved the issue with configuring `cssClass` property to customize the appearance of sub-components of the In-place Editor.
|
|
176
|
-
|
|
177
|
-
## 17.2.48-beta (2019-08-28)
|
|
178
|
-
|
|
179
|
-
### In-place Editor
|
|
180
|
-
|
|
181
|
-
#### Bug Fixes
|
|
182
|
-
|
|
183
|
-
- The display format specified for the sub components in `In-place Editor`, will now be considered when initial value is provided.
|
|
184
|
-
|
|
185
|
-
## 17.2.35 (2019-07-17)
|
|
186
|
-
|
|
187
|
-
### In-place Editor
|
|
188
|
-
|
|
189
|
-
#### New Features
|
|
190
|
-
|
|
191
|
-
- `#240715` - Provided new event `beginEdit` that triggers when change to editing mode and it helps to skip the focus from `In-place Editor` component.
|
|
192
|
-
|
|
193
|
-
## 17.2.28-beta (2019-06-27)
|
|
194
|
-
|
|
195
|
-
### In-place Editor
|
|
196
|
-
|
|
197
|
-
#### Bug Fixes
|
|
198
|
-
|
|
199
|
-
- `#237441` - Modified value not updated, when using `RichTextEditor` with `Markdown` mode issue has been resolved
|
|
200
|
-
|
|
201
|
-
## 17.1.48 (2019-05-21)
|
|
202
|
-
|
|
203
|
-
### In-place Editor
|
|
204
|
-
|
|
205
|
-
#### Bug Fixes
|
|
206
|
-
|
|
207
|
-
- `#235175` - Issue with modules injection in Angular production mode that issue has been resolved.
|
|
208
|
-
|
|
209
|
-
## 17.1.47 (2019-05-14)
|
|
210
|
-
|
|
211
|
-
### In-place Editor
|
|
212
|
-
|
|
213
|
-
#### Bug Fixes
|
|
214
|
-
|
|
215
|
-
- Toolbar fails to render properly in `RichTextEditor` In-Place Editor when `afterOpen` is set, that issue has been fixed.
|
|
216
|
-
- Not able to hide the close icon issue has been fixed.
|
|
217
|
-
- Change event doesn't trigger, when `RichTextEditor` blurs that issue has been fixed.
|
|
218
|
-
|
|
219
|
-
## 16.4.53 (2019-02-13)
|
|
220
|
-
|
|
221
|
-
### In-place Editor
|
|
222
|
-
|
|
223
|
-
#### Bug Fixes
|
|
224
|
-
|
|
225
|
-
- Console error is thrown while validating `RTE` editor value issue has been fixed.
|
|
226
|
-
|
|
227
|
-
## 16.4.48 (2019-01-22)
|
|
228
|
-
|
|
229
|
-
### In-place Editor
|
|
230
|
-
|
|
231
|
-
#### New Features
|
|
232
|
-
|
|
233
|
-
- Type `number` support provided for `primaryKey` API.
|
|
234
|
-
|
|
235
|
-
#### Bug Fixes
|
|
236
|
-
|
|
237
|
-
- Formatting not applied to calendar component issue fixed.
|
|
238
|
-
- Key returned instead of value while using `fieldSettings` with `dropDown` components issue has been fixed.
|
|
239
|
-
|
|
240
|
-
## 16.4.44 (2018-12-24)
|
|
241
|
-
|
|
242
|
-
### In-place Editor
|
|
243
|
-
|
|
244
|
-
#### Bug Fixes
|
|
245
|
-
|
|
246
|
-
- `space` key action issue is fixed with clicking save and cancel buttons.
|
|
247
|
-
- Value persistence issue with `multi-select` when doing cancel action after removing selected item.
|
|
248
|
-
- Double-Click issue in IOS device is fixed.
|
|
249
|
-
- `Invalid background value` warning thrown in `In-place Editor`, that issue has been fixed.
|
|
250
|
-
|
|
251
|
-
## 16.4.40-beta (2018-12-10)
|
|
252
|
-
|
|
253
|
-
### In-place Editor
|
|
254
|
-
|
|
255
|
-
The In-place Editor component is used to edit and update the input value dynamically to the server. It supports integrating many component types such as “DropDownList”,”DatePicker”,”AutoComplete”, etc.
|
|
256
|
-
|
|
257
|
-
- **Render mode** - Provides two types of rendering modes when editing the input, namely “Inline” and “Popup”.
|
|
258
|
-
- **Component integration** - Support to integrate components such as “DropDownList”, “DatePicker”,” AutoComplete”, etc. to the In-place Editor.
|
|
259
|
-
- **Data binding** - Bind the In-place Editor component with an array of JSON objects or DataManager to save the edited data to the server.
|
|
260
|
-
- **Customization** - Offers UI customization such as popup, buttons, and also denotes editable content state.
|
|
261
|
-
- **Template** - Templates can be used to integrate custom controls to the In-place Editor.
|
|
262
|
-
- **Globalization** - Provides right to left and localization support.
|
package/esm2020/public_api.mjs
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './src/index';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NyYy9pbmRleCc7Il19
|
package/esm2020/src/index.mjs
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export { InPlaceEditorComponent } from './inplace-editor/inplaceeditor.component';
|
|
2
|
-
export { InPlaceEditorModule } from './inplace-editor/inplaceeditor.module';
|
|
3
|
-
export { InPlaceEditorAllModule, AutoCompleteService, ColorPickerService, ComboBoxService, DateRangePickerService, MultiSelectService, RteService, SliderService, TimePickerService } from './inplace-editor/inplaceeditor-all.module';
|
|
4
|
-
export * from '@syncfusion/ej2-inplace-editor';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHNCQUFzQixFQUFDLE1BQU0sMENBQTBDLENBQUM7QUFDakYsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUFDNUUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLG1CQUFtQixFQUFFLGtCQUFrQixFQUFFLGVBQWUsRUFBRSxzQkFBc0IsRUFBRSxrQkFBa0IsRUFBRSxVQUFVLEVBQUUsYUFBYSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sMkNBQTJDLENBQUM7QUFDdk8sY0FBYyxnQ0FBZ0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IEluUGxhY2VFZGl0b3JDb21wb25lbnR9IGZyb20gJy4vaW5wbGFjZS1lZGl0b3IvaW5wbGFjZWVkaXRvci5jb21wb25lbnQnO1xuZXhwb3J0IHsgSW5QbGFjZUVkaXRvck1vZHVsZSB9IGZyb20gJy4vaW5wbGFjZS1lZGl0b3IvaW5wbGFjZWVkaXRvci5tb2R1bGUnO1xuZXhwb3J0IHsgSW5QbGFjZUVkaXRvckFsbE1vZHVsZSwgQXV0b0NvbXBsZXRlU2VydmljZSwgQ29sb3JQaWNrZXJTZXJ2aWNlLCBDb21ib0JveFNlcnZpY2UsIERhdGVSYW5nZVBpY2tlclNlcnZpY2UsIE11bHRpU2VsZWN0U2VydmljZSwgUnRlU2VydmljZSwgU2xpZGVyU2VydmljZSwgVGltZVBpY2tlclNlcnZpY2UgfSBmcm9tICcuL2lucGxhY2UtZWRpdG9yL2lucGxhY2VlZGl0b3ItYWxsLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICdAc3luY2Z1c2lvbi9lajItaW5wbGFjZS1lZGl0b3InOyJdfQ==
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { InPlaceEditorModule } from './inplaceeditor.module';
|
|
4
|
-
import { AutoComplete, ColorPicker, ComboBox, DateRangePicker, MultiSelect, Rte, Slider, TimePicker } from '@syncfusion/ej2-inplace-editor';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export const AutoCompleteService = { provide: 'InPlace-EditorAutoComplete', useValue: AutoComplete };
|
|
7
|
-
export const ColorPickerService = { provide: 'InPlace-EditorColorPicker', useValue: ColorPicker };
|
|
8
|
-
export const ComboBoxService = { provide: 'InPlace-EditorComboBox', useValue: ComboBox };
|
|
9
|
-
export const DateRangePickerService = { provide: 'InPlace-EditorDateRangePicker', useValue: DateRangePicker };
|
|
10
|
-
export const MultiSelectService = { provide: 'InPlace-EditorMultiSelect', useValue: MultiSelect };
|
|
11
|
-
export const RteService = { provide: 'InPlace-EditorRte', useValue: Rte };
|
|
12
|
-
export const SliderService = { provide: 'InPlace-EditorSlider', useValue: Slider };
|
|
13
|
-
export const TimePickerService = { provide: 'InPlace-EditorTimePicker', useValue: TimePicker };
|
|
14
|
-
/**
|
|
15
|
-
* NgModule definition for the InPlaceEditor component with providers.
|
|
16
|
-
*/
|
|
17
|
-
export class InPlaceEditorAllModule {
|
|
18
|
-
}
|
|
19
|
-
InPlaceEditorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: InPlaceEditorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
20
|
-
InPlaceEditorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: InPlaceEditorAllModule, imports: [CommonModule, InPlaceEditorModule], exports: [InPlaceEditorModule] });
|
|
21
|
-
InPlaceEditorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: InPlaceEditorAllModule, providers: [
|
|
22
|
-
AutoCompleteService,
|
|
23
|
-
ColorPickerService,
|
|
24
|
-
ComboBoxService,
|
|
25
|
-
DateRangePickerService,
|
|
26
|
-
MultiSelectService,
|
|
27
|
-
RteService,
|
|
28
|
-
SliderService,
|
|
29
|
-
TimePickerService
|
|
30
|
-
], imports: [[CommonModule, InPlaceEditorModule], InPlaceEditorModule] });
|
|
31
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: InPlaceEditorAllModule, decorators: [{
|
|
32
|
-
type: NgModule,
|
|
33
|
-
args: [{
|
|
34
|
-
imports: [CommonModule, InPlaceEditorModule],
|
|
35
|
-
exports: [
|
|
36
|
-
InPlaceEditorModule
|
|
37
|
-
],
|
|
38
|
-
providers: [
|
|
39
|
-
AutoCompleteService,
|
|
40
|
-
ColorPickerService,
|
|
41
|
-
ComboBoxService,
|
|
42
|
-
DateRangePickerService,
|
|
43
|
-
MultiSelectService,
|
|
44
|
-
RteService,
|
|
45
|
-
SliderService,
|
|
46
|
-
TimePickerService
|
|
47
|
-
]
|
|
48
|
-
}]
|
|
49
|
-
}] });
|
|
50
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wbGFjZWVkaXRvci1hbGwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2lucGxhY2UtZWRpdG9yL2lucGxhY2VlZGl0b3ItYWxsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFL0MsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDN0QsT0FBTyxFQUFDLFlBQVksRUFBRSxXQUFXLEVBQUUsUUFBUSxFQUFFLGVBQWUsRUFBRSxXQUFXLEVBQUUsR0FBRyxFQUFFLE1BQU0sRUFBRSxVQUFVLEVBQUMsTUFBTSxnQ0FBZ0MsQ0FBQTs7QUFHekksTUFBTSxDQUFDLE1BQU0sbUJBQW1CLEdBQWtCLEVBQUUsT0FBTyxFQUFFLDRCQUE0QixFQUFFLFFBQVEsRUFBRSxZQUFZLEVBQUMsQ0FBQztBQUNuSCxNQUFNLENBQUMsTUFBTSxrQkFBa0IsR0FBa0IsRUFBRSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBQyxDQUFDO0FBQ2hILE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBa0IsRUFBRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsUUFBUSxFQUFFLFFBQVEsRUFBQyxDQUFDO0FBQ3ZHLE1BQU0sQ0FBQyxNQUFNLHNCQUFzQixHQUFrQixFQUFFLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxRQUFRLEVBQUUsZUFBZSxFQUFDLENBQUM7QUFDNUgsTUFBTSxDQUFDLE1BQU0sa0JBQWtCLEdBQWtCLEVBQUUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUMsQ0FBQztBQUNoSCxNQUFNLENBQUMsTUFBTSxVQUFVLEdBQWtCLEVBQUUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLFFBQVEsRUFBRSxHQUFHLEVBQUMsQ0FBQztBQUN4RixNQUFNLENBQUMsTUFBTSxhQUFhLEdBQWtCLEVBQUUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLFFBQVEsRUFBRSxNQUFNLEVBQUMsQ0FBQztBQUNqRyxNQUFNLENBQUMsTUFBTSxpQkFBaUIsR0FBa0IsRUFBRSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsUUFBUSxFQUFFLFVBQVUsRUFBQyxDQUFDO0FBRTdHOztHQUVHO0FBaUJILE1BQU0sT0FBTyxzQkFBc0I7O21IQUF0QixzQkFBc0I7b0hBQXRCLHNCQUFzQixZQWZyQixZQUFZLEVBQUUsbUJBQW1CLGFBRXZDLG1CQUFtQjtvSEFhZCxzQkFBc0IsYUFYckI7UUFDTixtQkFBbUI7UUFDbkIsa0JBQWtCO1FBQ2xCLGVBQWU7UUFDZixzQkFBc0I7UUFDdEIsa0JBQWtCO1FBQ2xCLFVBQVU7UUFDVixhQUFhO1FBQ2IsaUJBQWlCO0tBQ3BCLFlBYlEsQ0FBQyxZQUFZLEVBQUUsbUJBQW1CLENBQUMsRUFFeEMsbUJBQW1COzJGQWFkLHNCQUFzQjtrQkFoQmxDLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLG1CQUFtQixDQUFDO29CQUM1QyxPQUFPLEVBQUU7d0JBQ0wsbUJBQW1CO3FCQUN0QjtvQkFDRCxTQUFTLEVBQUM7d0JBQ04sbUJBQW1CO3dCQUNuQixrQkFBa0I7d0JBQ2xCLGVBQWU7d0JBQ2Ysc0JBQXNCO3dCQUN0QixrQkFBa0I7d0JBQ2xCLFVBQVU7d0JBQ1YsYUFBYTt3QkFDYixpQkFBaUI7cUJBQ3BCO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUsIFZhbHVlUHJvdmlkZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBJblBsYWNlRWRpdG9yQ29tcG9uZW50IH0gZnJvbSAnLi9pbnBsYWNlZWRpdG9yLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBJblBsYWNlRWRpdG9yTW9kdWxlIH0gZnJvbSAnLi9pbnBsYWNlZWRpdG9yLm1vZHVsZSc7XG5pbXBvcnQge0F1dG9Db21wbGV0ZSwgQ29sb3JQaWNrZXIsIENvbWJvQm94LCBEYXRlUmFuZ2VQaWNrZXIsIE11bHRpU2VsZWN0LCBSdGUsIFNsaWRlciwgVGltZVBpY2tlcn0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLWlucGxhY2UtZWRpdG9yJ1xuXG5cbmV4cG9ydCBjb25zdCBBdXRvQ29tcGxldGVTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnSW5QbGFjZS1FZGl0b3JBdXRvQ29tcGxldGUnLCB1c2VWYWx1ZTogQXV0b0NvbXBsZXRlfTtcbmV4cG9ydCBjb25zdCBDb2xvclBpY2tlclNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdJblBsYWNlLUVkaXRvckNvbG9yUGlja2VyJywgdXNlVmFsdWU6IENvbG9yUGlja2VyfTtcbmV4cG9ydCBjb25zdCBDb21ib0JveFNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdJblBsYWNlLUVkaXRvckNvbWJvQm94JywgdXNlVmFsdWU6IENvbWJvQm94fTtcbmV4cG9ydCBjb25zdCBEYXRlUmFuZ2VQaWNrZXJTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnSW5QbGFjZS1FZGl0b3JEYXRlUmFuZ2VQaWNrZXInLCB1c2VWYWx1ZTogRGF0ZVJhbmdlUGlja2VyfTtcbmV4cG9ydCBjb25zdCBNdWx0aVNlbGVjdFNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdJblBsYWNlLUVkaXRvck11bHRpU2VsZWN0JywgdXNlVmFsdWU6IE11bHRpU2VsZWN0fTtcbmV4cG9ydCBjb25zdCBSdGVTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnSW5QbGFjZS1FZGl0b3JSdGUnLCB1c2VWYWx1ZTogUnRlfTtcbmV4cG9ydCBjb25zdCBTbGlkZXJTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnSW5QbGFjZS1FZGl0b3JTbGlkZXInLCB1c2VWYWx1ZTogU2xpZGVyfTtcbmV4cG9ydCBjb25zdCBUaW1lUGlja2VyU2VydmljZTogVmFsdWVQcm92aWRlciA9IHsgcHJvdmlkZTogJ0luUGxhY2UtRWRpdG9yVGltZVBpY2tlcicsIHVzZVZhbHVlOiBUaW1lUGlja2VyfTtcblxuLyoqXG4gKiBOZ01vZHVsZSBkZWZpbml0aW9uIGZvciB0aGUgSW5QbGFjZUVkaXRvciBjb21wb25lbnQgd2l0aCBwcm92aWRlcnMuXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgSW5QbGFjZUVkaXRvck1vZHVsZV0sXG4gICAgZXhwb3J0czogW1xuICAgICAgICBJblBsYWNlRWRpdG9yTW9kdWxlXG4gICAgXSxcbiAgICBwcm92aWRlcnM6W1xuICAgICAgICBBdXRvQ29tcGxldGVTZXJ2aWNlLFxuICAgICAgICBDb2xvclBpY2tlclNlcnZpY2UsXG4gICAgICAgIENvbWJvQm94U2VydmljZSxcbiAgICAgICAgRGF0ZVJhbmdlUGlja2VyU2VydmljZSxcbiAgICAgICAgTXVsdGlTZWxlY3RTZXJ2aWNlLFxuICAgICAgICBSdGVTZXJ2aWNlLFxuICAgICAgICBTbGlkZXJTZXJ2aWNlLFxuICAgICAgICBUaW1lUGlja2VyU2VydmljZVxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgSW5QbGFjZUVkaXRvckFsbE1vZHVsZSB7IH0iXX0=
|