@rovula/ui 0.1.43 → 0.1.44
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 +6 -0
- package/dist/cjs/bundle.js +13 -4
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/components/Badge/Badge.styles.js +2 -2
- package/dist/components/DataTable/DataTable.editing.js +19 -3
- package/dist/components/Dropdown/Dropdown.js +4 -1
- package/dist/esm/bundle.css +6 -0
- package/dist/esm/bundle.js +16 -7
- package/dist/esm/bundle.js.map +1 -1
- package/dist/src/theme/global.css +17 -9
- package/package.json +2 -2
- package/src/components/Badge/Badge.styles.ts +2 -2
- package/src/components/DataTable/DataTable.editing.tsx +19 -2
- package/src/components/Dropdown/Dropdown.tsx +4 -1
- package/src/theme/themes/variable.css +8 -8
- package/src/theme/tokens/components/table.css +1 -1
package/dist/cjs/bundle.css
CHANGED
|
@@ -1629,6 +1629,12 @@ input[type=number] {
|
|
|
1629
1629
|
.rounded-\[2px\]{
|
|
1630
1630
|
border-radius: 2px;
|
|
1631
1631
|
}
|
|
1632
|
+
.rounded-\[4px\]{
|
|
1633
|
+
border-radius: 4px;
|
|
1634
|
+
}
|
|
1635
|
+
.rounded-\[6px\]{
|
|
1636
|
+
border-radius: 6px;
|
|
1637
|
+
}
|
|
1632
1638
|
.rounded-\[8px\]{
|
|
1633
1639
|
border-radius: 8px;
|
|
1634
1640
|
}
|