Skip to content

Commit 39b4e76

Browse files
committed
feat: drop support for IE11
BREAKING CHANGE: IE11 is no longer supported
1 parent 026bf5b commit 39b4e76

File tree

5 files changed

+13
-21
lines changed

5 files changed

+13
-21
lines changed

.browserslistrc

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
# This file is currently used by autoprefixer to adjust CSS to support the below specified browsers
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
22
# For additional information regarding the format and rule options, please see:
33
# https://github.com/browserslist/browserslist#queries
4-
#
5-
# For IE 9-11 support, please remove 'not' from the last line of the file and adjust as needed
64

7-
> 0.5%
8-
last 2 versions
5+
# For the full list of supported browsers by the Angular framework, please see:
6+
# https://angular.io/guide/browser-support
7+
8+
# You can see what browsers were selected by your queries by running:
9+
# npx browserslist
10+
11+
last 1 Chrome version
12+
last 1 Firefox version
13+
last 2 Edge major versions
14+
last 2 Safari major versions
15+
last 2 iOS major versions
916
Firefox ESR
10-
not dead
11-
not IE 9-10
17+
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.

package-lock.json

-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@
136136
"npm-run-all": "^4.1.5",
137137
"postcss": "^8.4.14",
138138
"postcss-cli": "^10.0.0",
139-
"postcss-flexibility": "^3.0.0",
140139
"prettier": "^2.7.1",
141140
"pretty-quick": "^3.1.3",
142141
"process": "^0.11.10",

postcss.config.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const autoprefixer = require('autoprefixer');
2-
const postCssFlexibility = require('postcss-flexibility').default;
32

43
module.exports = () => ({
54
plugins: [
@@ -11,6 +10,5 @@ module.exports = () => ({
1110
'last 20 Firefox versions',
1211
],
1312
}),
14-
postCssFlexibility,
1513
],
1614
});

projects/angular-calendar/src/modules/month/calendar-month-view.scss

-5
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,6 @@ $cal-month-view-vars: map.merge($cal-vars, $cal-month-view-vars);
113113

114114
.cal-day-cell {
115115
min-height: 100px;
116-
117-
// ie11 hack for https://github.com/mattlewis92/angular-calendar/issues/501
118-
@media all and (-ms-high-contrast: none) {
119-
display: block;
120-
}
121116
}
122117

123118
.cal-day-cell:not(:last-child) {

0 commit comments

Comments
 (0)