@juspay/svelte-ui-components 2.95.1 → 2.96.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.
|
@@ -401,7 +401,8 @@
|
|
|
401
401
|
);
|
|
402
402
|
--input-box-shadow: none;
|
|
403
403
|
--input-width: 100%;
|
|
404
|
-
--input-height: 38px;
|
|
404
|
+
--input-height: var(--color-picker-input-height, 38px);
|
|
405
|
+
--input-text-transform: var(--color-picker-value-text-transform, none);
|
|
405
406
|
margin-left: -1px;
|
|
406
407
|
}
|
|
407
408
|
|
|
@@ -538,6 +539,7 @@
|
|
|
538
539
|
--input-height: 32px;
|
|
539
540
|
--input-text-align: center;
|
|
540
541
|
--input-focus-border: 1px solid var(--color-picker-field-focus-border, #3b82f6);
|
|
542
|
+
--input-text-transform: var(--color-picker-value-text-transform, none);
|
|
541
543
|
}
|
|
542
544
|
|
|
543
545
|
.cp-split-input {
|
package/dist/Input/Input.svelte
CHANGED