@syncfusion/ej2-inplace-editor 19.4.52 → 20.1.47
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +41 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +27 -0
- package/CHANGELOG.md +1 -11
- package/README.md +1 -1
- 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/dist/ts/inplace-editor/base/classes.ts +63 -0
- package/dist/ts/inplace-editor/base/events.ts +18 -0
- package/dist/ts/inplace-editor/base/inplace-editor.ts +1750 -0
- package/dist/ts/inplace-editor/base/interface.ts +129 -0
- package/dist/ts/inplace-editor/base/models.ts +49 -0
- package/dist/ts/inplace-editor/base/util.ts +106 -0
- package/dist/ts/inplace-editor/modules/auto-complete.ts +65 -0
- package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
- package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/multi-select.ts +88 -0
- package/dist/ts/inplace-editor/modules/rte.ts +72 -0
- package/dist/ts/inplace-editor/modules/slider.ts +59 -0
- package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
- package/package.json +16 -16
- package/styles/bootstrap-dark.css +5 -0
- package/styles/bootstrap.css +5 -0
- package/styles/bootstrap4.css +5 -0
- package/styles/bootstrap5-dark.css +13 -6
- package/styles/bootstrap5.css +13 -6
- package/styles/fabric-dark.css +5 -0
- package/styles/fabric.css +5 -0
- package/styles/fluent-dark.css +888 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +888 -0
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +5 -0
- package/styles/highcontrast.css +5 -0
- package/styles/inplace-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap4-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap5-definition.scss +1 -0
- package/styles/inplace-editor/_fabric-dark-definition.scss +1 -0
- package/styles/inplace-editor/_fabric-definition.scss +1 -0
- package/styles/inplace-editor/_fluent-dark-definition.scss +1 -0
- package/styles/inplace-editor/_fluent-definition.scss +69 -0
- package/styles/inplace-editor/_highcontrast-definition.scss +1 -0
- package/styles/inplace-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/inplace-editor/_layout.scss +3 -4
- package/styles/inplace-editor/_material-dark-definition.scss +1 -0
- package/styles/inplace-editor/_material-definition.scss +1 -0
- package/styles/inplace-editor/_tailwind-definition.scss +1 -0
- package/styles/inplace-editor/_theme.scss +4 -1
- package/styles/inplace-editor/bootstrap-dark.css +5 -0
- package/styles/inplace-editor/bootstrap.css +5 -0
- package/styles/inplace-editor/bootstrap4.css +5 -0
- package/styles/inplace-editor/bootstrap5-dark.css +13 -6
- package/styles/inplace-editor/bootstrap5.css +13 -6
- package/styles/inplace-editor/fabric-dark.css +5 -0
- package/styles/inplace-editor/fabric.css +5 -0
- package/styles/inplace-editor/fluent-dark.css +888 -0
- package/styles/inplace-editor/fluent-dark.scss +26 -0
- package/styles/inplace-editor/fluent.css +888 -0
- package/styles/inplace-editor/fluent.scss +26 -0
- package/styles/inplace-editor/highcontrast-light.css +5 -0
- package/styles/inplace-editor/highcontrast.css +5 -0
- package/styles/inplace-editor/icons/_fluent-dark.scss +1 -0
- package/styles/inplace-editor/icons/_fluent.scss +19 -0
- package/styles/inplace-editor/icons/_tailwind.scss +4 -4
- package/styles/inplace-editor/material-dark.css +5 -0
- package/styles/inplace-editor/material.css +5 -0
- package/styles/inplace-editor/tailwind-dark.css +12 -67
- package/styles/inplace-editor/tailwind.css +12 -67
- package/styles/material-dark.css +5 -0
- package/styles/material.css +5 -0
- package/styles/tailwind-dark.css +12 -67
- package/styles/tailwind.css +12 -67
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { RichTextEditor, RichTextEditorModel, HtmlEditor } from '@syncfusion/ej2-richtexteditor';
|
|
2
|
+
import { MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager } from '@syncfusion/ej2-richtexteditor';
|
|
3
|
+
import { Base } from './base-module';
|
|
4
|
+
import { InPlaceEditor } from '../base/inplace-editor';
|
|
5
|
+
import { NotifyParams, IComponent } from '../base/interface';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* The `RTE` module is used configure the properties of RTE type editor.
|
|
9
|
+
*/
|
|
10
|
+
export class Rte implements IComponent {
|
|
11
|
+
private base: Base;
|
|
12
|
+
protected parent: InPlaceEditor;
|
|
13
|
+
public compObj: RichTextEditor = undefined;
|
|
14
|
+
|
|
15
|
+
public constructor(parent?: InPlaceEditor) {
|
|
16
|
+
RichTextEditor.Inject(HtmlEditor, MarkdownEditor, Toolbar, Link, Image, QuickToolbar, Table, FileManager);
|
|
17
|
+
this.parent = parent;
|
|
18
|
+
this.parent.rteModule = this;
|
|
19
|
+
this.base = new Base(this.parent, this);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
public render(e: NotifyParams): void {
|
|
23
|
+
this.compObj = new RichTextEditor(this.parent.model as RichTextEditorModel);
|
|
24
|
+
this.compObj.appendTo(e.target);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
public focus(): void {
|
|
28
|
+
this.compObj.focusIn();
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
public updateValue(e: NotifyParams): void {
|
|
32
|
+
if (this.compObj && e.type === 'RTE') {
|
|
33
|
+
this.parent.setProperties({ value: this.getRteValue() }, true);
|
|
34
|
+
this.parent.extendModelValue(this.compObj.value);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
private getRteValue(): string {
|
|
39
|
+
let rteVal: string;
|
|
40
|
+
if (this.compObj.editorMode === 'Markdown') {
|
|
41
|
+
rteVal = (this.compObj.contentModule.getEditPanel() as HTMLTextAreaElement).value;
|
|
42
|
+
return (rteVal === '') ? '' : rteVal;
|
|
43
|
+
} else {
|
|
44
|
+
rteVal = this.compObj.contentModule.getEditPanel().innerHTML;
|
|
45
|
+
return (rteVal === '<p><br></p>' || rteVal === '<p><br></p>' || rteVal === '') ? '' : rteVal;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
public refresh(): void {
|
|
50
|
+
this.compObj.refresh();
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Destroys the rte module.
|
|
55
|
+
*
|
|
56
|
+
* @function destroy
|
|
57
|
+
* @returns {void}
|
|
58
|
+
* @hidden
|
|
59
|
+
*/
|
|
60
|
+
public destroy(): void {
|
|
61
|
+
this.base.destroy();
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* For internal use only - Get the module name.
|
|
66
|
+
*
|
|
67
|
+
* @returns {string} - returns the string
|
|
68
|
+
*/
|
|
69
|
+
private getModuleName(): string {
|
|
70
|
+
return 'rte';
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { Slider as EJ2Slider, SliderModel } from '@syncfusion/ej2-inputs';
|
|
2
|
+
import { Base } from './base-module';
|
|
3
|
+
import { InPlaceEditor } from '../base/inplace-editor';
|
|
4
|
+
import { NotifyParams, IComponent } from '../base/interface';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* The `Slider` module is used configure the properties of Slider type editor.
|
|
8
|
+
*/
|
|
9
|
+
export class Slider implements IComponent {
|
|
10
|
+
private base: Base;
|
|
11
|
+
protected parent: InPlaceEditor;
|
|
12
|
+
public compObj: EJ2Slider = undefined;
|
|
13
|
+
|
|
14
|
+
public constructor(parent?: InPlaceEditor) {
|
|
15
|
+
this.parent = parent;
|
|
16
|
+
this.parent.sliderModule = this;
|
|
17
|
+
this.base = new Base(this.parent, this);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
public render(e: NotifyParams): void {
|
|
21
|
+
this.compObj = new EJ2Slider(this.parent.model as SliderModel);
|
|
22
|
+
this.compObj.appendTo(e.target as HTMLInputElement);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
public focus(): void {
|
|
26
|
+
this.compObj.element.focus();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
public updateValue(e: NotifyParams): void {
|
|
30
|
+
if (this.compObj && e.type === 'Slider') {
|
|
31
|
+
this.parent.setProperties({ value: this.compObj.value }, true);
|
|
32
|
+
this.parent.extendModelValue(this.compObj.value);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
public refresh(): void {
|
|
37
|
+
this.compObj.refresh();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Destroys the slider module.
|
|
42
|
+
*
|
|
43
|
+
* @function destroy
|
|
44
|
+
* @returns {void}
|
|
45
|
+
* @hidden
|
|
46
|
+
*/
|
|
47
|
+
public destroy(): void {
|
|
48
|
+
this.base.destroy();
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* For internal use only - Get the module name.
|
|
53
|
+
*
|
|
54
|
+
* @returns {string} - returns the string
|
|
55
|
+
*/
|
|
56
|
+
private getModuleName(): string {
|
|
57
|
+
return 'slider';
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-inplace-editor@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-inplace-editor@19.
|
|
3
|
+
"_id": "@syncfusion/ej2-inplace-editor@19.8.0",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-YsqdfsBdh/Ro3TRHV2Ll4OB8TcsB5tYaXxctJ8sj4jko2KadBbmFP22GOvBheOLdp3DUPLeTfYH+Iq64bUStug==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-inplace-editor",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"/@syncfusion/ej2-react-inplace-editor",
|
|
25
25
|
"/@syncfusion/ej2-vue-inplace-editor"
|
|
26
26
|
],
|
|
27
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
28
|
-
"_shasum": "
|
|
27
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-19.8.0.tgz",
|
|
28
|
+
"_shasum": "991d9fd1b7cf7c22966f280319eb7e915d3fa3db",
|
|
29
29
|
"_spec": "@syncfusion/ej2-inplace-editor@*",
|
|
30
30
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
31
31
|
"author": {
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
},
|
|
37
37
|
"bundleDependencies": false,
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@syncfusion/ej2-base": "~
|
|
40
|
-
"@syncfusion/ej2-buttons": "~
|
|
41
|
-
"@syncfusion/ej2-calendars": "~
|
|
42
|
-
"@syncfusion/ej2-data": "~
|
|
43
|
-
"@syncfusion/ej2-dropdowns": "~
|
|
44
|
-
"@syncfusion/ej2-inputs": "~
|
|
45
|
-
"@syncfusion/ej2-lists": "~
|
|
46
|
-
"@syncfusion/ej2-navigations": "~
|
|
47
|
-
"@syncfusion/ej2-popups": "~
|
|
48
|
-
"@syncfusion/ej2-richtexteditor": "~
|
|
49
|
-
"@syncfusion/ej2-splitbuttons": "~
|
|
39
|
+
"@syncfusion/ej2-base": "~20.1.47",
|
|
40
|
+
"@syncfusion/ej2-buttons": "~20.1.47",
|
|
41
|
+
"@syncfusion/ej2-calendars": "~20.1.47",
|
|
42
|
+
"@syncfusion/ej2-data": "~20.1.47",
|
|
43
|
+
"@syncfusion/ej2-dropdowns": "~20.1.47",
|
|
44
|
+
"@syncfusion/ej2-inputs": "~20.1.47",
|
|
45
|
+
"@syncfusion/ej2-lists": "~20.1.47",
|
|
46
|
+
"@syncfusion/ej2-navigations": "~20.1.47",
|
|
47
|
+
"@syncfusion/ej2-popups": "~20.1.47",
|
|
48
|
+
"@syncfusion/ej2-richtexteditor": "~20.1.47",
|
|
49
|
+
"@syncfusion/ej2-splitbuttons": "~20.1.47"
|
|
50
50
|
},
|
|
51
51
|
"deprecated": false,
|
|
52
52
|
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server.",
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
70
70
|
},
|
|
71
71
|
"typings": "index.d.ts",
|
|
72
|
-
"version": "
|
|
72
|
+
"version": "20.1.47",
|
|
73
73
|
"sideEffects": false
|
|
74
74
|
}
|
|
@@ -615,6 +615,11 @@
|
|
|
615
615
|
transform: translateX(30%) translateY(-50%);
|
|
616
616
|
}
|
|
617
617
|
|
|
618
|
+
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
619
|
+
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
|
|
620
|
+
padding: 0;
|
|
621
|
+
}
|
|
622
|
+
|
|
618
623
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
|
|
619
624
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
620
625
|
padding: 12px;
|
package/styles/bootstrap.css
CHANGED
|
@@ -760,6 +760,11 @@
|
|
|
760
760
|
transform: translateX(30%) translateY(-50%);
|
|
761
761
|
}
|
|
762
762
|
|
|
763
|
+
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
764
|
+
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
|
|
765
|
+
padding: 0;
|
|
766
|
+
}
|
|
767
|
+
|
|
763
768
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
|
|
764
769
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
765
770
|
padding: 12px;
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1001,6 +1001,11 @@
|
|
|
1001
1001
|
transform: translateX(30%) translateY(-50%);
|
|
1002
1002
|
}
|
|
1003
1003
|
|
|
1004
|
+
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
1005
|
+
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
|
|
1006
|
+
padding: 0;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1004
1009
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
|
|
1005
1010
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
1006
1011
|
padding: 16px;
|
|
@@ -63,7 +63,6 @@
|
|
|
63
63
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
64
64
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
65
65
|
background: transparent;
|
|
66
|
-
color: inherit;
|
|
67
66
|
}
|
|
68
67
|
|
|
69
68
|
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
@@ -91,6 +90,13 @@
|
|
|
91
90
|
color: #adb5bd;
|
|
92
91
|
}
|
|
93
92
|
|
|
93
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
94
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
95
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
96
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
97
|
+
background: #343a40;
|
|
98
|
+
}
|
|
99
|
+
|
|
94
100
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
95
101
|
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
96
102
|
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -153,7 +159,7 @@
|
|
|
153
159
|
}
|
|
154
160
|
|
|
155
161
|
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
156
|
-
border-radius: 0
|
|
162
|
+
border-radius: 0 2px 2px 0;
|
|
157
163
|
border-right-width: 0;
|
|
158
164
|
}
|
|
159
165
|
|
|
@@ -638,6 +644,11 @@
|
|
|
638
644
|
transform: translateX(30%) translateY(-50%);
|
|
639
645
|
}
|
|
640
646
|
|
|
647
|
+
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
648
|
+
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
|
|
649
|
+
padding: 0;
|
|
650
|
+
}
|
|
651
|
+
|
|
641
652
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
|
|
642
653
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
643
654
|
padding: 16px;
|
|
@@ -774,10 +785,6 @@
|
|
|
774
785
|
border-radius: 4px;
|
|
775
786
|
}
|
|
776
787
|
|
|
777
|
-
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content {
|
|
778
|
-
padding: 0;
|
|
779
|
-
}
|
|
780
|
-
|
|
781
788
|
.e-control.e-inplaceeditor .e-editable-value-wrapper {
|
|
782
789
|
min-height: 30px;
|
|
783
790
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -63,7 +63,6 @@
|
|
|
63
63
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
64
64
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
65
65
|
background: transparent;
|
|
66
|
-
color: inherit;
|
|
67
66
|
}
|
|
68
67
|
|
|
69
68
|
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
@@ -91,6 +90,13 @@
|
|
|
91
90
|
color: #6c757d;
|
|
92
91
|
}
|
|
93
92
|
|
|
93
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
94
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
95
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
96
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
97
|
+
background: #e9ecef;
|
|
98
|
+
}
|
|
99
|
+
|
|
94
100
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
95
101
|
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
96
102
|
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -153,7 +159,7 @@
|
|
|
153
159
|
}
|
|
154
160
|
|
|
155
161
|
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
156
|
-
border-radius: 0
|
|
162
|
+
border-radius: 0 2px 2px 0;
|
|
157
163
|
border-right-width: 0;
|
|
158
164
|
}
|
|
159
165
|
|
|
@@ -638,6 +644,11 @@
|
|
|
638
644
|
transform: translateX(30%) translateY(-50%);
|
|
639
645
|
}
|
|
640
646
|
|
|
647
|
+
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
648
|
+
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
|
|
649
|
+
padding: 0;
|
|
650
|
+
}
|
|
651
|
+
|
|
641
652
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
|
|
642
653
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
643
654
|
padding: 16px;
|
|
@@ -774,10 +785,6 @@
|
|
|
774
785
|
border-radius: 4px;
|
|
775
786
|
}
|
|
776
787
|
|
|
777
|
-
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content {
|
|
778
|
-
padding: 0;
|
|
779
|
-
}
|
|
780
|
-
|
|
781
788
|
.e-control.e-inplaceeditor .e-editable-value-wrapper {
|
|
782
789
|
min-height: 30px;
|
|
783
790
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -569,6 +569,11 @@
|
|
|
569
569
|
transform: translateX(30%) translateY(-50%);
|
|
570
570
|
}
|
|
571
571
|
|
|
572
|
+
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
573
|
+
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
|
|
574
|
+
padding: 0;
|
|
575
|
+
}
|
|
576
|
+
|
|
572
577
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
|
|
573
578
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
574
579
|
padding: 12px;
|
package/styles/fabric.css
CHANGED
|
@@ -563,6 +563,11 @@
|
|
|
563
563
|
transform: translateX(30%) translateY(-50%);
|
|
564
564
|
}
|
|
565
565
|
|
|
566
|
+
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
|
|
567
|
+
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
|
|
568
|
+
padding: 0;
|
|
569
|
+
}
|
|
570
|
+
|
|
566
571
|
.e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
|
|
567
572
|
.e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
|
|
568
573
|
padding: 12px;
|