@simplybusiness/theme-simplybusiness 0.7.0 → 0.8.0

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @simplybusiness/theme-simplybusiness
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0e1203d: Add `Unquotable` quote card variant for unquotable trades
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [97ca45b]
12
+ - Updated dependencies [3c3c32f]
13
+ - Updated dependencies [6d24313]
14
+ - Updated dependencies [bcb6b11]
15
+ - Updated dependencies [0e1203d]
16
+ - Updated dependencies [0a57ada]
17
+ - @simplybusiness/mobius-journey@6.10.0
18
+
3
19
  ## 0.7.0
4
20
 
5
21
  ### Minor Changes
package/dist/index.css CHANGED
@@ -3140,6 +3140,12 @@ svg:not(:host).svg-inline--mobius-icon{
3140
3140
  font-size:var(--font-size-title);
3141
3141
  margin:0;
3142
3142
  }
3143
+ .mobius-quote-headline__no-quotes-title{
3144
+ display:flex;
3145
+ justify-content:center;
3146
+ padding:var(--size-lg) 0;
3147
+ color:var(--color-primary);
3148
+ }
3143
3149
  .mobius-quote-headline__highlight{
3144
3150
  color:var(--color-primary);
3145
3151
  }
@@ -3447,9 +3453,8 @@ svg:not(:host).svg-inline--mobius-icon{
3447
3453
  border-top:none;
3448
3454
  border-right:1px solid var(--color-border-light);
3449
3455
  padding-top:0;
3450
- padding-right:var(--size-sm);
3456
+ padding-right:var(--size-lg);
3451
3457
  margin-bottom:0;
3452
- margin-right:var(--size-sm);
3453
3458
  }
3454
3459
  }
3455
3460
  .mobius-quote-card__coverage.--has-divider{
@@ -3626,15 +3631,15 @@ svg:not(:host).svg-inline--mobius-icon{
3626
3631
  .mobius-quote-card__header{
3627
3632
  grid-area:header;
3628
3633
  display:flex;
3629
- flex-direction:row;
3630
3634
  border-bottom:1px solid var(--color-border-light);
3631
3635
  margin-bottom:var(--size-sm);
3632
3636
  }
3633
- @media (min-width: 850px){
3637
+ @media (min-width: 850px) and (max-width: 1023px){
3634
3638
  .mobius-quote-card__header{
3635
- flex-direction:column;
3636
3639
  border-bottom:none;
3640
+ border-right:1px solid var(--color-border-light);
3637
3641
  margin-bottom:0;
3642
+ padding-right:var(--size-sm);
3638
3643
  }
3639
3644
  }
3640
3645
  .header__underwriter-text{
@@ -3653,6 +3658,7 @@ svg:not(:host).svg-inline--mobius-icon{
3653
3658
  }
3654
3659
  @media (min-width: 850px){
3655
3660
  .--is-horizontal .mobius-quote-card__header{
3661
+ flex-direction:column;
3656
3662
  border-right:1px solid var(--color-border-light);
3657
3663
  border-bottom:none;
3658
3664
  margin-bottom:0;
@@ -3864,6 +3870,7 @@ svg:not(:host).svg-inline--mobius-icon{
3864
3870
  }
3865
3871
  .mobius-quote-actions{
3866
3872
  width:100%;
3873
+ align-items:flex-end;
3867
3874
  }
3868
3875
  @supports (-webkit-touch-callout: none) and (not (translate: none)){
3869
3876
  .mobius-quote-actions :not(:last-child){
@@ -4285,6 +4292,17 @@ svg:not(:host).svg-inline--mobius-icon{
4285
4292
  .mobius-quote-card__tag svg{
4286
4293
  margin-right:var(--size-xxs);
4287
4294
  }
4295
+ .mobius-unquotable-card{
4296
+ border:1px solid var(--color-neutral-300);
4297
+ border-radius:var(--radius-2);
4298
+ padding:var(--size-xl) var(--size-lg);
4299
+ }
4300
+ .mobius-unquotable-card__title{
4301
+ margin-top:0;
4302
+ }
4303
+ .mobius-unquotable-card__text{
4304
+ margin-bottom:0;
4305
+ }
4288
4306
  .mobius-quote-cards__grid{
4289
4307
  --column-count:1;
4290
4308
  display:grid;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-simplybusiness",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "main": "dist/index.css",
5
5
  "simplyBusiness": {
6
6
  "publishToPublicNpm": true
@@ -28,7 +28,7 @@
28
28
  "dependencies": {
29
29
  "@simplybusiness/mobius": "^5.3.0",
30
30
  "@simplybusiness/mobius-datepicker": "^6.0.6",
31
- "@simplybusiness/mobius-journey": "^6.9.0",
31
+ "@simplybusiness/mobius-journey": "^6.10.0",
32
32
  "@simplybusiness/theme-core": "^7.1.4"
33
33
  },
34
34
  "devDependencies": {
package/src/index.css CHANGED
@@ -47,6 +47,7 @@
47
47
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/QuoteCardBadges/QuoteCardBadges.css";
48
48
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Ratings/ExperimentIteratedQcp/Ratings.css";
49
49
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Tag/Tag.css";
50
+ @import "@simplybusiness/mobius-journey/src/components/QuoteCards/Unquotable/Unquotable.css";
50
51
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCards.css";
51
52
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/Section/Section.css";
52
53
  @import "@simplybusiness/mobius-journey/src/components/QuoteHelp/QuoteHelp.css";