@rovula/ui 0.0.76 → 0.0.77
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 +12 -0
- package/dist/cjs/bundle.js +3 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +7 -0
- package/dist/cjs/types/components/InputFilter/InputFilter.stories.d.ts +7 -0
- package/dist/cjs/types/components/NumberInput/NumberInput.d.ts +39 -0
- package/dist/cjs/types/components/NumberInput/NumberInput.stories.d.ts +18 -0
- package/dist/cjs/types/components/NumberInput/index.d.ts +2 -0
- package/dist/cjs/types/components/RadioGroup/RadioGroup.stories.d.ts +1 -1
- package/dist/cjs/types/components/Search/Search.stories.d.ts +7 -0
- package/dist/cjs/types/components/Slider/Slider.stories.d.ts +1 -1
- package/dist/cjs/types/components/TextInput/TextInput.d.ts +14 -0
- package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +14 -0
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/components/NumberInput/NumberInput.js +254 -0
- package/dist/components/NumberInput/NumberInput.stories.js +212 -0
- package/dist/components/NumberInput/index.js +1 -0
- package/dist/components/TextInput/TextInput.js +13 -11
- package/dist/esm/bundle.css +12 -0
- package/dist/esm/bundle.js +3 -3
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +7 -0
- package/dist/esm/types/components/InputFilter/InputFilter.stories.d.ts +7 -0
- package/dist/esm/types/components/NumberInput/NumberInput.d.ts +39 -0
- package/dist/esm/types/components/NumberInput/NumberInput.stories.d.ts +18 -0
- package/dist/esm/types/components/NumberInput/index.d.ts +2 -0
- package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +1 -1
- package/dist/esm/types/components/Search/Search.stories.d.ts +7 -0
- package/dist/esm/types/components/Slider/Slider.stories.d.ts +1 -1
- package/dist/esm/types/components/TextInput/TextInput.d.ts +14 -0
- package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +14 -0
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/index.d.ts +52 -1
- package/dist/index.js +1 -0
- package/dist/src/theme/global.css +16 -0
- package/package.json +1 -1
- package/src/components/NumberInput/NumberInput.stories.tsx +350 -0
- package/src/components/NumberInput/NumberInput.tsx +428 -0
- package/src/components/NumberInput/index.ts +2 -0
- package/src/components/TextInput/TextInput.tsx +54 -12
- package/src/index.ts +2 -0
package/dist/cjs/bundle.css
CHANGED
|
@@ -638,6 +638,12 @@ input[type=number] {
|
|
|
638
638
|
.top-0{
|
|
639
639
|
top: 0px;
|
|
640
640
|
}
|
|
641
|
+
.top-0\.5{
|
|
642
|
+
top: 0.125rem;
|
|
643
|
+
}
|
|
644
|
+
.top-1{
|
|
645
|
+
top: 0.25rem;
|
|
646
|
+
}
|
|
641
647
|
.top-4{
|
|
642
648
|
top: 1rem;
|
|
643
649
|
}
|
|
@@ -4086,6 +4092,9 @@ input[type=number] {
|
|
|
4086
4092
|
--tw-bg-opacity: 1;
|
|
4087
4093
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
4088
4094
|
}
|
|
4095
|
+
.hover\:bg-input-active-stroke\/10:hover{
|
|
4096
|
+
background-color: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * 0.1), transparent);
|
|
4097
|
+
}
|
|
4089
4098
|
.hover\:bg-input-disable-bg:hover{
|
|
4090
4099
|
--tw-bg-opacity: 1;
|
|
4091
4100
|
background-color: color-mix(in srgb, var(--input-color-disable-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -5165,6 +5174,9 @@ input[type=number] {
|
|
|
5165
5174
|
--tw-text-opacity: 1;
|
|
5166
5175
|
color: color-mix(in srgb, var(--state-color-disable-outline) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
5167
5176
|
}
|
|
5177
|
+
.disabled\:opacity-30:disabled{
|
|
5178
|
+
opacity: 0.3;
|
|
5179
|
+
}
|
|
5168
5180
|
.disabled\:opacity-50:disabled{
|
|
5169
5181
|
opacity: 0.5;
|
|
5170
5182
|
}
|