@sats-group/ui-lib 75.2.0 → 75.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sats-group/ui-lib",
3
- "version": "75.2.0",
3
+ "version": "75.2.1",
4
4
  "description": "SATS web user interface library",
5
5
  "engines": {
6
6
  "node": "^18 || ^20",
@@ -1,6 +1,5 @@
1
1
  @use '../../tokens/corner-radius';
2
2
  @use '../../tokens/font-names';
3
- @use '../../tokens/font-sizes';
4
3
  @use '../../tokens/light';
5
4
  @use '../../tokens/spacing';
6
5
  @use '../../tokens/elevation';
@@ -137,6 +136,7 @@
137
136
  border: none;
138
137
  background: none;
139
138
  color: inherit;
139
+ font-family: font-names.$brand, sans-serif;
140
140
  flex: 1;
141
141
  width: 100%;
142
142
  height: 100%;
@@ -149,11 +149,12 @@
149
149
  }
150
150
 
151
151
  &--size-small {
152
- @include font-sizes.normal(small)
152
+ font-size: 16px;
153
153
  }
154
154
 
155
155
  &--size-large {
156
- @include font-sizes.normal(large)
156
+ font-size: 21px;
157
+ font-size: clamp(16px, 4vw, 21px);
157
158
  }
158
159
 
159
160
  &--variant-fixed {
@@ -59,7 +59,6 @@
59
59
  line-height: math.div(20, 14);
60
60
  }
61
61
 
62
-
63
62
  &--theme-emphasis {
64
63
  font-family: font-names.$brand, sans-serif;
65
64
  font-weight: 600;
@@ -105,5 +104,4 @@
105
104
  line-height: 1.2;
106
105
  }
107
106
  }
108
-
109
107
  }
@@ -1,5 +1,6 @@
1
1
  @use '../../tokens/corner-radius';
2
2
  @use '../../tokens/font-sizes';
3
+ @use '../../tokens/font-names';
3
4
  @use '../../tokens/light';
4
5
  @use '../../tokens/spacing';
5
6
 
@@ -17,10 +18,12 @@
17
18
  }
18
19
 
19
20
  &__input {
20
- @include font-sizes.normal(basic);
21
+ font-size: 16px;
22
+ font-family: font-names.$brand, sans-serif;
21
23
  border: 1px solid light.$ge-divider-default;
22
24
  border-radius: corner-radius.$s;
23
- padding: clamp(spacing.$xs, 2vw, spacing.$s) clamp(spacing.$s, 2vw, spacing.$m);
25
+ padding: clamp(spacing.$xs, 2vw, spacing.$s)
26
+ clamp(spacing.$s, 2vw, spacing.$m);
24
27
  line-height: $line-height;
25
28
  background-color: light.$surface-primary-default;
26
29
  color: light.$on-surface-primary-default;