@syncfusion/ej2-angular-documenteditor 22.2.12-ngcc → 23.1.36-ngcc
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/@syncfusion/ej2-angular-documenteditor.es5.js +1 -1
- package/@syncfusion/ej2-angular-documenteditor.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-documenteditor.js +1 -1
- package/@syncfusion/ej2-angular-documenteditor.js.map +1 -1
- package/CHANGELOG.md +26 -16
- package/dist/ej2-angular-documenteditor.umd.js +6 -1
- package/dist/ej2-angular-documenteditor.umd.js.map +1 -1
- package/dist/ej2-angular-documenteditor.umd.min.js +2 -2
- package/package.json +9 -9
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap-dark.css +6 -0
- package/styles/bootstrap.css +6 -0
- package/styles/bootstrap4.css +6 -0
- package/styles/bootstrap5-dark.css +6 -0
- package/styles/bootstrap5.css +6 -0
- package/styles/document-editor/bootstrap-dark.css +5 -0
- package/styles/document-editor/bootstrap.css +5 -0
- package/styles/document-editor/bootstrap4.css +5 -0
- package/styles/document-editor/bootstrap5-dark.css +5 -0
- package/styles/document-editor/bootstrap5.css +5 -0
- package/styles/document-editor/fabric-dark.css +5 -0
- package/styles/document-editor/fabric.css +5 -0
- package/styles/document-editor/fluent-dark.css +5 -0
- package/styles/document-editor/fluent.css +5 -0
- package/styles/document-editor/highcontrast.css +5 -0
- package/styles/document-editor/material-dark.css +5 -1
- package/styles/document-editor/material.css +5 -1
- package/styles/document-editor/material3-dark.css +10 -1
- package/styles/document-editor/material3-dark.scss +1 -1
- package/styles/document-editor/material3.css +10 -1
- package/styles/document-editor/material3.scss +1 -1
- package/styles/document-editor/tailwind-dark.css +5 -1
- package/styles/document-editor/tailwind.css +5 -1
- package/styles/document-editor-container/bootstrap-dark.css +1 -0
- package/styles/document-editor-container/bootstrap.css +1 -0
- package/styles/document-editor-container/bootstrap4.css +1 -0
- package/styles/document-editor-container/bootstrap5-dark.css +1 -0
- package/styles/document-editor-container/bootstrap5.css +1 -0
- package/styles/document-editor-container/fabric-dark.css +1 -0
- package/styles/document-editor-container/fabric.css +1 -0
- package/styles/document-editor-container/fluent-dark.css +1 -0
- package/styles/document-editor-container/fluent.css +1 -0
- package/styles/document-editor-container/highcontrast-light.css +1 -0
- package/styles/document-editor-container/highcontrast.css +1 -0
- package/styles/document-editor-container/material-dark.css +1 -1
- package/styles/document-editor-container/material.css +1 -1
- package/styles/document-editor-container/material3-dark.css +1 -1
- package/styles/document-editor-container/material3-dark.scss +1 -1
- package/styles/document-editor-container/material3.css +1 -1
- package/styles/document-editor-container/material3.scss +1 -1
- package/styles/document-editor-container/tailwind-dark.css +0 -1
- package/styles/document-editor-container/tailwind.css +0 -1
- package/styles/fabric-dark.css +6 -0
- package/styles/fabric.css +6 -0
- package/styles/fluent-dark.css +6 -0
- package/styles/fluent.css +6 -0
- package/styles/highcontrast-light.css +1 -0
- package/styles/highcontrast.css +6 -0
- package/styles/material-dark.css +6 -1
- package/styles/material.css +6 -1
- package/styles/material3-dark.css +11 -2
- package/styles/material3.css +11 -1
- package/styles/tailwind-dark.css +5 -2
- package/styles/tailwind.css +5 -2
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
3
1
|
:root {
|
|
4
2
|
--color-sf-black: 0, 0, 0;
|
|
5
3
|
--color-sf-white: 255, 255, 255;
|
|
@@ -2489,6 +2487,16 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2489
2487
|
width: auto !important;
|
|
2490
2488
|
}
|
|
2491
2489
|
|
|
2490
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-group-button button,
|
|
2491
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-style-paragraph button {
|
|
2492
|
+
height: 40px !important;
|
|
2493
|
+
width: 44px !important;
|
|
2494
|
+
}
|
|
2495
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2496
|
+
height: 40px !important;
|
|
2497
|
+
width: auto !important;
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2492
2500
|
.e-bigger .e-rtl .e-de-style-font-group-button button,
|
|
2493
2501
|
.e-bigger .e-rtl .e-de-style-paragraph-indent-group-button button,
|
|
2494
2502
|
.e-bigger .e-rtl .e-de-style-paragraph-group-button button {
|
|
@@ -5431,6 +5439,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5431
5439
|
line-height: normal;
|
|
5432
5440
|
margin: 0;
|
|
5433
5441
|
outline: 0;
|
|
5442
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
5434
5443
|
padding: 10px 0;
|
|
5435
5444
|
position: absolute;
|
|
5436
5445
|
width: auto;
|
package/styles/material3.css
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
1
|
:root {
|
|
3
2
|
--color-sf-black: 0, 0, 0;
|
|
4
3
|
--color-sf-white: 255, 255, 255;
|
|
@@ -2544,6 +2543,16 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2544
2543
|
width: auto !important;
|
|
2545
2544
|
}
|
|
2546
2545
|
|
|
2546
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-group-button button,
|
|
2547
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-style-paragraph button {
|
|
2548
|
+
height: 40px !important;
|
|
2549
|
+
width: 44px !important;
|
|
2550
|
+
}
|
|
2551
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2552
|
+
height: 40px !important;
|
|
2553
|
+
width: auto !important;
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2547
2556
|
.e-bigger .e-rtl .e-de-style-font-group-button button,
|
|
2548
2557
|
.e-bigger .e-rtl .e-de-style-paragraph-indent-group-button button,
|
|
2549
2558
|
.e-bigger .e-rtl .e-de-style-paragraph-group-button button {
|
|
@@ -5542,6 +5551,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5542
5551
|
line-height: normal;
|
|
5543
5552
|
margin: 0;
|
|
5544
5553
|
outline: 0;
|
|
5554
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
5545
5555
|
padding: 10px 0;
|
|
5546
5556
|
position: absolute;
|
|
5547
5557
|
width: auto;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
-
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
3
1
|
.e-documenteditor .e-close::before {
|
|
4
2
|
color: #d1d5db;
|
|
5
3
|
content: "\e7e7";
|
|
@@ -2713,6 +2711,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2713
2711
|
width: auto !important;
|
|
2714
2712
|
}
|
|
2715
2713
|
|
|
2714
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2715
|
+
height: 40px !important;
|
|
2716
|
+
width: auto !important;
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2716
2719
|
.e-de-style-bold-button-size {
|
|
2717
2720
|
margin-left: 12px;
|
|
2718
2721
|
}
|
package/styles/tailwind.css
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
-
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
3
1
|
.e-documenteditor .e-close::before {
|
|
4
2
|
color: #6b7280;
|
|
5
3
|
content: "\e7e7";
|
|
@@ -2716,6 +2714,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2716
2714
|
width: auto !important;
|
|
2717
2715
|
}
|
|
2718
2716
|
|
|
2717
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2718
|
+
height: 40px !important;
|
|
2719
|
+
width: auto !important;
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2719
2722
|
.e-de-style-bold-button-size {
|
|
2720
2723
|
margin-left: 12px;
|
|
2721
2724
|
}
|