not-bulma 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "not-bulma",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "not-* family UI components on Bulma CSS Framework",
5
5
  "main": "src/index.js",
6
6
  "svelte": "src/index.js",
package/src/index.js CHANGED
@@ -8,7 +8,7 @@ import {LOCALE, say, notLocale} from './locale';
8
8
 
9
9
  const Locale = {LOCALE, say, notLocale};
10
10
 
11
- const { notCommon, COMPONENTS, FIELDS, VARIANTS } = Frame;
11
+ const { notCommon, COMPONENTS, FIELDS, VARIANTS, notFormUtils } = Frame;
12
12
 
13
13
  Object.keys(Elements.Forms).forEach((fieldtype) => {
14
14
  Frame.notFormUtils.addComponent(fieldtype, Elements.Forms[fieldtype]);
@@ -20,7 +20,7 @@ export {
20
20
  //application framework
21
21
  Frame,
22
22
  //shorts for common elements
23
- notCommon, COMPONENTS, FIELDS, VARIANTS,
23
+ notCommon, notFormUtils, COMPONENTS, FIELDS, VARIANTS,
24
24
  //localization
25
25
  Locale,
26
26
  LOCALE, say, notLocale