@muonic/muon 0.0.2-experimental-208-67dea68.0 → 0.0.2-experimental-210-d7bcd86.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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.2-beta.20](https://github.com/centrica-engineering/muon/compare/v0.0.2-beta.19...v0.0.2-beta.20) (2023-06-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* pull back width and font default styles ([9afa041](https://github.com/centrica-engineering/muon/commit/9afa0419ebb9475d31506da795e12a8a123291a1))
|
|
11
|
+
|
|
5
12
|
### [0.0.2-beta.19](https://github.com/centrica-engineering/muon/compare/v0.0.2-beta.18...v0.0.2-beta.19) (2023-06-05)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
border-color: $INPUTTER_FIELD_BORDER_COLOR;
|
|
26
26
|
border-radius: $INPUTTER_FIELD_BORDER_RADIUS;
|
|
27
27
|
font-family: $INPUTTER_FIELD_FONT_FAMILY;
|
|
28
|
-
font-size: $INPUTTER_FIELD_FONT_SIZE;
|
|
29
28
|
}
|
|
30
29
|
|
|
31
30
|
%input-hover {
|
|
@@ -148,14 +147,6 @@
|
|
|
148
147
|
}
|
|
149
148
|
|
|
150
149
|
%input-mask {
|
|
151
|
-
width: calc(
|
|
152
|
-
(var(--maxlength))
|
|
153
|
-
* 1ch
|
|
154
|
-
+ $INPUTTER_FIELD_PADDING_INLINE_START
|
|
155
|
-
+ $INPUTTER_FIELD_PADDING_INLINE_END
|
|
156
|
-
+ $INPUTTER_FIELD_BORDER_WIDTH
|
|
157
|
-
+ $INPUTTER_FIELD_BORDER_WIDTH
|
|
158
|
-
);
|
|
159
150
|
font-family: $INPUTTER_MASK_FONT_FAMILY;
|
|
160
151
|
}
|
|
161
152
|
|
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
select,
|
|
24
24
|
textarea)) {
|
|
25
25
|
@extend %input;
|
|
26
|
+
|
|
27
|
+
font-size: $INPUTTER_FIELD_FONT_SIZE;
|
|
26
28
|
}
|
|
27
29
|
|
|
28
30
|
& ::slotted(:is(
|
|
@@ -195,6 +197,15 @@
|
|
|
195
197
|
input[type="tel"],
|
|
196
198
|
input[type="text"])) {
|
|
197
199
|
@extend %input-mask;
|
|
200
|
+
|
|
201
|
+
width: calc(
|
|
202
|
+
(var(--maxlength))
|
|
203
|
+
* 1ch
|
|
204
|
+
+ $INPUTTER_FIELD_PADDING_INLINE_START
|
|
205
|
+
+ $INPUTTER_FIELD_PADDING_INLINE_END
|
|
206
|
+
+ $INPUTTER_FIELD_BORDER_WIDTH
|
|
207
|
+
+ $INPUTTER_FIELD_BORDER_WIDTH
|
|
208
|
+
);
|
|
198
209
|
}
|
|
199
210
|
|
|
200
211
|
& .input-mask {
|