@simplybusiness/theme-core 7.3.1 → 7.3.2
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 +10 -0
- package/dist/index.css +21 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [80e40ef]
|
|
8
|
+
- Updated dependencies [d64d502]
|
|
9
|
+
- Updated dependencies [691d321]
|
|
10
|
+
- Updated dependencies [d9efcc9]
|
|
11
|
+
- @simplybusiness/mobius@5.19.0
|
|
12
|
+
|
|
3
13
|
## 7.3.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -543,7 +543,9 @@ a.mobius-button:focus-visible,
|
|
|
543
543
|
--combobox-group-color:var(--color-text);
|
|
544
544
|
--combobox-group-background-color:#dad6f7;
|
|
545
545
|
--combobox-selected-background-color:var(--color-primary);
|
|
546
|
-
--listbox-height:
|
|
546
|
+
--listbox-height:min-content;
|
|
547
|
+
--listbox-max-height:350px;
|
|
548
|
+
--listbox-max-height-mobile:240px;
|
|
547
549
|
--listbox-gap:4px;
|
|
548
550
|
--option-padding:var(--size-xs) var(--size-lg);
|
|
549
551
|
}
|
|
@@ -577,6 +579,11 @@ a.mobius-button:focus-visible,
|
|
|
577
579
|
.mobius-combobox--is-expanded .mobius-combobox__list{
|
|
578
580
|
opacity:1;
|
|
579
581
|
height:var(--listbox-height);
|
|
582
|
+
max-height:var(--listbox-max-height);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.mobius-combobox--is-expanded.mobius-combobox--is-mobile .mobius-combobox__list{
|
|
586
|
+
max-height:var(--listbox-max-height-mobile);
|
|
580
587
|
}
|
|
581
588
|
|
|
582
589
|
.mobius-combobox__option{
|
|
@@ -1454,12 +1461,14 @@ a.mobius-button:focus-visible,
|
|
|
1454
1461
|
}
|
|
1455
1462
|
|
|
1456
1463
|
.mobius-radio__input{
|
|
1464
|
+
position:relative;
|
|
1457
1465
|
align-self:center;
|
|
1458
|
-
appearance:none;
|
|
1459
1466
|
margin:0 calc(var(--size-xs) + 2px) 0 0;
|
|
1460
|
-
padding:
|
|
1461
|
-
|
|
1467
|
+
padding:var(--size-xs);
|
|
1468
|
+
border:2px solid var(--color-primary-light);
|
|
1462
1469
|
border-radius:50%;
|
|
1470
|
+
-webkit-appearance:none;
|
|
1471
|
+
appearance:none;
|
|
1463
1472
|
background-color:transparent;
|
|
1464
1473
|
}
|
|
1465
1474
|
|
|
@@ -1468,12 +1477,14 @@ a.mobius-button:focus-visible,
|
|
|
1468
1477
|
}
|
|
1469
1478
|
|
|
1470
1479
|
.mobius-radio__input::after{
|
|
1480
|
+
position:absolute;
|
|
1471
1481
|
content:"";
|
|
1472
1482
|
display:block;
|
|
1473
1483
|
width:10px;
|
|
1474
1484
|
height:10px;
|
|
1475
1485
|
border-radius:50%;
|
|
1476
|
-
|
|
1486
|
+
top:3px;
|
|
1487
|
+
left:3px;
|
|
1477
1488
|
}
|
|
1478
1489
|
|
|
1479
1490
|
.mobius-radio__input:checked::after{
|
|
@@ -1481,7 +1492,7 @@ a.mobius-button:focus-visible,
|
|
|
1481
1492
|
}
|
|
1482
1493
|
|
|
1483
1494
|
.mobius-radio__input:disabled{
|
|
1484
|
-
|
|
1495
|
+
border-color:var(--color-border-medium);
|
|
1485
1496
|
}
|
|
1486
1497
|
|
|
1487
1498
|
.mobius-radio__input:disabled:checked::after{
|
|
@@ -1528,7 +1539,7 @@ a.mobius-button:focus-visible,
|
|
|
1528
1539
|
}
|
|
1529
1540
|
|
|
1530
1541
|
.mobius-radio__label.--is-selected:not(.--is-invalid .mobius-radio__label):not(.--is-disabled) .mobius-radio__input{
|
|
1531
|
-
|
|
1542
|
+
border-color:var(--color-primary-light);
|
|
1532
1543
|
}
|
|
1533
1544
|
|
|
1534
1545
|
:is(.mobius-radio__label.--is-selected:not(.--is-invalid .mobius-radio__label):not(.--is-disabled) .mobius-radio__input):checked::after{
|
|
@@ -1541,7 +1552,7 @@ a.mobius-button:focus-visible,
|
|
|
1541
1552
|
}
|
|
1542
1553
|
|
|
1543
1554
|
.mobius-radio__label:hover:not(.--is-disabled):not(.--is-invalid .mobius-radio__label) .mobius-radio__input{
|
|
1544
|
-
|
|
1555
|
+
border-color:var(--color-primary);
|
|
1545
1556
|
}
|
|
1546
1557
|
|
|
1547
1558
|
:is(.mobius-radio__label:hover:not(.--is-disabled):not(.--is-invalid .mobius-radio__label) .mobius-radio__input):checked::after{
|
|
@@ -1558,7 +1569,7 @@ a.mobius-button:focus-visible,
|
|
|
1558
1569
|
}
|
|
1559
1570
|
|
|
1560
1571
|
.mobius-radio__label:focus-within:not(.--is-disabled):not(.--is-invalid .mobius-radio__label:focus-within:not(.--is-disabled)) .mobius-radio__input{
|
|
1561
|
-
|
|
1572
|
+
border-color:var(--color-primary);
|
|
1562
1573
|
}
|
|
1563
1574
|
|
|
1564
1575
|
:is(.mobius-radio__label:focus-within:not(.--is-disabled):not(.--is-invalid .mobius-radio__label:focus-within:not(.--is-disabled)) .mobius-radio__input):checked::after{
|
|
@@ -1580,7 +1591,7 @@ a.mobius-button:focus-visible,
|
|
|
1580
1591
|
}
|
|
1581
1592
|
|
|
1582
1593
|
:is(.--is-invalid .mobius-radio__label:not(.--is-disabled)) .mobius-radio__input{
|
|
1583
|
-
|
|
1594
|
+
border-color:var(--color-error);
|
|
1584
1595
|
}
|
|
1585
1596
|
|
|
1586
1597
|
:is(:is(.--is-invalid .mobius-radio__label:not(.--is-disabled)) .mobius-radio__input):checked::after{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.2",
|
|
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": "^5.
|
|
29
|
+
"@simplybusiness/mobius": "^5.19.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"css-loader": "^7.1.2",
|