@immich/ui 0.22.3 → 0.22.5

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.
@@ -63,7 +63,7 @@
63
63
 
64
64
  <Dialog.Root {open} onOpenChange={onChange}>
65
65
  <Dialog.Portal>
66
- <Dialog.Overlay class="absolute start-0 top-0 flex h-dvh w-screen bg-black/30" />
66
+ <Dialog.Overlay class="fixed start-0 top-0 flex h-dvh w-screen bg-black/30" />
67
67
  <Dialog.Content
68
68
  onkeydown={(e) => {
69
69
  if (e.key === 'Escape' && open) {
@@ -74,7 +74,7 @@
74
74
  }
75
75
  }}
76
76
  class={cleanClass(
77
- 'absolute start-0 top-0 flex h-dvh w-screen items-center justify-center overflow-hidden sm:p-4',
77
+ 'fixed start-0 top-0 flex h-dvh w-screen items-center justify-center overflow-hidden sm:p-4',
78
78
  )}
79
79
  >
80
80
  <div class={cleanClass('flex h-full w-full flex-col items-center justify-center')}>
@@ -11,10 +11,11 @@
11
11
  --color-subtle: rgb(var(--immich-ui-gray));
12
12
  }
13
13
 
14
- @custom-variant dark (&:where(.dark, .dark *));
14
+ @custom-variant dark (&:where(.dark, .dark *):not(.light));
15
15
 
16
16
  @layer base {
17
- :root {
17
+ :root,
18
+ .light {
18
19
  /* light */
19
20
  --immich-ui-primary: 66 80 175;
20
21
  --immich-ui-dark: 58 58 58;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@immich/ui",
3
- "version": "0.22.3",
3
+ "version": "0.22.5",
4
4
  "license": "GNU Affero General Public License version 3",
5
5
  "scripts": {
6
6
  "create": "node scripts/create.js",
@@ -73,6 +73,6 @@
73
73
  "tailwind-variants": "^1.0.0"
74
74
  },
75
75
  "volta": {
76
- "node": "22.15.1"
76
+ "node": "22.16.0"
77
77
  }
78
78
  }