@simplybusiness/theme-simplybusiness 2.13.9 → 2.13.11
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 +24 -0
- package/dist/index.css +146 -69
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 2.13.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [410c8a0]
|
|
8
|
+
- Updated dependencies [5cb5dd8]
|
|
9
|
+
- Updated dependencies [ab259fa]
|
|
10
|
+
- Updated dependencies [476f8ab]
|
|
11
|
+
- Updated dependencies [b9d0b59]
|
|
12
|
+
- @simplybusiness/mobius-journey@11.39.0
|
|
13
|
+
- @simplybusiness/mobius@6.10.3
|
|
14
|
+
- @simplybusiness/mobius-chatbot@2.2.15
|
|
15
|
+
- @simplybusiness/mobius-datepicker@7.3.15
|
|
16
|
+
- @simplybusiness/mobius-interventions@3.8.5
|
|
17
|
+
- @simplybusiness/theme-core@7.14.18
|
|
18
|
+
|
|
19
|
+
## 2.13.10
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [c92c93d]
|
|
24
|
+
- Updated dependencies [3b8542c]
|
|
25
|
+
- @simplybusiness/mobius-journey@11.38.0
|
|
26
|
+
|
|
3
27
|
## 2.13.9
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -5667,97 +5667,168 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5667
5667
|
--column-count:2;
|
|
5668
5668
|
}
|
|
5669
5669
|
}
|
|
5670
|
-
.mobius-
|
|
5671
|
-
display:flex;
|
|
5672
|
-
flex-direction:column;
|
|
5673
|
-
gap:16px;
|
|
5674
|
-
padding:24px 16px;
|
|
5675
|
-
border:2px solid #e2dbfb;
|
|
5676
|
-
border-width:2px;
|
|
5677
|
-
background-color:#ffffff;
|
|
5678
|
-
transition:border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
|
|
5679
|
-
overflow:hidden;
|
|
5680
|
-
box-shadow:0px 12px 24px 0px rgba(0, 0, 0, 0.1607843137);
|
|
5670
|
+
.mobius-recommendation-card__wrapper{
|
|
5681
5671
|
position:relative;
|
|
5672
|
+
display:grid;
|
|
5673
|
+
}
|
|
5674
|
+
@supports (grid-template-rows: subgrid){
|
|
5675
|
+
.mobius-recommendation-card__wrapper{
|
|
5676
|
+
grid-template-rows:subgrid;
|
|
5677
|
+
grid-row:span 7;
|
|
5682
5678
|
}
|
|
5683
|
-
|
|
5684
|
-
|
|
5679
|
+
}
|
|
5680
|
+
.mobius-recommendation-card__wrapper{
|
|
5681
|
+
height:100%;
|
|
5682
|
+
row-gap:0;
|
|
5683
|
+
}
|
|
5684
|
+
.mobius-recommendation-card__input{
|
|
5685
|
+
position:absolute;
|
|
5686
|
+
width:1px;
|
|
5687
|
+
height:1px;
|
|
5688
|
+
margin:-1px;
|
|
5689
|
+
padding:0;
|
|
5690
|
+
overflow:hidden;
|
|
5691
|
+
clip-path:inset(50%);
|
|
5692
|
+
border:0;
|
|
5693
|
+
}
|
|
5694
|
+
.mobius-recommendation-card{
|
|
5695
|
+
display:grid;
|
|
5696
|
+
}
|
|
5697
|
+
@supports (grid-template-rows: subgrid){
|
|
5698
|
+
.mobius-recommendation-card{
|
|
5699
|
+
grid-template-rows:subgrid;
|
|
5700
|
+
grid-row:span 6;
|
|
5701
|
+
}
|
|
5702
|
+
}
|
|
5703
|
+
.mobius-recommendation-card{
|
|
5704
|
+
padding:var(--size-md) var(--size-sm);
|
|
5685
5705
|
border-radius:var(--radius-2);
|
|
5706
|
+
background:var(--color-background);
|
|
5707
|
+
box-shadow:inset 0 0 0 var(--size-border-width) var(--color-primary-lighter), var(--shadow-card, 0 12px 24px 0 rgba(0, 0, 0, 0.16));
|
|
5708
|
+
cursor:pointer;
|
|
5709
|
+
transition:box-shadow 140ms ease;
|
|
5710
|
+
}
|
|
5711
|
+
.mobius-recommendation-card:hover{
|
|
5712
|
+
box-shadow:inset 0 0 0 var(--size-border-width) var(--color-primary), var(--shadow-card, 0 12px 24px 0 rgba(0, 0, 0, 0.16));
|
|
5713
|
+
}
|
|
5714
|
+
.mobius-recommendation-card.--is-selected{
|
|
5715
|
+
box-shadow:inset 0 0 0 var(--size-border-width) var(--color-primary-darker), var(--shadow-card, 0 12px 24px 0 rgba(0, 0, 0, 0.16));
|
|
5716
|
+
}
|
|
5717
|
+
.mobius-recommendation-card.--is-unavailable{
|
|
5718
|
+
position:relative;
|
|
5719
|
+
cursor:default;
|
|
5720
|
+
pointer-events:none;
|
|
5721
|
+
}
|
|
5722
|
+
.mobius-recommendation-card.--has-badge{
|
|
5723
|
+
border-top-left-radius:0;
|
|
5724
|
+
border-top-right-radius:0;
|
|
5725
|
+
}
|
|
5726
|
+
.mobius-recommendation-card__input:focus-visible ~ .mobius-recommendation-card{
|
|
5727
|
+
outline:var(--size-border-width) solid var(--color-focus);
|
|
5728
|
+
outline-offset:var(--size-xxs);
|
|
5686
5729
|
}
|
|
5687
|
-
.mobius-
|
|
5688
|
-
|
|
5689
|
-
|
|
5730
|
+
.mobius-recommendation-card__badge-container{
|
|
5731
|
+
display:flex;
|
|
5732
|
+
align-items:stretch;
|
|
5690
5733
|
}
|
|
5691
|
-
.mobius-
|
|
5734
|
+
.mobius-recommendation-card__badge{
|
|
5692
5735
|
display:flex;
|
|
5693
|
-
|
|
5694
|
-
gap:var(--size-
|
|
5736
|
+
align-items:center;
|
|
5737
|
+
gap:var(--size-xs);
|
|
5738
|
+
padding:var(--size-xs) var(--size-sm);
|
|
5739
|
+
border:var(--size-border-width) solid var(--color-primary-darker);
|
|
5740
|
+
border-bottom:none;
|
|
5741
|
+
border-radius:var(--radius-2) var(--radius-2) 0 0;
|
|
5742
|
+
background:var(--color-primary-darker);
|
|
5743
|
+
color:var(--color-text-inverted);
|
|
5744
|
+
font-size:var(--font-size-2);
|
|
5745
|
+
line-height:var(--line-height-tight);
|
|
5746
|
+
transition:border-color 140ms ease;
|
|
5747
|
+
flex:1;
|
|
5695
5748
|
}
|
|
5696
|
-
.mobius-
|
|
5749
|
+
.mobius-recommendation-card:hover .mobius-recommendation-card__badge{
|
|
5750
|
+
border-color:var(--color-primary);
|
|
5751
|
+
}
|
|
5752
|
+
.mobius-recommendation-card.--is-selected .mobius-recommendation-card__badge{
|
|
5753
|
+
border-color:var(--color-primary-darker);
|
|
5754
|
+
}
|
|
5755
|
+
.mobius-recommendation-card__content{
|
|
5756
|
+
display:contents;
|
|
5757
|
+
}
|
|
5758
|
+
.mobius-recommendation-card__header{
|
|
5697
5759
|
display:flex;
|
|
5698
5760
|
justify-content:space-between;
|
|
5699
5761
|
align-items:flex-start;
|
|
5700
|
-
gap:
|
|
5762
|
+
gap:var(--size-sm);
|
|
5763
|
+
}
|
|
5764
|
+
.mobius-recommendation-card__heading{
|
|
5765
|
+
margin:0;
|
|
5766
|
+
font-size:var(--font-size-4);
|
|
5767
|
+
line-height:var(--line-height-tight);
|
|
5701
5768
|
}
|
|
5702
|
-
.mobius-
|
|
5769
|
+
.mobius-recommendation-card__description{
|
|
5703
5770
|
display:flex;
|
|
5704
|
-
|
|
5705
|
-
gap:
|
|
5706
|
-
margin:-30px -24px 8px;
|
|
5707
|
-
padding:14px 24px;
|
|
5708
|
-
background:rgb(42, 30, 129);
|
|
5709
|
-
color:var(--color-text-inverted);
|
|
5710
|
-
font-size:14px;
|
|
5711
|
-
border-radius:22px 22px 0 0;
|
|
5771
|
+
flex-direction:column;
|
|
5772
|
+
gap:var(--size-xs);
|
|
5712
5773
|
}
|
|
5713
|
-
.mobius-
|
|
5714
|
-
|
|
5774
|
+
.mobius-recommendation-card__limits{
|
|
5775
|
+
display:inline-flex;
|
|
5776
|
+
flex-wrap:wrap;
|
|
5777
|
+
gap:0 0.25em;
|
|
5715
5778
|
}
|
|
5716
|
-
.mobius-
|
|
5717
|
-
|
|
5779
|
+
.mobius-recommendation-card__cta{
|
|
5780
|
+
justify-self:start;
|
|
5781
|
+
padding:var(--size-xs) var(--size-sm);
|
|
5782
|
+
border-radius:20px;
|
|
5783
|
+
font-size:var(--font-size-2);
|
|
5784
|
+
font-weight:var(--font-weight-bold);
|
|
5718
5785
|
}
|
|
5719
|
-
.mobius-
|
|
5720
|
-
min-width:
|
|
5721
|
-
|
|
5722
|
-
border-radius:var(--radius-1);
|
|
5723
|
-
border:2px solid var(--color-border);
|
|
5786
|
+
.mobius-recommendation-card__checkbox{
|
|
5787
|
+
min-width:calc(var(--size-md) + var(--size-border-width) * 2);
|
|
5788
|
+
aspect-ratio:1;
|
|
5724
5789
|
display:grid;
|
|
5725
5790
|
place-items:center;
|
|
5726
|
-
|
|
5727
|
-
|
|
5791
|
+
border:var(--size-border-width) solid var(--color-border);
|
|
5792
|
+
border-radius:var(--radius-1);
|
|
5793
|
+
background:var(--color-background);
|
|
5728
5794
|
color:transparent;
|
|
5795
|
+
transition:140ms ease;
|
|
5796
|
+
transition-property:border-color, background-color, color;
|
|
5729
5797
|
}
|
|
5730
|
-
.mobius-
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
}
|
|
5735
|
-
.mobius-
|
|
5798
|
+
.mobius-recommendation-card__checkbox.--is-selected{
|
|
5799
|
+
border-color:var(--color-primary-hover);
|
|
5800
|
+
background:var(--color-primary-hover);
|
|
5801
|
+
color:var(--color-text-inverted);
|
|
5802
|
+
}
|
|
5803
|
+
.mobius-recommendation-card__checkbox-icon{
|
|
5736
5804
|
width:10px;
|
|
5737
5805
|
height:6px;
|
|
5738
|
-
border-left:
|
|
5739
|
-
border-bottom:
|
|
5740
|
-
transform:rotate(-45deg);
|
|
5741
|
-
}
|
|
5742
|
-
.mobius-recommendations__heading{
|
|
5743
|
-
margin:0;
|
|
5744
|
-
font-size:20px;
|
|
5745
|
-
line-height:1.2;
|
|
5746
|
-
color:#111118;
|
|
5747
|
-
}
|
|
5748
|
-
.mobius-recommendations__description{
|
|
5749
|
-
display:flex;
|
|
5750
|
-
flex-direction:column;
|
|
5751
|
-
gap:var(--size-xs);
|
|
5806
|
+
border-left:var(--size-border-width) solid currentColor;
|
|
5807
|
+
border-bottom:var(--size-border-width) solid currentColor;
|
|
5808
|
+
transform:rotate(-45deg) translate(1px, -1px);
|
|
5752
5809
|
}
|
|
5753
|
-
.mobius-
|
|
5754
|
-
|
|
5810
|
+
.mobius-recommendation-card__overlay{
|
|
5811
|
+
position:absolute;
|
|
5812
|
+
top:0;
|
|
5813
|
+
right:0;
|
|
5814
|
+
bottom:0;
|
|
5815
|
+
left:0;
|
|
5816
|
+
z-index:2;
|
|
5817
|
+
display:grid;
|
|
5818
|
+
place-items:center;
|
|
5819
|
+
border-radius:inherit;
|
|
5820
|
+
background:rgba(255, 255, 255, 0.75);
|
|
5755
5821
|
}
|
|
5756
|
-
.mobius-
|
|
5757
|
-
|
|
5758
|
-
|
|
5822
|
+
.mobius-recommendation-card__overlay-message{
|
|
5823
|
+
max-width:288px;
|
|
5824
|
+
margin-left:var(--size-sm);
|
|
5825
|
+
margin-right:var(--size-sm);
|
|
5826
|
+
padding:var(--size-md);
|
|
5827
|
+
border-radius:var(--radius-2);
|
|
5828
|
+
background:var(--color-azure-700);
|
|
5829
|
+
color:var(--color-neutral-100);
|
|
5759
5830
|
font-size:var(--font-size-2);
|
|
5760
|
-
|
|
5831
|
+
line-height:var(--line-height-normal);
|
|
5761
5832
|
}
|
|
5762
5833
|
.mobius-recommendations{
|
|
5763
5834
|
display:flex;
|
|
@@ -5782,8 +5853,14 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5782
5853
|
}
|
|
5783
5854
|
.mobius-recommendations__grid{
|
|
5784
5855
|
display:grid;
|
|
5785
|
-
grid-template-columns:
|
|
5856
|
+
grid-template-columns:1fr;
|
|
5786
5857
|
gap:var(--size-lg);
|
|
5858
|
+
grid-auto-rows:auto;
|
|
5859
|
+
}
|
|
5860
|
+
@media (min-width: 960px){
|
|
5861
|
+
.mobius-recommendations__grid{
|
|
5862
|
+
grid-template-columns:repeat(3, 1fr);
|
|
5863
|
+
}
|
|
5787
5864
|
}
|
|
5788
5865
|
.mobius-quote-card__section{
|
|
5789
5866
|
position:relative;
|
|
@@ -7673,7 +7750,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7673
7750
|
color:var(--color-text);
|
|
7674
7751
|
display:flex;
|
|
7675
7752
|
flex-wrap:wrap;
|
|
7676
|
-
align-items:
|
|
7753
|
+
align-items:baseline;
|
|
7677
7754
|
}
|
|
7678
7755
|
.mobius-date-picker__container{
|
|
7679
7756
|
position:relative;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.11",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@simplybusiness/mobius-chatbot": "^2.2.15",
|
|
33
33
|
"@simplybusiness/mobius-datepicker": "^7.3.15",
|
|
34
34
|
"@simplybusiness/mobius-interventions": "^3.8.5",
|
|
35
|
-
"@simplybusiness/mobius-journey": "^11.
|
|
35
|
+
"@simplybusiness/mobius-journey": "^11.39.0",
|
|
36
36
|
"@simplybusiness/theme-core": "^7.14.18"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"build-scripts": "^1.
|
|
39
|
+
"@simplybusiness/build-scripts": "^1.2.0",
|
|
40
40
|
"react": "^19.2.1",
|
|
41
41
|
"react-dom": "^19.2.1"
|
|
42
42
|
}
|