Skip to content

Commit cb95004

Browse files
committed
Adding label info. Bumping version.
1 parent 1861f4c commit cb95004

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ myTexts: IMultiSelectTexts = {
8585
searchPlaceholder: 'Search...',
8686
defaultTitle: 'Select',
8787
};
88+
89+
/* Labels */
90+
myOptions: IMultiSelectOption[] = [
91+
{ id: 1, name: 'Car brands', isLabel: true },
92+
{ id: 2, name: 'Volvo', parentId: 1 },
93+
{ id: 3, name: 'Colors', isLabel: true },
94+
{ id: 4, name: 'Blue', parentId: 3 }
95+
];
96+
8897
```
8998

9099
```html

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-2-dropdown-multiselect",
3-
"version": "0.5.0",
3+
"version": "1.0.0",
44
"description": "Customizable dropdown multiselect in Angular 2 with bootstrap css.",
55
"main": "src/multiselect-dropdown.ts",
66
"repository": {

0 commit comments

Comments
 (0)