@syncfusion/ej2-base 21.2.9 → 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.
Files changed (57) hide show
  1. package/.eslintrc.json +1 -0
  2. package/CHANGELOG.md +8 -0
  3. package/bin/syncfusion-license.js +1 -1
  4. package/dist/ej2-base.min.js +2 -2
  5. package/dist/ej2-base.umd.min.js +2 -2
  6. package/dist/ej2-base.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-base.es2015.js +203 -56
  8. package/dist/es6/ej2-base.es2015.js.map +1 -1
  9. package/dist/es6/ej2-base.es5.js +184 -34
  10. package/dist/es6/ej2-base.es5.js.map +1 -1
  11. package/dist/global/ej2-base.min.js +2 -2
  12. package/dist/global/ej2-base.min.js.map +1 -1
  13. package/dist/global/index.d.ts +1 -1
  14. package/package.json +61 -7
  15. package/src/draggable.js +3 -0
  16. package/src/fetch.d.ts +114 -0
  17. package/src/fetch.js +116 -0
  18. package/src/index.d.ts +1 -0
  19. package/src/index.js +1 -0
  20. package/src/intl/number-formatter.js +12 -5
  21. package/src/intl/parser-base.js +16 -16
  22. package/src/template-engine.d.ts +12 -3
  23. package/src/template-engine.js +21 -1
  24. package/src/template.d.ts +2 -2
  25. package/src/template.js +13 -8
  26. package/src/validate-lic.js +3 -3
  27. package/styles/_highcontrast-definition.scss +1 -1
  28. package/styles/_highcontrast-light-definition.scss +1 -1
  29. package/styles/_material3-dark-definition.scss +15 -0
  30. package/styles/_material3-definition.scss +16 -0
  31. package/styles/animation/_all.scss +64 -5
  32. package/styles/bootstrap-dark.css +47 -2
  33. package/styles/bootstrap.css +47 -2
  34. package/styles/bootstrap4.css +47 -2
  35. package/styles/bootstrap5-dark.css +47 -2
  36. package/styles/bootstrap5.css +47 -2
  37. package/styles/common/_core.scss +24 -4
  38. package/styles/definition/_material3-dark.scss +701 -0
  39. package/styles/definition/_material3.scss +782 -0
  40. package/styles/fabric-dark.css +47 -2
  41. package/styles/fabric.css +47 -2
  42. package/styles/fluent-dark.css +47 -2
  43. package/styles/fluent.css +47 -2
  44. package/styles/highcontrast-light.css +48 -3
  45. package/styles/highcontrast.css +48 -3
  46. package/styles/material-dark.css +47 -2
  47. package/styles/material.css +47 -2
  48. package/styles/material3-dark.css +2020 -0
  49. package/styles/material3-dark.scss +3 -0
  50. package/styles/material3.css +2076 -0
  51. package/styles/material3.scss +3 -0
  52. package/styles/offline-theme/material-dark.css +47 -2
  53. package/styles/offline-theme/material.css +47 -2
  54. package/styles/offline-theme/tailwind-dark.css +47 -2
  55. package/styles/offline-theme/tailwind.css +47 -2
  56. package/styles/tailwind-dark.css +47 -2
  57. package/styles/tailwind.css +47 -2
@@ -14,7 +14,12 @@
14
14
  $warning: #ffd800;
15
15
  $yellow: #ffff00;
16
16
  .e-error {
17
- color: $error-font-color;
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
- color: $warning-font-color;
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
- color: $success-font-color;
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
- color: $information-font-color;
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 {