@moises.ai/design-system 3.13.3 → 3.13.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moises.ai/design-system",
3
- "version": "3.13.3",
3
+ "version": "3.13.4",
4
4
  "description": "Design System package based on @radix-ui/themes with custom defaults",
5
5
  "private": false,
6
6
  "type": "module",
@@ -303,13 +303,14 @@ export const InputLevelMeter = memo(function InputLevelMeter({
303
303
  opacity: showPeakHold ? 1 : 0,
304
304
  }}
305
305
  />
306
- </div>
307
306
 
308
- {showMeter && (
309
- <div
310
- className={`${styles.zeroDbDot} ${isPressed ? styles.pressed : ''}`}
311
- />
312
- )}
307
+ {showMeter && (
308
+ <div
309
+ className={`${styles.zeroDbDot} ${isPressed ? styles.pressed : ''}`}
310
+ style={{ left: `${UNITY_GAIN_POS * 100}%` }}
311
+ />
312
+ )}
313
+ </div>
313
314
  </div>
314
315
  )
315
316
  })
@@ -15,6 +15,7 @@
15
15
  padding: 2px;
16
16
  border-radius: 3px;
17
17
  width: 100%;
18
+ box-sizing: border-box;
18
19
  background: rgba(211, 237, 248, 0.11);
19
20
  transition: background-color 0.1s ease;
20
21
  }
@@ -113,7 +114,6 @@
113
114
  --zero-db-center-y: calc(2px + 3px + 1px + 3px + 2px + 4px);
114
115
 
115
116
  position: absolute;
116
- left: 66.7%;
117
117
  top: calc(var(--zero-db-center-y) - 1px);
118
118
  width: 2px;
119
119
  height: 2px;