@heliosgraphics/ui 2.0.0-alpha.65 → 2.0.0-alpha.66

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.
@@ -2,7 +2,7 @@
2
2
  height: 64px;
3
3
  width: 64px;
4
4
 
5
- border-radius: 64px;
5
+ border-radius: 50%;
6
6
  }
7
7
 
8
8
  .clock__center {
@@ -46,7 +46,7 @@
46
46
  }
47
47
 
48
48
  .dialog__header {
49
- border-radius: 8px 8px 0 0;
49
+ border-radius: var(--radius-md) var(--radius-md) 0 0;
50
50
  box-shadow: 0 1px 0 var(--ui-border-secondary);
51
51
  }
52
52
 
@@ -72,7 +72,7 @@ export const Dialog: FC<DialogProps> = ({ title, children, isNarrow, isOpen, isC
72
72
  [styles.dialogCentered]: isCentered,
73
73
  [styles.dialogNarrow]: isNarrow,
74
74
  })
75
- const dialogFlexClasses: string = getClasses(styles.dialog__header, "sticky top-0 z-50 helios-ui-glass-1")
75
+ const dialogFlexClasses: string = getClasses(styles.dialog__header, "sticky top-0 z-50 ui-bg-glass")
76
76
  const dialogContentClasses: string = getClasses(styles.dialog__content, {
77
77
  [styles.dialog__contentNoPadding]: noPadding,
78
78
  })
@@ -4,7 +4,7 @@
4
4
 
5
5
  background-color: var(--ui-bg-tertiary);
6
6
  border: 0;
7
- border-radius: 8px;
7
+ border-radius: var(--radius-md);
8
8
  }
9
9
 
10
10
  .progress::-webkit-progress-bar {
@@ -13,7 +13,7 @@
13
13
 
14
14
  .progress::-webkit-progress-value {
15
15
  background-color: var(--bg);
16
- border-radius: 16px;
16
+ border-radius: var(--radius-xl);
17
17
  transition: all var(--speed-sm) var(--ease-in-out-sine);
18
18
  }
19
19
 
@@ -87,7 +87,7 @@
87
87
  width: var(--toggle-width);
88
88
 
89
89
  background-color: var(--bg-disabled);
90
- border-radius: 24px;
90
+ border-radius: var(--toggle-height);
91
91
 
92
92
  pointer-events: none;
93
93
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heliosgraphics/ui",
3
- "version": "2.0.0-alpha.65",
3
+ "version": "2.0.0-alpha.66",
4
4
  "type": "module",
5
5
  "author": "Chris Puska <chris@puska.org>",
6
6
  "private": false,