@profidev/pleiades 1.9.2 → 1.9.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.
@@ -81,6 +81,7 @@
81
81
  {
82
82
  validators: zod4(schema),
83
83
  SPA: true,
84
+ invalidateAll: false,
84
85
  onUpdate: async ({ form, cancel }) => {
85
86
  if (!form.valid) return;
86
87
 
@@ -41,6 +41,7 @@
41
41
  <Password.Root>
42
42
  {/* @ts-ignore */ null}
43
43
  <Password.Input
44
+ class="h-8"
44
45
  {disabled}
45
46
  {placeholder}
46
47
  {readonly}
@@ -14,7 +14,7 @@
14
14
  let { isLoading, passkeyClick, passkeyError }: Props = $props();
15
15
  </script>
16
16
 
17
- <FieldSeparator class="*:data-[slot=field-separator-content]:bg-card my-4"
17
+ <FieldSeparator class="*:data-[slot=field-separator-content]:bg-card"
18
18
  >Or continue with</FieldSeparator
19
19
  >
20
20
  <Button
@@ -32,7 +32,12 @@
32
32
  </script>
33
33
 
34
34
  <Sidebar.Provider>
35
- <Sidebar.Root collapsible="icon" variant="floating">
35
+ {@const sidebar = Sidebar.useSidebar()}
36
+ <Sidebar.Root
37
+ collapsible="icon"
38
+ variant="floating"
39
+ class={(sidebar?.isMobile && 'w-(--sidebar-width)!') || ''}
40
+ >
36
41
  <Sidebar.Header>
37
42
  <SidebarHeader {app_name} {app_icon} {version} {iconClass} />
38
43
  </Sidebar.Header>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@profidev/pleiades",
3
- "version": "1.9.2",
3
+ "version": "1.9.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Profiidev/pleiades"