@linzjs/lui 12.1.0 → 12.1.4
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/LuiTooltip/LuiTooltip.stories.d.ts +0 -1
- package/dist/lui.cjs.development.js +13 -17
- 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 +10 -3
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +13 -17
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiCheckboxInput/LuiCheckboxInput.scss +5 -1
- package/dist/scss/Components/LuiFormElements/LuiTextAreaInput/LuiTextAreaInput.scss +3 -2
- package/dist/scss/Components/LuiFormElements/LuiTextInput/LuiTextInput.scss +4 -4
- package/package.json +1 -1
|
@@ -110,7 +110,11 @@ $border-size: 2px;
|
|
|
110
110
|
.LuiCheckboxInput-input:checked + .LuiCheckboxInput-label::before,
|
|
111
111
|
.LuiCheckboxInput--isChecked .LuiCheckboxInput-label::before {
|
|
112
112
|
color: white;
|
|
113
|
-
|
|
113
|
+
// base64 encoded version of `assets/icons/tick.svg`. referring to svg via it's path causes downstream import errors.
|
|
114
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNCAxMSI+CiAgICA8cGF0aCBmaWxsPSIjRkZGIiBkPSJNLjI5NyA0LjkzNGExLjAxMyAxLjAxMyAwIDAgMSAxLjM0NC0uMDc4bC4wODguMDc4TDUuMjU0IDguNDYgMTIuMjE5LjM1M2ExLjAxMyAxLjAxMyAwIDAgMSAxLjMzNC0uMThsLjA5NC4wNzJjLjM5NC4zMzguNDY0LjkxNC4xOCAxLjMzNGwtLjA3Mi4wOTQtNy42NzYgOC45MzVhMS4wMTMgMS4wMTMgMCAwIDEtMS4zOTguMTM0bC0uMDg3LS4wNzhMLjI5NyA2LjM2N2ExLjAxMyAxLjAxMyAwIDAgMSAwLTEuNDMzWiIvPgo8L3N2Zz4=');
|
|
115
|
+
background-color: luiColors.$sea;
|
|
116
|
+
background-repeat: no-repeat;
|
|
117
|
+
background-position: 50% 50%;
|
|
114
118
|
background-size: 15px;
|
|
115
119
|
}
|
|
116
120
|
|
|
@@ -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 {
|
|
@@ -94,7 +93,8 @@ $label-line-height: luiSpacing.$unit-md;
|
|
|
94
93
|
}
|
|
95
94
|
|
|
96
95
|
.LuiTextInput-padlock-icon {
|
|
97
|
-
|
|
96
|
+
// base64 encoded version of `assets/icons/lock.svg`. referring to svg via it's path causes downstream import errors.
|
|
97
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAyMiI+PHBhdGggZD0iTTE0IDcuNUgxM1Y1LjVDMTMgMi43NCAxMC43NiAwLjUgOCAwLjVDNS4yNCAwLjUgMyAyLjc0IDMgNS41VjcuNUgyQzAuOSA3LjUgMCA4LjQgMCA5LjVWMTkuNUMwIDIwLjYgMC45IDIxLjUgMiAyMS41SDE0QzE1LjEgMjEuNSAxNiAyMC42IDE2IDE5LjVWOS41QzE2IDguNCAxNS4xIDcuNSAxNCA3LjVaTTggMTYuNUM2LjkgMTYuNSA2IDE1LjYgNiAxNC41QzYgMTMuNCA2LjkgMTIuNSA4IDEyLjVDOS4xIDEyLjUgMTAgMTMuNCAxMCAxNC41QzEwIDE1LjYgOS4xIDE2LjUgOCAxNi41Wk0xMS4xIDcuNUg0LjlWNS41QzQuOSAzLjc5IDYuMjkgMi40IDggMi40QzkuNzEgMi40IDExLjEgMy43OSAxMS4xIDUuNVY3LjVaIiBmaWxsPSIjNkI2OTY2IiAvPjwvc3ZnPg==');
|
|
98
98
|
background-repeat: no-repeat;
|
|
99
99
|
background-position: right 12px center;
|
|
100
100
|
background-size: 16px 21px;
|
|
@@ -106,7 +106,7 @@ $label-line-height: luiSpacing.$unit-md;
|
|
|
106
106
|
color: luiColors.$error;
|
|
107
107
|
text-align: left;
|
|
108
108
|
padding-left: 22px;
|
|
109
|
-
font-size:
|
|
109
|
+
font-size: luiForms.$label-font-size;
|
|
110
110
|
line-height: 20px;
|
|
111
111
|
margin-top: 2px;
|
|
112
112
|
}
|
|
@@ -120,7 +120,7 @@ $label-line-height: luiSpacing.$unit-md;
|
|
|
120
120
|
.LuiTextInput-mandatory {
|
|
121
121
|
display: inline-block;
|
|
122
122
|
@include luiFonts.font-semibold();
|
|
123
|
-
font-size:
|
|
123
|
+
font-size: luiForms.$label-font-size;
|
|
124
124
|
width: 10px;
|
|
125
125
|
margin: 0 0 0 -10px;
|
|
126
126
|
color: luiColors.$error;
|
package/package.json
CHANGED