inertiax-ui 0.0.3 → 0.0.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/Modal.svelte CHANGED
@@ -41,13 +41,13 @@
41
41
  </script>
42
42
 
43
43
  <script>
44
- import { fade,fly } from 'svelte/transition';
44
+ import { fade } from 'svelte/transition';
45
45
  const { src, close } = $props()
46
46
  </script>
47
47
 
48
48
  <div class="inx-modal_wrapper">
49
49
  <!-- svelte-ignore a11y_click_events_have_key_events,a11y_no_static_element_interactions -->
50
- <div class="inx-modal_bg" onclick={close} transition:fade></div>
50
+ <div class="inx-modal_bg" onclick={close} transition:fade={{duration: 200}}></div>
51
51
  <div class="inx-modal" aria-modal="true" role="dialog" transition:css>
52
52
  <Frame {src} {close} />
53
53
  <nav>
package/dark.css CHANGED
@@ -21,6 +21,7 @@
21
21
  }
22
22
 
23
23
  .inx-modal nav {
24
+ padding: 1rem;
24
25
  grid-area: header;
25
26
  display: flex;
26
27
  justify-content: flex-end;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inertiax-ui",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "UI component library for Inertia X",
5
5
  "repository": {
6
6
  "type": "git",