@budibase/bbui 2.13.13 → 2.13.15
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.es.js +1 -1
- package/dist/bbui.es.js.map +1 -1
- package/package.json +4 -4
- package/src/ActionGroup/ActionGroup.svelte +1 -0
- package/src/Avatar/Avatar.svelte +1 -0
- package/src/ButtonGroup/ButtonGroup.svelte +1 -0
- package/src/Divider/Divider.svelte +1 -0
- package/src/Drawer/Drawer.svelte +1 -2
- package/src/Modal/Content.svelte +1 -0
- package/src/OptionSelectDnD/OptionSelectDnD.svelte +1 -0
- package/src/Popover/Popover.svelte +1 -2
- package/src/SideNavigation/Item.svelte +2 -0
- package/src/SideNavigation/Navigation.svelte +1 -0
- package/src/Table/ArrayRenderer.svelte +1 -0
- package/src/Tabs/Tab.svelte +1 -0
- package/src/helpers.js +1 -0
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": "2.13.
|
|
4
|
+
"version": "2.13.15",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"svelte": "src/index.js",
|
|
7
7
|
"module": "dist/bbui.es.js",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@adobe/spectrum-css-workflow-icons": "1.2.1",
|
|
39
|
-
"@budibase/shared-core": "2.13.
|
|
40
|
-
"@budibase/string-templates": "2.13.
|
|
39
|
+
"@budibase/shared-core": "2.13.15",
|
|
40
|
+
"@budibase/string-templates": "2.13.15",
|
|
41
41
|
"@spectrum-css/accordion": "3.0.24",
|
|
42
42
|
"@spectrum-css/actionbutton": "1.0.1",
|
|
43
43
|
"@spectrum-css/actiongroup": "1.0.1",
|
|
@@ -104,5 +104,5 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
},
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "8ada75c2f51c6ddff52676944b0d6e9395ea1c0b"
|
|
108
108
|
}
|
package/src/Avatar/Avatar.svelte
CHANGED
package/src/Drawer/Drawer.svelte
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
import Button from "../Button/Button.svelte"
|
|
4
4
|
import Body from "../Typography/Body.svelte"
|
|
5
5
|
import Heading from "../Typography/Heading.svelte"
|
|
6
|
-
import { setContext } from "svelte"
|
|
7
|
-
import { createEventDispatcher } from "svelte"
|
|
6
|
+
import { setContext, createEventDispatcher } from "svelte"
|
|
8
7
|
import { generate } from "shortid"
|
|
9
8
|
|
|
10
9
|
export let title
|
package/src/Modal/Content.svelte
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import "@spectrum-css/popover/dist/index-vars.css"
|
|
3
3
|
import Portal from "svelte-portal"
|
|
4
|
-
import { createEventDispatcher } from "svelte"
|
|
4
|
+
import { createEventDispatcher, getContext } from "svelte"
|
|
5
5
|
import positionDropdown from "../Actions/position_dropdown"
|
|
6
6
|
import clickOutside from "../Actions/click_outside"
|
|
7
7
|
import { fly } from "svelte/transition"
|
|
8
|
-
import { getContext } from "svelte"
|
|
9
8
|
import Context from "../context"
|
|
10
9
|
|
|
11
10
|
const dispatch = createEventDispatcher()
|
package/src/Tabs/Tab.svelte
CHANGED