# @web-bee-ru/widgets

Latest version **0.1.0** (published 2019-11-05) · ISC license · 0 weekly downloads

## Install

```sh
npm install @web-bee-ru/widgets
pnpm add @web-bee-ru/widgets
yarn add @web-bee-ru/widgets
bun add @web-bee-ru/widgets
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2019-11-05 |
| First published | 2019-11-05 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 55.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | dev@web-bee.ru |
| Maintainers | crutch12, simplesmiler |

## Links

- npm: https://www.npmjs.com/package/@web-bee-ru/widgets
- Repository: https://github.com/web-bee-ru/widgets
- Homepage: https://github.com/web-bee-ru/widgets#readme
- Issues: https://github.com/web-bee-ru/widgets/issues
- npm.io page: https://npm.io/package/@web-bee-ru/widgets

## Dependencies (1)

- [classnames](https://npm.io/package/classnames.md) ^2.2.6

## Recent versions

- 0.1.0 (latest) — 2019-11-05

## README

# @web-bee-ru/widgets

## Install
```bash
npm i @web-bee-ru/vue-widgets
```

## Use

1. Make sure you have bootstrap styles and sass support in your project.

2a. Import and register all widgets:
```js
import Vue from 'vue';
import { VuePlugin } from '@web-bee-ru/vue-widgets';
Vue.use(VuePlugin);
```

2b. Import only ones you need:
```vue
<template>
  <div>
    <w-button>Click me</w-button>
  </div>
</template>
<script>
  import { WButton } from '@web-bee-ru/vue-widgets';
  export default {
    components: { WButton },
  };
</script>
```

## Develop

```bash
npm run bootstrap # install dependencies
npm run dev:vue # start dev sandbox
```

Refer to [widget design guidelines](./docs/guidelines_widgets.md) and [widget registry](./docs/widgets.md) (currently only available in Russian).

If you experience issues, try `npm run clean` and then `npm run bootstrap` again.

# Publish

```bash
npm run publish
```

If you experience issues with ssh key passphrase, try running `start-ssh-agent` before publishing.

---
_Source: https://npm.io/package/@web-bee-ru/widgets · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
