@simplybusiness/theme-core 7.13.10 → 7.13.12
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 +15 -0
- package/dist/index.css +12 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.13.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f655230]
|
|
8
|
+
- @simplybusiness/mobius@6.4.5
|
|
9
|
+
|
|
10
|
+
## 7.13.11
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 3da43d9: Show "placeholder" option in paler colour for required select inputs
|
|
15
|
+
- Updated dependencies [3da43d9]
|
|
16
|
+
- @simplybusiness/mobius@6.4.4
|
|
17
|
+
|
|
3
18
|
## 7.13.10
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -1842,13 +1842,24 @@ a.mobius-button:focus-visible,
|
|
|
1842
1842
|
border:var(--border-default);
|
|
1843
1843
|
border-radius:var(--input-border-radius);
|
|
1844
1844
|
background-color:var(--color-background-input);
|
|
1845
|
-
color:var(--color-text);
|
|
1846
1845
|
outline:0;
|
|
1847
1846
|
appearance:none;
|
|
1848
1847
|
white-space:nowrap;
|
|
1849
1848
|
text-overflow:ellipsis;
|
|
1850
1849
|
}
|
|
1851
1850
|
|
|
1851
|
+
.mobius-select option{
|
|
1852
|
+
color:var(--color-text);
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.mobius-select option[disabled][selected]{
|
|
1856
|
+
color:var(--color-text-medium);
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.mobius-select:invalid{
|
|
1860
|
+
color:var(--color-text-medium);
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1852
1863
|
.mobius-select.--is-disabled{
|
|
1853
1864
|
background-color:var(--color-background-light);
|
|
1854
1865
|
border-color:var(--color-border-medium);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.13.
|
|
3
|
+
"version": "7.13.12",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^6.4.
|
|
29
|
+
"@simplybusiness/mobius": "^6.4.5"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"build-scripts": "^1.0.1"
|