not-bulma 1.0.47 → 1.0.48

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.47",
3
+ "version": "1.0.48",
4
4
  "description": "not-* family UI components on Bulma CSS Framework",
5
5
  "main": "src/index.js",
6
6
  "svelte": "src/index.js",
@@ -1,8 +1,8 @@
1
1
  <script>
2
- export let classes = "";
3
- export let title = "";
2
+ export let classes = "";
3
+ export let title = "";
4
4
  </script>
5
5
 
6
- <div {title} class="column {classes}">
7
- <slot></slot>
6
+ <div {title} class="column {classes}" on:click>
7
+ <slot />
8
8
  </div>
@@ -1,7 +1,7 @@
1
1
  <script>
2
- export let classes = "";
2
+ export let classes = "";
3
3
  </script>
4
4
 
5
- <div class="columns {classes}">
6
- <slot></slot>
5
+ <div class="columns {classes}" on:click>
6
+ <slot />
7
7
  </div>
@@ -1,21 +1,22 @@
1
1
  <script>
2
- export let id = '';
3
- export let classes = '';
4
- export let widescreen = false;
5
- export let fullhd = false;
6
- export let maxDesktop = false;
7
- export let maxWidescreen = false;
8
- export let fluid = false;
2
+ export let id = "";
3
+ export let classes = "";
4
+ export let widescreen = false;
5
+ export let fullhd = false;
6
+ export let maxDesktop = false;
7
+ export let maxWidescreen = false;
8
+ export let fluid = false;
9
9
  </script>
10
10
 
11
11
  <div
12
- {id}
13
- class="container {classes}"
14
- class:is-widescreen={widescreen}
15
- class:is-fullhd={fullhd}
16
- class:is-max-desktop={maxDesktop}
17
- class:is-max-widescreen={maxWidescreen}
18
- class:is-fluid={fluid}
19
- >
20
- <slot></slot>
12
+ {id}
13
+ class="container {classes}"
14
+ class:is-widescreen={widescreen}
15
+ class:is-fullhd={fullhd}
16
+ class:is-max-desktop={maxDesktop}
17
+ class:is-max-widescreen={maxWidescreen}
18
+ class:is-fluid={fluid}
19
+ on:click
20
+ >
21
+ <slot />
21
22
  </div>
@@ -1,10 +1,9 @@
1
1
  <script>
2
- export let id='';
3
- export let size; //medium, large
4
- export let classes = '';
5
-
2
+ export let id = "";
3
+ export let size; //medium, large
4
+ export let classes = "";
6
5
  </script>
7
6
 
8
- <section {id} class="section {size?('is-'+size):''} {classes}">
9
- <slot></slot>
7
+ <section {id} class="section {size ? 'is-' + size : ''} {classes}" on:click>
8
+ <slot />
10
9
  </section>
@@ -1,11 +1,7 @@
1
- import notFormUtils from './utils';
2
- import notForm from './form';
3
- import notFormSet from './form.set';
4
- import UIForm from './form.svelte';
1
+ import notFormUtils from "./utils";
2
+ import notFormHelpers from "./form.helpers";
3
+ import notForm from "./form";
4
+ import notFormSet from "./form.set";
5
+ import UIForm from "./form.svelte";
5
6
 
6
- export {
7
- UIForm,
8
- notForm,
9
- notFormSet,
10
- notFormUtils
11
- };
7
+ export { UIForm, notForm, notFormSet, notFormUtils, notFormHelpers };
@@ -1,27 +1,28 @@
1
- import {notTable} from './table';
1
+ import { notTable } from "./table";
2
2
 
3
- import notActionUI from './action/action.ui.js';
3
+ import notActionUI from "./action/action.ui.js";
4
4
 
5
5
  import {
6
- notForm,
7
- notFormSet,
8
- notFormUtils,
9
- UIForm
10
- } from './form';
6
+ notForm,
7
+ notFormSet,
8
+ notFormUtils,
9
+ notFormHelpers,
10
+ UIForm,
11
+ } from "./form";
11
12
 
12
- import notBreadcrumbs from './breadcrumbs';
13
-
14
- import {notTopMenu, notSideMenu} from './navigation';
13
+ import notBreadcrumbs from "./breadcrumbs";
15
14
 
15
+ import { notTopMenu, notSideMenu } from "./navigation";
16
16
 
17
17
  export {
18
- notActionUI,
19
- notTable,
20
- UIForm,
21
- notForm,
22
- notFormSet,
23
- notFormUtils,
24
- notBreadcrumbs,
25
- notTopMenu,
26
- notSideMenu
18
+ notActionUI,
19
+ notTable,
20
+ UIForm,
21
+ notForm,
22
+ notFormSet,
23
+ notFormUtils,
24
+ notFormHelpers,
25
+ notBreadcrumbs,
26
+ notTopMenu,
27
+ notSideMenu,
27
28
  };
@@ -62,6 +62,7 @@ export {
62
62
  notForm,
63
63
  notFormSet,
64
64
  notFormUtils,
65
+ notFormHelpers,
65
66
  notInterface,
66
67
  notPath,
67
68
  notRecord,