@simplybusiness/theme-core 7.14.21 → 7.14.22
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/CHANGELOG.md +8 -0
- package/dist/index.css +2 -2
- package/package.json +2 -2
- package/src/icons.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.14.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2ffcbb2: Replace deprecated CSS properties with modern equivalents (clip, word-wrap, grid-row-gap)
|
|
8
|
+
- Updated dependencies [ec27737]
|
|
9
|
+
- @simplybusiness/mobius@7.0.0
|
|
10
|
+
|
|
3
11
|
## 7.14.21
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -2921,7 +2921,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2921
2921
|
padding:0;
|
|
2922
2922
|
margin:-1px;
|
|
2923
2923
|
overflow:hidden;
|
|
2924
|
-
clip:
|
|
2924
|
+
clip-path:inset(50%);
|
|
2925
2925
|
white-space:nowrap;
|
|
2926
2926
|
border-width:0;
|
|
2927
2927
|
}
|
|
@@ -2934,7 +2934,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2934
2934
|
padding:0;
|
|
2935
2935
|
margin:-1px;
|
|
2936
2936
|
overflow:hidden;
|
|
2937
|
-
clip:
|
|
2937
|
+
clip-path:inset(50%);
|
|
2938
2938
|
white-space:nowrap;
|
|
2939
2939
|
border-width:0;
|
|
2940
2940
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.14.
|
|
3
|
+
"version": "7.14.22",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"./fonts": "./dist/fonts.css"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@simplybusiness/mobius": "^
|
|
31
|
+
"@simplybusiness/mobius": "^7.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@simplybusiness/build-scripts": "^1.2.2"
|
package/src/icons.css
CHANGED
|
@@ -358,7 +358,7 @@ svg:not(:host).svg-inline--mobius-icon {
|
|
|
358
358
|
padding: 0;
|
|
359
359
|
margin: -1px;
|
|
360
360
|
overflow: hidden;
|
|
361
|
-
clip:
|
|
361
|
+
clip-path: inset(50%);
|
|
362
362
|
white-space: nowrap;
|
|
363
363
|
border-width: 0;
|
|
364
364
|
}
|
|
@@ -371,7 +371,7 @@ svg:not(:host).svg-inline--mobius-icon {
|
|
|
371
371
|
padding: 0;
|
|
372
372
|
margin: -1px;
|
|
373
373
|
overflow: hidden;
|
|
374
|
-
clip:
|
|
374
|
+
clip-path: inset(50%);
|
|
375
375
|
white-space: nowrap;
|
|
376
376
|
border-width: 0;
|
|
377
377
|
}
|