@syncfusion/ej2-angular-documenteditor 21.2.10 → 22.1.34
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/README.md +45 -137
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +4 -7
- package/esm2020/src/document-editor/documenteditor.component.mjs +4 -11
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +4 -4
- package/esm2020/src/index.mjs +2 -2
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +10 -20
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -1
- package/license +10 -0
- package/package.json +18 -8
- package/schematics/utils/lib-details.ts +2 -2
- package/src/document-editor/documenteditor-all.module.d.ts +0 -1
- package/src/document-editor/documenteditor.component.d.ts +1 -2
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +1 -2
- package/src/index.d.ts +1 -1
- package/styles/bootstrap-dark.css +102 -37
- package/styles/bootstrap.css +106 -37
- package/styles/bootstrap4.css +110 -37
- package/styles/bootstrap5-dark.css +102 -37
- package/styles/bootstrap5.css +102 -37
- package/styles/document-editor/_material3-dark-definition.scss +1 -0
- package/styles/document-editor/_material3-definition.scss +560 -0
- package/styles/document-editor/_theme.scss +68 -3
- package/styles/document-editor/bootstrap-dark.css +6 -0
- package/styles/document-editor/bootstrap.css +10 -0
- package/styles/document-editor/bootstrap4.css +14 -0
- package/styles/document-editor/bootstrap5-dark.css +6 -0
- package/styles/document-editor/bootstrap5.css +6 -0
- package/styles/document-editor/fabric-dark.css +6 -0
- package/styles/document-editor/fabric.css +10 -0
- package/styles/document-editor/fluent-dark.css +6 -0
- package/styles/document-editor/fluent.css +6 -0
- package/styles/document-editor/highcontrast.css +6 -0
- package/styles/document-editor/icons/_material3-dark.scss +1 -0
- package/styles/document-editor/icons/_material3.scss +6 -6
- package/styles/document-editor/material-dark.css +6 -0
- package/styles/document-editor/material.css +6 -0
- package/styles/document-editor/material3-dark.css +3971 -0
- package/styles/document-editor/material3-dark.scss +5 -0
- package/styles/document-editor/material3.css +4027 -0
- package/styles/document-editor/material3.scss +5 -0
- package/styles/document-editor/tailwind-dark.css +6 -0
- package/styles/document-editor/tailwind.css +6 -0
- package/styles/document-editor-container/_bootstrap-dark-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap4-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap5-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-dark-definition.scss +1 -0
- package/styles/document-editor-container/_fabric-definition.scss +1 -0
- package/styles/document-editor-container/_fluent-definition.scss +1 -0
- package/styles/document-editor-container/_fusionnew-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-definition.scss +1 -0
- package/styles/document-editor-container/_highcontrast-light-definition.scss +1 -0
- package/styles/document-editor-container/_material-dark-definition.scss +2 -1
- package/styles/document-editor-container/_material-definition.scss +1 -0
- package/styles/document-editor-container/_material3-dark-definition.scss +1 -0
- package/styles/document-editor-container/_material3-definition.scss +163 -0
- package/styles/document-editor-container/_tailwind-definition.scss +1 -0
- package/styles/document-editor-container/_theme.scss +271 -52
- package/styles/document-editor-container/bootstrap-dark.css +96 -37
- package/styles/document-editor-container/bootstrap.css +96 -37
- package/styles/document-editor-container/bootstrap4.css +96 -37
- package/styles/document-editor-container/bootstrap5-dark.css +96 -37
- package/styles/document-editor-container/bootstrap5.css +96 -37
- package/styles/document-editor-container/fabric-dark.css +96 -37
- package/styles/document-editor-container/fabric.css +96 -37
- package/styles/document-editor-container/fluent-dark.css +96 -37
- package/styles/document-editor-container/fluent.css +96 -37
- package/styles/document-editor-container/highcontrast-light.css +96 -37
- package/styles/document-editor-container/highcontrast.css +96 -37
- package/styles/document-editor-container/icons/_bootstrap-dark.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap4.scss +15 -0
- package/styles/document-editor-container/icons/_bootstrap5.scss +15 -0
- package/styles/document-editor-container/icons/_fabric-dark.scss +15 -0
- package/styles/document-editor-container/icons/_fabric.scss +15 -0
- package/styles/document-editor-container/icons/_fluent.scss +15 -0
- package/styles/document-editor-container/icons/_fusionnew.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast-light.scss +15 -0
- package/styles/document-editor-container/icons/_highcontrast.scss +15 -0
- package/styles/document-editor-container/icons/_material-dark.scss +15 -0
- package/styles/document-editor-container/icons/_material.scss +15 -0
- package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
- package/styles/document-editor-container/icons/_material3.scss +29 -15
- package/styles/document-editor-container/icons/_tailwind-dark.scss +15 -0
- package/styles/document-editor-container/icons/_tailwind.scss +15 -0
- package/styles/document-editor-container/material-dark.css +101 -42
- package/styles/document-editor-container/material.css +97 -37
- package/styles/document-editor-container/material3-dark.css +2178 -0
- package/styles/document-editor-container/material3-dark.scss +6 -0
- package/styles/document-editor-container/material3.css +2234 -0
- package/styles/document-editor-container/material3.scss +6 -0
- package/styles/document-editor-container/tailwind-dark.css +95 -36
- package/styles/document-editor-container/tailwind.css +95 -36
- package/styles/fabric-dark.css +102 -37
- package/styles/fabric.css +106 -37
- package/styles/fluent-dark.css +102 -37
- package/styles/fluent.css +102 -37
- package/styles/highcontrast-light.css +96 -37
- package/styles/highcontrast.css +102 -37
- package/styles/material-dark.css +107 -42
- package/styles/material.css +103 -37
- package/styles/material3-dark.css +6094 -0
- package/styles/material3-dark.scss +4 -0
- package/styles/material3.css +6150 -0
- package/styles/material3.scss +4 -0
- package/styles/tailwind-dark.css +101 -36
- package/styles/tailwind.css +101 -36
- package/schematics/collection.json +0 -15
- package/schematics/generators/documenteditorcontainer-default/index.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/index.js +0 -8
- package/schematics/generators/documenteditorcontainer-default/sample-details.d.ts +0 -5
- package/schematics/generators/documenteditorcontainer-default/sample-details.js +0 -7
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -3
- package/schematics/generators/documenteditorcontainer-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
- package/schematics/generators/documenteditorcontainer-default/schema.d.ts +0 -3
- package/schematics/generators/documenteditorcontainer-default/schema.js +0 -2
- package/schematics/generators/documenteditorcontainer-default/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/tailwind-dark.css
CHANGED
|
@@ -2700,6 +2700,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2700
2700
|
margin-left: 12px;
|
|
2701
2701
|
}
|
|
2702
2702
|
|
|
2703
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2704
|
+
height: 40px !important;
|
|
2705
|
+
width: auto !important;
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2703
2708
|
.e-de-style-bold-button-size {
|
|
2704
2709
|
margin-left: 12px;
|
|
2705
2710
|
}
|
|
@@ -3607,6 +3612,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3607
3612
|
|
|
3608
3613
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3609
3614
|
margin-top: 0px;
|
|
3615
|
+
background: #232e3e;
|
|
3610
3616
|
}
|
|
3611
3617
|
|
|
3612
3618
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -4553,6 +4559,21 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4553
4559
|
font-family: "e-icons";
|
|
4554
4560
|
}
|
|
4555
4561
|
|
|
4562
|
+
.e-de-e-paragraph-style-mark::before {
|
|
4563
|
+
content: "\e844";
|
|
4564
|
+
font-family: "e-icons";
|
|
4565
|
+
}
|
|
4566
|
+
|
|
4567
|
+
.e-de-e-character-style-mark::before {
|
|
4568
|
+
content: "\e8bf";
|
|
4569
|
+
font-family: "e-icons";
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4572
|
+
.e-de-e-linked-style-mark::before {
|
|
4573
|
+
content: "\e8c0";
|
|
4574
|
+
font-family: "e-icons";
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4556
4577
|
.e-de-ctnr-columns::before {
|
|
4557
4578
|
content: "\e89d";
|
|
4558
4579
|
font-family: "e-icons";
|
|
@@ -4685,6 +4706,46 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4685
4706
|
height: 100%;
|
|
4686
4707
|
}
|
|
4687
4708
|
|
|
4709
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
4710
|
+
box-shadow: none;
|
|
4711
|
+
height: 31px;
|
|
4712
|
+
}
|
|
4713
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
4714
|
+
box-shadow: none;
|
|
4715
|
+
}
|
|
4716
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
4717
|
+
box-shadow: none;
|
|
4718
|
+
}
|
|
4719
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
4720
|
+
box-shadow: none;
|
|
4721
|
+
}
|
|
4722
|
+
|
|
4723
|
+
.e-de-ctnr-group-btn-middle button {
|
|
4724
|
+
border-radius: 0px;
|
|
4725
|
+
}
|
|
4726
|
+
|
|
4727
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
4728
|
+
box-shadow: none;
|
|
4729
|
+
}
|
|
4730
|
+
|
|
4731
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
4732
|
+
.e-de-ctn .e-de-status-bar button {
|
|
4733
|
+
box-shadow: none;
|
|
4734
|
+
height: 31px;
|
|
4735
|
+
}
|
|
4736
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
4737
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
4738
|
+
box-shadow: none;
|
|
4739
|
+
}
|
|
4740
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
4741
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
4742
|
+
box-shadow: none;
|
|
4743
|
+
}
|
|
4744
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
4745
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
4746
|
+
box-shadow: none;
|
|
4747
|
+
}
|
|
4748
|
+
|
|
4688
4749
|
.e-de-statusbar-pageweb {
|
|
4689
4750
|
background: #374151;
|
|
4690
4751
|
border: 0;
|
|
@@ -4717,7 +4778,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4717
4778
|
}
|
|
4718
4779
|
|
|
4719
4780
|
.e-de-listview-icon {
|
|
4781
|
+
height: auto;
|
|
4782
|
+
width: auto;
|
|
4720
4783
|
line-height: 22px;
|
|
4784
|
+
margin-right: 10px;
|
|
4721
4785
|
}
|
|
4722
4786
|
|
|
4723
4787
|
.e-de-linespacing {
|
|
@@ -4814,14 +4878,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4814
4878
|
.e-de-statusbar-separator {
|
|
4815
4879
|
border-left: 1px solid #4b5563;
|
|
4816
4880
|
height: 16px;
|
|
4817
|
-
margin-left:
|
|
4881
|
+
margin-left: 7.5px;
|
|
4882
|
+
margin-right: 7.5px;
|
|
4883
|
+
margin-top: 6px;
|
|
4884
|
+
}
|
|
4885
|
+
|
|
4886
|
+
.e-bigger .e-de-statusbar-separator {
|
|
4887
|
+
border-left: 1px solid #4b5563;
|
|
4888
|
+
height: 16px;
|
|
4889
|
+
margin-left: 7.5px;
|
|
4890
|
+
margin-right: 7.5px;
|
|
4818
4891
|
margin-top: 6px;
|
|
4819
4892
|
}
|
|
4820
4893
|
|
|
4821
4894
|
.e-de-statusbar-spellcheck {
|
|
4822
4895
|
border-radius: 2px;
|
|
4823
4896
|
font-weight: 400;
|
|
4824
|
-
margin-left: 7.5px;
|
|
4825
4897
|
}
|
|
4826
4898
|
|
|
4827
4899
|
.e-de-ctn {
|
|
@@ -4834,7 +4906,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4834
4906
|
|
|
4835
4907
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
4836
4908
|
border-radius: 2px;
|
|
4837
|
-
margin-left: 7.5px;
|
|
4838
4909
|
}
|
|
4839
4910
|
|
|
4840
4911
|
.e-de-ctnr-toolbar {
|
|
@@ -5133,6 +5204,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5133
5204
|
}
|
|
5134
5205
|
|
|
5135
5206
|
.e-de-review-pane {
|
|
5207
|
+
background: #232e3e;
|
|
5136
5208
|
border-left: 1px solid #6b7280;
|
|
5137
5209
|
height: 100%;
|
|
5138
5210
|
min-height: 200px;
|
|
@@ -5157,34 +5229,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5157
5229
|
margin-bottom: 16px;
|
|
5158
5230
|
}
|
|
5159
5231
|
|
|
5160
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
5161
|
-
box-shadow: none;
|
|
5162
|
-
height: 31px;
|
|
5163
|
-
}
|
|
5164
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
5165
|
-
box-shadow: none;
|
|
5166
|
-
}
|
|
5167
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
5168
|
-
box-shadow: none;
|
|
5169
|
-
}
|
|
5170
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5171
|
-
box-shadow: none;
|
|
5172
|
-
}
|
|
5173
|
-
|
|
5174
|
-
.e-de-ctnr-group-btn button {
|
|
5175
|
-
box-shadow: none;
|
|
5176
|
-
height: 31px;
|
|
5177
|
-
}
|
|
5178
|
-
.e-de-ctnr-group-btn button:focus {
|
|
5179
|
-
box-shadow: none;
|
|
5180
|
-
}
|
|
5181
|
-
.e-de-ctnr-group-btn button:active {
|
|
5182
|
-
box-shadow: none;
|
|
5183
|
-
}
|
|
5184
|
-
.e-de-ctnr-group-btn button:hover {
|
|
5185
|
-
box-shadow: none;
|
|
5186
|
-
}
|
|
5187
|
-
|
|
5188
5232
|
.e-de-property-div-padding {
|
|
5189
5233
|
border-bottom: 0.5px solid #4b5563;
|
|
5190
5234
|
padding: 12px;
|
|
@@ -5318,7 +5362,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5318
5362
|
}
|
|
5319
5363
|
|
|
5320
5364
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
5321
|
-
border-bottom: 1px solid #d1d5db;
|
|
5365
|
+
border-bottom: 1px solid #d1d5db !important;
|
|
5322
5366
|
margin-left: 5px;
|
|
5323
5367
|
width: 100%;
|
|
5324
5368
|
}
|
|
@@ -5646,7 +5690,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5646
5690
|
}
|
|
5647
5691
|
|
|
5648
5692
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
5649
|
-
height:
|
|
5693
|
+
height: 36px !important;
|
|
5650
5694
|
}
|
|
5651
5695
|
|
|
5652
5696
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -5683,7 +5727,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5683
5727
|
margin-left: 10px;
|
|
5684
5728
|
}
|
|
5685
5729
|
.e-rtl .e-de-listview-icon {
|
|
5730
|
+
height: auto;
|
|
5731
|
+
width: auto;
|
|
5686
5732
|
line-height: 22px;
|
|
5733
|
+
margin-left: 10px;
|
|
5687
5734
|
}
|
|
5688
5735
|
|
|
5689
5736
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -5804,7 +5851,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5804
5851
|
height: 81px;
|
|
5805
5852
|
}
|
|
5806
5853
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
5807
|
-
height: 25px;
|
|
5808
5854
|
margin: 0 12px;
|
|
5809
5855
|
}
|
|
5810
5856
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -5907,6 +5953,19 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5907
5953
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5908
5954
|
box-shadow: none;
|
|
5909
5955
|
}
|
|
5956
|
+
.e-bigger .e-de-status-bar button {
|
|
5957
|
+
height: 38px;
|
|
5958
|
+
box-shadow: none;
|
|
5959
|
+
}
|
|
5960
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
5961
|
+
box-shadow: none;
|
|
5962
|
+
}
|
|
5963
|
+
.e-bigger .e-de-status-bar button:active {
|
|
5964
|
+
box-shadow: none;
|
|
5965
|
+
}
|
|
5966
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
5967
|
+
box-shadow: none;
|
|
5968
|
+
}
|
|
5910
5969
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
5911
5970
|
box-shadow: none;
|
|
5912
5971
|
height: 38px;
|
|
@@ -6012,18 +6071,18 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
6012
6071
|
margin-left: 10px;
|
|
6013
6072
|
}
|
|
6014
6073
|
.e-bigger .e-de-status-bar {
|
|
6015
|
-
background
|
|
6074
|
+
background: #374151;
|
|
6016
6075
|
display: -ms-flexbox;
|
|
6017
6076
|
display: flex;
|
|
6018
6077
|
padding-top: 6px;
|
|
6019
6078
|
width: 100%;
|
|
6020
6079
|
}
|
|
6021
6080
|
.e-bigger .e-de-statusbar-zoom {
|
|
6022
|
-
background-color: #374151;
|
|
6023
6081
|
border: 0;
|
|
6024
6082
|
color: #9ca3af;
|
|
6025
6083
|
float: right;
|
|
6026
6084
|
height: 34px;
|
|
6085
|
+
background-color: #374151;
|
|
6027
6086
|
}
|
|
6028
6087
|
.e-bigger .e-listview .e-list-icon {
|
|
6029
6088
|
height: 24px;
|
|
@@ -6031,7 +6090,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
6031
6090
|
margin-right: 16px;
|
|
6032
6091
|
}
|
|
6033
6092
|
.e-bigger .e-de-listview-icon {
|
|
6093
|
+
height: auto;
|
|
6094
|
+
width: auto;
|
|
6034
6095
|
line-height: 22px;
|
|
6096
|
+
margin-right: 16px;
|
|
6035
6097
|
}
|
|
6036
6098
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
6037
6099
|
height: 24px;
|
|
@@ -6039,7 +6101,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
6039
6101
|
margin-left: 16px;
|
|
6040
6102
|
}
|
|
6041
6103
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
6104
|
+
height: auto;
|
|
6105
|
+
width: auto;
|
|
6042
6106
|
line-height: 22px;
|
|
6107
|
+
margin-left: 16px;
|
|
6043
6108
|
}
|
|
6044
6109
|
|
|
6045
6110
|
.e-de-ctn .e-de-bzr-button {
|
package/styles/tailwind.css
CHANGED
|
@@ -2703,6 +2703,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2703
2703
|
margin-left: 12px;
|
|
2704
2704
|
}
|
|
2705
2705
|
|
|
2706
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2707
|
+
height: 40px !important;
|
|
2708
|
+
width: auto !important;
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2706
2711
|
.e-de-style-bold-button-size {
|
|
2707
2712
|
margin-left: 12px;
|
|
2708
2713
|
}
|
|
@@ -3610,6 +3615,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3610
3615
|
|
|
3611
3616
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3612
3617
|
margin-top: 0px;
|
|
3618
|
+
background: #f9fafb;
|
|
3613
3619
|
}
|
|
3614
3620
|
|
|
3615
3621
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -4556,6 +4562,21 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4556
4562
|
font-family: "e-icons";
|
|
4557
4563
|
}
|
|
4558
4564
|
|
|
4565
|
+
.e-de-e-paragraph-style-mark::before {
|
|
4566
|
+
content: "\e844";
|
|
4567
|
+
font-family: "e-icons";
|
|
4568
|
+
}
|
|
4569
|
+
|
|
4570
|
+
.e-de-e-character-style-mark::before {
|
|
4571
|
+
content: "\e8bf";
|
|
4572
|
+
font-family: "e-icons";
|
|
4573
|
+
}
|
|
4574
|
+
|
|
4575
|
+
.e-de-e-linked-style-mark::before {
|
|
4576
|
+
content: "\e8c0";
|
|
4577
|
+
font-family: "e-icons";
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4559
4580
|
.e-de-ctnr-columns::before {
|
|
4560
4581
|
content: "\e89d";
|
|
4561
4582
|
font-family: "e-icons";
|
|
@@ -4688,6 +4709,46 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4688
4709
|
height: 100%;
|
|
4689
4710
|
}
|
|
4690
4711
|
|
|
4712
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
4713
|
+
box-shadow: none;
|
|
4714
|
+
height: 31px;
|
|
4715
|
+
}
|
|
4716
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
4717
|
+
box-shadow: none;
|
|
4718
|
+
}
|
|
4719
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
4720
|
+
box-shadow: none;
|
|
4721
|
+
}
|
|
4722
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
4723
|
+
box-shadow: none;
|
|
4724
|
+
}
|
|
4725
|
+
|
|
4726
|
+
.e-de-ctnr-group-btn-middle button {
|
|
4727
|
+
border-radius: 0px;
|
|
4728
|
+
}
|
|
4729
|
+
|
|
4730
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
4731
|
+
box-shadow: none;
|
|
4732
|
+
}
|
|
4733
|
+
|
|
4734
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
4735
|
+
.e-de-ctn .e-de-status-bar button {
|
|
4736
|
+
box-shadow: none;
|
|
4737
|
+
height: 31px;
|
|
4738
|
+
}
|
|
4739
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
4740
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
4741
|
+
box-shadow: none;
|
|
4742
|
+
}
|
|
4743
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
4744
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
4745
|
+
box-shadow: none;
|
|
4746
|
+
}
|
|
4747
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
4748
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
4749
|
+
box-shadow: none;
|
|
4750
|
+
}
|
|
4751
|
+
|
|
4691
4752
|
.e-de-statusbar-pageweb {
|
|
4692
4753
|
background: #f3f4f6;
|
|
4693
4754
|
border: 0;
|
|
@@ -4720,7 +4781,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4720
4781
|
}
|
|
4721
4782
|
|
|
4722
4783
|
.e-de-listview-icon {
|
|
4784
|
+
height: auto;
|
|
4785
|
+
width: auto;
|
|
4723
4786
|
line-height: 22px;
|
|
4787
|
+
margin-right: 10px;
|
|
4724
4788
|
}
|
|
4725
4789
|
|
|
4726
4790
|
.e-de-linespacing {
|
|
@@ -4817,14 +4881,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4817
4881
|
.e-de-statusbar-separator {
|
|
4818
4882
|
border-left: 1px solid #e5e7eb;
|
|
4819
4883
|
height: 16px;
|
|
4820
|
-
margin-left:
|
|
4884
|
+
margin-left: 7.5px;
|
|
4885
|
+
margin-right: 7.5px;
|
|
4886
|
+
margin-top: 6px;
|
|
4887
|
+
}
|
|
4888
|
+
|
|
4889
|
+
.e-bigger .e-de-statusbar-separator {
|
|
4890
|
+
border-left: 1px solid #e5e7eb;
|
|
4891
|
+
height: 16px;
|
|
4892
|
+
margin-left: 7.5px;
|
|
4893
|
+
margin-right: 7.5px;
|
|
4821
4894
|
margin-top: 6px;
|
|
4822
4895
|
}
|
|
4823
4896
|
|
|
4824
4897
|
.e-de-statusbar-spellcheck {
|
|
4825
4898
|
border-radius: 2px;
|
|
4826
4899
|
font-weight: 400;
|
|
4827
|
-
margin-left: 7.5px;
|
|
4828
4900
|
}
|
|
4829
4901
|
|
|
4830
4902
|
.e-de-ctn {
|
|
@@ -4837,7 +4909,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4837
4909
|
|
|
4838
4910
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
4839
4911
|
border-radius: 2px;
|
|
4840
|
-
margin-left: 7.5px;
|
|
4841
4912
|
}
|
|
4842
4913
|
|
|
4843
4914
|
.e-de-ctnr-toolbar {
|
|
@@ -5136,6 +5207,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5136
5207
|
}
|
|
5137
5208
|
|
|
5138
5209
|
.e-de-review-pane {
|
|
5210
|
+
background: #f9fafb;
|
|
5139
5211
|
border-left: 1px solid #d1d5db;
|
|
5140
5212
|
height: 100%;
|
|
5141
5213
|
min-height: 200px;
|
|
@@ -5160,34 +5232,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5160
5232
|
margin-bottom: 16px;
|
|
5161
5233
|
}
|
|
5162
5234
|
|
|
5163
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
5164
|
-
box-shadow: none;
|
|
5165
|
-
height: 31px;
|
|
5166
|
-
}
|
|
5167
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
5168
|
-
box-shadow: none;
|
|
5169
|
-
}
|
|
5170
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
5171
|
-
box-shadow: none;
|
|
5172
|
-
}
|
|
5173
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5174
|
-
box-shadow: none;
|
|
5175
|
-
}
|
|
5176
|
-
|
|
5177
|
-
.e-de-ctnr-group-btn button {
|
|
5178
|
-
box-shadow: none;
|
|
5179
|
-
height: 31px;
|
|
5180
|
-
}
|
|
5181
|
-
.e-de-ctnr-group-btn button:focus {
|
|
5182
|
-
box-shadow: none;
|
|
5183
|
-
}
|
|
5184
|
-
.e-de-ctnr-group-btn button:active {
|
|
5185
|
-
box-shadow: none;
|
|
5186
|
-
}
|
|
5187
|
-
.e-de-ctnr-group-btn button:hover {
|
|
5188
|
-
box-shadow: none;
|
|
5189
|
-
}
|
|
5190
|
-
|
|
5191
5235
|
.e-de-property-div-padding {
|
|
5192
5236
|
border-bottom: 0.5px solid #e5e7eb;
|
|
5193
5237
|
padding: 12px;
|
|
@@ -5321,7 +5365,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5321
5365
|
}
|
|
5322
5366
|
|
|
5323
5367
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
5324
|
-
border-bottom: 1px solid #6b7280;
|
|
5368
|
+
border-bottom: 1px solid #6b7280 !important;
|
|
5325
5369
|
margin-left: 5px;
|
|
5326
5370
|
width: 100%;
|
|
5327
5371
|
}
|
|
@@ -5649,7 +5693,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5649
5693
|
}
|
|
5650
5694
|
|
|
5651
5695
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
5652
|
-
height:
|
|
5696
|
+
height: 36px !important;
|
|
5653
5697
|
}
|
|
5654
5698
|
|
|
5655
5699
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -5686,7 +5730,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5686
5730
|
margin-left: 10px;
|
|
5687
5731
|
}
|
|
5688
5732
|
.e-rtl .e-de-listview-icon {
|
|
5733
|
+
height: auto;
|
|
5734
|
+
width: auto;
|
|
5689
5735
|
line-height: 22px;
|
|
5736
|
+
margin-left: 10px;
|
|
5690
5737
|
}
|
|
5691
5738
|
|
|
5692
5739
|
.e-bigger .de-split-button > div:first-child {
|
|
@@ -5807,7 +5854,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5807
5854
|
height: 81px;
|
|
5808
5855
|
}
|
|
5809
5856
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
5810
|
-
height: 25px;
|
|
5811
5857
|
margin: 0 12px;
|
|
5812
5858
|
}
|
|
5813
5859
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
@@ -5910,6 +5956,19 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5910
5956
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5911
5957
|
box-shadow: none;
|
|
5912
5958
|
}
|
|
5959
|
+
.e-bigger .e-de-status-bar button {
|
|
5960
|
+
height: 38px;
|
|
5961
|
+
box-shadow: none;
|
|
5962
|
+
}
|
|
5963
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
5964
|
+
box-shadow: none;
|
|
5965
|
+
}
|
|
5966
|
+
.e-bigger .e-de-status-bar button:active {
|
|
5967
|
+
box-shadow: none;
|
|
5968
|
+
}
|
|
5969
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
5970
|
+
box-shadow: none;
|
|
5971
|
+
}
|
|
5913
5972
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
5914
5973
|
box-shadow: none;
|
|
5915
5974
|
height: 38px;
|
|
@@ -6015,18 +6074,18 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
6015
6074
|
margin-left: 10px;
|
|
6016
6075
|
}
|
|
6017
6076
|
.e-bigger .e-de-status-bar {
|
|
6018
|
-
background
|
|
6077
|
+
background: #f3f4f6;
|
|
6019
6078
|
display: -ms-flexbox;
|
|
6020
6079
|
display: flex;
|
|
6021
6080
|
padding-top: 6px;
|
|
6022
6081
|
width: 100%;
|
|
6023
6082
|
}
|
|
6024
6083
|
.e-bigger .e-de-statusbar-zoom {
|
|
6025
|
-
background-color: #f3f4f6;
|
|
6026
6084
|
border: 0;
|
|
6027
6085
|
color: #6b7280;
|
|
6028
6086
|
float: right;
|
|
6029
6087
|
height: 34px;
|
|
6088
|
+
background-color: #f3f4f6;
|
|
6030
6089
|
}
|
|
6031
6090
|
.e-bigger .e-listview .e-list-icon {
|
|
6032
6091
|
height: 24px;
|
|
@@ -6034,7 +6093,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
6034
6093
|
margin-right: 16px;
|
|
6035
6094
|
}
|
|
6036
6095
|
.e-bigger .e-de-listview-icon {
|
|
6096
|
+
height: auto;
|
|
6097
|
+
width: auto;
|
|
6037
6098
|
line-height: 22px;
|
|
6099
|
+
margin-right: 16px;
|
|
6038
6100
|
}
|
|
6039
6101
|
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
6040
6102
|
height: 24px;
|
|
@@ -6042,7 +6104,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
6042
6104
|
margin-left: 16px;
|
|
6043
6105
|
}
|
|
6044
6106
|
.e-bigger .e-rtl .e-de-listview-icon {
|
|
6107
|
+
height: auto;
|
|
6108
|
+
width: auto;
|
|
6045
6109
|
line-height: 22px;
|
|
6110
|
+
margin-left: 16px;
|
|
6046
6111
|
}
|
|
6047
6112
|
|
|
6048
6113
|
.e-de-ctn .e-de-bzr-button {
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
|
|
3
|
-
"schematics": {
|
|
4
|
-
"ng-add": {
|
|
5
|
-
"description": "Adds Essential JS 2 specific Angular package to an application",
|
|
6
|
-
"factory": "./ng-add",
|
|
7
|
-
"schema": "./ng-add/schema.json"
|
|
8
|
-
},
|
|
9
|
-
"documenteditorcontainer-default": {
|
|
10
|
-
"description": "Create an Angular documentEditorContainer component with toolbar feature ",
|
|
11
|
-
"factory": "./generators/documenteditorcontainer-default",
|
|
12
|
-
"schema": "./generators/documenteditorcontainer-default/schema.json"
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const schematics_1 = require("@syncfusion/ej2-angular-base/schematics");
|
|
4
|
-
const sampleDetails = require("./sample-details");
|
|
5
|
-
function default_1(options) {
|
|
6
|
-
return schematics_1.componentBuilder(options, sampleDetails);
|
|
7
|
-
}
|
|
8
|
-
exports.default = default_1;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.componentName = 'documenteditorcontainer';
|
|
4
|
-
exports.sampleName = 'default';
|
|
5
|
-
exports.diModules = 'ToolbarService';
|
|
6
|
-
exports.packageName = '@syncfusion/ej2-angular-documenteditor';
|
|
7
|
-
exports.libModules = 'DocumentEditorContainerModule';
|