@bexis2/bexis2-core-ui 0.2.2 → 0.2.3
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
|
@@ -66,41 +66,33 @@
|
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
|
|
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="
|
|
75
|
+
<div class="grid grid-cols-9 content-end space-x-3">
|
|
76
|
+
|
|
76
77
|
{#if $$slots.left}
|
|
77
|
-
<div class="
|
|
78
|
+
<div class="grid col-span-2 border-y border-solid border-surface-500">
|
|
78
79
|
<slot name="left" />
|
|
79
80
|
</div>
|
|
80
81
|
{/if}
|
|
81
82
|
|
|
82
|
-
<div class="
|
|
83
|
-
|
|
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/>
|
|
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">
|
|
84
|
+
<slot/>
|
|
92
85
|
</div>
|
|
93
86
|
|
|
94
87
|
|
|
95
88
|
{#if $$slots.right}
|
|
96
|
-
<div class="
|
|
89
|
+
<div class="grid col-span-2 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
|
-
|
|
95
|
+
|
|
104
96
|
|
|
105
97
|
|
|
106
98
|
|