@plexui/ui 0.7.17 → 0.7.19

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.
@@ -30,9 +30,9 @@
30
30
  align-items: center;
31
31
  justify-content: center;
32
32
  flex-shrink: 0;
33
- width: var(--menu-checkbox-indicator-size);
34
- max-width: var(--menu-checkbox-indicator-size);
35
- height: var(--menu-checkbox-indicator-size);
33
+ width: var(--checkbox-indicator-size);
34
+ max-width: var(--checkbox-indicator-size);
35
+ height: var(--checkbox-indicator-size);
36
36
  padding: 0;
37
37
  border: 1px solid var(--alpha-16);
38
38
  border-radius: var(--radius-xs);
@@ -187,7 +187,7 @@ background-color: var(--gray-800);
187
187
  }
188
188
 
189
189
  [data-orientation="left"] .Label {
190
- padding-left: calc(var(--spacing) * 2);
190
+ padding-left: var(--checkbox-label-gap);
191
191
  }
192
192
 
193
193
  [data-orientation="right"] .Label {
@@ -11,6 +11,8 @@
11
11
  -moz-osx-font-smoothing: grayscale;
12
12
  /* Apply default letter-spacing */
13
13
  letter-spacing: var(--tracking-normal);
14
+ /* Prevent rubber-band / bounce overscroll */
15
+ overscroll-behavior: none;
14
16
  }
15
17
 
16
18
  [data-theme="light"] {
@@ -86,6 +86,13 @@
86
86
  --button-gap-lg: 6px;
87
87
  --button-font-weight: var(--font-weight-medium);
88
88
 
89
+
90
+ /* =============================================
91
+ Checkbox
92
+ ============================================= */
93
+ --checkbox-indicator-size: var(--radio-group-indicator-size);
94
+ --checkbox-label-gap: var(--radio-group-item-gap);
95
+
89
96
  /* =============================================
90
97
  Input
91
98
  ============================================= */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plexui/ui",
3
- "version": "0.7.17",
3
+ "version": "0.7.19",
4
4
  "description": "Modern design system for building high-quality applications",
5
5
  "type": "module",
6
6
  "license": "MIT",