@simplybusiness/theme-simplybusiness 1.10.5 → 1.11.1

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,29 @@
1
1
  # @simplybusiness/theme-simplybusiness
2
2
 
3
+ ## 1.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [63b659c]
8
+ - Updated dependencies [b731e06]
9
+ - Updated dependencies [63b659c]
10
+ - @simplybusiness/mobius-journey@6.59.0
11
+
12
+ ## 1.11.0
13
+
14
+ ### Minor Changes
15
+
16
+ - 2bd5db6: Add AgentActions component
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [2bd5db6]
21
+ - Updated dependencies [a160124]
22
+ - @simplybusiness/mobius-journey@6.58.0
23
+ - @simplybusiness/mobius@5.20.1
24
+ - @simplybusiness/mobius-datepicker@6.4.4
25
+ - @simplybusiness/theme-core@7.4.1
26
+
3
27
  ## 1.10.5
4
28
 
5
29
  ### Patch Changes
package/dist/index.css CHANGED
@@ -2687,6 +2687,31 @@ svg:not(:host).svg-inline--mobius-icon{
2687
2687
  display:inline-block;
2688
2688
  margin-right:var(--size-xs);
2689
2689
  }
2690
+ .mobius-agent-actions{
2691
+ display:grid;
2692
+ align-items:center;
2693
+ justify-content:center;
2694
+ column-gap:var(--size-xs);
2695
+ row-gap:var(--size-sm);
2696
+ margin-top:var(--size-sm);
2697
+ margin-bottom:var(--size-sm);
2698
+ }
2699
+ @media (min-width: 460px){
2700
+ .mobius-agent-actions{
2701
+ grid-template-columns:repeat(2, auto);
2702
+ justify-content:space-between;
2703
+ }
2704
+ }
2705
+ .mobius-agent-actions__link{
2706
+ text-align:center;
2707
+ }
2708
+ .mobius-agent-actions__button{
2709
+ display:grid;
2710
+ grid-template-columns:repeat(2, auto);
2711
+ align-items:center;
2712
+ justify-content:space-between;
2713
+ gap:var(--size-xs);
2714
+ }
2690
2715
  .mobius-info-card{
2691
2716
  align-items:center;
2692
2717
  font-size:var(--font-size-regular);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-simplybusiness",
3
- "version": "1.10.5",
3
+ "version": "1.11.1",
4
4
  "main": "dist/index.css",
5
5
  "simplyBusiness": {
6
6
  "publishToPublicNpm": true
@@ -26,10 +26,10 @@
26
26
  "./fonts": "./dist/fonts.css"
27
27
  },
28
28
  "dependencies": {
29
- "@simplybusiness/mobius": "^5.20.0",
30
- "@simplybusiness/mobius-datepicker": "^6.4.3",
31
- "@simplybusiness/mobius-journey": "^6.57.2",
32
- "@simplybusiness/theme-core": "^7.4.0"
29
+ "@simplybusiness/mobius": "^5.20.1",
30
+ "@simplybusiness/mobius-datepicker": "^6.4.4",
31
+ "@simplybusiness/mobius-journey": "^6.59.0",
32
+ "@simplybusiness/theme-core": "^7.4.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "css-loader": "^7.1.2",
package/src/index.css CHANGED
@@ -7,6 +7,7 @@
7
7
  @import "@simplybusiness/mobius-journey/src/archived/QuestionGroup/QuestionGroup.css";
8
8
  @import "@simplybusiness/mobius-journey/src/archived/QuestionHelp/QuestionHelp.css";
9
9
  @import "@simplybusiness/mobius-journey/src/archived/Testimonial/Testimonial.css";
10
+ @import "@simplybusiness/mobius-journey/src/components/AgentActions/AgentActions.css";
10
11
  @import "@simplybusiness/mobius-journey/src/components/AgentReferral/InfoCard/InfoCard.css";
11
12
  @import "@simplybusiness/mobius-journey/src/components/AgentResources/AgentResources.css";
12
13
  @import "@simplybusiness/mobius-journey/src/components/CoverTogglesContainer/CoverTogglesContainer.css";