@bexis2/bexis2-core-ui 0.2.2 → 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.2",
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
@@ -66,45 +66,37 @@
66
66
 
67
67
 
68
68
 
69
- <div class="px-5 grid gap-5 content-center" >
69
+ <div class="px-5 grid gap-5 content-center" >
70
70
 
71
71
 
72
72
  <slot name="description" />
73
73
 
74
74
 
75
- <div class="w-full flex flex-col sm:flex-row flex-wrap sm:flex-nowrap py-4 flex-grow">
75
+ <div class="flex flex-initial space-x-3">
76
+
76
77
  {#if $$slots.left}
77
- <div class="w-fixed w-full max-w-min flex-shrink flex-grow-1 px-4">
78
+ <div class="flex-shrink-0 w-96 w-min-96 border-y border-solid border-surface-500">
78
79
  <slot name="left" />
79
80
  </div>
80
81
  {/if}
81
-
82
- <div class="w-full flex-initial items-center justify-center pt-1 px-3 max-w-screen-lg">
83
- <slot name="middle" />
84
- {#if links.length>0}
85
- <div class="py-5">
86
- {#each links as link}
87
- <a class="chip variant-ringed" href={link.url}>{link.label}</a>
88
- {/each}
89
- </div>
90
- {/if}
91
- <slot/>
82
+
83
+ <div class="space-y-5 py-3 border-y border-solid border-surface-500">
84
+ <slot/>
92
85
  </div>
93
86
 
94
87
 
95
88
  {#if $$slots.right}
96
- <div class="w-fixed w-full max-w-min flex-shrink flex-grow-0 px-2">
89
+ <div class="flex-shrink-0 w-96 border-y border-solid border-surface-500">
97
90
  <slot name="right"/>
98
- </div>
91
+ </div>
99
92
  {/if}
100
-
101
-
93
+
102
94
  </div>
103
- </div>
104
95
 
105
96
 
106
97
 
107
- <Help active={help}/>
98
+
99
+ <HelpPopUp active={help}/>
108
100
 
109
101
 
110
102