@syncfusion/ej2-base 24.2.7 → 25.1.35-579988

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 (163) hide show
  1. package/.eslintrc.json +2 -1
  2. package/CHANGELOG.md +641 -677
  3. package/{README.md → ReadMe.md} +100 -100
  4. package/dist/ej2-base.umd.min.js +1 -10
  5. package/dist/ej2-base.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-base.es2015.js +178 -1025
  7. package/dist/es6/ej2-base.es2015.js.map +1 -1
  8. package/dist/es6/ej2-base.es5.js +226 -934
  9. package/dist/es6/ej2-base.es5.js.map +1 -1
  10. package/dist/global/ej2-base.min.js +1 -10
  11. package/dist/global/ej2-base.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/ajax.ts +236 -0
  14. package/dist/ts/animation.ts +544 -0
  15. package/dist/ts/base.ts +357 -0
  16. package/dist/ts/browser.ts +387 -0
  17. package/dist/ts/child-property.ts +192 -0
  18. package/dist/ts/component.ts +519 -0
  19. package/dist/ts/dom.ts +488 -0
  20. package/dist/ts/draggable.ts +1155 -0
  21. package/dist/ts/droppable.ts +172 -0
  22. package/dist/ts/event-handler.ts +169 -0
  23. package/dist/ts/internationalization.ts +369 -0
  24. package/dist/ts/intl/date-formatter.ts +317 -0
  25. package/dist/ts/intl/date-parser.ts +426 -0
  26. package/dist/ts/intl/intl-base.ts +1104 -0
  27. package/dist/ts/intl/number-formatter.ts +411 -0
  28. package/dist/ts/intl/number-parser.ts +158 -0
  29. package/dist/ts/intl/parser-base.ts +394 -0
  30. package/dist/ts/keyboard.ts +238 -0
  31. package/dist/ts/l10n.ts +94 -0
  32. package/dist/ts/module-loader.ts +149 -0
  33. package/dist/ts/notify-property-change.ts +726 -0
  34. package/dist/ts/observer.ts +236 -0
  35. package/dist/ts/sanitize-helper.ts +224 -0
  36. package/dist/ts/template-engine.ts +191 -0
  37. package/dist/ts/template.ts +329 -0
  38. package/dist/ts/touch.ts +544 -0
  39. package/dist/ts/util.ts +523 -0
  40. package/dist/ts/validate-lic.ts +0 -0
  41. package/e2e/crypto.js +16 -16
  42. package/e2e/m.protractor.config.js +286 -286
  43. package/e2e/modified-protractor/protractor.config.js +316 -316
  44. package/e2e/protractor.config.js +389 -332
  45. package/helpers/e2e/index.js +3 -3
  46. package/license +10 -10
  47. package/package.json +225 -174
  48. package/src/ajax.d.ts +1 -1
  49. package/src/ajax.js +3 -8
  50. package/src/animation-model.d.ts +41 -41
  51. package/src/animation.d.ts +6 -6
  52. package/src/animation.js +25 -25
  53. package/src/base.d.ts +2 -1
  54. package/src/base.js +9 -7
  55. package/src/component-model.d.ts +16 -16
  56. package/src/component.d.ts +9 -3
  57. package/src/component.js +50 -38
  58. package/src/draggable-model.d.ts +113 -113
  59. package/src/draggable.d.ts +2 -0
  60. package/src/draggable.js +45 -29
  61. package/src/droppable-model.d.ts +23 -23
  62. package/src/droppable.js +19 -19
  63. package/src/event-handler.js +2 -1
  64. package/src/index.d.ts +0 -3
  65. package/src/index.js +0 -3
  66. package/src/intl/date-formatter.js +2 -6
  67. package/src/intl/date-parser.js +1 -20
  68. package/src/intl/intl-base.js +1 -164
  69. package/src/intl/number-formatter.d.ts +3 -0
  70. package/src/intl/number-formatter.js +7 -7
  71. package/src/intl/number-parser.js +1 -0
  72. package/src/keyboard-model.d.ts +16 -16
  73. package/src/keyboard.js +19 -19
  74. package/src/module-loader.d.ts +12 -0
  75. package/src/module-loader.js +11 -0
  76. package/src/notify-property-change.js +3 -2
  77. package/src/observer.js +2 -0
  78. package/src/sanitize-helper.js +5 -0
  79. package/src/template-engine.js +1 -0
  80. package/src/template.js +3 -2
  81. package/src/touch-model.d.ts +39 -39
  82. package/src/touch.js +19 -19
  83. package/src/validate-lic.d.ts +0 -11
  84. package/src/validate-lic.js +1 -259
  85. package/styles/_all.scss +2 -2
  86. package/styles/_bds-dark-definition.scss +15 -0
  87. package/styles/_bds-definition.scss +15 -0
  88. package/styles/_bootstrap-dark-definition.scss +42 -42
  89. package/styles/_bootstrap-definition.scss +42 -42
  90. package/styles/_bootstrap4-definition.scss +11 -11
  91. package/styles/_bootstrap5-dark-definition.scss +9 -9
  92. package/styles/_bootstrap5-definition.scss +8 -8
  93. package/styles/_fabric-dark-definition.scss +42 -42
  94. package/styles/_fabric-definition.scss +42 -42
  95. package/styles/_fluent-dark-definition.scss +9 -9
  96. package/styles/_fluent-definition.scss +9 -9
  97. package/styles/_fluent2-definition.scss +9 -0
  98. package/styles/_fusionnew-dark-definition.scss +8 -8
  99. package/styles/_fusionnew-definition.scss +8 -8
  100. package/styles/_highcontrast-definition.scss +42 -42
  101. package/styles/_highcontrast-light-definition.scss +42 -42
  102. package/styles/_material-dark-definition.scss +48 -48
  103. package/styles/_material-definition.scss +49 -49
  104. package/styles/_material3-dark-definition.scss +14 -14
  105. package/styles/_material3-definition.scss +15 -15
  106. package/styles/_tailwind-dark-definition.scss +15 -15
  107. package/styles/_tailwind-definition.scss +15 -15
  108. package/styles/animation/_all.scss +560 -560
  109. package/styles/bootstrap-dark.css +10 -1
  110. package/styles/bootstrap.css +10 -1
  111. package/styles/bootstrap4.css +10 -1
  112. package/styles/bootstrap5-dark.css +10 -1
  113. package/styles/bootstrap5.css +10 -1
  114. package/styles/common/_all.scss +2 -2
  115. package/styles/common/_core.scss +117 -117
  116. package/styles/common/_mixin.scss +9 -9
  117. package/styles/definition/_bds-dark.scss +1179 -0
  118. package/styles/definition/_bds.scss +1474 -0
  119. package/styles/definition/_bootstrap-dark.scss +219 -219
  120. package/styles/definition/_bootstrap.scss +215 -215
  121. package/styles/definition/_bootstrap4.scss +167 -167
  122. package/styles/definition/_bootstrap5-dark.scss +493 -493
  123. package/styles/definition/_bootstrap5.scss +494 -494
  124. package/styles/definition/_fabric-dark.scss +200 -200
  125. package/styles/definition/_fabric.scss +198 -198
  126. package/styles/definition/_fluent-dark.scss +557 -557
  127. package/styles/definition/_fluent.scss +558 -558
  128. package/styles/definition/_fluent2.scss +2198 -0
  129. package/styles/definition/_fusionnew-dark.scss +362 -362
  130. package/styles/definition/_fusionnew.scss +363 -363
  131. package/styles/definition/_highcontrast-light.scss +193 -193
  132. package/styles/definition/_highcontrast.scss +195 -195
  133. package/styles/definition/_material-dark.scss +198 -198
  134. package/styles/definition/_material.scss +192 -192
  135. package/styles/definition/_material3-dark.scss +710 -710
  136. package/styles/definition/_material3.scss +792 -792
  137. package/styles/definition/_tailwind-dark.scss +488 -488
  138. package/styles/definition/_tailwind.scss +485 -485
  139. package/styles/fabric-dark.css +10 -1
  140. package/styles/fabric.css +10 -1
  141. package/styles/fluent-dark.css +10 -1
  142. package/styles/fluent.css +10 -1
  143. package/styles/highcontrast-light.css +10 -1
  144. package/styles/highcontrast.css +10 -1
  145. package/styles/material-dark.css +10 -1
  146. package/styles/material.css +10 -1
  147. package/styles/material3-dark.css +10 -1
  148. package/styles/material3.css +10 -1
  149. package/styles/offline-theme/material-dark.css +10 -1
  150. package/styles/offline-theme/material.css +10 -1
  151. package/styles/offline-theme/tailwind-dark.css +10 -1
  152. package/styles/offline-theme/tailwind.css +10 -1
  153. package/styles/tailwind-dark.css +10 -1
  154. package/styles/tailwind.css +10 -1
  155. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -60
  156. package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -42
  157. package/bin/syncfusion-license.js +0 -2
  158. package/dist/ej2-base.min.js +0 -10
  159. package/e2e/index.d.ts +0 -27
  160. package/src/fetch.d.ts +0 -114
  161. package/src/fetch.js +0 -116
  162. package/src/hijri-parser.d.ts +0 -19
  163. package/src/hijri-parser.js +0 -204
@@ -1,8 +1,8 @@
1
- @import 'definition/bootstrap5.scss';
2
-
3
- $font-size: 12px !default;
4
- $font-weight: 400 !default;
5
- $error-font-color: $danger !default;
6
- $warning-font-color: $yellow !default;
7
- $success-font-color: #198754 !default;
8
- $information-font-color: #0dcaf0 !default;
1
+ @import 'definition/bootstrap5.scss';
2
+
3
+ $font-size: 12px !default;
4
+ $font-weight: 400 !default;
5
+ $error-font-color: $danger !default;
6
+ $warning-font-color: $yellow !default;
7
+ $success-font-color: #198754 !default;
8
+ $information-font-color: #0dcaf0 !default;
@@ -1,42 +1,42 @@
1
- @import 'definition/fabric-dark.scss';
2
-
3
- $font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
4
- $font-size: 14px !default;
5
- $font-weight: normal !default;
6
- $font-path: 'common-images' !default;
7
- $header-bg-color: $theme-primary !default;
8
- $header-gradient-color: none !default;
9
- $header-border-color: $theme-primary !default;
10
- $header-font-color: $theme-primary-font !default;
11
- $header-icon-color: $theme-primary-font !default;
12
- $content-bg-color: $neutral-white !default;
13
- $content-border-color: $neutral-white !default;
14
- $content-font-color: $base-font !default;
15
- $default-bg-color: $neutral-white !default;
16
- $default-gradient-color: none !default;
17
- $default-border-color: $neutral-white !default;
18
- $default-font-color: $base-font !default;
19
- $default-icon-color: $base-font !default;
20
- $hover-bg-color: $neutral-light !default;
21
- $hover-gradient-color: none !default;
22
- $hover-border-color: $neutral-light !default;
23
- $hover-font-color: $neutral-light-font !default;
24
- $hover-icon-color: $neutral-light-font !default;
25
- $active-bg-color: $theme-light !default;
26
- $active-gradient-color: none !default;
27
- $active-border-color: $theme-light !default;
28
- $active-font-color: $theme-light-font !default;
29
- $active-icon-color: $theme-light-font !default;
30
- $error-font-color: $error-font !default;
31
- $warning-font-color: $alert-font !default;
32
- $success-font-color: $success-font !default;
33
- $information-font-color: $message-font !default;
34
- $overlay-bg-color: #383838 !default;
35
- $shadow-color: rgba(0, 0, 0, .4) !default;
36
- $border-size: 1px !default;
37
- $border-type: solid !default;
38
- $border-radius: 0 !default;
39
- $border-left-radius: 0 !default;
40
- $border-right-radius: 0 !default;
41
- $border-top-radius: 0 !default;
42
- $border-bottom-radius: 0 !default;
1
+ @import 'definition/fabric-dark.scss';
2
+
3
+ $font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
4
+ $font-size: 14px !default;
5
+ $font-weight: normal !default;
6
+ $font-path: 'common-images' !default;
7
+ $header-bg-color: $theme-primary !default;
8
+ $header-gradient-color: none !default;
9
+ $header-border-color: $theme-primary !default;
10
+ $header-font-color: $theme-primary-font !default;
11
+ $header-icon-color: $theme-primary-font !default;
12
+ $content-bg-color: $neutral-white !default;
13
+ $content-border-color: $neutral-white !default;
14
+ $content-font-color: $base-font !default;
15
+ $default-bg-color: $neutral-white !default;
16
+ $default-gradient-color: none !default;
17
+ $default-border-color: $neutral-white !default;
18
+ $default-font-color: $base-font !default;
19
+ $default-icon-color: $base-font !default;
20
+ $hover-bg-color: $neutral-light !default;
21
+ $hover-gradient-color: none !default;
22
+ $hover-border-color: $neutral-light !default;
23
+ $hover-font-color: $neutral-light-font !default;
24
+ $hover-icon-color: $neutral-light-font !default;
25
+ $active-bg-color: $theme-light !default;
26
+ $active-gradient-color: none !default;
27
+ $active-border-color: $theme-light !default;
28
+ $active-font-color: $theme-light-font !default;
29
+ $active-icon-color: $theme-light-font !default;
30
+ $error-font-color: $error-font !default;
31
+ $warning-font-color: $alert-font !default;
32
+ $success-font-color: $success-font !default;
33
+ $information-font-color: $message-font !default;
34
+ $overlay-bg-color: #383838 !default;
35
+ $shadow-color: rgba(0, 0, 0, .4) !default;
36
+ $border-size: 1px !default;
37
+ $border-type: solid !default;
38
+ $border-radius: 0 !default;
39
+ $border-left-radius: 0 !default;
40
+ $border-right-radius: 0 !default;
41
+ $border-top-radius: 0 !default;
42
+ $border-bottom-radius: 0 !default;
@@ -1,42 +1,42 @@
1
- @import 'definition/fabric.scss';
2
-
3
- $font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
4
- $font-size: 14px !default;
5
- $font-weight: normal !default;
6
- $font-path: 'common-images' !default;
7
- $header-bg-color: $theme-primary !default;
8
- $header-gradient-color: none !default;
9
- $header-border-color: $theme-primary !default;
10
- $header-font-color: $theme-primary-font !default;
11
- $header-icon-color: $theme-primary-font !default;
12
- $content-bg-color: $neutral-white !default;
13
- $content-border-color: $neutral-white !default;
14
- $content-font-color: $base-font !default;
15
- $default-bg-color: $neutral-white !default;
16
- $default-gradient-color: none !default;
17
- $default-border-color: $neutral-white !default;
18
- $default-font-color: $base-font !default;
19
- $default-icon-color: $base-font !default;
20
- $hover-bg-color: $neutral-light !default;
21
- $hover-gradient-color: none !default;
22
- $hover-border-color: $neutral-light !default;
23
- $hover-font-color: $neutral-light-font !default;
24
- $hover-icon-color: $neutral-light-font !default;
25
- $active-bg-color: $theme-light !default;
26
- $active-gradient-color: none !default;
27
- $active-border-color: $theme-light !default;
28
- $active-font-color: $theme-light-font !default;
29
- $active-icon-color: $theme-light-font !default;
30
- $error-font-color: $error-font !default;
31
- $warning-font-color: $alert-font !default;
32
- $success-font-color: $success-font !default;
33
- $information-font-color: $message-font !default;
34
- $overlay-bg-color: #383838 !default;
35
- $shadow-color: rgba(0, 0, 0, .4) !default;
36
- $border-size: 1px !default;
37
- $border-type: solid !default;
38
- $border-radius: 0 !default;
39
- $border-left-radius: 0 !default;
40
- $border-right-radius: 0 !default;
41
- $border-top-radius: 0 !default;
42
- $border-bottom-radius: 0 !default;
1
+ @import 'definition/fabric.scss';
2
+
3
+ $font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
4
+ $font-size: 14px !default;
5
+ $font-weight: normal !default;
6
+ $font-path: 'common-images' !default;
7
+ $header-bg-color: $theme-primary !default;
8
+ $header-gradient-color: none !default;
9
+ $header-border-color: $theme-primary !default;
10
+ $header-font-color: $theme-primary-font !default;
11
+ $header-icon-color: $theme-primary-font !default;
12
+ $content-bg-color: $neutral-white !default;
13
+ $content-border-color: $neutral-white !default;
14
+ $content-font-color: $base-font !default;
15
+ $default-bg-color: $neutral-white !default;
16
+ $default-gradient-color: none !default;
17
+ $default-border-color: $neutral-white !default;
18
+ $default-font-color: $base-font !default;
19
+ $default-icon-color: $base-font !default;
20
+ $hover-bg-color: $neutral-light !default;
21
+ $hover-gradient-color: none !default;
22
+ $hover-border-color: $neutral-light !default;
23
+ $hover-font-color: $neutral-light-font !default;
24
+ $hover-icon-color: $neutral-light-font !default;
25
+ $active-bg-color: $theme-light !default;
26
+ $active-gradient-color: none !default;
27
+ $active-border-color: $theme-light !default;
28
+ $active-font-color: $theme-light-font !default;
29
+ $active-icon-color: $theme-light-font !default;
30
+ $error-font-color: $error-font !default;
31
+ $warning-font-color: $alert-font !default;
32
+ $success-font-color: $success-font !default;
33
+ $information-font-color: $message-font !default;
34
+ $overlay-bg-color: #383838 !default;
35
+ $shadow-color: rgba(0, 0, 0, .4) !default;
36
+ $border-size: 1px !default;
37
+ $border-type: solid !default;
38
+ $border-radius: 0 !default;
39
+ $border-left-radius: 0 !default;
40
+ $border-right-radius: 0 !default;
41
+ $border-top-radius: 0 !default;
42
+ $border-bottom-radius: 0 !default;
@@ -1,9 +1,9 @@
1
- @import 'definition/fluent-dark.scss';
2
-
3
- $font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
4
- $font-size: 12px !default;
5
- $font-weight: 400 !default;
6
- $error-font-color: $danger !default;
7
- $warning-font-color: $orange20 !default;
8
- $success-font-color: $green20 !default;
9
- $information-font-color: $white !default;
1
+ @import 'definition/fluent-dark.scss';
2
+
3
+ $font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
4
+ $font-size: 12px !default;
5
+ $font-weight: 400 !default;
6
+ $error-font-color: $danger !default;
7
+ $warning-font-color: $orange20 !default;
8
+ $success-font-color: $green20 !default;
9
+ $information-font-color: $white !default;
@@ -1,9 +1,9 @@
1
- @import 'definition/fluent.scss';
2
-
3
- $font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
4
- $font-size: 12px !default;
5
- $font-weight: 400 !default;
6
- $error-font-color: $danger !default;
7
- $warning-font-color: $orange20 !default;
8
- $success-font-color: $green20 !default;
9
- $information-font-color: $white !default;
1
+ @import 'definition/fluent.scss';
2
+
3
+ $font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
4
+ $font-size: 12px !default;
5
+ $font-weight: 400 !default;
6
+ $error-font-color: $danger !default;
7
+ $warning-font-color: $orange20 !default;
8
+ $success-font-color: $green20 !default;
9
+ $information-font-color: $white !default;
@@ -0,0 +1,9 @@
1
+ @import 'definition/fluent2.scss';
2
+
3
+ $font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif !default;
4
+ $font-size: 12px !default;
5
+ $font-weight: 400 !default;
6
+ $error-font-color: $danger !default;
7
+ $warning-font-color: $orange20 !default;
8
+ $success-font-color: $green20 !default;
9
+ $information-font-color: $white !default;
@@ -1,8 +1,8 @@
1
- @import 'definition/fusionnew-dark.scss';
2
-
3
- $font-size: 12px !default;
4
- $font-weight: 400 !default;
5
- $error-font-color: $danger !default;
6
- $warning-font-color: $yellow !default;
7
- $success-font-color: #198754 !default;
8
- $information-font-color: #0dcaf0 !default;
1
+ @import 'definition/fusionnew-dark.scss';
2
+
3
+ $font-size: 12px !default;
4
+ $font-weight: 400 !default;
5
+ $error-font-color: $danger !default;
6
+ $warning-font-color: $yellow !default;
7
+ $success-font-color: #198754 !default;
8
+ $information-font-color: #0dcaf0 !default;
@@ -1,8 +1,8 @@
1
- @import 'definition/fusionnew.scss';
2
-
3
- $font-size: 12px !default;
4
- $font-weight: 400 !default;
5
- $error-font-color: $danger !default;
6
- $warning-font-color: $yellow !default;
7
- $success-font-color: #198754 !default;
8
- $information-font-color: #0dcaf0 !default;
1
+ @import 'definition/fusionnew.scss';
2
+
3
+ $font-size: 12px !default;
4
+ $font-weight: 400 !default;
5
+ $error-font-color: $danger !default;
6
+ $warning-font-color: $yellow !default;
7
+ $success-font-color: #198754 !default;
8
+ $information-font-color: #0dcaf0 !default;
@@ -1,42 +1,42 @@
1
- @import 'definition/highcontrast.scss';
2
-
3
- $font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
4
- $font-size: 12px !default;
5
- $font-weight: normal !default;
6
- $font-path: 'common-images' !default;
7
- $header-bg-color: $bg-base-20 !default;
8
- $header-gradient-color: none !default;
9
- $header-border-color: $border-default !default;
10
- $header-font-color: $header-font !default;
11
- $header-icon-color: $header-font !default;
12
- $content-bg-color: $bg-base-20 !default;
13
- $content-border-color: $border-default !default;
14
- $content-font-color: $content-font !default;
15
- $default-bg-color: $bg-base-20 !default;
16
- $default-gradient-color: none !default;
17
- $default-border-color: $border-default !default;
18
- $default-font-color: $content-font !default;
19
- $default-icon-color: $content-font !default;
20
- $hover-bg-color: $hover-bg !default;
21
- $hover-gradient-color: none !default;
22
- $hover-border-color: $hover-border !default;
23
- $hover-font-color: $hover-font !default;
24
- $hover-icon-color: $hover-font !default;
25
- $active-bg-color: $success-bg !default;
26
- $active-gradient-color: none !default;
27
- $active-border-color: $border-default !default;
28
- $active-font-color: $content-font !default;
29
- $active-icon-color: $content-font !default;
30
- $error-font-color: $error-alt !default;
31
- $information-font-color: $info-bg !default;
32
- $warning-font-color: $msg-warning-color !default;
33
- $success-font-color: $success-alt !default;
34
- $overlay-bg-color: #383838 !default;
35
- $shadow-color: rgba(0, 0, 0, .4) !default;
36
- $border-size: 1px !default;
37
- $border-type: solid !default;
38
- $border-radius: 0 !default;
39
- $border-left-radius: 0 !default;
40
- $border-right-radius: 0 !default;
41
- $border-top-radius: 0 !default;
42
- $border-bottom-radius: 0 !default;
1
+ @import 'definition/highcontrast.scss';
2
+
3
+ $font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
4
+ $font-size: 12px !default;
5
+ $font-weight: normal !default;
6
+ $font-path: 'common-images' !default;
7
+ $header-bg-color: $bg-base-20 !default;
8
+ $header-gradient-color: none !default;
9
+ $header-border-color: $border-default !default;
10
+ $header-font-color: $header-font !default;
11
+ $header-icon-color: $header-font !default;
12
+ $content-bg-color: $bg-base-20 !default;
13
+ $content-border-color: $border-default !default;
14
+ $content-font-color: $content-font !default;
15
+ $default-bg-color: $bg-base-20 !default;
16
+ $default-gradient-color: none !default;
17
+ $default-border-color: $border-default !default;
18
+ $default-font-color: $content-font !default;
19
+ $default-icon-color: $content-font !default;
20
+ $hover-bg-color: $hover-bg !default;
21
+ $hover-gradient-color: none !default;
22
+ $hover-border-color: $hover-border !default;
23
+ $hover-font-color: $hover-font !default;
24
+ $hover-icon-color: $hover-font !default;
25
+ $active-bg-color: $success-bg !default;
26
+ $active-gradient-color: none !default;
27
+ $active-border-color: $border-default !default;
28
+ $active-font-color: $content-font !default;
29
+ $active-icon-color: $content-font !default;
30
+ $error-font-color: $error-alt !default;
31
+ $information-font-color: $info-bg !default;
32
+ $warning-font-color: $msg-warning-color !default;
33
+ $success-font-color: $success-alt !default;
34
+ $overlay-bg-color: #383838 !default;
35
+ $shadow-color: rgba(0, 0, 0, .4) !default;
36
+ $border-size: 1px !default;
37
+ $border-type: solid !default;
38
+ $border-radius: 0 !default;
39
+ $border-left-radius: 0 !default;
40
+ $border-right-radius: 0 !default;
41
+ $border-top-radius: 0 !default;
42
+ $border-bottom-radius: 0 !default;
@@ -1,42 +1,42 @@
1
- @import 'definition/highcontrast-light.scss';
2
-
3
- $font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
4
- $font-size: 12px !default;
5
- $font-weight: normal !default;
6
- $font-path: 'common-images' !default;
7
- $header-bg-color: $bg-base-20 !default;
8
- $header-gradient-color: none !default;
9
- $header-border-color: $border-default !default;
10
- $header-font-color: $header-font !default;
11
- $header-icon-color: $header-font !default;
12
- $content-bg-color: $bg-base-20 !default;
13
- $content-border-color: $border-default !default;
14
- $content-font-color: $content-font !default;
15
- $default-bg-color: $bg-base-20 !default;
16
- $default-gradient-color: none !default;
17
- $default-border-color: $border-default !default;
18
- $default-font-color: $content-font !default;
19
- $default-icon-color: $content-font !default;
20
- $hover-bg-color: $hover-bg !default;
21
- $hover-gradient-color: none !default;
22
- $hover-border-color: $hover-border !default;
23
- $hover-font-color: $hover-font !default;
24
- $hover-icon-color: $hover-font !default;
25
- $active-bg-color: $success-bg !default;
26
- $active-gradient-color: none !default;
27
- $active-border-color: $border-default !default;
28
- $active-font-color: $content-font !default;
29
- $active-icon-color: $content-font !default;
30
- $error-font-color: $error-alt !default;
31
- $information-font-color: $info-bg !default;
32
- $warning-font-color: $msg-warning-color !default;
33
- $success-font-color: $success-alt !default;
34
- $overlay-bg-color: #383838 !default;
35
- $shadow-color: rgba(0, 0, 0, .4) !default;
36
- $border-size: 1px !default;
37
- $border-type: solid !default;
38
- $border-radius: 0 !default;
39
- $border-left-radius: 0 !default;
40
- $border-right-radius: 0 !default;
41
- $border-top-radius: 0 !default;
42
- $border-bottom-radius: 0 !default;
1
+ @import 'definition/highcontrast-light.scss';
2
+
3
+ $font-family: 'Segoe UI', 'GeezaPro', 'DejaVu Serif', sans-serif, '-apple-system', 'BlinkMacSystemFont' !default;
4
+ $font-size: 12px !default;
5
+ $font-weight: normal !default;
6
+ $font-path: 'common-images' !default;
7
+ $header-bg-color: $bg-base-20 !default;
8
+ $header-gradient-color: none !default;
9
+ $header-border-color: $border-default !default;
10
+ $header-font-color: $header-font !default;
11
+ $header-icon-color: $header-font !default;
12
+ $content-bg-color: $bg-base-20 !default;
13
+ $content-border-color: $border-default !default;
14
+ $content-font-color: $content-font !default;
15
+ $default-bg-color: $bg-base-20 !default;
16
+ $default-gradient-color: none !default;
17
+ $default-border-color: $border-default !default;
18
+ $default-font-color: $content-font !default;
19
+ $default-icon-color: $content-font !default;
20
+ $hover-bg-color: $hover-bg !default;
21
+ $hover-gradient-color: none !default;
22
+ $hover-border-color: $hover-border !default;
23
+ $hover-font-color: $hover-font !default;
24
+ $hover-icon-color: $hover-font !default;
25
+ $active-bg-color: $success-bg !default;
26
+ $active-gradient-color: none !default;
27
+ $active-border-color: $border-default !default;
28
+ $active-font-color: $content-font !default;
29
+ $active-icon-color: $content-font !default;
30
+ $error-font-color: $error-alt !default;
31
+ $information-font-color: $info-bg !default;
32
+ $warning-font-color: $msg-warning-color !default;
33
+ $success-font-color: $success-alt !default;
34
+ $overlay-bg-color: #383838 !default;
35
+ $shadow-color: rgba(0, 0, 0, .4) !default;
36
+ $border-size: 1px !default;
37
+ $border-type: solid !default;
38
+ $border-radius: 0 !default;
39
+ $border-left-radius: 0 !default;
40
+ $border-right-radius: 0 !default;
41
+ $border-top-radius: 0 !default;
42
+ $border-bottom-radius: 0 !default;
@@ -1,48 +1,48 @@
1
- @import 'definition/material-dark.scss';
2
-
3
- @if not variable-exists('is-roboto-loaded') {
4
- //sass-lint:disable no-url-protocols,no-url-domains
5
- @import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');// stylelint-disable-line no-invalid-position-at-import-rule
6
- }
7
-
8
- $is-roboto-loaded: 'true' !default;
9
- $font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', 'sans-serif', '-apple-system', 'BlinkMacSystemFont' !default;
10
- $font-size: 12px !default;
11
- $font-weight: normal !default;
12
- $font-path: 'common-images' !default;
13
- $header-bg-color: $grey-white !default;
14
- $header-gradient-color: none !default;
15
- $header-border-color: $grey-black !default;
16
- $header-font-color: $grey-light-font !default;
17
- $header-icon-color: $grey-light-font !default;
18
- $content-bg-color: $grey-white !default;
19
- $content-border-color: $grey-black !default;
20
- $content-font-color: $grey-light-font !default;
21
- $default-bg-color: $grey-white !default;
22
- $default-gradient-color: none !default;
23
- $default-border-color: $grey-black !default;
24
- $default-font-color: $grey-light-font !default;
25
- $default-icon-color: $grey-light-font !default;
26
- $hover-bg-color: $grey-200 !default;
27
- $hover-gradient-color: none !default;
28
- $hover-border-color: $grey-black !default;
29
- $hover-font-color: $grey-light-font !default;
30
- $hover-icon-color: $grey-light-font !default;
31
- $active-bg-color: $grey-100 !default;
32
- $active-gradient-color: none !default;
33
- $active-border-color: $grey-black !default;
34
- $active-font-color: $grey-light-font !default;
35
- $active-icon-color: $grey-light-font !default;
36
- $error-font-color: $error-font !default;
37
- $warning-font-color: #ffca1c !default;
38
- $success-font-color: #22b24b !default;
39
- $information-font-color: #489bd5 !default;
40
- $overlay-bg-color: #383838 !default;
41
- $shadow-color: rgba(0, 0, 0, .4) !default;
42
- $border-size: 1px !default;
43
- $border-type: solid !default;
44
- $border-radius: 0 !default;
45
- $border-left-radius: 0 !default;
46
- $border-right-radius: 0 !default;
47
- $border-top-radius: 0 !default;
48
- $border-bottom-radius: 0 !default;
1
+ @import 'definition/material-dark.scss';
2
+
3
+ @if not variable-exists('is-roboto-loaded') {
4
+ //sass-lint:disable no-url-protocols,no-url-domains
5
+ @import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');// stylelint-disable-line no-invalid-position-at-import-rule
6
+ }
7
+
8
+ $is-roboto-loaded: 'true' !default;
9
+ $font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', 'sans-serif', '-apple-system', 'BlinkMacSystemFont' !default;
10
+ $font-size: 12px !default;
11
+ $font-weight: normal !default;
12
+ $font-path: 'common-images' !default;
13
+ $header-bg-color: $grey-white !default;
14
+ $header-gradient-color: none !default;
15
+ $header-border-color: $grey-black !default;
16
+ $header-font-color: $grey-light-font !default;
17
+ $header-icon-color: $grey-light-font !default;
18
+ $content-bg-color: $grey-white !default;
19
+ $content-border-color: $grey-black !default;
20
+ $content-font-color: $grey-light-font !default;
21
+ $default-bg-color: $grey-white !default;
22
+ $default-gradient-color: none !default;
23
+ $default-border-color: $grey-black !default;
24
+ $default-font-color: $grey-light-font !default;
25
+ $default-icon-color: $grey-light-font !default;
26
+ $hover-bg-color: $grey-200 !default;
27
+ $hover-gradient-color: none !default;
28
+ $hover-border-color: $grey-black !default;
29
+ $hover-font-color: $grey-light-font !default;
30
+ $hover-icon-color: $grey-light-font !default;
31
+ $active-bg-color: $grey-100 !default;
32
+ $active-gradient-color: none !default;
33
+ $active-border-color: $grey-black !default;
34
+ $active-font-color: $grey-light-font !default;
35
+ $active-icon-color: $grey-light-font !default;
36
+ $error-font-color: $error-font !default;
37
+ $warning-font-color: #ffca1c !default;
38
+ $success-font-color: #22b24b !default;
39
+ $information-font-color: #489bd5 !default;
40
+ $overlay-bg-color: #383838 !default;
41
+ $shadow-color: rgba(0, 0, 0, .4) !default;
42
+ $border-size: 1px !default;
43
+ $border-type: solid !default;
44
+ $border-radius: 0 !default;
45
+ $border-left-radius: 0 !default;
46
+ $border-right-radius: 0 !default;
47
+ $border-top-radius: 0 !default;
48
+ $border-bottom-radius: 0 !default;
@@ -1,49 +1,49 @@
1
- @import 'definition/material.scss';
2
-
3
- @if not variable-exists('is-roboto-loaded') {
4
- //sass-lint:disable no-url-protocols,no-url-domains
5
- @import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');// stylelint-disable-line no-invalid-position-at-import-rule
6
- }
7
-
8
- $is-roboto-loaded: 'true' !default;
9
-
10
- $font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', 'sans-serif', '-apple-system', 'BlinkMacSystemFont' !default;
11
- $font-size: 12px !default;
12
- $font-weight: normal !default;
13
- $font-path: 'common-images' !default;
14
- $header-bg-color: $grey-white !default;
15
- $header-gradient-color: none !default;
16
- $header-border-color: $grey-black !default;
17
- $header-font-color: $grey-light-font !default;
18
- $header-icon-color: $grey-light-font !default;
19
- $content-bg-color: $grey-white !default;
20
- $content-border-color: $grey-black !default;
21
- $content-font-color: $grey-light-font !default;
22
- $default-bg-color: $grey-white !default;
23
- $default-gradient-color: none !default;
24
- $default-border-color: $grey-black !default;
25
- $default-font-color: $grey-light-font !default;
26
- $default-icon-color: $grey-light-font !default;
27
- $hover-bg-color: $grey-200 !default;
28
- $hover-gradient-color: none !default;
29
- $hover-border-color: $grey-black !default;
30
- $hover-font-color: $grey-light-font !default;
31
- $hover-icon-color: $grey-light-font !default;
32
- $active-bg-color: $grey-100 !default;
33
- $active-gradient-color: none !default;
34
- $active-border-color: $grey-black !default;
35
- $active-font-color: $grey-light-font !default;
36
- $active-icon-color: $grey-light-font !default;
37
- $error-font-color: $error-font !default;
38
- $warning-font-color: #ffca1c !default;
39
- $success-font-color: #22b24b !default;
40
- $information-font-color: #489bd5 !default;
41
- $overlay-bg-color: #383838 !default;
42
- $shadow-color: rgba(0, 0, 0, .4) !default;
43
- $border-size: 1px !default;
44
- $border-type: solid !default;
45
- $border-radius: 0 !default;
46
- $border-left-radius: 0 !default;
47
- $border-right-radius: 0 !default;
48
- $border-top-radius: 0 !default;
49
- $border-bottom-radius: 0 !default;
1
+ @import 'definition/material.scss';
2
+
3
+ @if not variable-exists('is-roboto-loaded') {
4
+ //sass-lint:disable no-url-protocols,no-url-domains
5
+ @import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');// stylelint-disable-line no-invalid-position-at-import-rule
6
+ }
7
+
8
+ $is-roboto-loaded: 'true' !default;
9
+
10
+ $font-family: 'Roboto', 'Segoe UI', 'GeezaPro', 'DejaVu Serif', 'sans-serif', '-apple-system', 'BlinkMacSystemFont' !default;
11
+ $font-size: 12px !default;
12
+ $font-weight: normal !default;
13
+ $font-path: 'common-images' !default;
14
+ $header-bg-color: $grey-white !default;
15
+ $header-gradient-color: none !default;
16
+ $header-border-color: $grey-black !default;
17
+ $header-font-color: $grey-light-font !default;
18
+ $header-icon-color: $grey-light-font !default;
19
+ $content-bg-color: $grey-white !default;
20
+ $content-border-color: $grey-black !default;
21
+ $content-font-color: $grey-light-font !default;
22
+ $default-bg-color: $grey-white !default;
23
+ $default-gradient-color: none !default;
24
+ $default-border-color: $grey-black !default;
25
+ $default-font-color: $grey-light-font !default;
26
+ $default-icon-color: $grey-light-font !default;
27
+ $hover-bg-color: $grey-200 !default;
28
+ $hover-gradient-color: none !default;
29
+ $hover-border-color: $grey-black !default;
30
+ $hover-font-color: $grey-light-font !default;
31
+ $hover-icon-color: $grey-light-font !default;
32
+ $active-bg-color: $grey-100 !default;
33
+ $active-gradient-color: none !default;
34
+ $active-border-color: $grey-black !default;
35
+ $active-font-color: $grey-light-font !default;
36
+ $active-icon-color: $grey-light-font !default;
37
+ $error-font-color: $error-font !default;
38
+ $warning-font-color: #ffca1c !default;
39
+ $success-font-color: #22b24b !default;
40
+ $information-font-color: #489bd5 !default;
41
+ $overlay-bg-color: #383838 !default;
42
+ $shadow-color: rgba(0, 0, 0, .4) !default;
43
+ $border-size: 1px !default;
44
+ $border-type: solid !default;
45
+ $border-radius: 0 !default;
46
+ $border-left-radius: 0 !default;
47
+ $border-right-radius: 0 !default;
48
+ $border-top-radius: 0 !default;
49
+ $border-bottom-radius: 0 !default;