@budibase/bbui 3.39.31 → 3.40.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/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.39.31",
4
+ "version": "3.40.0",
5
5
  "license": "MPL-2.0",
6
6
  "module": "dist/bbui.mjs",
7
7
  "exports": {
@@ -108,5 +108,5 @@
108
108
  }
109
109
  }
110
110
  },
111
- "gitHead": "11952e46cb13544c703a56d89e8bef8c189fd989"
111
+ "gitHead": "62b41fe729da5a2d00ad2fda5b400c117575402c"
112
112
  }
@@ -14,12 +14,8 @@
14
14
  {#if tooltip}
15
15
  <div class="icon-container">
16
16
  <AbsTooltip text={tooltip} {position}>
17
- <div
18
- class="icon"
19
- class:icon-small={size === "M" || size === "S"}
20
- on:focus
21
- >
22
- <Icon name="info" size="S" {disabled} hoverable />
17
+ <div class="icon" on:focus>
18
+ <Icon name="info" {size} {disabled} hoverable />
23
19
  </div>
24
20
  </AbsTooltip>
25
21
  </div>
@@ -38,10 +34,4 @@
38
34
  margin-left: 5px;
39
35
  margin-right: 5px;
40
36
  }
41
- .icon {
42
- transform: scale(0.75);
43
- }
44
- .icon-small {
45
- margin-bottom: -2px;
46
- }
47
37
  </style>