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;

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,6 @@ $toast-danger-hover-bg-color: $danger-light !default;
9191
$toast-danger-hover-color: $danger-bg-color !default;
9292
$toast-danger-hover-box-shadow: $shadow !default;
9393
// Toast Type Definitions End
94-
//icon Variable
95-
$toast-close-icon: '\e7e7' !default;
96-
$toast-success-icon: '\e738' !default;
97-
$toast-error-icon: '\e70d' !default;
98-
$toast-info-icon: '\e70a' !default;
99-
$toast-warning-icon: '\e88b' !default;
10094
//Theme Variables End
10195

10296

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,4 @@ $toast-danger-hover-color: $toast-danger-color !default;
104104
$toast-danger-hover-border-color: $border-fg !default;
105105
$toast-danger-hover-box-shadow: none !default;
106106

107-
//icon variabels
108-
109-
$toast-close-icon: '\e7a7' !default;
110-
$toast-success-icon: '\ea84' !default;
111-
$toast-error-icon: '\e825' !default;
112-
$toast-info-icon: '\e607' !default;
113-
$toast-warning-icon: '\e92f' !default;
114-
115107
$toast-title-font-weight: bold !default;

controls/base/themestudio/styles/notifications/toast/_highcontrast-light-definition.scss

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,4 @@ $toast-danger-hover-bg-color: #ed4848 !default;
103103
$toast-danger-hover-color: $toast-danger-color !default;
104104
$toast-danger-hover-border-color: $border-fg !default;
105105
$toast-danger-hover-box-shadow: none !default;
106-
107-
//icon variabels
108-
109-
$toast-close-icon: '\e7a7' !default;
110-
$toast-success-icon: '\ea84' !default;
111-
$toast-error-icon: '\e825' !default;
112-
$toast-info-icon: '\e607' !default;
113-
$toast-warning-icon: '\e92f' !default;
114106
//enddefault

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,4 @@ $toast-danger-content-color: $message-font !default;
107107
$toast-danger-hover-bg-color: #ff5d48 !default;
108108
$toast-danger-hover-color: $message-font !default;
109109
$toast-danger-hover-box-shadow: 0 3px 5px -1px rgba($grey-black, .2), 0 6px 10px 0 rgba($grey-black, .14), 0 1px 18px 0 rgba($grey-black, .12) !default;
110-
//icon variabels
111-
112-
$toast-close-icon: '\e7fc' !default;
113-
$toast-success-icon: '\ea84' !default;
114-
$toast-error-icon: '\e208' !default;
115-
$toast-info-icon: '\e607' !default;
116-
$toast-warning-icon: '\e92f' !default;
117110
//enddefault

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,5 @@ $toast-danger-content-color: $toast-danger-color !default;
107107
$toast-danger-hover-bg-color: $toast-danger-bg-color !default;
108108
$toast-danger-hover-color: $toast-danger-color !default;
109109
$toast-danger-hover-box-shadow: 0 3px 6px 0 rgba($grey-black, .26) !default;
110-
//icon variabels
111-
112-
$toast-close-icon: '\e7fc' !default;
113-
$toast-success-icon: '\ea84' !default;
114-
$toast-error-icon: '\e208' !default;
115-
$toast-info-icon: '\e607' !default;
116-
$toast-warning-icon: '\e92f' !default;
117110

118111
$toast-title-font-weight: bold !default;

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,4 @@ $toast-danger-hover-bg-color: $danger-light !default;
9292
$toast-danger-hover-color: $toast-danger-color !default;
9393
$toast-danger-hover-box-shadow: $shadow !default;
9494
// Toast Type Definitions End
95-
//icon Variable
96-
$toast-close-icon: '\e771' !default;
97-
$toast-success-icon: '\e7b0' !default;
98-
$toast-error-icon: '\e7a2' !default;
99-
$toast-info-icon: '\e797' !default;
100-
$toast-warning-icon: '\e88b' !default;
10195
//Theme Variables End
Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
@include export-module('toast-bootstrap-icons') {
22
.e-toast {
33
.e-toast-close-icon::before {
4-
content: $toast-close-icon;
4+
content: '\e96c';
5+
font-family: 'e-icons';
56
}
67

78
.e-toast-success-icon::before {
8-
content: $toast-success-icon;
9+
content: '\ea84';
10+
font-family: 'e-icons';
911
}
1012

1113
.e-toast-error-icon::before {
12-
content: $toast-error-icon;
14+
content: '\e7e9';
15+
font-family: 'e-icons';
1316
}
1417

1518
.e-toast-info-icon::before {
16-
content: $toast-info-icon;
19+
content: '\e607';
20+
font-family: 'e-icons';
1721
}
1822

1923
.e-toast-warning-icon::before {
20-
content: $toast-warning-icon;
24+
content: '\e92f';
25+
font-family: 'e-icons';
2126
}
2227
}
2328
}
Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
@include export-module('toast-bootstrap-icons') {
22
.e-toast {
33
.e-toast-close-icon::before {
4-
content: $toast-close-icon;
4+
content: '\e96c';
5+
font-family: 'e-icons';
56
}
67

78
.e-toast-success-icon::before {
8-
content: $toast-success-icon;
9+
content: '\ea84';
10+
font-family: 'e-icons';
911
}
1012

1113
.e-toast-error-icon::before {
12-
content: $toast-error-icon;
14+
content: '\e7e9';
15+
font-family: 'e-icons';
1316
}
1417

1518
.e-toast-info-icon::before {
16-
content: $toast-info-icon;
19+
content: '\e607';
20+
font-family: 'e-icons';
1721
}
1822

1923
.e-toast-warning-icon::before {
20-
content: $toast-warning-icon;
24+
content: '\e92f';
25+
font-family: 'e-icons';
2126
}
2227
}
2328
}
Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
@include export-module('toast-bootstrap4-icons') {
22
.e-toast {
33
.e-toast-close-icon::before {
4-
content: $toast-close-icon;
4+
content: '\e745';
5+
font-family: 'e-icons';
56
}
67

78
.e-toast-success-icon::before {
8-
content: $toast-success-icon;
9+
content: '\e7d9';
10+
font-family: 'e-icons';
911
}
1012

1113
.e-toast-error-icon::before {
12-
content: $toast-error-icon;
14+
content: '\e761';
15+
font-family: 'e-icons';
1316
}
1417

1518
.e-toast-info-icon::before {
16-
content: $toast-info-icon;
19+
content: '\e729';
20+
font-family: 'e-icons';
1721
}
1822

1923
.e-toast-warning-icon::before {
20-
content: $toast-warning-icon;
24+
content: '\e92f';
25+
font-family: 'e-icons';
2126
}
2227
}
2328
}
Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
@include export-module('toast-material-icons') {
22
.e-toast {
33
.e-toast-close-icon::before {
4-
content: $toast-close-icon;
4+
content: '\e7e7';
5+
font-family: 'e-icons';
56
}
67

78
.e-toast-success-icon::before {
8-
content: $toast-success-icon;
9+
content: '\e727';
10+
font-family: 'e-icons';
911
}
1012

1113
.e-toast-error-icon::before {
12-
content: $toast-error-icon;
14+
content: '\e878';
15+
font-family: 'e-icons';
1316
}
1417

1518
.e-toast-info-icon::before {
16-
content: $toast-info-icon;
19+
content: '\e800';
20+
font-family: 'e-icons';
1721
}
1822

1923
.e-toast-warning-icon::before {
20-
content: $toast-warning-icon;
24+
content: '\e88b';
25+
font-family: 'e-icons';
2126
}
2227
}
2328
}

0 commit comments

Comments
 (0)