@budibase/bbui 1.3.13 → 1.3.14

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": "1.3.13",
4
+ "version": "1.3.14",
5
5
  "license": "MPL-2.0",
6
6
  "svelte": "src/index.js",
7
7
  "module": "dist/bbui.es.js",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "dependencies": {
40
40
  "@adobe/spectrum-css-workflow-icons": "^1.2.1",
41
- "@budibase/string-templates": "^1.3.13",
41
+ "@budibase/string-templates": "^1.3.14",
42
42
  "@spectrum-css/actionbutton": "^1.0.1",
43
43
  "@spectrum-css/actiongroup": "^1.0.1",
44
44
  "@spectrum-css/avatar": "^3.0.2",
@@ -85,5 +85,5 @@
85
85
  "svelte-flatpickr": "^3.2.3",
86
86
  "svelte-portal": "^1.0.0"
87
87
  },
88
- "gitHead": "272a2ec7c7f2fabf74153fc8573ce6745134cdde"
88
+ "gitHead": "a38626cf662d66aa8c04fb1d42dc7bc353ce7c31"
89
89
  }
@@ -10,6 +10,7 @@
10
10
  export let noHorizPadding = false
11
11
  export let quiet = false
12
12
  export let emphasized = false
13
+ export let onTop = false
13
14
  export let size = "M"
14
15
 
15
16
  let thisSelected = undefined
@@ -75,6 +76,7 @@
75
76
  bind:this={container}
76
77
  class:spectrum-Tabs--quiet={quiet}
77
78
  class:noHorizPadding
79
+ class:onTop
78
80
  class:spectrum-Tabs--vertical={vertical}
79
81
  class:spectrum-Tabs--horizontal={!vertical}
80
82
  class="spectrum-Tabs spectrum-Tabs--size{size}"
@@ -122,4 +124,7 @@
122
124
  .noPadding {
123
125
  margin: 0;
124
126
  }
127
+ .onTop {
128
+ z-index: 100;
129
+ }
125
130
  </style>