not-bulma 1.0.45 → 1.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "not-bulma",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "description": "not-* family UI components on Bulma CSS Framework",
5
5
  "main": "src/index.js",
6
6
  "svelte": "src/index.js",
@@ -1,13 +1,17 @@
1
- import UIColumn from './ui.column.svelte';
2
- import UIColumns from './ui.columns.svelte';
3
- import UIContainer from './ui.container.svelte';
4
- import UIFooter from './ui.footer.svelte';
5
- import UISection from './ui.section.svelte';
1
+ import UIColumn from "./ui.column.svelte";
2
+ import UIColumns from "./ui.columns.svelte";
3
+ import UIContainer from "./ui.container.svelte";
4
+ import UIFooter from "./ui.footer.svelte";
5
+ import UISection from "./ui.section.svelte";
6
+ import UILevelItem from "./ui.level.item.svelte";
7
+ import UILevel from "./ui.level.svelte";
6
8
 
7
9
  export {
8
- UIColumn,
9
- UIColumns,
10
- UIContainer,
11
- UIFooter,
12
- UISection,
10
+ UIColumn,
11
+ UIColumns,
12
+ UIContainer,
13
+ UIFooter,
14
+ UISection,
15
+ UILevelItem,
16
+ UILevel,
13
17
  };
@@ -0,0 +1,7 @@
1
+ <script>
2
+ export let tag = "div";
3
+ </script>
4
+
5
+ <svelte:element this={tag}>
6
+ <slot><!-- optional fallback --></slot>
7
+ </svelte:element>
@@ -0,0 +1,11 @@
1
+ <nav class="level">
2
+ <!-- Left side -->
3
+ <div class="level-left">
4
+ <slot name="left" />
5
+ </div>
6
+
7
+ <!-- Right side -->
8
+ <div class="level-right">
9
+ <slot name="right" />
10
+ </div>
11
+ </nav>
@@ -47,27 +47,27 @@ import notCRUD from "./crud/controller.crud.js";
47
47
  const ncCRUD = notCRUD; //legacy alias
48
48
 
49
49
  export {
50
- notCommon,
51
- notPath,
52
- notController,
53
- notBase,
54
- notRouter,
55
- notRecord,
56
- notInterface,
57
- notApp,
58
- notAPI,
59
- notStores,
60
- notCRUD,
61
- ncCRUD,
62
50
  COMPONENTS,
63
51
  FIELDS,
64
- VARIANTS,
65
- notTable,
66
52
  UIForm,
53
+ VARIANTS,
54
+ ncCRUD,
55
+ notAPI,
56
+ notApp,
57
+ notBase,
58
+ notBreadcrumbs,
59
+ notCRUD,
60
+ notCommon,
61
+ notController,
67
62
  notForm,
68
63
  notFormSet,
69
64
  notFormUtils,
70
- notBreadcrumbs,
71
- notTopMenu,
65
+ notInterface,
66
+ notPath,
67
+ notRecord,
68
+ notRouter,
72
69
  notSideMenu,
70
+ notStores,
71
+ notTable,
72
+ notTopMenu,
73
73
  };