@simplybusiness/theme-core 7.3.1 → 7.3.3
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 +17 -0
- package/dist/index.css +22 -13
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f0b6a77]
|
|
8
|
+
- @simplybusiness/mobius@5.19.1
|
|
9
|
+
|
|
10
|
+
## 7.3.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [80e40ef]
|
|
15
|
+
- Updated dependencies [d64d502]
|
|
16
|
+
- Updated dependencies [691d321]
|
|
17
|
+
- Updated dependencies [d9efcc9]
|
|
18
|
+
- @simplybusiness/mobius@5.19.0
|
|
19
|
+
|
|
3
20
|
## 7.3.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -366,8 +366,7 @@ h6.mobius-accordion__link-text,
|
|
|
366
366
|
.mobius-button:where(.--variant-link){
|
|
367
367
|
--button-content-color:var(--color-secondary);
|
|
368
368
|
appearance:none;
|
|
369
|
-
|
|
370
|
-
padding:0;
|
|
369
|
+
padding:var(--size-xxs);
|
|
371
370
|
background-color:transparent;
|
|
372
371
|
font-weight:normal;
|
|
373
372
|
}
|
|
@@ -384,7 +383,6 @@ h6.mobius-accordion__link-text,
|
|
|
384
383
|
|
|
385
384
|
.mobius-button:where(.--variant-link):focus-visible{
|
|
386
385
|
box-shadow:0 0 0 var(--size-focus-ring) var(--color-focus);
|
|
387
|
-
padding:3px 0;
|
|
388
386
|
}
|
|
389
387
|
|
|
390
388
|
.mobius-button.--is-disabled:where(.--variant-link){
|
|
@@ -543,7 +541,9 @@ a.mobius-button:focus-visible,
|
|
|
543
541
|
--combobox-group-color:var(--color-text);
|
|
544
542
|
--combobox-group-background-color:#dad6f7;
|
|
545
543
|
--combobox-selected-background-color:var(--color-primary);
|
|
546
|
-
--listbox-height:
|
|
544
|
+
--listbox-height:min-content;
|
|
545
|
+
--listbox-max-height:350px;
|
|
546
|
+
--listbox-max-height-mobile:240px;
|
|
547
547
|
--listbox-gap:4px;
|
|
548
548
|
--option-padding:var(--size-xs) var(--size-lg);
|
|
549
549
|
}
|
|
@@ -577,6 +577,11 @@ a.mobius-button:focus-visible,
|
|
|
577
577
|
.mobius-combobox--is-expanded .mobius-combobox__list{
|
|
578
578
|
opacity:1;
|
|
579
579
|
height:var(--listbox-height);
|
|
580
|
+
max-height:var(--listbox-max-height);
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.mobius-combobox--is-expanded.mobius-combobox--is-mobile .mobius-combobox__list{
|
|
584
|
+
max-height:var(--listbox-max-height-mobile);
|
|
580
585
|
}
|
|
581
586
|
|
|
582
587
|
.mobius-combobox__option{
|
|
@@ -1454,12 +1459,14 @@ a.mobius-button:focus-visible,
|
|
|
1454
1459
|
}
|
|
1455
1460
|
|
|
1456
1461
|
.mobius-radio__input{
|
|
1462
|
+
position:relative;
|
|
1457
1463
|
align-self:center;
|
|
1458
|
-
appearance:none;
|
|
1459
1464
|
margin:0 calc(var(--size-xs) + 2px) 0 0;
|
|
1460
|
-
padding:
|
|
1461
|
-
|
|
1465
|
+
padding:var(--size-xs);
|
|
1466
|
+
border:2px solid var(--color-primary-light);
|
|
1462
1467
|
border-radius:50%;
|
|
1468
|
+
-webkit-appearance:none;
|
|
1469
|
+
appearance:none;
|
|
1463
1470
|
background-color:transparent;
|
|
1464
1471
|
}
|
|
1465
1472
|
|
|
@@ -1468,12 +1475,14 @@ a.mobius-button:focus-visible,
|
|
|
1468
1475
|
}
|
|
1469
1476
|
|
|
1470
1477
|
.mobius-radio__input::after{
|
|
1478
|
+
position:absolute;
|
|
1471
1479
|
content:"";
|
|
1472
1480
|
display:block;
|
|
1473
1481
|
width:10px;
|
|
1474
1482
|
height:10px;
|
|
1475
1483
|
border-radius:50%;
|
|
1476
|
-
|
|
1484
|
+
top:3px;
|
|
1485
|
+
left:3px;
|
|
1477
1486
|
}
|
|
1478
1487
|
|
|
1479
1488
|
.mobius-radio__input:checked::after{
|
|
@@ -1481,7 +1490,7 @@ a.mobius-button:focus-visible,
|
|
|
1481
1490
|
}
|
|
1482
1491
|
|
|
1483
1492
|
.mobius-radio__input:disabled{
|
|
1484
|
-
|
|
1493
|
+
border-color:var(--color-border-medium);
|
|
1485
1494
|
}
|
|
1486
1495
|
|
|
1487
1496
|
.mobius-radio__input:disabled:checked::after{
|
|
@@ -1528,7 +1537,7 @@ a.mobius-button:focus-visible,
|
|
|
1528
1537
|
}
|
|
1529
1538
|
|
|
1530
1539
|
.mobius-radio__label.--is-selected:not(.--is-invalid .mobius-radio__label):not(.--is-disabled) .mobius-radio__input{
|
|
1531
|
-
|
|
1540
|
+
border-color:var(--color-primary-light);
|
|
1532
1541
|
}
|
|
1533
1542
|
|
|
1534
1543
|
:is(.mobius-radio__label.--is-selected:not(.--is-invalid .mobius-radio__label):not(.--is-disabled) .mobius-radio__input):checked::after{
|
|
@@ -1541,7 +1550,7 @@ a.mobius-button:focus-visible,
|
|
|
1541
1550
|
}
|
|
1542
1551
|
|
|
1543
1552
|
.mobius-radio__label:hover:not(.--is-disabled):not(.--is-invalid .mobius-radio__label) .mobius-radio__input{
|
|
1544
|
-
|
|
1553
|
+
border-color:var(--color-primary);
|
|
1545
1554
|
}
|
|
1546
1555
|
|
|
1547
1556
|
:is(.mobius-radio__label:hover:not(.--is-disabled):not(.--is-invalid .mobius-radio__label) .mobius-radio__input):checked::after{
|
|
@@ -1558,7 +1567,7 @@ a.mobius-button:focus-visible,
|
|
|
1558
1567
|
}
|
|
1559
1568
|
|
|
1560
1569
|
.mobius-radio__label:focus-within:not(.--is-disabled):not(.--is-invalid .mobius-radio__label:focus-within:not(.--is-disabled)) .mobius-radio__input{
|
|
1561
|
-
|
|
1570
|
+
border-color:var(--color-primary);
|
|
1562
1571
|
}
|
|
1563
1572
|
|
|
1564
1573
|
: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 +1589,7 @@ a.mobius-button:focus-visible,
|
|
|
1580
1589
|
}
|
|
1581
1590
|
|
|
1582
1591
|
:is(.--is-invalid .mobius-radio__label:not(.--is-disabled)) .mobius-radio__input{
|
|
1583
|
-
|
|
1592
|
+
border-color:var(--color-error);
|
|
1584
1593
|
}
|
|
1585
1594
|
|
|
1586
1595
|
: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.3",
|
|
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.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"css-loader": "^7.1.2",
|