@syncfusion/ej2-angular-documenteditor 22.2.7-ngcc → 22.2.7
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/document-editor/documenteditor-all.module.mjs +116 -0
- package/esm2020/src/document-editor/documenteditor.component.mjs +269 -0
- package/esm2020/src/document-editor/documenteditor.module.mjs +25 -0
- package/esm2020/src/document-editor-container/documenteditorcontainer-all.module.mjs +29 -0
- package/esm2020/src/document-editor-container/documenteditorcontainer.component.mjs +66 -0
- package/esm2020/src/document-editor-container/documenteditorcontainer.module.mjs +25 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/syncfusion-ej2-angular-documenteditor.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs +516 -0
- package/fesm2015/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs +516 -0
- package/fesm2020/syncfusion-ej2-angular-documenteditor.mjs.map +1 -0
- package/package.json +27 -13
- package/src/document-editor/documenteditor-all.module.d.ts +6 -0
- package/src/document-editor/documenteditor.component.d.ts +3 -0
- package/src/document-editor/documenteditor.module.d.ts +6 -0
- package/src/document-editor-container/documenteditorcontainer-all.module.d.ts +6 -0
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -0
- package/src/document-editor-container/documenteditorcontainer.module.d.ts +6 -0
- package/styles/document-editor/_all.scss +3 -0
- package/styles/document-editor/_bootstrap-dark-definition.scss +547 -0
- package/styles/document-editor/_bootstrap-definition.scss +546 -0
- package/styles/document-editor/_bootstrap4-definition.scss +559 -0
- package/styles/document-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/document-editor/_bootstrap5-definition.scss +560 -0
- package/styles/document-editor/_fabric-dark-definition.scss +549 -0
- package/styles/document-editor/_fabric-definition.scss +548 -0
- package/styles/document-editor/_fluent-dark-definition.scss +1 -0
- package/styles/document-editor/_fluent-definition.scss +569 -0
- package/styles/document-editor/_fusionnew-definition.scss +560 -0
- package/styles/document-editor/_highcontrast-definition.scss +548 -0
- package/styles/document-editor/_highcontrast-light-definition.scss +2988 -0
- package/styles/document-editor/_layout.scss +216 -0
- package/styles/document-editor/_material-dark-definition.scss +565 -0
- package/styles/document-editor/_material-definition.scss +565 -0
- package/styles/document-editor/_material3-dark-definition.scss +1 -0
- package/styles/document-editor/_material3-definition.scss +560 -0
- package/styles/document-editor/_tailwind-dark-definition.scss +1 -0
- package/styles/document-editor/_tailwind-definition.scss +557 -0
- package/styles/document-editor/_theme.scss +3539 -0
- package/styles/document-editor/bootstrap-dark.scss +4 -1
- package/styles/document-editor/bootstrap.scss +4 -1
- package/styles/document-editor/bootstrap4.scss +4 -1
- package/styles/document-editor/bootstrap5-dark.scss +4 -1
- package/styles/document-editor/bootstrap5.scss +4 -1
- package/styles/document-editor/fabric-dark.scss +4 -1
- package/styles/document-editor/fabric.scss +4 -1
- package/styles/document-editor/fluent-dark.scss +4 -1
- package/styles/document-editor/fluent.scss +4 -1
- package/styles/document-editor/highcontrast-light.scss +4 -1
- package/styles/document-editor/highcontrast.scss +4 -1
- package/styles/document-editor/icons/_bootstrap-dark.scss +660 -0
- package/styles/document-editor/icons/_bootstrap.scss +660 -0
- package/styles/document-editor/icons/_bootstrap4.scss +645 -0
- package/styles/document-editor/icons/_bootstrap5-dark.scss +1 -0
- package/styles/document-editor/icons/_bootstrap5.scss +699 -0
- package/styles/document-editor/icons/_fabric-dark.scss +660 -0
- package/styles/document-editor/icons/_fabric.scss +660 -0
- package/styles/document-editor/icons/_fluent-dark.scss +1 -0
- package/styles/document-editor/icons/_fluent.scss +702 -0
- package/styles/document-editor/icons/_fusionnew.scss +696 -0
- package/styles/document-editor/icons/_highcontrast-light.scss +665 -0
- package/styles/document-editor/icons/_highcontrast.scss +660 -0
- package/styles/document-editor/icons/_material-dark.scss +653 -0
- package/styles/document-editor/icons/_material.scss +653 -0
- package/styles/document-editor/icons/_material3-dark.scss +1 -0
- package/styles/document-editor/icons/_material3.scss +696 -0
- package/styles/document-editor/icons/_tailwind-dark.scss +696 -0
- package/styles/document-editor/icons/_tailwind.scss +699 -0
- package/styles/document-editor/implementation/dailogs/_paragraph-dailogs.scss +174 -0
- package/styles/document-editor/material-dark.scss +4 -1
- package/styles/document-editor/material.scss +4 -1
- package/styles/document-editor/material3-dark.scss +4 -1
- package/styles/document-editor/material3.scss +4 -1
- package/styles/document-editor/tailwind-dark.scss +4 -1
- package/styles/document-editor/tailwind.scss +4 -1
- package/styles/document-editor-container/_all.scss +2 -0
- package/styles/document-editor-container/_bootstrap-dark-definition.scss +133 -0
- package/styles/document-editor-container/_bootstrap-definition.scss +133 -0
- package/styles/document-editor-container/_bootstrap4-definition.scss +149 -0
- package/styles/document-editor-container/_bootstrap5-dark-definition.scss +1 -0
- package/styles/document-editor-container/_bootstrap5-definition.scss +159 -0
- package/styles/document-editor-container/_definition.scss +12 -0
- package/styles/document-editor-container/_fabric-dark-definition.scss +138 -0
- package/styles/document-editor-container/_fabric-definition.scss +135 -0
- package/styles/document-editor-container/_fluent-dark-definition.scss +1 -0
- package/styles/document-editor-container/_fluent-definition.scss +160 -0
- package/styles/document-editor-container/_fusionnew-definition.scss +159 -0
- package/styles/document-editor-container/_highcontrast-definition.scss +136 -0
- package/styles/document-editor-container/_highcontrast-light-definition.scss +139 -0
- package/styles/document-editor-container/_layout.scss +87 -0
- package/styles/document-editor-container/_material-dark-definition.scss +137 -0
- package/styles/document-editor-container/_material-definition.scss +136 -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-dark-definition.scss +1 -0
- package/styles/document-editor-container/_tailwind-definition.scss +153 -0
- package/styles/document-editor-container/_theme.scss +2406 -0
- package/styles/document-editor-container/bootstrap-dark.scss +5 -1
- package/styles/document-editor-container/bootstrap.scss +5 -1
- package/styles/document-editor-container/bootstrap4.scss +5 -1
- package/styles/document-editor-container/bootstrap5-dark.scss +5 -1
- package/styles/document-editor-container/bootstrap5.scss +5 -1
- package/styles/document-editor-container/fabric-dark.scss +5 -1
- package/styles/document-editor-container/fabric.scss +5 -1
- package/styles/document-editor-container/fluent-dark.scss +5 -1
- package/styles/document-editor-container/fluent.scss +5 -1
- package/styles/document-editor-container/highcontrast-light.scss +5 -1
- package/styles/document-editor-container/highcontrast.scss +5 -1
- package/styles/document-editor-container/icons/_bootstrap-dark.scss +482 -0
- package/styles/document-editor-container/icons/_bootstrap.scss +482 -0
- package/styles/document-editor-container/icons/_bootstrap4.scss +482 -0
- package/styles/document-editor-container/icons/_bootstrap5-dark.scss +1 -0
- package/styles/document-editor-container/icons/_bootstrap5.scss +509 -0
- package/styles/document-editor-container/icons/_fabric-dark.scss +483 -0
- package/styles/document-editor-container/icons/_fabric.scss +482 -0
- package/styles/document-editor-container/icons/_fluent-dark.scss +1 -0
- package/styles/document-editor-container/icons/_fluent.scss +508 -0
- package/styles/document-editor-container/icons/_fusionnew.scss +508 -0
- package/styles/document-editor-container/icons/_highcontrast-light.scss +482 -0
- package/styles/document-editor-container/icons/_highcontrast.scss +482 -0
- package/styles/document-editor-container/icons/_material-dark.scss +484 -0
- package/styles/document-editor-container/icons/_material.scss +484 -0
- package/styles/document-editor-container/icons/_material3-dark.scss +1 -0
- package/styles/document-editor-container/icons/_material3.scss +507 -0
- package/styles/document-editor-container/icons/_tailwind-dark.scss +508 -0
- package/styles/document-editor-container/icons/_tailwind.scss +508 -0
- package/styles/document-editor-container/material-dark.scss +5 -1
- package/styles/document-editor-container/material.scss +5 -1
- package/styles/document-editor-container/material3-dark.scss +5 -1
- package/styles/document-editor-container/material3.scss +5 -1
- package/styles/document-editor-container/tailwind-dark.scss +5 -1
- package/styles/document-editor-container/tailwind.scss +5 -1
- package/styles/material3-dark.css +0 -56
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +0 -111
- package/styles/material3.scss +1 -0
- package/syncfusion-ej2-angular-documenteditor.d.ts +5 -0
- package/@syncfusion/ej2-angular-documenteditor.es5.js +0 -583
- package/@syncfusion/ej2-angular-documenteditor.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-documenteditor.js +0 -553
- package/@syncfusion/ej2-angular-documenteditor.js.map +0 -1
- package/CHANGELOG.md +0 -3535
- package/dist/ej2-angular-documenteditor.umd.js +0 -1250
- package/dist/ej2-angular-documenteditor.umd.js.map +0 -1
- package/dist/ej2-angular-documenteditor.umd.min.js +0 -11
- package/dist/ej2-angular-documenteditor.umd.min.js.map +0 -1
- package/ej2-angular-documenteditor.d.ts +0 -6
- package/ej2-angular-documenteditor.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
@include export-module('documenteditor-layout') {
|
|
2
|
+
.e-de-dlg-container {
|
|
3
|
+
padding-bottom: $de-padding-full;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.e-de-dlg-row {
|
|
7
|
+
display: flex;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.e-de-container-row {
|
|
11
|
+
display: flex;
|
|
12
|
+
padding-bottom: $de-padding-full;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-de-subcontainer-left {
|
|
16
|
+
padding-right: $de-padding-half;
|
|
17
|
+
width: 50%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.e-de-subcontainer-right {
|
|
21
|
+
padding-left: $de-padding-half;
|
|
22
|
+
width: 50%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-de-dlg-tab-first-child {
|
|
26
|
+
padding-top: $de-padding-half;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-de-dlg-heading {
|
|
30
|
+
display: block;
|
|
31
|
+
font-size: $de-para-dlg-heading-font-size;
|
|
32
|
+
font-weight: $de-para-dlg-heading-font-weight;
|
|
33
|
+
margin-bottom: $de-ff-dlg-heading-mrgn-btm;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.e-rtl {
|
|
37
|
+
.e-de-subcontainer-left {
|
|
38
|
+
padding-left: $de-padding-half;
|
|
39
|
+
padding-right: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-de-subcontainer-right {
|
|
43
|
+
padding-left: 0;
|
|
44
|
+
padding-right: $de-padding-half;
|
|
45
|
+
width: 50%;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-bigger {
|
|
50
|
+
.e-de-dlg-container {
|
|
51
|
+
padding-bottom: $de-padding-full-bigger;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-de-container-row {
|
|
55
|
+
padding-bottom: $de-padding-full-bigger;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-de-subcontainer-left {
|
|
59
|
+
padding-right: $de-padding-half-bigger;
|
|
60
|
+
width: 50%;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.e-de-subcontainer-right {
|
|
64
|
+
padding-left: $de-padding-half-bigger;
|
|
65
|
+
width: 50%;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-de-dlg-tab-first-child {
|
|
69
|
+
padding-top: $de-padding-half-bigger;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.e-rtl {
|
|
73
|
+
.e-de-subcontainer-left {
|
|
74
|
+
padding-left: $de-padding-half-bigger;
|
|
75
|
+
padding-right: 0;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-de-subcontainer-right {
|
|
79
|
+
padding-left: 0;
|
|
80
|
+
padding-right: $de-padding-half-bigger;
|
|
81
|
+
width: 50%;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-de-blink-cursor {
|
|
87
|
+
border-left: 1px solid $de-blink-cursor-clr;
|
|
88
|
+
pointer-events: none;
|
|
89
|
+
position: absolute;
|
|
90
|
+
z-index: 3;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.e-de-cursor-animation {
|
|
94
|
+
animation-duration: 1s;
|
|
95
|
+
animation-iteration-count: infinite;
|
|
96
|
+
animation-name: FadeInFadeOut;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@keyframes FadeInFadeOut {
|
|
100
|
+
from {
|
|
101
|
+
opacity: 1;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
13% {
|
|
105
|
+
opacity: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
50% {
|
|
109
|
+
opacity: 0;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
63% {
|
|
113
|
+
opacity: 1;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
to {
|
|
117
|
+
opacity: 1;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.e-de-text-target {
|
|
122
|
+
border: 0;
|
|
123
|
+
height: 1px;
|
|
124
|
+
opacity: 0;
|
|
125
|
+
outline-style: none;
|
|
126
|
+
overflow: hidden;
|
|
127
|
+
pointer-events: none;
|
|
128
|
+
position: absolute;
|
|
129
|
+
top: -10000px;
|
|
130
|
+
width: 625px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.e-de-txt-form {
|
|
134
|
+
.e-de-txt-field {
|
|
135
|
+
display: block;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.e-de-num-field {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-de-date-field {
|
|
143
|
+
display: none;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-de-ddl-field {
|
|
147
|
+
display: none;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-de-num-form {
|
|
152
|
+
.e-de-txt-field {
|
|
153
|
+
display: none;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.e-de-num-field {
|
|
157
|
+
display: block;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.e-de-date-field {
|
|
161
|
+
display: none;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-de-ddl-field {
|
|
165
|
+
display: none;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.e-de-date-form {
|
|
170
|
+
.e-de-txt-field {
|
|
171
|
+
display: none;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-de-num-field {
|
|
175
|
+
display: none;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-de-date-field {
|
|
179
|
+
display: block;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.e-de-ddl-field {
|
|
183
|
+
display: none;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.e-de-ddl-form {
|
|
188
|
+
.e-de-txt-field {
|
|
189
|
+
display: none;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-de-num-field {
|
|
193
|
+
display: none;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.e-de-date-field {
|
|
197
|
+
display: none;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.e-de-ddl-field {
|
|
201
|
+
display: block;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-documenteditor {
|
|
206
|
+
.e-de-op-close-button {
|
|
207
|
+
left: 267px;
|
|
208
|
+
position: absolute;
|
|
209
|
+
top: $de-op-close-button-top;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.e-de-op-close-button.e-de-rtl {
|
|
213
|
+
left: 14px;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|