@budibase/bbui 3.14.1 → 3.15.0
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/dist/bbui.mjs +1 -1
- package/package.json +2 -2
- package/src/Form/RadioGroup.svelte +4 -4
package/dist/bbui.mjs
CHANGED
|
@@ -34231,7 +34231,7 @@ function create_fragment$1m(f) {
|
|
|
34231
34231
|
};
|
|
34232
34232
|
}
|
|
34233
34233
|
function instance$1l(f, u, p) {
|
|
34234
|
-
let { value: m =
|
|
34234
|
+
let { value: m = void 0 } = u, { label: v = void 0 } = u, { disabled: y = !1 } = u, { labelPosition: k = "above" } = u, { error: S = void 0 } = u, { options: T = [] } = u, { direction: O = "vertical" } = u, { getOptionLabel: R = (K) => Y(K, "label") } = u, { getOptionValue: L = (K) => Y(K, "value") } = u, { getOptionTitle: M = (K) => Y(K, "label") } = u, { helpText: P = void 0 } = u;
|
|
34235
34235
|
const H = createEventDispatcher(), j = (K) => {
|
|
34236
34236
|
p(0, m = K.detail), H("change", K.detail);
|
|
34237
34237
|
}, Y = (K, Q) => K && typeof K == "object" ? K[Q] : K;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/bbui",
|
|
3
3
|
"description": "A UI solution used in the different Budibase projects.",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.15.0",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"svelte": "src/index.ts",
|
|
7
7
|
"module": "dist/bbui.mjs",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "d220e217e0f03ff770421191b5b49cf8268f007f"
|
|
110
110
|
}
|
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
import RadioGroup from "./Core/RadioGroup.svelte"
|
|
4
4
|
import { createEventDispatcher } from "svelte"
|
|
5
5
|
|
|
6
|
-
export let value =
|
|
7
|
-
export let label =
|
|
6
|
+
export let value = undefined
|
|
7
|
+
export let label = undefined
|
|
8
8
|
export let disabled = false
|
|
9
9
|
export let labelPosition = "above"
|
|
10
|
-
export let error =
|
|
10
|
+
export let error = undefined
|
|
11
11
|
export let options = []
|
|
12
12
|
export let direction = "vertical"
|
|
13
13
|
export let getOptionLabel = option => extractProperty(option, "label")
|
|
14
14
|
export let getOptionValue = option => extractProperty(option, "value")
|
|
15
15
|
export let getOptionTitle = option => extractProperty(option, "label")
|
|
16
|
-
export let helpText =
|
|
16
|
+
export let helpText = undefined
|
|
17
17
|
|
|
18
18
|
const dispatch = createEventDispatcher()
|
|
19
19
|
const onChange = e => {
|