@vlalg-nimbus/nb-inputs 9.6.0 → 10.0.1
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 +6 -2
- package/dist/nb-inputs.js +6178 -3233
- package/dist/nb-inputs.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -8,13 +8,15 @@ This lib contains input components.
|
|
|
8
8
|
## Installation
|
|
9
9
|
|
|
10
10
|
```bash
|
|
11
|
-
npm install @vlalg-nimbus/nb-inputs
|
|
11
|
+
npm install @vlalg-nimbus/nb-inputs vue-the-mask@0.11.1
|
|
12
12
|
|
|
13
13
|
# or
|
|
14
14
|
|
|
15
|
-
yarn add @vlalg-nimbus/nb-inputs
|
|
15
|
+
yarn add @vlalg-nimbus/nb-inputs vue-the-mask@0.11.1
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
`vue-the-mask` **0.11.1** is a **peer dependency** (used by `NbInput` when `input-mask` is set; pin avoids unexpected upgrades of an unmaintained package). `@vlalg-nimbus/magic-debounce` is a normal dependency of this package (installs with `nb-inputs`; not inlined in the library build, same pattern as `nb-calendar`).
|
|
19
|
+
|
|
18
20
|
## Usage
|
|
19
21
|
|
|
20
22
|
```js
|
|
@@ -45,6 +47,8 @@ The components that are part of this lib are:
|
|
|
45
47
|
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-input-chip" target="_blank">nb-input-chip</a>
|
|
46
48
|
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-textarea" target="_blank">nb-textarea</a>
|
|
47
49
|
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-date-picker" target="_blank">nb-date-picker</a>
|
|
50
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-input-file" target="_blank">nb-input-file</a>
|
|
51
|
+
- <a href="http://nimbus.tec.br/vue-components/nb-inputs/nb-input-search" target="_blank">nb-input-search</a>
|
|
48
52
|
|
|
49
53
|
Click on each one above to find out how to use it, properties, events, etc.
|
|
50
54
|
|