@syncfusion/ej2-base 21.2.9 → 22.1.38
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +16 -0
- package/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +2 -2
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +210 -63
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +185 -35
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +27 -15
- package/src/draggable.js +3 -0
- package/src/fetch.d.ts +114 -0
- package/src/fetch.js +116 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/intl/number-formatter.js +12 -5
- package/src/intl/parser-base.js +16 -16
- package/src/template-engine.d.ts +12 -3
- package/src/template-engine.js +21 -1
- package/src/template.d.ts +2 -2
- package/src/template.js +13 -8
- package/src/validate-lic.js +4 -4
- package/styles/_highcontrast-definition.scss +1 -1
- package/styles/_highcontrast-light-definition.scss +1 -1
- package/styles/_material3-dark-definition.scss +15 -0
- package/styles/_material3-definition.scss +16 -0
- package/styles/animation/_all.scss +64 -5
- package/styles/bootstrap-dark.css +47 -2
- package/styles/bootstrap.css +47 -2
- package/styles/bootstrap4.css +47 -2
- package/styles/bootstrap5-dark.css +47 -2
- package/styles/bootstrap5.css +47 -2
- package/styles/common/_core.scss +24 -4
- package/styles/definition/_material3-dark.scss +701 -0
- package/styles/definition/_material3.scss +782 -0
- package/styles/fabric-dark.css +47 -2
- package/styles/fabric.css +47 -2
- package/styles/fluent-dark.css +47 -2
- package/styles/fluent.css +47 -2
- package/styles/highcontrast-light.css +48 -3
- package/styles/highcontrast.css +48 -3
- package/styles/material-dark.css +47 -2
- package/styles/material.css +47 -2
- package/styles/material3-dark.css +2020 -0
- package/styles/material3-dark.scss +3 -0
- package/styles/material3.css +2076 -0
- package/styles/material3.scss +3 -0
- package/styles/offline-theme/material-dark.css +47 -2
- package/styles/offline-theme/material.css +47 -2
- package/styles/offline-theme/tailwind-dark.css +47 -2
- package/styles/offline-theme/tailwind.css +47 -2
- package/styles/tailwind-dark.css +47 -2
- package/styles/tailwind.css +47 -2
package/styles/common/_core.scss
CHANGED
|
@@ -14,7 +14,12 @@
|
|
|
14
14
|
$warning: #ffd800;
|
|
15
15
|
$yellow: #ffff00;
|
|
16
16
|
.e-error {
|
|
17
|
-
|
|
17
|
+
@if $skin-name == 'Material3' {
|
|
18
|
+
color: rgba($error-font-color);
|
|
19
|
+
}
|
|
20
|
+
@else {
|
|
21
|
+
color: $error-font-color;
|
|
22
|
+
}
|
|
18
23
|
font-family: $font-family;
|
|
19
24
|
font-size: $font-size;
|
|
20
25
|
font-weight: $font-weight;
|
|
@@ -70,15 +75,30 @@
|
|
|
70
75
|
}
|
|
71
76
|
|
|
72
77
|
.e-warning {
|
|
73
|
-
|
|
78
|
+
@if $skin-name == 'Material3' {
|
|
79
|
+
color: rgba($warning-font-color);
|
|
80
|
+
}
|
|
81
|
+
@else {
|
|
82
|
+
color: $warning-font-color;
|
|
83
|
+
}
|
|
74
84
|
}
|
|
75
85
|
|
|
76
86
|
.e-success {
|
|
77
|
-
|
|
87
|
+
@if $skin-name == 'Material3' {
|
|
88
|
+
color: rgba($success-font-color);
|
|
89
|
+
}
|
|
90
|
+
@else {
|
|
91
|
+
color: $success-font-color;
|
|
92
|
+
}
|
|
78
93
|
}
|
|
79
94
|
|
|
80
95
|
.e-information {
|
|
81
|
-
|
|
96
|
+
@if $skin-name == 'Material3' {
|
|
97
|
+
color: rgba($information-font-color);
|
|
98
|
+
}
|
|
99
|
+
@else {
|
|
100
|
+
color: $information-font-color;
|
|
101
|
+
}
|
|
82
102
|
}
|
|
83
103
|
|
|
84
104
|
.e-block-touch {
|