@simplybusiness/theme-simplybusiness 2.7.0 → 2.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 +33 -0
- package/dist/index.css +62 -1
- package/package.json +7 -7
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 2.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3704ffe: Refactored Showcase UI/UX
|
|
8
|
+
- d1ad7db: Fetch trade image from chopin
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [1927a07]
|
|
13
|
+
- Updated dependencies [3704ffe]
|
|
14
|
+
- Updated dependencies [0e4099c]
|
|
15
|
+
- Updated dependencies [ca20d3b]
|
|
16
|
+
- Updated dependencies [d1ad7db]
|
|
17
|
+
- @simplybusiness/mobius@6.8.0
|
|
18
|
+
- @simplybusiness/mobius-journey@11.11.0
|
|
19
|
+
- @simplybusiness/mobius-chatbot@2.1.0
|
|
20
|
+
- @simplybusiness/mobius-datepicker@7.2.0
|
|
21
|
+
- @simplybusiness/mobius-interventions@3.2.0
|
|
22
|
+
- @simplybusiness/theme-core@7.14.0
|
|
23
|
+
|
|
24
|
+
## 2.7.1
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [1ea736f]
|
|
29
|
+
- Updated dependencies [fc83cfa]
|
|
30
|
+
- Updated dependencies [bfbd0aa]
|
|
31
|
+
- Updated dependencies [7572b55]
|
|
32
|
+
- Updated dependencies [d6a3467]
|
|
33
|
+
- Updated dependencies [5c1cfc4]
|
|
34
|
+
- @simplybusiness/mobius-journey@11.10.0
|
|
35
|
+
|
|
3
36
|
## 2.7.0
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|
package/dist/index.css
CHANGED
|
@@ -2586,7 +2586,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2586
2586
|
--listbox-max-height:350px;
|
|
2587
2587
|
--listbox-max-height-mobile:240px;
|
|
2588
2588
|
--listbox-gap:4px;
|
|
2589
|
-
--option-padding:var(--size-xs) var(--size-
|
|
2589
|
+
--option-padding:var(--size-xs) var(--size-sm);
|
|
2590
2590
|
--drawer-transition-duration:200ms;
|
|
2591
2591
|
--modal-transition-duration:300ms;
|
|
2592
2592
|
--backdrop-color:#18181d;
|
|
@@ -6310,6 +6310,67 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6310
6310
|
width:100%;
|
|
6311
6311
|
}
|
|
6312
6312
|
}
|
|
6313
|
+
.showcase__image-wrapper{
|
|
6314
|
+
position:relative;
|
|
6315
|
+
background-size:cover;
|
|
6316
|
+
background-position:center center;
|
|
6317
|
+
border-radius:8px 8px 80px 80px;
|
|
6318
|
+
}
|
|
6319
|
+
@media screen and (max-width: 640px){
|
|
6320
|
+
.showcase__image-wrapper{
|
|
6321
|
+
flex-direction:column;
|
|
6322
|
+
padding-bottom:45%;
|
|
6323
|
+
width:100%;
|
|
6324
|
+
}
|
|
6325
|
+
}
|
|
6326
|
+
@media screen and (min-width: 641px){
|
|
6327
|
+
.showcase__image-wrapper{
|
|
6328
|
+
border-radius:160px 8px 8px 160px;
|
|
6329
|
+
order:2;
|
|
6330
|
+
flex-basis:240px;
|
|
6331
|
+
flex-shrink:0;
|
|
6332
|
+
}
|
|
6333
|
+
}
|
|
6334
|
+
.showcase__first{
|
|
6335
|
+
border-radius:var(--radius-2);
|
|
6336
|
+
box-shadow:0px 12px 24px 0px #00000029;
|
|
6337
|
+
display:flex;
|
|
6338
|
+
overflow:hidden;
|
|
6339
|
+
}
|
|
6340
|
+
@media screen and (max-width: 640px){
|
|
6341
|
+
.showcase__first{
|
|
6342
|
+
flex-direction:column;
|
|
6343
|
+
}
|
|
6344
|
+
}
|
|
6345
|
+
.showcase__group{
|
|
6346
|
+
display:flex;
|
|
6347
|
+
flex-direction:column;
|
|
6348
|
+
gap:var(--size-lg);
|
|
6349
|
+
margin:var(--size-lg) 0;
|
|
6350
|
+
}
|
|
6351
|
+
@media screen and (min-width: 641px){
|
|
6352
|
+
.showcase__group{
|
|
6353
|
+
flex-direction:row;
|
|
6354
|
+
}
|
|
6355
|
+
}
|
|
6356
|
+
.showcase__content{
|
|
6357
|
+
padding:32px 16px;
|
|
6358
|
+
padding-left:calc(var(--size-sm) + var(--title-decorator-width));
|
|
6359
|
+
}
|
|
6360
|
+
@media screen and (max-width: 640px){
|
|
6361
|
+
.showcase__content{
|
|
6362
|
+
order:1;
|
|
6363
|
+
padding:var(--size-lg);
|
|
6364
|
+
}
|
|
6365
|
+
}
|
|
6366
|
+
.showcase__heading{
|
|
6367
|
+
display:block;
|
|
6368
|
+
margin-bottom:var(--size-xs);
|
|
6369
|
+
margin-top:var(--size-md);
|
|
6370
|
+
color:var(--color-text);
|
|
6371
|
+
font-weight:600;
|
|
6372
|
+
text-transform:uppercase;
|
|
6373
|
+
}
|
|
6313
6374
|
.mobius-payment-summary__styled-div{
|
|
6314
6375
|
display:grid;
|
|
6315
6376
|
row-gap:var(--size-sm);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^6.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^2.0
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^7.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^3.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^11.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.
|
|
29
|
+
"@simplybusiness/mobius": "^6.8.0",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^2.1.0",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^7.2.0",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^3.2.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^11.11.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.14.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"build-scripts": "^1.0.2",
|
package/src/index.css
CHANGED
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
@import "@simplybusiness/mobius-journey/src/pages/Main.css";
|
|
92
92
|
@import "@simplybusiness/mobius-journey/src/components/shared/PaymentElementCardForm/PaymentElementCardForm.css";
|
|
93
93
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/WindowLocks/WindowLocks.css";
|
|
94
|
+
@import "@simplybusiness/mobius-journey/src/components/Showcase/Showcase.css";
|
|
94
95
|
/* Journey Components (payment summary, etc.) */
|
|
95
96
|
@import "@simplybusiness/mobius-journey/src/components/shared/PersistentSummary/styles.css";
|
|
96
97
|
@import "@simplybusiness/mobius-journey/src/components/shared/DialogueModal/DialogueModal.css";
|