ng-jvx-multiselect 19.0.36 → 19.0.37
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 +4 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,23 +3,16 @@
|
|
|
3
3
|
ng-jvx-multiselect is a select based on angular. It handles both single and multiple selections and allows to
|
|
4
4
|
retrieves the options via asynchronous calls.
|
|
5
5
|
|
|
6
|
+
<h2 style="color:red">IMPORTANT</h2>
|
|
7
|
+
ng-jvx-multiselect now follows the standalone components paradigm.
|
|
8
|
+
You must import NgJvxMultiselectComponent and any related directives directly within the consuming component.
|
|
9
|
+
|
|
6
10
|
## Install ng-jvx-multiselect
|
|
7
11
|
|
|
8
12
|
```
|
|
9
13
|
npm install ng-jvx-multiselect --save
|
|
10
14
|
```
|
|
11
15
|
|
|
12
|
-
In <b>app.module.ts</b>
|
|
13
|
-
|
|
14
|
-
```typescript
|
|
15
|
-
import {NgJvxMultiselectModule} from 'ng-jvx-multiselect';
|
|
16
|
-
|
|
17
|
-
@NgModule({
|
|
18
|
-
imports: [
|
|
19
|
-
NgJvxMultiselectModule
|
|
20
|
-
]
|
|
21
|
-
})
|
|
22
|
-
```
|
|
23
16
|
|
|
24
17
|
In <b>styles.scss</b>
|
|
25
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ng-jvx-multiselect",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.37",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ng-jvx-multiselect is a select for angular projects. It handles both single and multiple selections and allows to retrieves the options via asynchronous calls.",
|
|
6
6
|
"exports": {
|