@bexis2/bexis2-core-ui 0.2.3 → 0.2.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": "@bexis2/bexis2-core-ui",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -30,7 +30,7 @@ const noteSettings: PopupSettings = {
30
30
  <span><Fa icon={faQuestion}/></span>
31
31
  </span>
32
32
 
33
- <div class="card p-4 variant-filled-primary w-60 z-50" data-popup="noteTarget">
33
+ <div class="card p-4 variant-filled-primary w-60 z-50 text-left shadow-md" data-popup="noteTarget">
34
34
  {note}
35
35
  </div>
36
36
  {/if}
@@ -8,7 +8,7 @@
8
8
  import Menu from './menu/Menu.svelte'
9
9
  import Footer from './Footer.svelte'
10
10
  import Header from './Header.svelte'
11
- import Help from "./Help.svelte";
11
+ import HelpPopUp from "./HelpPopUp.svelte";
12
12
  import Breadcrumb from './breadcrumb/Breadcrumb.svelte';
13
13
 
14
14
  //popup
@@ -72,21 +72,21 @@
72
72
  <slot name="description" />
73
73
 
74
74
 
75
- <div class="grid grid-cols-9 content-end space-x-3">
76
-
75
+ <div class="flex flex-initial space-x-3">
76
+
77
77
  {#if $$slots.left}
78
- <div class="grid col-span-2 border-y border-solid border-surface-500">
78
+ <div class="flex-shrink-0 w-96 w-min-96 border-y border-solid border-surface-500">
79
79
  <slot name="left" />
80
80
  </div>
81
81
  {/if}
82
-
83
- <div class="col-start-3 col-end-8 space-y-5 py-3 max-w-screen-md min-w-screen-md border-y border-solid border-surface-500">
82
+
83
+ <div class="space-y-5 py-3 border-y border-solid border-surface-500">
84
84
  <slot/>
85
85
  </div>
86
86
 
87
87
 
88
88
  {#if $$slots.right}
89
- <div class="grid col-span-2 border-y border-solid border-surface-500">
89
+ <div class="flex-shrink-0 w-96 border-y border-solid border-surface-500">
90
90
  <slot name="right"/>
91
91
  </div>
92
92
  {/if}
@@ -96,7 +96,7 @@
96
96
 
97
97
 
98
98
 
99
- <Help active={help}/>
99
+ <HelpPopUp active={help}/>
100
100
 
101
101
 
102
102