@taiga-ui/browserslist-config 0.397.0 → 0.399.0
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/index.d.ts +7 -2
- package/{index.cjs.js → index.js} +4 -4
- package/package.json +20 -25
- package/index.esm.js +0 -14
package/index.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var index = [
|
|
1
|
+
const defaults = [
|
|
4
2
|
'ChromeAndroid >= 107',
|
|
5
3
|
'Chrome >= 107',
|
|
6
4
|
'Edge >= 107',
|
|
@@ -13,4 +11,6 @@ var index = [
|
|
|
13
11
|
'FirefoxAndroid >= 128',
|
|
14
12
|
];
|
|
15
13
|
|
|
16
|
-
|
|
14
|
+
const node = ['Node >= 20'];
|
|
15
|
+
|
|
16
|
+
module.exports = {defaults, modern: defaults, node};
|
package/package.json
CHANGED
|
@@ -1,27 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
},
|
|
12
|
-
"license": "Apache-2.0",
|
|
13
|
-
"type": "module",
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"import": "./index.esm.js",
|
|
17
|
-
"types": "./index.d.ts"
|
|
2
|
+
"name": "@taiga-ui/browserslist-config",
|
|
3
|
+
"version": "0.399.0",
|
|
4
|
+
"description": "Taiga UI browserslist config",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"browserslist"
|
|
7
|
+
],
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/taiga-family/configurations.git"
|
|
18
11
|
},
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"main": "index.js",
|
|
14
|
+
"types": "./index.d.ts",
|
|
15
|
+
"typings": "index.d.ts",
|
|
16
|
+
"files": [
|
|
17
|
+
"index.d.ts"
|
|
18
|
+
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
}
|
|
22
|
+
}
|
package/index.esm.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
var index = [
|
|
2
|
-
'ChromeAndroid >= 107',
|
|
3
|
-
'Chrome >= 107',
|
|
4
|
-
'Edge >= 107',
|
|
5
|
-
'Opera >= 93',
|
|
6
|
-
'OperaMobile >= 73',
|
|
7
|
-
'iOS >= 14.5',
|
|
8
|
-
'Safari >= 14.1',
|
|
9
|
-
'Samsung >= 21',
|
|
10
|
-
'Firefox >= 128',
|
|
11
|
-
'FirefoxAndroid >= 128',
|
|
12
|
-
];
|
|
13
|
-
|
|
14
|
-
export { index as default };
|