@budibase/bbui 3.32.0 → 3.32.2
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,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.32.
|
|
4
|
+
"version": "3.32.2",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"module": "dist/bbui.mjs",
|
|
7
7
|
"exports": {
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "21f86537af183b61849af085ba58437ce8f185de"
|
|
111
111
|
}
|
|
@@ -287,6 +287,9 @@
|
|
|
287
287
|
class="popover-content"
|
|
288
288
|
class:auto-width={autoWidth}
|
|
289
289
|
class:wrap-text={wrapText}
|
|
290
|
+
class:size-s={size === "S"}
|
|
291
|
+
class:size-m={size === "M"}
|
|
292
|
+
class:size-l={size === "L"}
|
|
290
293
|
use:clickOutside={() => {
|
|
291
294
|
open = false
|
|
292
295
|
}}
|
|
@@ -597,6 +600,18 @@
|
|
|
597
600
|
color: var(--spectrum-global-color-gray-600);
|
|
598
601
|
font-weight: 500;
|
|
599
602
|
}
|
|
603
|
+
.spectrum-Picker--sizeL
|
|
604
|
+
.spectrum-Picker-label.has-subtitle
|
|
605
|
+
.picker-label-text,
|
|
606
|
+
.spectrum-Picker--sizeL .picker-label-subtitle {
|
|
607
|
+
font-size: 14px;
|
|
608
|
+
line-height: 18px;
|
|
609
|
+
}
|
|
610
|
+
.popover-content.size-l .spectrum-Menu-itemLabel,
|
|
611
|
+
.popover-content.size-l .subtitle-text {
|
|
612
|
+
font-size: 14px;
|
|
613
|
+
line-height: 18px;
|
|
614
|
+
}
|
|
600
615
|
|
|
601
616
|
.select-all-item {
|
|
602
617
|
border-bottom: 1px solid var(--spectrum-global-color-gray-200);
|
package/src/Form/Select.svelte
CHANGED
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
export let loading: boolean | undefined = false
|
|
51
51
|
export let searchPlaceholder: string | undefined = undefined
|
|
52
52
|
export let hideChevron: boolean = false
|
|
53
|
+
export let wrapText: boolean = false
|
|
53
54
|
export let required: boolean = false
|
|
54
55
|
export let description: string | undefined = undefined
|
|
55
56
|
|
|
@@ -107,6 +108,7 @@
|
|
|
107
108
|
{onOptionMouseleave}
|
|
108
109
|
{tooltipMessage}
|
|
109
110
|
{searchPlaceholder}
|
|
111
|
+
{wrapText}
|
|
110
112
|
on:change={onChange}
|
|
111
113
|
on:click
|
|
112
114
|
/>
|