Skip to content

Commit 67b5e7e

Browse files
author
pipeline
committed
v20.1.55 is released
1 parent 331e5b7 commit 67b5e7e

File tree

1,771 files changed

+13950
-63057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,771 files changed

+13950
-63057
lines changed

controls/base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.1.55 (2022-05-12)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `SF-376600` - The issue with "`IsDevice` value return as false only for Safari browser in iPad" has been resolved.
12+
513
## 20.1.50 (2022-04-19)
614

715
### Common

controls/base/src/browser.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@ export class Browser {
147147

148148
private static getValue(key: string, regX: RegExp): Object {
149149
const browserDetails: {} = window.browserDetails;
150-
if ('undefined' === typeof (<{ [key: string]: Object }>browserDetails)[key]) {
151-
return (<{ [key: string]: Object }>browserDetails)[key] = regX.test(Browser.userAgent);
152-
}
153150
if (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1 && Browser.isTouch === true) {
154151
browserDetails['isIos'] = true;
155152
browserDetails['isDevice'] = true;
156153
browserDetails['isTouch'] = true;
157154
browserDetails['isPointer'] = true;
158155
}
156+
if ('undefined' === typeof (<{ [key: string]: Object }>browserDetails)[key]) {
157+
return (<{ [key: string]: Object }>browserDetails)[key] = regX.test(Browser.userAgent);
158+
}
159159
return (<{ [key: string]: Object }>browserDetails)[key];
160160
}
161161

controls/base/themestudio/styles/navigations/breadcrumb/_layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@
341341
.e-breadcrumb-icon {
342342
display: flex;
343343
flex-grow: 1;
344-
justify-content: end;
344+
justify-content: flex-end;
345345
}
346346
}
347347

controls/base/themestudio/styles/navigations/carousel/_layout.scss

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
position: relative;
1616
width: 100%;
1717

18-
.e-carousel-item {
18+
&:not(.e-carousel-custom-animation) .e-carousel-item {
1919
backface-visibility: hidden;
2020
display: none;
2121
float: left;
@@ -64,6 +64,24 @@
6464
}
6565
}
6666
}
67+
68+
&.e-carousel-custom-animation {
69+
.e-carousel-item {
70+
display: block;
71+
height: 100%;
72+
left: 0;
73+
opacity: 0;
74+
pointer-events: none;
75+
position: absolute;
76+
top: 0;
77+
width: 100%;
78+
79+
&.e-active {
80+
opacity: 1;
81+
pointer-events: visible;
82+
}
83+
}
84+
}
6785
}
6886

6987
.e-carousel-navigators {

controls/base/themestudio/styles/notifications/toast/_bootstrap-dark-definition.scss

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,4 @@ $toast-danger-hover-bg-color: $brand-danger-dark !default;
105105
$toast-danger-hover-color: $toast-danger-color !default;
106106
$toast-danger-hover-border-color: $brand-danger !default;
107107
$toast-danger-hover-box-shadow: 0 6px 12px rgba($base-font, .5) !default;
108-
109-
//icon variabels
110-
111-
$toast-close-icon: '\e96c' !default;
112-
$toast-success-icon: '\ea84' !default;
113-
$toast-error-icon: '\e7e9' !default;
114-
$toast-info-icon: '\e607' !default;
115-
$toast-warning-icon: '\e92f' !default;
116108
//enddefault

controls/base/themestudio/styles/notifications/toast/_bootstrap-definition.scss

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,4 @@ $toast-danger-hover-bg-color: #f1cfcf !default;
104104
$toast-danger-hover-color: $toast-danger-color !default;
105105
$toast-danger-hover-border-color: #ebccd1 !default;
106106
$toast-danger-hover-box-shadow: 0 3px 6px 0 !default;
107-
108-
//icon variabels
109-
110-
$toast-close-icon: '\e96c' !default;
111-
$toast-success-icon: '\ea84' !default;
112-
$toast-error-icon: '\e7e9' !default;
113-
$toast-info-icon: '\e607' !default;
114-
$toast-warning-icon: '\e92f' !default;
115-
116107
$toast-title-font-weight: bold !default;

controls/base/themestudio/styles/notifications/toast/_bootstrap4-definition.scss

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,4 @@ $toast-danger-hover-color: $toast-danger-color !default;
105105
$toast-danger-hover-border-color: #f1b0b7 !default;
106106
$toast-danger-hover-box-shadow: 0 4px 12px !default;
107107

108-
//icon variabels
109-
110-
$toast-close-icon: '\e745' !default;
111-
$toast-success-icon: '\e7d9' !default;
112-
$toast-error-icon: '\e761' !default;
113-
$toast-info-icon: '\e729' !default;
114-
$toast-warning-icon: '\e92f' !default;
115-
116108
$toast-title-font-weight: bold !default;

controls/base/themestudio/styles/notifications/toast/_bootstrap5-definition.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,6 @@ $toast-danger-hover-bg-color: $danger-light !default;
9595
$toast-danger-hover-color: $danger-bg-color !default;
9696
$toast-danger-hover-box-shadow: $shadow !default;
9797
// Toast Type Definitions End
98-
//icon Variable
99-
$toast-close-icon: '\e7e7' !default;
100-
$toast-success-icon: '\e727' !default;
101-
$toast-error-icon: '\e878' !default;
102-
$toast-info-icon: '\e800' !default;
103-
$toast-warning-icon: '\e88b' !default;
10498
//Theme Variables End
10599

106100

controls/base/themestudio/styles/notifications/toast/_fabric-dark-definition.scss

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,4 @@ $toast-danger-content-color: $message-font !default;
8989
$toast-danger-hover-bg-color: #c42818 !default;
9090
$toast-danger-hover-color: $toast-danger-color !default;
9191
$toast-danger-hover-box-shadow: 0 3px 6px 0 rgba($neutral-black, .26) !default;
92-
93-
//icon variabels
94-
95-
$toast-close-icon: '\e7a7' !default;
96-
$toast-success-icon: '\ea84' !default;
97-
$toast-error-icon: '\e7e9' !default;
98-
$toast-info-icon: '\e607' !default;
99-
$toast-warning-icon: '\e92f' !default;
10092
//enddefault

controls/base/themestudio/styles/notifications/toast/_fabric-definition.scss

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,4 @@ $toast-danger-hover-bg-color: #f6cfd3 !default;
9393
$toast-danger-hover-color: $toast-danger-color !default;
9494
$toast-danger-hover-box-shadow: 0 3px 6px 0 rgba($neutral-black, .26) !default;
9595

96-
//icon variabels
97-
98-
$toast-close-icon: '\e7a7' !default;
99-
$toast-success-icon: '\ea84' !default;
100-
$toast-error-icon: '\e7e9' !default;
101-
$toast-info-icon: '\e607' !default;
102-
$toast-warning-icon: '\e92f' !default;
103-
10496
$toast-title-font-weight: bold !default;

0 commit comments

Comments
 (0)