@syncfusion/ej2-inplace-editor 26.1.35 → 26.2.5
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/dist/ej2-inplace-editor.min.js +10 -0
- package/dist/ej2-inplace-editor.umd.min.js +1 -1
- package/dist/global/ej2-inplace-editor.min.js +1 -1
- package/dist/global/index.d.ts +1 -1
- package/hotfix/26.1.35_Vol2.txt +1 -0
- package/package.json +17 -17
- package/styles/bootstrap-dark.css +0 -2
- package/styles/bootstrap.css +0 -2
- package/styles/bootstrap4.css +1 -3
- package/styles/bootstrap5-dark.css +0 -2
- package/styles/bootstrap5.css +0 -2
- package/styles/fabric-dark.css +0 -2
- package/styles/fabric.css +0 -2
- package/styles/fluent-dark.css +0 -2
- package/styles/fluent.css +0 -2
- package/styles/fluent2.css +65 -67
- package/styles/highcontrast-light.css +0 -2
- package/styles/highcontrast.css +0 -2
- package/styles/inplace-editor/_layout.scss +0 -35
- package/styles/inplace-editor/_material3-definition.scss +0 -7
- package/styles/inplace-editor/_theme.scss +0 -29
- package/styles/inplace-editor/bootstrap-dark.css +0 -2
- package/styles/inplace-editor/bootstrap.css +0 -2
- package/styles/inplace-editor/bootstrap4.css +1 -3
- package/styles/inplace-editor/bootstrap5-dark.css +0 -2
- package/styles/inplace-editor/bootstrap5.css +0 -2
- package/styles/inplace-editor/fabric-dark.css +0 -2
- package/styles/inplace-editor/fabric.css +0 -2
- package/styles/inplace-editor/fluent-dark.css +0 -2
- package/styles/inplace-editor/fluent.css +0 -2
- package/styles/inplace-editor/fluent2.css +65 -67
- package/styles/inplace-editor/highcontrast-light.css +0 -2
- package/styles/inplace-editor/highcontrast.css +0 -2
- package/styles/inplace-editor/material-dark.css +0 -2
- package/styles/inplace-editor/material.css +0 -2
- package/styles/inplace-editor/material3-dark.css +0 -3
- package/styles/inplace-editor/material3.css +0 -3
- package/styles/inplace-editor/tailwind-dark.css +0 -2
- package/styles/inplace-editor/tailwind.css +0 -2
- package/styles/material-dark.css +0 -2
- package/styles/material.css +0 -2
- package/styles/material3-dark.css +0 -3
- package/styles/material3.css +0 -3
- package/styles/tailwind-dark.css +0 -2
- package/styles/tailwind.css +0 -2
- package/dist/ts/index.d.ts +0 -4
- package/dist/ts/index.ts +0 -4
- package/dist/ts/inplace-editor/base/classes.d.ts +0 -63
- package/dist/ts/inplace-editor/base/classes.ts +0 -63
- package/dist/ts/inplace-editor/base/events.d.ts +0 -17
- package/dist/ts/inplace-editor/base/events.ts +0 -18
- package/dist/ts/inplace-editor/base/index.d.ts +0 -10
- package/dist/ts/inplace-editor/base/index.ts +0 -10
- package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +0 -344
- package/dist/ts/inplace-editor/base/inplace-editor.d.ts +0 -623
- package/dist/ts/inplace-editor/base/inplace-editor.ts +0 -1758
- package/dist/ts/inplace-editor/base/interface.d.ts +0 -117
- package/dist/ts/inplace-editor/base/interface.ts +0 -127
- package/dist/ts/inplace-editor/base/models-model.d.ts +0 -22
- package/dist/ts/inplace-editor/base/models.d.ts +0 -31
- package/dist/ts/inplace-editor/base/models.ts +0 -45
- package/dist/ts/inplace-editor/base/util.d.ts +0 -28
- package/dist/ts/inplace-editor/base/util.ts +0 -104
- package/dist/ts/inplace-editor/index.d.ts +0 -5
- package/dist/ts/inplace-editor/index.ts +0 -5
- package/dist/ts/inplace-editor/modules/auto-complete.d.ts +0 -34
- package/dist/ts/inplace-editor/modules/auto-complete.ts +0 -65
- package/dist/ts/inplace-editor/modules/base-module.d.ts +0 -19
- package/dist/ts/inplace-editor/modules/base-module.ts +0 -74
- package/dist/ts/inplace-editor/modules/color-picker.d.ts +0 -29
- package/dist/ts/inplace-editor/modules/color-picker.ts +0 -55
- package/dist/ts/inplace-editor/modules/combo-box.d.ts +0 -34
- package/dist/ts/inplace-editor/modules/combo-box.ts +0 -63
- package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +0 -29
- package/dist/ts/inplace-editor/modules/date-range-picker.ts +0 -55
- package/dist/ts/inplace-editor/modules/index.d.ts +0 -12
- package/dist/ts/inplace-editor/modules/index.ts +0 -12
- package/dist/ts/inplace-editor/modules/multi-select.d.ts +0 -35
- package/dist/ts/inplace-editor/modules/multi-select.ts +0 -88
- package/dist/ts/inplace-editor/modules/rte.d.ts +0 -31
- package/dist/ts/inplace-editor/modules/rte.ts +0 -73
- package/dist/ts/inplace-editor/modules/slider.d.ts +0 -30
- package/dist/ts/inplace-editor/modules/slider.ts +0 -59
- package/dist/ts/inplace-editor/modules/time-picker.d.ts +0 -29
- package/dist/ts/inplace-editor/modules/time-picker.ts +0 -54
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { TimePicker as EJ2TimePicker, TimePickerModel } from '@syncfusion/ej2-calendars';
|
|
2
|
-
import { Base } from './base-module';
|
|
3
|
-
import { InPlaceEditor } from '../base/inplace-editor';
|
|
4
|
-
import { NotifyParams, IComponent } from '../base/interface';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* The `TimePicker` module is used configure the properties of Time picker type editor.
|
|
8
|
-
*/
|
|
9
|
-
export class TimePicker implements IComponent {
|
|
10
|
-
private base: Base;
|
|
11
|
-
protected parent: InPlaceEditor;
|
|
12
|
-
public compObj: EJ2TimePicker = undefined;
|
|
13
|
-
|
|
14
|
-
public constructor(parent?: InPlaceEditor) {
|
|
15
|
-
this.parent = parent;
|
|
16
|
-
this.parent.timeModule = this;
|
|
17
|
-
this.base = new Base(this.parent, this);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
public render(e: NotifyParams): void {
|
|
21
|
-
this.compObj = new EJ2TimePicker(this.parent.model as TimePickerModel);
|
|
22
|
-
this.compObj.appendTo(e.target as HTMLInputElement);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
public focus(): void {
|
|
26
|
-
this.compObj.focusIn();
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
public updateValue(e: NotifyParams): void {
|
|
30
|
-
if (this.compObj && e.type === 'Time') {
|
|
31
|
-
this.parent.setProperties({ value: this.compObj.value }, true);
|
|
32
|
-
this.parent.extendModelValue(this.compObj.value);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* For internal use only - Get the module name.
|
|
37
|
-
*
|
|
38
|
-
* @returns {string} - returns the string
|
|
39
|
-
*/
|
|
40
|
-
private getModuleName(): string {
|
|
41
|
-
return 'time-picker';
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
/**
|
|
45
|
-
* Destroys the module.
|
|
46
|
-
*
|
|
47
|
-
* @function destroy
|
|
48
|
-
* @returns {void}
|
|
49
|
-
* @hidden
|
|
50
|
-
*/
|
|
51
|
-
public destroy(): void {
|
|
52
|
-
this.base.destroy();
|
|
53
|
-
}
|
|
54
|
-
}
|