@syncfusion/ej2-layouts 29.2.4 → 30.1.40

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 29.2.4
3
+ * version : 30.1.40
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. 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,46 +1,16 @@
1
1
  {
2
- "_from": "@syncfusion/ej2-layouts@*",
3
- "_id": "@syncfusion/ej2-layouts@29.1.38",
4
- "_inBundle": false,
5
- "_integrity": "sha512-0A+Q6uHWpDpVxVcQSW2N7ykvaO5O+Xvscd3ajPkKX+r4CUfvMGLo2qMxd+if+g+fXsnQIIRAY8ELnBMi29vlOQ==",
6
- "_location": "/@syncfusion/ej2-layouts",
7
- "_phantomChildren": {},
8
- "_requested": {
9
- "type": "range",
10
- "registry": true,
11
- "raw": "@syncfusion/ej2-layouts@*",
12
- "name": "@syncfusion/ej2-layouts",
13
- "escapedName": "@syncfusion%2fej2-layouts",
14
- "scope": "@syncfusion",
15
- "rawSpec": "*",
16
- "saveSpec": null,
17
- "fetchSpec": "*"
18
- },
19
- "_requiredBy": [
20
- "/",
21
- "/@syncfusion/ej2",
22
- "/@syncfusion/ej2-angular-layouts",
23
- "/@syncfusion/ej2-filemanager",
24
- "/@syncfusion/ej2-gantt",
25
- "/@syncfusion/ej2-kanban",
26
- "/@syncfusion/ej2-react-layouts",
27
- "/@syncfusion/ej2-vue-layouts"
28
- ],
29
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-layouts/-/ej2-layouts-29.1.38.tgz",
30
- "_shasum": "e917d635e1376056c95e09744742e8c37c8e71ac",
31
- "_spec": "@syncfusion/ej2-layouts@*",
32
- "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
33
- "author": {
34
- "name": "Syncfusion Inc."
35
- },
36
- "bundleDependencies": false,
2
+ "name": "@syncfusion/ej2-layouts",
3
+ "version": "30.1.40",
4
+ "description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person.",
5
+ "author": "Syncfusion Inc.",
6
+ "license": "SEE LICENSE IN license",
7
+ "main": "./dist/ej2-layouts.umd.min.js",
8
+ "module": "./index.js",
9
+ "es2015": "./dist/es6/ej2-layouts.es5.js",
37
10
  "dependencies": {
38
- "@syncfusion/ej2-base": "~29.2.4"
11
+ "@syncfusion/ej2-base": "~30.1.38"
39
12
  },
40
- "deprecated": false,
41
- "description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person.",
42
13
  "devDependencies": {},
43
- "es2015": "./dist/es6/ej2-layouts.es5.js",
44
14
  "keywords": [
45
15
  "ej2",
46
16
  "syncfusion",
@@ -66,16 +36,11 @@
66
36
  "resizable-splitter",
67
37
  "split-container"
68
38
  ],
69
- "license": "SEE LICENSE IN license",
70
- "main": "./dist/ej2-layouts.umd.min.js",
71
- "module": "./index.js",
72
- "name": "@syncfusion/ej2-layouts",
73
39
  "repository": {
74
40
  "type": "git",
75
41
  "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/layouts"
76
42
  },
77
43
  "typings": "index.d.ts",
78
- "version": "29.2.4",
79
44
  "sideEffects": false,
80
45
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
81
46
  }
@@ -2018,22 +2018,26 @@ var Splitter = /** @class */ (function (_super) {
2018
2018
  var pane1MaxSize = this.getMinMax(this.prevPaneIndex, this.previousPane, 'max');
2019
2019
  var pane2MaxSize = this.getMinMax(this.nextPaneIndex, this.nextPane, 'max');
2020
2020
  var validatedSize = draggedPos;
2021
- if (draggedPos > nextPaneRange - pane2MinSize) {
2022
- validatedSize = nextPaneRange - pane2MinSize;
2023
- }
2024
- else if (draggedPos < prePaneRange + pane1MinSize) {
2025
- validatedSize = prePaneRange + pane1MinSize;
2026
- }
2027
2021
  if (!isNullOrUndefined(pane1MaxSize)) {
2028
2022
  if (draggedPos > prePaneRange + pane1MaxSize) {
2029
2023
  validatedSize = prePaneRange + pane1MaxSize;
2030
2024
  }
2031
2025
  }
2032
- else if (!isNullOrUndefined(pane2MaxSize)) {
2026
+ if (!isNullOrUndefined(pane2MaxSize)) {
2033
2027
  if (draggedPos < nextPaneRange - pane2MaxSize) {
2034
2028
  validatedSize = nextPaneRange - pane2MaxSize;
2035
2029
  }
2036
2030
  }
2031
+ if (draggedPos > nextPaneRange - pane2MinSize) {
2032
+ if (isNullOrUndefined(pane1MaxSize) || validatedSize !== prePaneRange + pane1MaxSize) {
2033
+ validatedSize = nextPaneRange - pane2MinSize;
2034
+ }
2035
+ }
2036
+ else if (draggedPos < prePaneRange + pane1MinSize) {
2037
+ if (isNullOrUndefined(pane2MaxSize) || validatedSize !== nextPaneRange - pane2MaxSize) {
2038
+ validatedSize = prePaneRange + pane1MinSize;
2039
+ }
2040
+ }
2037
2041
  return validatedSize;
2038
2042
  };
2039
2043
  Splitter.prototype.onMouseUp = function (e) {
@@ -1515,5 +1515,5 @@
1515
1515
  }
1516
1516
  .e-timeline .e-item-disabled .e-content,
1517
1517
  .e-timeline .e-item-disabled .e-opposite-content {
1518
- color: "rgba($white, .38)";
1518
+ color: rgba(255, 255, 255, 0.38);
1519
1519
  }
@@ -1707,7 +1707,7 @@
1707
1707
  }
1708
1708
  .e-timeline .e-item-disabled .e-content,
1709
1709
  .e-timeline .e-item-disabled .e-opposite-content {
1710
- color: "rgba($white, .38)";
1710
+ color: rgba(255, 255, 255, 0.38);
1711
1711
  }
1712
1712
 
1713
1713
  .e-bigger.e-timeline [class^="e-dot "]::before,
@@ -1517,5 +1517,5 @@
1517
1517
  }
1518
1518
  .e-timeline .e-item-disabled .e-content,
1519
1519
  .e-timeline .e-item-disabled .e-opposite-content {
1520
- color: "rgba($black, .38)";
1520
+ color: rgba(0, 0, 0, 0.38);
1521
1521
  }
@@ -1709,7 +1709,7 @@
1709
1709
  }
1710
1710
  .e-timeline .e-item-disabled .e-content,
1711
1711
  .e-timeline .e-item-disabled .e-opposite-content {
1712
- color: "rgba($black, .38)";
1712
+ color: rgba(0, 0, 0, 0.38);
1713
1713
  }
1714
1714
 
1715
1715
  .e-bigger.e-timeline [class^="e-dot "]::before,
@@ -15,4 +15,4 @@ $timeline-dot-background-color: $grey-900 !default;
15
15
  $timeline-dot-border-color: $grey-700 !default;
16
16
  $timeline-content-font-color: $grey-white !default;
17
17
  $timeline-opposite-content-font-color: $grey-white !default;
18
- $timeline-item-disabled-color: 'rgba($white, .38)' !default;
18
+ $timeline-item-disabled-color: rgba($grey-white, .38) !default;
@@ -15,4 +15,4 @@ $timeline-dot-background-color: $primary-300-font !default;
15
15
  $timeline-dot-border-color: $grey-200 !default;
16
16
  $timeline-content-font-color: $base-font !default;
17
17
  $timeline-opposite-content-font-color: $base-font !default;
18
- $timeline-item-disabled-color: 'rgba($black, .38)' !default;
18
+ $timeline-item-disabled-color: rgba($grey-black, .38) !default;
@@ -254,7 +254,7 @@
254
254
  }
255
255
  .e-timeline .e-item-disabled .e-content,
256
256
  .e-timeline .e-item-disabled .e-opposite-content {
257
- color: "rgba($white, .38)";
257
+ color: rgba(255, 255, 255, 0.38);
258
258
  }
259
259
 
260
260
  .e-bigger.e-timeline [class^="e-dot "]::before,
@@ -254,7 +254,7 @@
254
254
  }
255
255
  .e-timeline .e-item-disabled .e-content,
256
256
  .e-timeline .e-item-disabled .e-opposite-content {
257
- color: "rgba($black, .38)";
257
+ color: rgba(0, 0, 0, 0.38);
258
258
  }
259
259
 
260
260
  .e-bigger.e-timeline [class^="e-dot "]::before,