@rovula/ui 0.1.4 → 0.1.5
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/cjs/bundle.css +14 -2
- package/dist/cjs/bundle.js +2 -2
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/components/PasswordInput/PasswordInput.js +2 -2
- package/dist/components/PasswordInput/PasswordInput.stories.js +1 -1
- package/dist/components/TextInput/TextInput.styles.js +4 -4
- package/dist/esm/bundle.css +14 -2
- package/dist/esm/bundle.js +2 -2
- package/dist/esm/bundle.js.map +1 -1
- package/dist/src/theme/global.css +17 -2
- package/package.json +1 -1
- package/src/components/PasswordInput/PasswordInput.stories.tsx +1 -1
- package/src/components/PasswordInput/PasswordInput.tsx +2 -2
- package/src/components/TextInput/TextInput.styles.ts +14 -17
package/dist/cjs/bundle.css
CHANGED
|
@@ -4348,6 +4348,14 @@ input[type=number] {
|
|
|
4348
4348
|
--tw-border-opacity: 1;
|
|
4349
4349
|
border-color: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
4350
4350
|
}
|
|
4351
|
+
.hover\:border-l-input-active-stroke:hover{
|
|
4352
|
+
--tw-border-opacity: 1;
|
|
4353
|
+
border-left-color: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
4354
|
+
}
|
|
4355
|
+
.hover\:border-r-input-active-stroke:hover{
|
|
4356
|
+
--tw-border-opacity: 1;
|
|
4357
|
+
border-right-color: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
4358
|
+
}
|
|
4351
4359
|
.hover\:bg-\[var\(--dropdown-menu-hover-bg\)\]:hover{
|
|
4352
4360
|
background-color: var(--dropdown-menu-hover-bg);
|
|
4353
4361
|
}
|
|
@@ -4566,8 +4574,8 @@ input[type=number] {
|
|
|
4566
4574
|
.hover\:fill-input-default-text:hover{
|
|
4567
4575
|
fill: color-mix(in srgb, var(--input-color-default-text) calc(100% * 1), transparent);
|
|
4568
4576
|
}
|
|
4569
|
-
.hover\:
|
|
4570
|
-
|
|
4577
|
+
.hover\:fill-input-filled-text:hover{
|
|
4578
|
+
fill: color-mix(in srgb, var(--input-color-filled-text) calc(100% * 1), transparent);
|
|
4571
4579
|
}
|
|
4572
4580
|
.hover\:stroke-input-filled-text:hover{
|
|
4573
4581
|
stroke: color-mix(in srgb, var(--input-color-filled-text) calc(100% * 1), transparent);
|
|
@@ -6356,6 +6364,10 @@ input[type=number] {
|
|
|
6356
6364
|
--tw-text-opacity: 1;
|
|
6357
6365
|
color: color-mix(in srgb, var(--input-color-default-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
6358
6366
|
}
|
|
6367
|
+
.hover\:\[\&_svg\]\:text-input-filled-text svg:hover{
|
|
6368
|
+
--tw-text-opacity: 1;
|
|
6369
|
+
color: color-mix(in srgb, var(--input-color-filled-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
6370
|
+
}
|
|
6359
6371
|
.peer:hover ~ .peer-hover\:\[\&_svg\]\:text-input-filled-text svg{
|
|
6360
6372
|
--tw-text-opacity: 1;
|
|
6361
6373
|
color: color-mix(in srgb, var(--input-color-filled-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|