@simplybusiness/theme-core 7.10.6 → 7.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,25 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [dd0fdce]
8
+ - @simplybusiness/mobius@6.1.1
9
+
10
+ ## 7.11.0
11
+
12
+ ### Minor Changes
13
+
14
+ - d3d22b2: Add Expandable atom
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [f902a17]
19
+ - Updated dependencies [d3d22b2]
20
+ - Updated dependencies [4e7ea0b]
21
+ - @simplybusiness/mobius@6.1.0
22
+
3
23
  ## 7.10.6
4
24
 
5
25
  ### Patch Changes
package/dist/index.css CHANGED
@@ -2462,6 +2462,18 @@ a.mobius-button:focus-visible,
2462
2462
  background-color:var(--color-primary);
2463
2463
  }
2464
2464
 
2465
+ .mobius-expandable-text__content--collapsed{
2466
+ display:-webkit-box;
2467
+ -webkit-line-clamp:var(--line-clamp, 3);
2468
+ line-clamp:var(--line-clamp, 3);
2469
+ -webkit-box-orient:vertical;
2470
+ overflow:hidden;
2471
+ }
2472
+
2473
+ .mobius-expandable-text .mobius-accordion__content.--is-open{
2474
+ margin-top:0;
2475
+ }
2476
+
2465
2477
  svg:not(:root).svg-inline--mobius-icon,
2466
2478
  svg:not(:host).svg-inline--mobius-icon{
2467
2479
  overflow:visible;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-core",
3
- "version": "7.10.6",
3
+ "version": "7.11.1",
4
4
  "main": "dist/index.css",
5
5
  "simplyBusiness": {
6
6
  "publishToPublicNpm": true
@@ -26,7 +26,7 @@
26
26
  "./fonts": "./dist/fonts.css"
27
27
  },
28
28
  "dependencies": {
29
- "@simplybusiness/mobius": "^6.0.0"
29
+ "@simplybusiness/mobius": "^6.1.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "build-scripts": "^1.0.1"
package/src/index.css CHANGED
@@ -34,6 +34,7 @@
34
34
  @import "@simplybusiness/mobius/src/components/TextArea/TextArea.css";
35
35
  @import "@simplybusiness/mobius/src/components/TextField/TextField.css";
36
36
  @import "@simplybusiness/mobius/src/components/Title/Title.css";
37
+ @import "@simplybusiness/mobius/src/components/ExpandableText/ExpandableText.css";
37
38
 
38
39
  @import "./icons.css"; /* Placing this at the top affects specificity */
39
40