@vlalg-nimbus/nb-inputs 7.0.0 → 7.0.2
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 +46 -44
- package/dist/nb-inputs.js +719 -671
- package/dist/nb-inputs.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,44 +1,46 @@
|
|
|
1
|
-
# nb-inputs
|
|
2
|
-
> This component is only for [Vue.js 3+](https://vuejs.org/)
|
|
3
|
-
|
|
4
|
-
<br />
|
|
5
|
-
|
|
6
|
-
This lib contains input components.
|
|
7
|
-
|
|
8
|
-
## Installation
|
|
9
|
-
|
|
10
|
-
```bash
|
|
11
|
-
npm install @vlalg-nimbus/nb-inputs
|
|
12
|
-
|
|
13
|
-
# or
|
|
14
|
-
|
|
15
|
-
yarn add @vlalg-nimbus/nb-inputs
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
## Usage
|
|
19
|
-
|
|
20
|
-
```js
|
|
21
|
-
// main.js
|
|
22
|
-
import { createApp } from 'vue'
|
|
23
|
-
import App from './App.vue'
|
|
24
|
-
|
|
25
|
-
import NbInputsComponents from '@vlalg-nimbus/nb-inputs'
|
|
26
|
-
import "@vlalg-nimbus/nb-inputs/dist/style.css";
|
|
27
|
-
|
|
28
|
-
const app = createApp(App)
|
|
29
|
-
app.use(NbInputsComponents)
|
|
30
|
-
app.mount('#app')
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Components list
|
|
34
|
-
|
|
35
|
-
The components that are part of this lib are:
|
|
36
|
-
|
|
37
|
-
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-input-radio" target="_blank">nb-input-radio</a>
|
|
38
|
-
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-checkbox" target="_blank">nb-input-checkbox</a>
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
1
|
+
# nb-inputs
|
|
2
|
+
> This component is only for [Vue.js 3+](https://vuejs.org/)
|
|
3
|
+
|
|
4
|
+
<br />
|
|
5
|
+
|
|
6
|
+
This lib contains input components.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @vlalg-nimbus/nb-inputs
|
|
12
|
+
|
|
13
|
+
# or
|
|
14
|
+
|
|
15
|
+
yarn add @vlalg-nimbus/nb-inputs
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
```js
|
|
21
|
+
// main.js
|
|
22
|
+
import { createApp } from 'vue'
|
|
23
|
+
import App from './App.vue'
|
|
24
|
+
|
|
25
|
+
import NbInputsComponents from '@vlalg-nimbus/nb-inputs'
|
|
26
|
+
import "@vlalg-nimbus/nb-inputs/dist/style.css";
|
|
27
|
+
|
|
28
|
+
const app = createApp(App)
|
|
29
|
+
app.use(NbInputsComponents)
|
|
30
|
+
app.mount('#app')
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Components list
|
|
34
|
+
|
|
35
|
+
The components that are part of this lib are:
|
|
36
|
+
|
|
37
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-input-radio" target="_blank">nb-input-radio</a>
|
|
38
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-checkbox" target="_blank">nb-input-checkbox</a>
|
|
39
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-input" target="_blank">nb-input</a>
|
|
40
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-input-chip" target="_blank">nb-input-chip</a>
|
|
41
|
+
|
|
42
|
+
Click on each one above to find out how to use it, properties, events, etc.
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
[MIT](http://opensource.org/licenses/MIT)
|