@bexis2/bexis2-core-ui 0.4.68 → 0.4.69
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/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bexis2/bexis2-core-ui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.69",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).",
|
|
6
6
|
"keywords": [
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
export let description = '';
|
|
9
9
|
export let key;
|
|
10
10
|
export let help = false;
|
|
11
|
+
export let vertical = true;
|
|
11
12
|
|
|
12
13
|
let required = false;
|
|
13
14
|
export let feedback: [];
|
|
@@ -15,6 +16,7 @@
|
|
|
15
16
|
</script>
|
|
16
17
|
|
|
17
18
|
<InputContainer {id} label={title} {feedback} {required} {help} {description}>
|
|
19
|
+
<div class="flex gap-2" class:flex-col={vertical} >
|
|
18
20
|
{#each source as item}
|
|
19
21
|
<label class="flex items-center space-x-2" for={item.key}>
|
|
20
22
|
<input
|
|
@@ -28,4 +30,5 @@
|
|
|
28
30
|
<p>{item.value}</p>
|
|
29
31
|
</label>
|
|
30
32
|
{/each}
|
|
33
|
+
</div>
|
|
31
34
|
</InputContainer>
|