@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.
@@ -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 {
@@ -323,5 +323,6 @@ onDestroy(() => {
323
323
  .header-right-img {
324
324
  width: var(--header-right-image-width, 25px);
325
325
  height: var(--header-right-image-height, 25px);
326
+ padding: var(--header-right-image-padding);
326
327
  }
327
328
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/svelte-ui-components",
3
- "version": "1.31.0",
3
+ "version": "1.32.0",
4
4
  "scripts": {
5
5
  "dev": "vite dev --host",
6
6
  "build": "vite build && npm run package",