@juspay/svelte-ui-components 1.31.0 → 1.32.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/dist/Input/Input.svelte
CHANGED
|
@@ -173,7 +173,7 @@ $: {
|
|
|
173
173
|
<style>
|
|
174
174
|
textarea,
|
|
175
175
|
input {
|
|
176
|
-
box-sizing: border-box;
|
|
176
|
+
box-sizing: var(--input-box-sizing, border-box);
|
|
177
177
|
height: var(--input-height, fit-content);
|
|
178
178
|
background-color: var(--input-background, white);
|
|
179
179
|
font-size: var(--input-font-size, 16px) !important;
|
|
@@ -150,11 +150,12 @@ export function focus() {
|
|
|
150
150
|
font-weight: var(--input-label-msg-text-weight, 400);
|
|
151
151
|
font-size: var(--input-label-msg-text-size, 12px);
|
|
152
152
|
color: var(--input-label-msg-text-color, #637c95);
|
|
153
|
+
line-height: var(--input-label-msg-text-line-height);
|
|
153
154
|
margin-bottom: 6px;
|
|
154
155
|
}
|
|
155
156
|
|
|
156
157
|
.invalid {
|
|
157
|
-
outline: 1px solid var(--input-field-error-stroke, #e11900);
|
|
158
|
+
outline: var(--invalid-outline, 1px solid var(--input-field-error-stroke, #e11900));
|
|
158
159
|
}
|
|
159
160
|
|
|
160
161
|
.error-message {
|
package/dist/Modal/Modal.svelte
CHANGED