@syncfusion/ej2-base 20.2.36 → 20.2.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/CHANGELOG.md +65 -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 +4 -0
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +4 -0
- 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/touch.js +4 -0
- package/styles/definition/_fluent-dark.scss +5 -5
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 20.2.
|
|
3
|
+
* version : 20.2.38
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-base@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-base@
|
|
3
|
+
"_id": "@syncfusion/ej2-base@20.2.36",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-PVVdLzKeoDUW4CQ7OC3O+gWeFMLnll6YsVnM/pJkUYo7ny/CZ6FvlHF7YZvTqcUCM6ndZebEom30WKk4YtKecA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-base",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -155,8 +155,8 @@
|
|
|
155
155
|
"/@syncfusion/ej2-vue-treegrid",
|
|
156
156
|
"/@syncfusion/ej2-vue-treemap"
|
|
157
157
|
],
|
|
158
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
159
|
-
"_shasum": "
|
|
158
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-base/-/ej2-base-20.2.36.tgz",
|
|
159
|
+
"_shasum": "32d82d3499a3fb502a4e982ec6725dc535c1f06a",
|
|
160
160
|
"_spec": "@syncfusion/ej2-base@*",
|
|
161
161
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
162
162
|
"author": {
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
},
|
|
171
171
|
"bundleDependencies": false,
|
|
172
172
|
"dependencies": {
|
|
173
|
-
"@syncfusion/ej2-icons": "~20.2.
|
|
173
|
+
"@syncfusion/ej2-icons": "~20.2.38"
|
|
174
174
|
},
|
|
175
175
|
"deprecated": false,
|
|
176
176
|
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
|
|
@@ -211,6 +211,6 @@
|
|
|
211
211
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
212
212
|
},
|
|
213
213
|
"typings": "index.d.ts",
|
|
214
|
-
"version": "20.2.
|
|
214
|
+
"version": "20.2.38",
|
|
215
215
|
"sideEffects": true
|
|
216
216
|
}
|
package/src/touch.js
CHANGED
|
@@ -157,6 +157,10 @@ var Touch = /** @class */ (function (_super) {
|
|
|
157
157
|
diffX = Math.floor(diffX < 0 ? -1 * diffX : diffX);
|
|
158
158
|
diffY = Math.floor(diffY < 0 ? -1 * diffY : diffX);
|
|
159
159
|
_this.isTouchMoved = diffX > 1 || diffY > 1;
|
|
160
|
+
var isFirefox = (/Firefox/).test(Browser.userAgent);
|
|
161
|
+
if (isFirefox && point.clientX === 0 && point.clientY === 0 && evt.type === 'mouseup') {
|
|
162
|
+
_this.isTouchMoved = false;
|
|
163
|
+
}
|
|
160
164
|
_this.endPoint = point;
|
|
161
165
|
_this.calcPoints(evt);
|
|
162
166
|
var swipeArgs = {
|
|
@@ -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;
|