@simplybusiness/theme-simplybusiness 1.18.2 → 1.19.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 +17 -0
- package/dist/index.css +43 -12
- package/package.json +4 -4
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9d7e55a: Implement typing bubbles to simulate 'thinking' by the Chatbot component.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [c200c3b]
|
|
12
|
+
- Updated dependencies [9d7e55a]
|
|
13
|
+
- Updated dependencies [9d1fcfa]
|
|
14
|
+
- Updated dependencies [af1a4c9]
|
|
15
|
+
- Updated dependencies [af40186]
|
|
16
|
+
- @simplybusiness/mobius-interventions@1.39.0
|
|
17
|
+
- @simplybusiness/mobius-chatbot@1.2.0
|
|
18
|
+
- @simplybusiness/mobius-journey@8.15.1
|
|
19
|
+
|
|
3
20
|
## 1.18.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -6463,15 +6463,15 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6463
6463
|
.mobius-chatbot__footer{
|
|
6464
6464
|
display:flex;
|
|
6465
6465
|
flex-direction:column;
|
|
6466
|
-
padding-top:
|
|
6466
|
+
padding-top:var(--size-sm);
|
|
6467
6467
|
padding-bottom:10px;
|
|
6468
|
-
gap:
|
|
6468
|
+
gap:var(--size-sm);
|
|
6469
6469
|
margin-top:auto;
|
|
6470
6470
|
}
|
|
6471
6471
|
.mobius-chatbot__input{
|
|
6472
6472
|
display:flex;
|
|
6473
6473
|
flex-direction:row;
|
|
6474
|
-
gap:
|
|
6474
|
+
gap:var(--size-xs);
|
|
6475
6475
|
}
|
|
6476
6476
|
.mobius-chatbot__submit-button.mobius-button{
|
|
6477
6477
|
border-radius:var(--radius-1);
|
|
@@ -6484,8 +6484,8 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6484
6484
|
.mobius-chatbot__text{
|
|
6485
6485
|
color:var(--color-text-medium);
|
|
6486
6486
|
margin:0;
|
|
6487
|
-
font-size:
|
|
6488
|
-
line-height:
|
|
6487
|
+
font-size:var(--font-size-1);
|
|
6488
|
+
line-height:var(--size-sm);
|
|
6489
6489
|
font-weight:normal;
|
|
6490
6490
|
}
|
|
6491
6491
|
.mobius-user-message{
|
|
@@ -6509,13 +6509,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6509
6509
|
}
|
|
6510
6510
|
.mobius-options-message{
|
|
6511
6511
|
display:flex;
|
|
6512
|
-
padding-left:
|
|
6512
|
+
padding-left:var(--size-xl);
|
|
6513
6513
|
width:100%;
|
|
6514
6514
|
}
|
|
6515
6515
|
.mobius-options-message__options{
|
|
6516
6516
|
display:flex;
|
|
6517
6517
|
flex-direction:column;
|
|
6518
|
-
gap:
|
|
6518
|
+
gap:var(--size-xs);
|
|
6519
6519
|
}
|
|
6520
6520
|
.mobius-option.mobius-button{
|
|
6521
6521
|
border-radius:var(--radius-2);
|
|
@@ -6524,15 +6524,15 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6524
6524
|
margin:0;
|
|
6525
6525
|
}
|
|
6526
6526
|
.mobius-text-message{
|
|
6527
|
-
padding-top:
|
|
6527
|
+
padding-top:var(--size-sm);
|
|
6528
6528
|
display:flex;
|
|
6529
6529
|
flex-direction:row;
|
|
6530
|
-
gap:
|
|
6530
|
+
gap:var(--size-xs);
|
|
6531
6531
|
}
|
|
6532
6532
|
.mobius-text-message__icon-container{
|
|
6533
6533
|
background-color:var(--color-background-highlight);
|
|
6534
|
-
height:
|
|
6535
|
-
width:
|
|
6534
|
+
height:var(--size-lg);
|
|
6535
|
+
width:var(--size-lg);
|
|
6536
6536
|
display:flex;
|
|
6537
6537
|
border-radius:50%;
|
|
6538
6538
|
align-items:center;
|
|
@@ -6541,12 +6541,43 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6541
6541
|
.mobius-text-message__content{
|
|
6542
6542
|
display:flex;
|
|
6543
6543
|
flex-direction:column;
|
|
6544
|
-
gap:
|
|
6544
|
+
gap:var(--size-sm);
|
|
6545
6545
|
width:100%;
|
|
6546
6546
|
}
|
|
6547
6547
|
.mobius-text-message__text{
|
|
6548
6548
|
margin-top:0;
|
|
6549
6549
|
}
|
|
6550
|
+
.mobius-typing-message{
|
|
6551
|
+
padding-top:var(--size-sm);
|
|
6552
|
+
display:flex;
|
|
6553
|
+
flex-direction:row;
|
|
6554
|
+
gap:var(--size-xs);
|
|
6555
|
+
}
|
|
6556
|
+
.mobius-typing-message__icon-container{
|
|
6557
|
+
background-color:var(--color-background-highlight);
|
|
6558
|
+
height:var(--size-lg);
|
|
6559
|
+
width:var(--size-lg);
|
|
6560
|
+
display:flex;
|
|
6561
|
+
border-radius:50%;
|
|
6562
|
+
align-items:center;
|
|
6563
|
+
justify-content:center;
|
|
6564
|
+
}
|
|
6565
|
+
.mobius-typing-message__content{
|
|
6566
|
+
display:flex;
|
|
6567
|
+
flex-direction:row;
|
|
6568
|
+
gap:var(--size-sm);
|
|
6569
|
+
width:100%;
|
|
6570
|
+
align-items:center;
|
|
6571
|
+
}
|
|
6572
|
+
.mobius-typing-message__dots{
|
|
6573
|
+
display:flex;
|
|
6574
|
+
width:100%;
|
|
6575
|
+
height:100%;
|
|
6576
|
+
background-image:url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22 standalone%3D%22no%22%3F%3E%3Csvg width%3D%22120%22 height%3D%2230%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E %3Ccircle cx%3D%2215%22 cy%3D%2215%22 r%3D%2210%22 fill%3D%22black%22%3E %3Canimate attributeName%3D%22opacity%22 values%3D%220%3B1%3B0%22 dur%3D%221.5s%22 repeatCount%3D%22indefinite%22 begin%3D%220s%22 %2F%3E %3C%2Fcircle%3E %3Ccircle cx%3D%2260%22 cy%3D%2215%22 r%3D%2210%22 fill%3D%22black%22%3E %3Canimate attributeName%3D%22opacity%22 values%3D%220%3B1%3B0%22 dur%3D%221.5s%22 repeatCount%3D%22indefinite%22 begin%3D%220.5s%22 %2F%3E %3C%2Fcircle%3E %3Ccircle cx%3D%22105%22 cy%3D%2215%22 r%3D%2210%22 fill%3D%22black%22%3E %3Canimate attributeName%3D%22opacity%22 values%3D%220%3B1%3B0%22 dur%3D%221.5s%22 repeatCount%3D%22indefinite%22 begin%3D%221s%22 %2F%3E %3C%2Fcircle%3E%3C%2Fsvg%3E");
|
|
6577
|
+
background-position:left 10px center;
|
|
6578
|
+
background-repeat:no-repeat;
|
|
6579
|
+
background-size:64px;
|
|
6580
|
+
}
|
|
6550
6581
|
:root,
|
|
6551
6582
|
:host{
|
|
6552
6583
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.0",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@simplybusiness/mobius": "^5.26.2",
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^1.
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^1.2.0",
|
|
31
31
|
"@simplybusiness/mobius-datepicker": "^6.5.13",
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^1.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^8.15.
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^1.39.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^8.15.1",
|
|
34
34
|
"@simplybusiness/theme-core": "^7.6.8"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
package/src/index.css
CHANGED
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
@import "@simplybusiness/mobius-chatbot/src/components/OptionsMessage/OptionsMessage.css";
|
|
96
96
|
@import "@simplybusiness/mobius-chatbot/src/components/Option/Option.css";
|
|
97
97
|
@import "@simplybusiness/mobius-chatbot/src/components/TextMessage/TextMessage.css";
|
|
98
|
+
@import "@simplybusiness/mobius-chatbot/src/components/TypingMessage/TypingMessage.css";
|
|
98
99
|
|
|
99
100
|
/* Base customisation */
|
|
100
101
|
@import "./fonts.css";
|