@budibase/bbui 3.4.21 → 3.4.22

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.4.21",
4
+ "version": "3.4.22",
5
5
  "license": "MPL-2.0",
6
6
  "svelte": "src/index.ts",
7
7
  "module": "dist/bbui.mjs",
@@ -99,5 +99,5 @@
99
99
  }
100
100
  }
101
101
  },
102
- "gitHead": "eeb6e4ece3f2a32b32db2bedea6eb36430e0b010"
102
+ "gitHead": "d13bdcbc41f1c15066ef24c19290452cd5c4dd46"
103
103
  }
@@ -11,6 +11,7 @@
11
11
  export let active = false
12
12
  export let inactive = false
13
13
  export let hoverable = false
14
+ export let outlineColor = null
14
15
  </script>
15
16
 
16
17
  <!-- svelte-ignore a11y-no-static-element-interactions -->
@@ -29,6 +30,7 @@
29
30
  class:spectrum-Label--seafoam={seafoam}
30
31
  class:spectrum-Label--active={active}
31
32
  class:spectrum-Label--inactive={inactive}
33
+ style={outlineColor ? `border: 2px solid ${outlineColor}` : ""}
32
34
  >
33
35
  <slot />
34
36
  </span>
@@ -28,6 +28,9 @@
28
28
  <svg
29
29
  on:contextmenu
30
30
  on:click
31
+ on:mouseover
32
+ on:mouseleave
33
+ on:focus
31
34
  class:hoverable
32
35
  class:disabled
33
36
  class="spectrum-Icon spectrum-Icon--size{size}"
@@ -47,7 +47,7 @@
47
47
  overflow-x: hidden;
48
48
  }
49
49
  .main {
50
- overflow-y: scroll;
50
+ overflow-y: auto;
51
51
  }
52
52
  .content {
53
53
  display: flex;