@rovula/ui 0.0.43 → 0.0.45
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 +17 -1
- package/dist/cjs/bundle.js +2 -2
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Dropdown/Dropdown.d.ts +4 -0
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +4 -0
- package/dist/cjs/types/components/Search/Search.stories.d.ts +2 -0
- package/dist/components/Dropdown/Dropdown.js +9 -9
- package/dist/components/Dropdown/Dropdown.stories.js +4 -1
- package/dist/components/Toast/Toast.js +1 -1
- package/dist/components/Toast/useToast.js +2 -2
- package/dist/esm/bundle.css +17 -1
- package/dist/esm/bundle.js +2 -2
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Dropdown/Dropdown.d.ts +4 -0
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +4 -0
- package/dist/esm/types/components/Search/Search.stories.d.ts +2 -0
- package/dist/index.d.ts +4 -0
- package/dist/src/theme/global.css +17 -1
- package/dist/theme/global.css +14 -1
- package/package.json +1 -1
- package/src/components/Dropdown/Dropdown.stories.tsx +12 -1
- package/src/components/Dropdown/Dropdown.tsx +27 -11
- package/src/components/Toast/Toast.tsx +1 -1
- package/src/components/Toast/useToast.ts +2 -2
- package/src/theme/global.css +14 -1
package/dist/cjs/bundle.css
CHANGED
|
@@ -412,6 +412,22 @@ body {
|
|
|
412
412
|
/* @apply bg-[var(--backgroud)] text-[var(--foreground)]; */
|
|
413
413
|
}
|
|
414
414
|
|
|
415
|
+
/* hide input number arrow */
|
|
416
|
+
|
|
417
|
+
/* Chrome, Safari, Edge, Opera */
|
|
418
|
+
|
|
419
|
+
input::-webkit-outer-spin-button,
|
|
420
|
+
input::-webkit-inner-spin-button {
|
|
421
|
+
-webkit-appearance: none;
|
|
422
|
+
margin: 0;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
/* Firefox */
|
|
426
|
+
|
|
427
|
+
input[type=number] {
|
|
428
|
+
-moz-appearance: textfield;
|
|
429
|
+
}
|
|
430
|
+
|
|
415
431
|
*, ::before, ::after{
|
|
416
432
|
--tw-border-spacing-x: 0;
|
|
417
433
|
--tw-border-spacing-y: 0;
|
|
@@ -5617,4 +5633,4 @@ body {
|
|
|
5617
5633
|
}
|
|
5618
5634
|
.\[\&_tr\]\:border-b tr{
|
|
5619
5635
|
border-bottom-width: 1px;
|
|
5620
|
-
}
|
|
5636
|
+
}
|