@simplybusiness/mobius 5.24.3 → 5.25.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.25.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 00eb583: Improve visibility of loading icon in Trade Selector
8
+
3
9
  ## 5.24.3
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simplybusiness/mobius",
3
3
  "license": "UNLICENSED",
4
- "version": "5.24.3",
4
+ "version": "5.25.0",
5
5
  "description": "Core library of Mobius react components",
6
6
  "repository": {
7
7
  "type": "git",
@@ -18,6 +18,15 @@
18
18
  width: 100%;
19
19
  }
20
20
 
21
+ /* Override prefix icon position for animation */
22
+ .mobius-text-field__input-wrapper.mobius-combobox__input {
23
+ padding-left: var(--size-sm);
24
+
25
+ .mobius-text-field__prefix-inside {
26
+ padding-left: 0;
27
+ }
28
+ }
29
+
21
30
  .mobius-combobox__list {
22
31
  position: absolute;
23
32
  margin: 0;
@@ -100,3 +109,10 @@
100
109
  background-repeat: no-repeat;
101
110
  background-size: 32px;
102
111
  }
112
+
113
+ /* Pulse animation on focus ring */
114
+ /*
115
+ .mobius-combobox--is-loading .mobius-text-field__input-wrapper {
116
+ animation: pulse-animation 2s infinite;
117
+ }
118
+ */