@linzjs/lui 12.1.1 → 12.2.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 +28 -0
- package/dist/components/LuiFormElements/LuiFileInputBox/LuiFileInputBox.d.ts +4 -4
- package/dist/components/LuiFormElements/LuiFileInputBox/LuiFileInputBox.stories.d.ts +1 -1
- package/dist/components/LuiFormElements/LuiTextAreaInput/LuiTextAreaInput.stories.d.ts +4 -0
- package/dist/components/LuiModal/LuiModal.d.ts +1 -0
- package/dist/components/LuiModal/LuiModal.stories.d.ts +1 -0
- package/dist/components/LuiTooltip/LuiTooltip.stories.d.ts +0 -1
- package/dist/lui.cjs.development.js +19 -20
- package/dist/lui.cjs.development.js.map +1 -1
- package/dist/lui.cjs.production.min.js +1 -1
- package/dist/lui.cjs.production.min.js.map +1 -1
- package/dist/lui.css +5 -1
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +19 -20
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiTextAreaInput/LuiTextAreaInput.scss +3 -2
- package/dist/scss/Components/LuiFormElements/LuiTextInput/LuiTextInput.scss +2 -3
- package/package.json +1 -1
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
@use '../../../Foundation/Variables/SpacingVars' as luiSpacing;
|
|
8
8
|
@use '../../../Foundation/Utilities/REM' as rem;
|
|
9
9
|
|
|
10
|
-
|
|
11
10
|
// =============================
|
|
12
11
|
// TextArea
|
|
13
12
|
// =============================
|
|
@@ -41,6 +40,7 @@
|
|
|
41
40
|
width: 100%;
|
|
42
41
|
resize: vertical;
|
|
43
42
|
min-height: 100px;
|
|
43
|
+
position: relative;
|
|
44
44
|
|
|
45
45
|
&:focus {
|
|
46
46
|
outline: none;
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
left: -6px;
|
|
71
71
|
background-color: luiColors.$error;
|
|
72
72
|
border-radius: luiMisc.$borderRadius 0 0 luiMisc.$borderRadius;
|
|
73
|
-
z-index: -1;
|
|
74
73
|
}
|
|
75
74
|
}
|
|
76
75
|
}
|
|
@@ -108,6 +107,8 @@
|
|
|
108
107
|
|
|
109
108
|
.LuiTextAreaInput-mandatory {
|
|
110
109
|
display: inline-block;
|
|
110
|
+
@include luiFonts.font-semibold();
|
|
111
|
+
font-size: luiForms.$label-font-size;
|
|
111
112
|
width: 10px;
|
|
112
113
|
margin: 0 0 0 -10px;
|
|
113
114
|
color: luiColors.$error;
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
|
|
8
8
|
$input-spacing: luiSpacing.$unit-xs; // 8px
|
|
9
9
|
|
|
10
|
-
$label-font-size: rem.rem(14px);
|
|
11
10
|
$label-line-height: luiSpacing.$unit-md;
|
|
12
11
|
|
|
13
12
|
.LuiTextInput {
|
|
@@ -107,7 +106,7 @@ $label-line-height: luiSpacing.$unit-md;
|
|
|
107
106
|
color: luiColors.$error;
|
|
108
107
|
text-align: left;
|
|
109
108
|
padding-left: 22px;
|
|
110
|
-
font-size:
|
|
109
|
+
font-size: luiForms.$label-font-size;
|
|
111
110
|
line-height: 20px;
|
|
112
111
|
margin-top: 2px;
|
|
113
112
|
}
|
|
@@ -121,7 +120,7 @@ $label-line-height: luiSpacing.$unit-md;
|
|
|
121
120
|
.LuiTextInput-mandatory {
|
|
122
121
|
display: inline-block;
|
|
123
122
|
@include luiFonts.font-semibold();
|
|
124
|
-
font-size:
|
|
123
|
+
font-size: luiForms.$label-font-size;
|
|
125
124
|
width: 10px;
|
|
126
125
|
margin: 0 0 0 -10px;
|
|
127
126
|
color: luiColors.$error;
|
package/package.json
CHANGED