@simplybusiness/theme-core 7.6.13 → 7.6.15

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,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.6.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [29209dd]
8
+ - @simplybusiness/mobius@5.27.5
9
+
10
+ ## 7.6.14
11
+
12
+ ### Patch Changes
13
+
14
+ - 55d7bac: Change Slider colours to remove alpha and add to theme variables
15
+ - Updated dependencies [55d7bac]
16
+ - @simplybusiness/mobius@5.27.4
17
+
3
18
  ## 7.6.13
4
19
 
5
20
  ### Patch Changes
package/dist/index.css CHANGED
@@ -1813,6 +1813,7 @@ a.mobius-button:focus-visible,
1813
1813
  box-sizing:border-box;
1814
1814
  width:100%;
1815
1815
  padding:var(--input-field-padding);
1816
+ padding-right:var(--size-xxl);
1816
1817
  font-family:var(--font-family);
1817
1818
  font-size:var(--font-size-regular);
1818
1819
  border:var(--border-default);
@@ -1821,6 +1822,8 @@ a.mobius-button:focus-visible,
1821
1822
  color:var(--color-text-medium);
1822
1823
  outline:0;
1823
1824
  appearance:none;
1825
+ white-space:nowrap;
1826
+ text-overflow:ellipsis;
1824
1827
  }
1825
1828
 
1826
1829
  .mobius-select.--is-disabled{
@@ -1855,6 +1858,7 @@ a.mobius-button:focus-visible,
1855
1858
  position:absolute;
1856
1859
  right:2px;
1857
1860
  height:100%;
1861
+ width:var(--size-xxl);
1858
1862
  padding:var(--size-md);
1859
1863
  border-radius:var(--radius-1);
1860
1864
  pointer-events:none;
@@ -1871,9 +1875,9 @@ a.mobius-button:focus-visible,
1871
1875
 
1872
1876
  :root,
1873
1877
  :host{
1874
- --slider-primary-track-background:#4632d820;
1878
+ --slider-primary-track-background:var(--color-primary-lighter);
1875
1879
  --slider-primary-thumb-background:var(--color-primary);
1876
- --slider-secondary-track-background:#e943c920;
1880
+ --slider-secondary-track-background:var(--color-accent-lighter);
1877
1881
  --slider-secondary-thumb-background:var(--color-accent);
1878
1882
  --thumb-size:20px;
1879
1883
  }
@@ -2933,6 +2937,7 @@ svg:not(:host).svg-inline--mobius-icon{
2933
2937
  --color-azure-700:#0e0a2b;
2934
2938
  --color-cyan-500:#00d4ff;
2935
2939
  --color-bubblegum-500:#e943c9;
2940
+ --color-bubblegum-300:#f9cdf0;
2936
2941
  --color-green-300:#e6f3ed;
2937
2942
  --color-green-500:#008744;
2938
2943
  --color-green-600:#006633;
@@ -2943,12 +2948,14 @@ svg:not(:host).svg-inline--mobius-icon{
2943
2948
  --color-blue-300:#e8f1f7;
2944
2949
  --color-blue-500:#176fae;
2945
2950
  --color-primary-light:var(--color-azure-400);
2951
+ --color-primary-lighter:var(--color-azure-300);
2946
2952
  --color-primary:var(--color-azure-500);
2947
2953
  --color-primary-hover:var(--color-azure-600);
2948
2954
  --color-secondary:var(--color-azure-500);
2949
2955
  --color-secondary-hover:var(--color-azure-600);
2950
2956
  --color-focus:var(--color-bubblegum-500);
2951
2957
  --color-accent:var(--color-bubblegum-500);
2958
+ --color-accent-lighter:var(--color-bubblegum-300);
2952
2959
  --color-text:var(--color-neutral-700);
2953
2960
  --color-text-medium:var(--color-neutral-500);
2954
2961
  --color-text-light:var(--color-neutral-300);
@@ -3015,6 +3022,11 @@ svg:not(:host).svg-inline--mobius-icon{
3015
3022
  --popover-z-index:2147483647;
3016
3023
  --color-background-popover:var(--color-azure-700);
3017
3024
  --color-text-popover:#fff;
3025
+ --slider-primary-track-background:var(--color-primary-lighter);
3026
+ --slider-primary-thumb-background:var(--color-primary);
3027
+ --slider-secondary-track-background:var(--color-accent-lighter);
3028
+ --slider-secondary-thumb-background:var(--color-accent);
3029
+ --thumb-size:20px;
3018
3030
  }
3019
3031
 
3020
3032
  :root{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-core",
3
- "version": "7.6.13",
3
+ "version": "7.6.15",
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": "^5.27.3"
29
+ "@simplybusiness/mobius": "^5.27.5"
30
30
  },
31
31
  "devDependencies": {
32
32
  "css-loader": "^7.1.2",
package/src/variables.css CHANGED
@@ -21,6 +21,7 @@
21
21
 
22
22
  /* Bubblegum */
23
23
  --color-bubblegum-500: #e943c9;
24
+ --color-bubblegum-300: #f9cdf0;
24
25
 
25
26
  /* Green */
26
27
  --color-green-300: #e6f3ed;
@@ -42,6 +43,7 @@
42
43
  /*** Semantic colours ***/
43
44
  /* Primary */
44
45
  --color-primary-light: var(--color-azure-400);
46
+ --color-primary-lighter: var(--color-azure-300);
45
47
  --color-primary: var(--color-azure-500);
46
48
  --color-primary-hover: var(--color-azure-600);
47
49
 
@@ -52,6 +54,7 @@
52
54
  /* Focus */
53
55
  --color-focus: var(--color-bubblegum-500);
54
56
  --color-accent: var(--color-bubblegum-500);
57
+ --color-accent-lighter: var(--color-bubblegum-300);
55
58
 
56
59
  /* Text */
57
60
  --color-text: var(--color-neutral-700);
@@ -140,4 +143,11 @@
140
143
  --popover-z-index: 2147483647;
141
144
  --color-background-popover: var(--color-azure-700);
142
145
  --color-text-popover: #fff;
146
+
147
+ /* Slider */
148
+ --slider-primary-track-background: var(--color-primary-lighter);
149
+ --slider-primary-thumb-background: var(--color-primary);
150
+ --slider-secondary-track-background: var(--color-accent-lighter);
151
+ --slider-secondary-thumb-background: var(--color-accent);
152
+ --thumb-size: 20px;
143
153
  }