lizaui 10.0.55 → 10.0.56

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.
Files changed (2) hide show
  1. package/dist/lizaui.css +9 -9
  2. package/package.json +2 -2
package/dist/lizaui.css CHANGED
@@ -795,13 +795,13 @@
795
795
  }
796
796
 
797
797
  .table-root--secondary .table__column:first-child {
798
- border-top-left-radius: var(--radius-2xl, 1rem);
799
- border-bottom-left-radius: var(--radius-2xl, 1rem);
798
+ border-top-left-radius: var(--radius);
799
+ border-bottom-left-radius: var(--radius);
800
800
  }
801
801
 
802
802
  .table-root--secondary .table__column:last-child {
803
- border-top-right-radius: var(--radius-2xl, 1rem);
804
- border-bottom-right-radius: var(--radius-2xl, 1rem);
803
+ border-top-right-radius: var(--radius);
804
+ border-bottom-right-radius: var(--radius);
805
805
  }
806
806
 
807
807
  .table-root--secondary .table__body {
@@ -930,23 +930,23 @@
930
930
  }
931
931
 
932
932
  .table__body tr:first-child td:first-child {
933
- border-top-left-radius: var(--radius-2xl, 1rem);
933
+ border-top-left-radius: var(--radius);
934
934
  }
935
935
 
936
936
  .table__body tr:first-child td:last-child {
937
- border-top-right-radius: var(--radius-2xl, 1rem);
937
+ border-top-right-radius: var(--radius);
938
938
  }
939
939
 
940
940
  .table__body tr:last-child td:first-child {
941
- border-bottom-left-radius: var(--radius-2xl, 1rem);
941
+ border-bottom-left-radius: var(--radius);
942
942
  }
943
943
 
944
944
  .table__body tr:last-child td:last-child {
945
- border-bottom-right-radius: var(--radius-2xl, 1rem);
945
+ border-bottom-right-radius: var(--radius);
946
946
  }
947
947
 
948
948
  .table__body:not(tbody) {
949
- border-radius: var(--radius-2xl, 1rem);
949
+ border-radius: var(--radius);
950
950
  height: 100%;
951
951
  position: relative;
952
952
  overflow: clip;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "lizaui",
3
3
  "private": false,
4
4
  "license": "ISC",
5
- "version": "10.0.55",
5
+ "version": "10.0.56",
6
6
  "type": "module",
7
7
  "main": "dist/index.cjs.js",
8
8
  "module": "dist/index.es.js",
@@ -244,4 +244,4 @@
244
244
  "typescript-eslint": "^8.53.1",
245
245
  "vite": "^7.3.1"
246
246
  }
247
- }
247
+ }