@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,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@21.3.7",
3
+ "_id": "@syncfusion/ej2-inplace-editor@21.4.0",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-bd/779f6WwnBq13ouNi3oCodRo6FwHIOnU5Ai8VIjZWTy4L+KOPaSoFxjWttd4g8QXAG0e4dmlnl3g2bU8nQlw==",
5
+ "_integrity": "sha512-T74lbtsafLMsDZGK66gNd1joHF6qobCv56JyKCKulkIkukk2UDo3gNS0bBcuOtM908s/pJ6VOkgdpDWLm//lAw==",
6
6
  "_location": "/@syncfusion/ej2-inplace-editor",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -18,16 +18,15 @@
18
18
  },
19
19
  "_requiredBy": [
20
20
  "/",
21
- "/@syncfusion/ej2",
22
21
  "/@syncfusion/ej2-angular-inplace-editor",
23
22
  "/@syncfusion/ej2-pdfviewer",
24
23
  "/@syncfusion/ej2-react-inplace-editor",
25
24
  "/@syncfusion/ej2-vue-inplace-editor"
26
25
  ],
27
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-21.3.7.tgz",
28
- "_shasum": "c259f4be48131673f24d22ad1e926d8941550587",
26
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-development/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-21.4.0.tgz",
27
+ "_shasum": "60ae84795d522cb7566f2a42e9964e0a3ea9d1bd",
29
28
  "_spec": "@syncfusion/ej2-inplace-editor@*",
30
- "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
29
+ "_where": "D:\\SF3992\\WFH\\Nexus\\ej2-nexus-branch-switching-dev\\release",
31
30
  "author": {
32
31
  "name": "Syncfusion Inc."
33
32
  },
@@ -36,18 +35,18 @@
36
35
  },
37
36
  "bundleDependencies": false,
38
37
  "dependencies": {
39
- "@syncfusion/ej2-base": "~29.1.33",
40
- "@syncfusion/ej2-buttons": "~29.1.33",
41
- "@syncfusion/ej2-calendars": "~29.1.33",
42
- "@syncfusion/ej2-data": "~29.1.33",
43
- "@syncfusion/ej2-dropdowns": "~29.1.33",
44
- "@syncfusion/ej2-inputs": "~29.1.33",
45
- "@syncfusion/ej2-lists": "~29.1.33",
46
- "@syncfusion/ej2-navigations": "~29.1.33",
47
- "@syncfusion/ej2-notifications": "~29.1.33",
48
- "@syncfusion/ej2-popups": "~29.1.33",
49
- "@syncfusion/ej2-richtexteditor": "~29.1.33",
50
- "@syncfusion/ej2-splitbuttons": "~29.1.33"
38
+ "@syncfusion/ej2-base": "~30.1.37",
39
+ "@syncfusion/ej2-buttons": "~30.1.37",
40
+ "@syncfusion/ej2-calendars": "~30.1.37",
41
+ "@syncfusion/ej2-data": "~30.1.37",
42
+ "@syncfusion/ej2-dropdowns": "~30.1.37",
43
+ "@syncfusion/ej2-inputs": "~30.1.37",
44
+ "@syncfusion/ej2-lists": "~30.1.37",
45
+ "@syncfusion/ej2-navigations": "~30.1.37",
46
+ "@syncfusion/ej2-notifications": "~30.1.37",
47
+ "@syncfusion/ej2-popups": "~30.1.37",
48
+ "@syncfusion/ej2-richtexteditor": "~30.1.37",
49
+ "@syncfusion/ej2-splitbuttons": "~30.1.37"
51
50
  },
52
51
  "deprecated": false,
53
52
  "description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server.",
@@ -70,6 +69,6 @@
70
69
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
71
70
  },
72
71
  "typings": "index.d.ts",
73
- "version": "29.1.33",
72
+ "version": "30.1.37",
74
73
  "sideEffects": false
75
74
  }
@@ -205,10 +205,10 @@
205
205
  border-radius: 4px;
206
206
  }
207
207
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:active, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-control.e-tbar-btn.e-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
208
- border: 1px solid #4e555b;
208
+ border: 1px solid rgb(78.4506437768, 84.9881974249, 90.7993562232);
209
209
  }
210
210
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover {
211
- border: 1px solid #545b62;
211
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
212
212
  }
213
213
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus {
214
214
  border: 1px solid #6c757d;
@@ -822,7 +822,7 @@
822
822
  border-bottom: 0;
823
823
  }
824
824
  .e-inplaceeditor .e-editable-value-wrapper:hover {
825
- background: #f2f4f6;
825
+ background: rgb(242.05, 243.9, 245.75);
826
826
  border-radius: 4px;
827
827
  }
828
828
  .e-inplaceeditor .e-editable-value-wrapper:hover .e-editable-value {
@@ -839,7 +839,7 @@
839
839
  border-bottom: 0;
840
840
  }
841
841
  .e-inplaceeditor .e-editable-value-container:hover {
842
- background: #f2f4f6;
842
+ background: rgb(242.05, 243.9, 245.75);
843
843
  border-radius: 4px;
844
844
  }
845
845
  .e-inplaceeditor .e-editable-value-container:hover .e-editable-value {
@@ -882,8 +882,8 @@
882
882
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
883
883
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
884
884
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
885
- background-color: #5a6268;
886
- border: 1px solid #545b62;
885
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
886
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
887
887
  }
888
888
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
889
889
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
@@ -905,8 +905,8 @@
905
905
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active,
906
906
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:active,
907
907
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active {
908
- background-color: #545b62;
909
- border: 1px solid #4e555b;
908
+ background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
909
+ border: 1px solid rgb(78.4506437768, 84.9881974249, 90.7993562232);
910
910
  }
911
911
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
912
912
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover .e-btn-icon.e-icons,
@@ -946,7 +946,7 @@
946
946
  border: 1px solid rgba(0, 0, 0, 0.2);
947
947
  }
948
948
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
949
- background: #f2f4f6;
949
+ background: rgb(242.05, 243.9, 245.75);
950
950
  border-bottom: 0;
951
951
  color: #212529;
952
952
  }
@@ -954,5 +954,5 @@
954
954
  border-bottom-color: rgba(0, 0, 0, 0.2);
955
955
  }
956
956
  .e-inplaceeditor-tip.e-editable-tip-title.e-tooltip-wrap .e-arrow-tip-inner.e-tip-top {
957
- color: #f2f4f6;
957
+ color: rgb(242.05, 243.9, 245.75);
958
958
  }
@@ -205,10 +205,10 @@
205
205
  border-radius: 4px;
206
206
  }
207
207
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:active, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-control.e-tbar-btn.e-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
208
- border: 1px solid #4e555b;
208
+ border: 1px solid rgb(78.4506437768, 84.9881974249, 90.7993562232);
209
209
  }
210
210
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover {
211
- border: 1px solid #545b62;
211
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
212
212
  }
213
213
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus {
214
214
  border: 1px solid #6c757d;
@@ -822,7 +822,7 @@
822
822
  border-bottom: 0;
823
823
  }
824
824
  .e-inplaceeditor .e-editable-value-wrapper:hover {
825
- background: #f2f4f6;
825
+ background: rgb(242.05, 243.9, 245.75);
826
826
  border-radius: 4px;
827
827
  }
828
828
  .e-inplaceeditor .e-editable-value-wrapper:hover .e-editable-value {
@@ -839,7 +839,7 @@
839
839
  border-bottom: 0;
840
840
  }
841
841
  .e-inplaceeditor .e-editable-value-container:hover {
842
- background: #f2f4f6;
842
+ background: rgb(242.05, 243.9, 245.75);
843
843
  border-radius: 4px;
844
844
  }
845
845
  .e-inplaceeditor .e-editable-value-container:hover .e-editable-value {
@@ -882,8 +882,8 @@
882
882
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
883
883
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
884
884
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
885
- background-color: #5a6268;
886
- border: 1px solid #545b62;
885
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
886
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
887
887
  }
888
888
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
889
889
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
@@ -905,8 +905,8 @@
905
905
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active,
906
906
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:active,
907
907
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active {
908
- background-color: #545b62;
909
- border: 1px solid #4e555b;
908
+ background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
909
+ border: 1px solid rgb(78.4506437768, 84.9881974249, 90.7993562232);
910
910
  }
911
911
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
912
912
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover .e-btn-icon.e-icons,
@@ -946,7 +946,7 @@
946
946
  border: 1px solid rgba(0, 0, 0, 0.2);
947
947
  }
948
948
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
949
- background: #f2f4f6;
949
+ background: rgb(242.05, 243.9, 245.75);
950
950
  border-bottom: 0;
951
951
  color: #212529;
952
952
  }
@@ -954,7 +954,7 @@
954
954
  border-bottom-color: rgba(0, 0, 0, 0.2);
955
955
  }
956
956
  .e-inplaceeditor-tip.e-editable-tip-title.e-tooltip-wrap .e-arrow-tip-inner.e-tip-top {
957
- color: #f2f4f6;
957
+ color: rgb(242.05, 243.9, 245.75);
958
958
  }
959
959
 
960
960
  .e-bigger .e-inplaceeditor .e-editable-value-wrapper,
@@ -604,7 +604,7 @@
604
604
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
605
605
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
606
606
  background-color: #212529;
607
- border: 1px solid #444c54;
607
+ border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
608
608
  border-radius: 4px;
609
609
  }
610
610
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
@@ -617,15 +617,15 @@
617
617
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
618
618
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
619
619
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
620
- background-color: #5a6268;
621
- border: 1px solid #545b62;
620
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
621
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
622
622
  }
623
623
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
624
624
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
625
625
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
626
626
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled {
627
627
  background-color: #212529;
628
- border: 1px solid #444c54;
628
+ border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
629
629
  border-radius: 4px;
630
630
  }
631
631
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
@@ -656,19 +656,19 @@
656
656
  color: #fff;
657
657
  }
658
658
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-inner {
659
- color: #1a1d21;
659
+ color: rgb(26.177027027, 29.35, 32.522972973);
660
660
  }
661
661
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-outer.e-tip-top {
662
- border-bottom-color: #1a1d21;
662
+ border-bottom-color: rgb(26.177027027, 29.35, 32.522972973);
663
663
  }
664
664
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-outer.e-tip-bottom {
665
- border-top-color: #1a1d21;
665
+ border-top-color: rgb(26.177027027, 29.35, 32.522972973);
666
666
  }
667
667
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup.e-popup {
668
668
  border: 1px solid #6c757d;
669
669
  }
670
670
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
671
- background: #1a1d21;
671
+ background: rgb(26.177027027, 29.35, 32.522972973);
672
672
  border-bottom: 0;
673
673
  color: #fff;
674
674
  }
@@ -676,5 +676,5 @@
676
676
  border-bottom-color: #6c757d;
677
677
  }
678
678
  .e-inplaceeditor-tip.e-editable-tip-title.e-tooltip-wrap .e-arrow-tip-inner.e-tip-top {
679
- color: #1a1d21;
679
+ color: rgb(26.177027027, 29.35, 32.522972973);
680
680
  }
@@ -604,7 +604,7 @@
604
604
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
605
605
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
606
606
  background-color: #212529;
607
- border: 1px solid #444c54;
607
+ border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
608
608
  border-radius: 4px;
609
609
  }
610
610
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
@@ -617,15 +617,15 @@
617
617
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
618
618
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
619
619
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
620
- background-color: #5a6268;
621
- border: 1px solid #545b62;
620
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
621
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
622
622
  }
623
623
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
624
624
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
625
625
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
626
626
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled {
627
627
  background-color: #212529;
628
- border: 1px solid #444c54;
628
+ border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
629
629
  border-radius: 4px;
630
630
  }
631
631
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
@@ -656,19 +656,19 @@
656
656
  color: #fff;
657
657
  }
658
658
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-inner {
659
- color: #1a1d21;
659
+ color: rgb(26.177027027, 29.35, 32.522972973);
660
660
  }
661
661
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-outer.e-tip-top {
662
- border-bottom-color: #1a1d21;
662
+ border-bottom-color: rgb(26.177027027, 29.35, 32.522972973);
663
663
  }
664
664
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-outer.e-tip-bottom {
665
- border-top-color: #1a1d21;
665
+ border-top-color: rgb(26.177027027, 29.35, 32.522972973);
666
666
  }
667
667
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup.e-popup {
668
668
  border: 1px solid #6c757d;
669
669
  }
670
670
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
671
- background: #1a1d21;
671
+ background: rgb(26.177027027, 29.35, 32.522972973);
672
672
  border-bottom: 0;
673
673
  color: #fff;
674
674
  }
@@ -676,7 +676,7 @@
676
676
  border-bottom-color: #6c757d;
677
677
  }
678
678
  .e-inplaceeditor-tip.e-editable-tip-title.e-tooltip-wrap .e-arrow-tip-inner.e-tip-top {
679
- color: #1a1d21;
679
+ color: rgb(26.177027027, 29.35, 32.522972973);
680
680
  }
681
681
 
682
682
  .e-bigger .e-inplaceeditor .e-editable-value-wrapper,
@@ -617,8 +617,8 @@
617
617
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
618
618
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
619
619
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
620
- background-color: #5a6268;
621
- border: 1px solid #545b62;
620
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
621
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
622
622
  }
623
623
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
624
624
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
@@ -621,8 +621,8 @@
621
621
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
622
622
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
623
623
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
624
- background-color: #5a6268;
625
- border: 1px solid #545b62;
624
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
625
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
626
626
  }
627
627
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
628
628
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
@@ -621,8 +621,8 @@
621
621
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
622
622
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
623
623
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
624
- background-color: #5a6268;
625
- border: 1px solid #545b62;
624
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
625
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
626
626
  }
627
627
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
628
628
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
@@ -617,8 +617,8 @@
617
617
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
618
618
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
619
619
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
620
- background-color: #5a6268;
621
- border: 1px solid #545b62;
620
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
621
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
622
622
  }
623
623
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
624
624
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
@@ -205,10 +205,10 @@
205
205
  border-radius: 4px;
206
206
  }
207
207
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:active, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item.e-active .e-control.e-tbar-btn.e-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item.e-active .e-tbar-btn, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
208
- border: 1px solid #4e555b;
208
+ border: 1px solid rgb(78.4506437768, 84.9881974249, 90.7993562232);
209
209
  }
210
210
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:hover {
211
- border: 1px solid #545b62;
211
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
212
212
  }
213
213
  .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-items .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus, .e-richtexteditor .e-rte-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-control.e-tbar-btn.e-btn:focus {
214
214
  border: 1px solid #6c757d;
@@ -822,7 +822,7 @@
822
822
  border-bottom: 0;
823
823
  }
824
824
  .e-inplaceeditor .e-editable-value-wrapper:hover {
825
- background: #f2f4f6;
825
+ background: rgb(242.05, 243.9, 245.75);
826
826
  border-radius: 4px;
827
827
  }
828
828
  .e-inplaceeditor .e-editable-value-wrapper:hover .e-editable-value {
@@ -839,7 +839,7 @@
839
839
  border-bottom: 0;
840
840
  }
841
841
  .e-inplaceeditor .e-editable-value-container:hover {
842
- background: #f2f4f6;
842
+ background: rgb(242.05, 243.9, 245.75);
843
843
  border-radius: 4px;
844
844
  }
845
845
  .e-inplaceeditor .e-editable-value-container:hover .e-editable-value {
@@ -882,8 +882,8 @@
882
882
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
883
883
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
884
884
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
885
- background-color: #5a6268;
886
- border: 1px solid #545b62;
885
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
886
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
887
887
  }
888
888
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
889
889
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
@@ -905,8 +905,8 @@
905
905
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active,
906
906
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:active,
907
907
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active {
908
- background-color: #545b62;
909
- border: 1px solid #4e555b;
908
+ background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
909
+ border: 1px solid rgb(78.4506437768, 84.9881974249, 90.7993562232);
910
910
  }
911
911
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
912
912
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover .e-btn-icon.e-icons,
@@ -946,7 +946,7 @@
946
946
  border: 1px solid rgba(0, 0, 0, 0.2);
947
947
  }
948
948
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
949
- background: #f2f4f6;
949
+ background: rgb(242.05, 243.9, 245.75);
950
950
  border-bottom: 0;
951
951
  color: #212529;
952
952
  }
@@ -954,7 +954,7 @@
954
954
  border-bottom-color: rgba(0, 0, 0, 0.2);
955
955
  }
956
956
  .e-inplaceeditor-tip.e-editable-tip-title.e-tooltip-wrap .e-arrow-tip-inner.e-tip-top {
957
- color: #f2f4f6;
957
+ color: rgb(242.05, 243.9, 245.75);
958
958
  }
959
959
 
960
960
  .e-bigger .e-inplaceeditor .e-editable-value-wrapper,
@@ -604,7 +604,7 @@
604
604
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn,
605
605
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn {
606
606
  background-color: #212529;
607
- border: 1px solid #444c54;
607
+ border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
608
608
  border-radius: 4px;
609
609
  }
610
610
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn .e-btn-icon.e-icons,
@@ -617,15 +617,15 @@
617
617
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
618
618
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
619
619
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
620
- background-color: #5a6268;
621
- border: 1px solid #545b62;
620
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
621
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
622
622
  }
623
623
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
624
624
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
625
625
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
626
626
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled {
627
627
  background-color: #212529;
628
- border: 1px solid #444c54;
628
+ border: 1px solid rgb(68.0034482759, 75.85, 83.6965517241);
629
629
  border-radius: 4px;
630
630
  }
631
631
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
@@ -656,19 +656,19 @@
656
656
  color: #fff;
657
657
  }
658
658
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-inner {
659
- color: #1a1d21;
659
+ color: rgb(26.177027027, 29.35, 32.522972973);
660
660
  }
661
661
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-outer.e-tip-top {
662
- border-bottom-color: #1a1d21;
662
+ border-bottom-color: rgb(26.177027027, 29.35, 32.522972973);
663
663
  }
664
664
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-arrow-tip-outer.e-tip-bottom {
665
- border-top-color: #1a1d21;
665
+ border-top-color: rgb(26.177027027, 29.35, 32.522972973);
666
666
  }
667
667
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup.e-popup {
668
668
  border: 1px solid #6c757d;
669
669
  }
670
670
  .e-inplaceeditor-tip.e-tooltip-wrap.e-popup .e-editable-title {
671
- background: #1a1d21;
671
+ background: rgb(26.177027027, 29.35, 32.522972973);
672
672
  border-bottom: 0;
673
673
  color: #fff;
674
674
  }
@@ -676,7 +676,7 @@
676
676
  border-bottom-color: #6c757d;
677
677
  }
678
678
  .e-inplaceeditor-tip.e-editable-tip-title.e-tooltip-wrap .e-arrow-tip-inner.e-tip-top {
679
- color: #1a1d21;
679
+ color: rgb(26.177027027, 29.35, 32.522972973);
680
680
  }
681
681
 
682
682
  .e-bigger .e-inplaceeditor .e-editable-value-wrapper,
@@ -621,8 +621,8 @@
621
621
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
622
622
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
623
623
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
624
- background-color: #5a6268;
625
- border: 1px solid #545b62;
624
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
625
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
626
626
  }
627
627
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
628
628
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,
@@ -617,8 +617,8 @@
617
617
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover,
618
618
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover,
619
619
  .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover {
620
- background-color: #5a6268;
621
- border: 1px solid #545b62;
620
+ background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
621
+ border: 1px solid rgb(84.3605150215, 91.3905579399, 97.6394849785);
622
622
  }
623
623
  .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:disabled,
624
624
  .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:disabled,