@budibase/bbui 3.2.45 → 3.2.46

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 CHANGED
@@ -1330,7 +1330,7 @@ function create_fragment$23(f) {
1330
1330
  };
1331
1331
  }
1332
1332
  function instance$22(f, u, p) {
1333
- let { name: m = "Add" } = u, { hidden: v = !1 } = u, { size: y = "M" } = u, { hoverable: k = !1 } = u, { disabled: S = !1 } = u, { color: T } = u, { hoverColor: D } = u, { tooltip: L } = u, { tooltipPosition: R = TooltipPosition.Bottom } = u, { tooltipType: P = TooltipType.Default } = u, { tooltipColor: F } = u, { tooltipWrap: W = !0 } = u, { newStyles: q = !1 } = u;
1333
+ let { name: m = "Add" } = u, { hidden: v = !1 } = u, { size: y = "M" } = u, { hoverable: k = !1 } = u, { disabled: S = !1 } = u, { color: T = void 0 } = u, { hoverColor: D = void 0 } = u, { tooltip: L = void 0 } = u, { tooltipPosition: R = TooltipPosition.Bottom } = u, { tooltipType: P = TooltipType.Default } = u, { tooltipColor: F = void 0 } = u, { tooltipWrap: W = !0 } = u, { newStyles: q = !1 } = u;
1334
1334
  function Y($) {
1335
1335
  bubble.call(this, f, $);
1336
1336
  }
@@ -54810,7 +54810,7 @@ function create_fragment$J(f) {
54810
54810
  };
54811
54811
  }
54812
54812
  function instance$I(f, u, p) {
54813
- let { $$slots: m = {}, $$scope: v } = u, { size: y = "M" } = u, { tooltip: k = "" } = u, { muted: S } = u;
54813
+ let { $$slots: m = {}, $$scope: v } = u, { size: y = "M" } = u, { tooltip: k = "" } = u, { muted: S = void 0 } = u;
54814
54814
  return f.$$set = (T) => {
54815
54815
  "size" in T && p(0, y = T.size), "tooltip" in T && p(1, k = T.tooltip), "muted" in T && p(2, S = T.muted), "$$scope" in T && p(4, v = T.$$scope);
54816
54816
  }, [y, k, S, m, v];
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.2.45",
4
+ "version": "3.2.46",
5
5
  "license": "MPL-2.0",
6
6
  "svelte": "src/index.js",
7
7
  "module": "dist/bbui.mjs",
@@ -98,5 +98,5 @@
98
98
  }
99
99
  }
100
100
  },
101
- "gitHead": "a636af7d5f402da86321a48f64745fefd2f9d4a1"
101
+ "gitHead": "a42b9757de845189ea0c0617440936e3d67f62c3"
102
102
  }
@@ -10,12 +10,12 @@
10
10
  export let size = "M"
11
11
  export let hoverable = false
12
12
  export let disabled = false
13
- export let color
14
- export let hoverColor
15
- export let tooltip
13
+ export let color = undefined
14
+ export let hoverColor = undefined
15
+ export let tooltip = undefined
16
16
  export let tooltipPosition = TooltipPosition.Bottom
17
17
  export let tooltipType = TooltipType.Default
18
- export let tooltipColor
18
+ export let tooltipColor = undefined
19
19
  export let tooltipWrap = true
20
20
  export let newStyles = false
21
21
  </script>
@@ -4,7 +4,7 @@
4
4
 
5
5
  export let size = "M"
6
6
  export let tooltip = ""
7
- export let muted
7
+ export let muted = undefined
8
8
  </script>
9
9
 
10
10
  <TooltipWrapper {tooltip} {size}>
package/src/helpers.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  declare module "./helpers" {
2
2
  export const cloneDeep: <T>(obj: T) => T
3
+ export const copyToClipboard: (value: any) => Promise<void>
3
4
  }