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 +3 -7
- package/dev/index.css +1062 -865
- package/dev/index.css.map +1 -1
- package/dev/index.js +685 -685
- package/dev/index.js.map +1 -1
- package/dev/index.umd.cjs +685 -685
- package/dev/index.umd.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +304 -304
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +3 -3
- package/dist/index.umd.cjs.map +1 -1
- package/index.js +4 -4
- package/package.json +23 -23
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
|
-
[](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
|
|
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({
|
|
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({
|
|
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.
|