vrembem 4.0.0-next.6 → 4.0.0-next.8

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/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  A complete collection of all Vrembem components into a single comprehensive package for convenience.
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/vrembem.svg)](https://www.npmjs.com/package/vrembem)
6
-
7
5
  [Documentation](https://vrembem.com/packages/vrembem)
8
6
 
9
7
  ## Installation
@@ -55,20 +53,18 @@ Customize core variables which all components inherit from. The example below wi
55
53
 
56
54
  ## JavaScript
57
55
 
58
- Import and initialize the components you'll need:
56
+ Import and mount the components you'll need:
59
57
 
60
58
  ```js
61
59
  // Import all under the vb namespace
62
60
  import * as vb from 'vrembem';
63
- const drawer = new vb.Drawer({ autoInit: true });
61
+ const drawer = new vb.Drawer({ autoMount: true });
64
62
 
65
63
  // Or import individual components
66
64
  import { Drawer } from 'vrembem';
67
- const drawer = new Drawer({ autoInit: true });
65
+ const drawer = new Drawer({ autoMount: true });
68
66
  ```
69
67
 
70
- > Note that `core` modules do not need to be initialized since they're just a set of helpful utility and functional modules.
71
-
72
68
  ## Markup
73
69
 
74
70
  Include the component's markup into your project. Use the [online documentation](https://vrembem.com) for more information, customization options, code examples and available modifiers.