@bexis2/bexis2-core-ui 0.2.5 → 0.2.6
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.
|
@@ -50,21 +50,21 @@ onMount(async () => {
|
|
|
50
50
|
|
|
51
51
|
<slot name="description" />
|
|
52
52
|
|
|
53
|
-
<div class="flex flex-initial space-x-
|
|
53
|
+
<div class="flex flex-initial space-x-5">
|
|
54
54
|
|
|
55
55
|
{#if $$slots.left}
|
|
56
|
-
<div class="flex-shrink-0 w-96 w-min-96 border-y border-solid border-surface-500">
|
|
56
|
+
<div class="p-5 flex-shrink-0 w-96 w-min-96 border-y border-solid border-surface-500">
|
|
57
57
|
<slot name="left" />
|
|
58
58
|
</div>
|
|
59
59
|
{/if}
|
|
60
60
|
|
|
61
|
-
<div class="space-y-5
|
|
61
|
+
<div class="p-5 space-y-5 border-y border-solid border-surface-500 w-screen">
|
|
62
62
|
<slot/>
|
|
63
63
|
</div>
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
{#if $$slots.right}
|
|
67
|
-
<div class="flex-shrink-0 w-96 border-y border-solid border-surface-500">
|
|
67
|
+
<div class=" p-5 flex-shrink-0 w-96 border-y border-solid border-surface-500">
|
|
68
68
|
<slot name="right"/>
|
|
69
69
|
</div>
|
|
70
70
|
{/if}
|
package/package.json
CHANGED
|
@@ -66,21 +66,21 @@
|
|
|
66
66
|
|
|
67
67
|
<slot name="description" />
|
|
68
68
|
|
|
69
|
-
<div class="flex flex-initial space-x-
|
|
69
|
+
<div class="flex flex-initial space-x-5">
|
|
70
70
|
|
|
71
71
|
{#if $$slots.left}
|
|
72
|
-
<div class="flex-shrink-0 w-96 w-min-96 border-y border-solid border-surface-500">
|
|
72
|
+
<div class="p-5 flex-shrink-0 w-96 w-min-96 border-y border-solid border-surface-500">
|
|
73
73
|
<slot name="left" />
|
|
74
74
|
</div>
|
|
75
75
|
{/if}
|
|
76
76
|
|
|
77
|
-
<div class="space-y-5
|
|
77
|
+
<div class="p-5 space-y-5 border-y border-solid border-surface-500 w-screen">
|
|
78
78
|
<slot/>
|
|
79
79
|
</div>
|
|
80
80
|
|
|
81
81
|
|
|
82
82
|
{#if $$slots.right}
|
|
83
|
-
<div class="flex-shrink-0 w-96 border-y border-solid border-surface-500">
|
|
83
|
+
<div class=" p-5 flex-shrink-0 w-96 border-y border-solid border-surface-500">
|
|
84
84
|
<slot name="right"/>
|
|
85
85
|
</div>
|
|
86
86
|
{/if}
|