@syncfusion/ej2-base 20.2.36 → 20.2.43
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/CHANGELOG.md +75 -6
- package/bin/syncfusion-license.js +1 -96
- 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 +66 -13
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +66 -13
- 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 +6 -6
- package/src/draggable.d.ts +3 -0
- package/src/draggable.js +62 -13
- package/src/touch.js +4 -0
- package/styles/bootstrap-dark.css +31 -1
- package/styles/bootstrap.css +31 -1
- package/styles/bootstrap4.css +31 -1
- package/styles/bootstrap5-dark.css +31 -1
- package/styles/bootstrap5.css +31 -1
- package/styles/definition/_fluent-dark.scss +5 -5
- package/styles/fabric-dark.css +31 -1
- package/styles/fabric.css +31 -1
- package/styles/fluent-dark.css +31 -1
- package/styles/fluent.css +31 -1
- package/styles/highcontrast-light.css +31 -1
- package/styles/highcontrast.css +31 -1
- package/styles/material-dark.css +31 -1
- package/styles/material.css +31 -1
- package/styles/tailwind-dark.css +31 -1
- package/styles/tailwind.css +31 -1
|
@@ -70,7 +70,7 @@ $theme-darker: #004578 !default;
|
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
$primary: $theme-primary !default;
|
|
73
|
-
$primary-text-color: $
|
|
73
|
+
$primary-text-color: $gray200 !default;
|
|
74
74
|
$primary-light: $theme-dark !default;
|
|
75
75
|
$primary-lighter: $theme-darker !default;
|
|
76
76
|
$primary-dark: $theme-dark !default;
|
|
@@ -306,7 +306,7 @@ $primary-text-disabled: $gray150 !default;
|
|
|
306
306
|
|
|
307
307
|
$success-bg-color: $success !default;
|
|
308
308
|
$success-border-color: $success !default;
|
|
309
|
-
$success-text: $
|
|
309
|
+
$success-text: $gray200 !default;
|
|
310
310
|
$success-bg-color-hover: shade-color($success-bg-color, 10%) !default;
|
|
311
311
|
$success-border-color-hover: $success-bg-color-hover !default;
|
|
312
312
|
$success-text-hover: $success-text !default;
|
|
@@ -323,7 +323,7 @@ $success-text-disabled: $gray150 !default;
|
|
|
323
323
|
// Warning-button
|
|
324
324
|
$warning-bg-color: $warning !default;
|
|
325
325
|
$warning-border-color: $warning !default;
|
|
326
|
-
$warning-text: $
|
|
326
|
+
$warning-text: $gray200 !default;
|
|
327
327
|
$warning-bg-color-hover: tint-color($warning-bg-color, 10%) !default;
|
|
328
328
|
$warning-border-color-hover: $warning-bg-color-hover !default;
|
|
329
329
|
$warning-text-hover: $warning-text !default;
|
|
@@ -340,7 +340,7 @@ $warning-text-disabled: $gray150 !default;
|
|
|
340
340
|
// danger-button
|
|
341
341
|
$danger-bg-color: $danger !default;
|
|
342
342
|
$danger-border-color: $danger !default;
|
|
343
|
-
$danger-text: $
|
|
343
|
+
$danger-text: $gray200 !default;
|
|
344
344
|
$danger-bg-color-hover: shade-color($danger-bg-color, 10%) !default;
|
|
345
345
|
$danger-border-color-hover: $danger-bg-color-hover !default;
|
|
346
346
|
$danger-text-hover: $danger-text !default;
|
|
@@ -357,7 +357,7 @@ $danger-text-disabled: $gray150 !default;
|
|
|
357
357
|
// Info-button
|
|
358
358
|
$info-bg-color: $info !default;
|
|
359
359
|
$info-border-color: $info-bg-color !default;
|
|
360
|
-
$info-text: $
|
|
360
|
+
$info-text: $gray200 !default;
|
|
361
361
|
$info-bg-color-hover: shade-color($info-bg-color, 10%) !default;
|
|
362
362
|
$info-border-color-hover: $info-bg-color-hover !default;
|
|
363
363
|
$info-text-hover: $info-text !default;
|