ng-select2-component 8.0.5 → 8.0.6
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/CHANGELOG.md +7 -0
- package/bundles/ng-select2-component.umd.js +2551 -2541
- package/bundles/ng-select2-component.umd.js.map +1 -1
- package/bundles/ng-select2-component.umd.min.js +1 -1
- package/bundles/ng-select2-component.umd.min.js.map +1 -1
- package/esm2015/lib/select2-const.js +57 -57
- package/esm2015/lib/select2-hint.component.js +12 -12
- package/esm2015/lib/select2-interfaces.js +134 -134
- package/esm2015/lib/select2-label.component.js +12 -12
- package/esm2015/lib/select2-utils.js +388 -388
- package/esm2015/lib/select2.component.js +1500 -1494
- package/esm2015/lib/select2.module.js +23 -23
- package/esm2015/ng-select2-component.js +10 -10
- package/esm2015/public_api.js +17 -17
- package/fesm2015/ng-select2-component.js +2102 -2096
- package/fesm2015/ng-select2-component.js.map +1 -1
- package/lib/select2-const.d.ts +7 -7
- package/lib/select2-hint.component.d.ts +2 -2
- package/lib/select2-interfaces.d.ts +54 -54
- package/lib/select2-label.component.d.ts +2 -2
- package/lib/select2-utils.d.ts +20 -20
- package/lib/select2.component.d.ts +216 -215
- package/lib/select2.module.d.ts +2 -2
- package/ng-select2-component.d.ts +4 -4
- package/ng-select2-component.metadata.json +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +8 -8
|
@@ -1,134 +1,134 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: lib/select2-interfaces.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
/**
|
|
7
|
-
* @record
|
|
8
|
-
*/
|
|
9
|
-
export function Select2Group() { }
|
|
10
|
-
if (false) {
|
|
11
|
-
/**
|
|
12
|
-
* label of group
|
|
13
|
-
* @type {?}
|
|
14
|
-
*/
|
|
15
|
-
Select2Group.prototype.label;
|
|
16
|
-
/**
|
|
17
|
-
* options list
|
|
18
|
-
* @type {?}
|
|
19
|
-
*/
|
|
20
|
-
Select2Group.prototype.options;
|
|
21
|
-
/**
|
|
22
|
-
* add classes
|
|
23
|
-
* @type {?|undefined}
|
|
24
|
-
*/
|
|
25
|
-
Select2Group.prototype.classes;
|
|
26
|
-
/**
|
|
27
|
-
* template id
|
|
28
|
-
* @type {?|undefined}
|
|
29
|
-
*/
|
|
30
|
-
Select2Group.prototype.templateId;
|
|
31
|
-
/**
|
|
32
|
-
* template data
|
|
33
|
-
* @type {?|undefined}
|
|
34
|
-
*/
|
|
35
|
-
Select2Group.prototype.data;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* @record
|
|
39
|
-
*/
|
|
40
|
-
export function Select2Option() { }
|
|
41
|
-
if (false) {
|
|
42
|
-
/**
|
|
43
|
-
* value
|
|
44
|
-
* @type {?}
|
|
45
|
-
*/
|
|
46
|
-
Select2Option.prototype.value;
|
|
47
|
-
/**
|
|
48
|
-
* label of option
|
|
49
|
-
* @type {?}
|
|
50
|
-
*/
|
|
51
|
-
Select2Option.prototype.label;
|
|
52
|
-
/**
|
|
53
|
-
* no selectable is disabled
|
|
54
|
-
* @type {?|undefined}
|
|
55
|
-
*/
|
|
56
|
-
Select2Option.prototype.disabled;
|
|
57
|
-
/**
|
|
58
|
-
* for identification
|
|
59
|
-
* @type {?|undefined}
|
|
60
|
-
*/
|
|
61
|
-
Select2Option.prototype.id;
|
|
62
|
-
/**
|
|
63
|
-
* add classes
|
|
64
|
-
* @type {?|undefined}
|
|
65
|
-
*/
|
|
66
|
-
Select2Option.prototype.classes;
|
|
67
|
-
/**
|
|
68
|
-
* template id
|
|
69
|
-
* @type {?|undefined}
|
|
70
|
-
*/
|
|
71
|
-
Select2Option.prototype.templateId;
|
|
72
|
-
/**
|
|
73
|
-
* template data
|
|
74
|
-
* @type {?|undefined}
|
|
75
|
-
*/
|
|
76
|
-
Select2Option.prototype.data;
|
|
77
|
-
/**
|
|
78
|
-
* hide this option
|
|
79
|
-
* @type {?|undefined}
|
|
80
|
-
*/
|
|
81
|
-
Select2Option.prototype.hide;
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
* @record
|
|
85
|
-
* @template U
|
|
86
|
-
*/
|
|
87
|
-
export function Select2UpdateEvent() { }
|
|
88
|
-
if (false) {
|
|
89
|
-
/** @type {?} */
|
|
90
|
-
Select2UpdateEvent.prototype.component;
|
|
91
|
-
/** @type {?} */
|
|
92
|
-
Select2UpdateEvent.prototype.value;
|
|
93
|
-
/** @type {?} */
|
|
94
|
-
Select2UpdateEvent.prototype.options;
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* @record
|
|
98
|
-
* @template U
|
|
99
|
-
*/
|
|
100
|
-
export function Select2SearchEvent() { }
|
|
101
|
-
if (false) {
|
|
102
|
-
/** @type {?} */
|
|
103
|
-
Select2SearchEvent.prototype.component;
|
|
104
|
-
/** @type {?} */
|
|
105
|
-
Select2SearchEvent.prototype.value;
|
|
106
|
-
/** @type {?} */
|
|
107
|
-
Select2SearchEvent.prototype.search;
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* @record
|
|
111
|
-
* @template U
|
|
112
|
-
*/
|
|
113
|
-
export function Select2RemoveEvent() { }
|
|
114
|
-
if (false) {
|
|
115
|
-
/** @type {?} */
|
|
116
|
-
Select2RemoveEvent.prototype.component;
|
|
117
|
-
/** @type {?} */
|
|
118
|
-
Select2RemoveEvent.prototype.value;
|
|
119
|
-
/** @type {?} */
|
|
120
|
-
Select2RemoveEvent.prototype.removedOption;
|
|
121
|
-
}
|
|
122
|
-
/**
|
|
123
|
-
* @record
|
|
124
|
-
*/
|
|
125
|
-
export function Select2ScrollEvent() { }
|
|
126
|
-
if (false) {
|
|
127
|
-
/** @type {?} */
|
|
128
|
-
Select2ScrollEvent.prototype.component;
|
|
129
|
-
/** @type {?} */
|
|
130
|
-
Select2ScrollEvent.prototype.way;
|
|
131
|
-
/** @type {?} */
|
|
132
|
-
Select2ScrollEvent.prototype.search;
|
|
133
|
-
}
|
|
134
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview added by tsickle
|
|
3
|
+
* Generated from: lib/select2-interfaces.ts
|
|
4
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* @record
|
|
8
|
+
*/
|
|
9
|
+
export function Select2Group() { }
|
|
10
|
+
if (false) {
|
|
11
|
+
/**
|
|
12
|
+
* label of group
|
|
13
|
+
* @type {?}
|
|
14
|
+
*/
|
|
15
|
+
Select2Group.prototype.label;
|
|
16
|
+
/**
|
|
17
|
+
* options list
|
|
18
|
+
* @type {?}
|
|
19
|
+
*/
|
|
20
|
+
Select2Group.prototype.options;
|
|
21
|
+
/**
|
|
22
|
+
* add classes
|
|
23
|
+
* @type {?|undefined}
|
|
24
|
+
*/
|
|
25
|
+
Select2Group.prototype.classes;
|
|
26
|
+
/**
|
|
27
|
+
* template id
|
|
28
|
+
* @type {?|undefined}
|
|
29
|
+
*/
|
|
30
|
+
Select2Group.prototype.templateId;
|
|
31
|
+
/**
|
|
32
|
+
* template data
|
|
33
|
+
* @type {?|undefined}
|
|
34
|
+
*/
|
|
35
|
+
Select2Group.prototype.data;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @record
|
|
39
|
+
*/
|
|
40
|
+
export function Select2Option() { }
|
|
41
|
+
if (false) {
|
|
42
|
+
/**
|
|
43
|
+
* value
|
|
44
|
+
* @type {?}
|
|
45
|
+
*/
|
|
46
|
+
Select2Option.prototype.value;
|
|
47
|
+
/**
|
|
48
|
+
* label of option
|
|
49
|
+
* @type {?}
|
|
50
|
+
*/
|
|
51
|
+
Select2Option.prototype.label;
|
|
52
|
+
/**
|
|
53
|
+
* no selectable is disabled
|
|
54
|
+
* @type {?|undefined}
|
|
55
|
+
*/
|
|
56
|
+
Select2Option.prototype.disabled;
|
|
57
|
+
/**
|
|
58
|
+
* for identification
|
|
59
|
+
* @type {?|undefined}
|
|
60
|
+
*/
|
|
61
|
+
Select2Option.prototype.id;
|
|
62
|
+
/**
|
|
63
|
+
* add classes
|
|
64
|
+
* @type {?|undefined}
|
|
65
|
+
*/
|
|
66
|
+
Select2Option.prototype.classes;
|
|
67
|
+
/**
|
|
68
|
+
* template id
|
|
69
|
+
* @type {?|undefined}
|
|
70
|
+
*/
|
|
71
|
+
Select2Option.prototype.templateId;
|
|
72
|
+
/**
|
|
73
|
+
* template data
|
|
74
|
+
* @type {?|undefined}
|
|
75
|
+
*/
|
|
76
|
+
Select2Option.prototype.data;
|
|
77
|
+
/**
|
|
78
|
+
* hide this option
|
|
79
|
+
* @type {?|undefined}
|
|
80
|
+
*/
|
|
81
|
+
Select2Option.prototype.hide;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @record
|
|
85
|
+
* @template U
|
|
86
|
+
*/
|
|
87
|
+
export function Select2UpdateEvent() { }
|
|
88
|
+
if (false) {
|
|
89
|
+
/** @type {?} */
|
|
90
|
+
Select2UpdateEvent.prototype.component;
|
|
91
|
+
/** @type {?} */
|
|
92
|
+
Select2UpdateEvent.prototype.value;
|
|
93
|
+
/** @type {?} */
|
|
94
|
+
Select2UpdateEvent.prototype.options;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* @record
|
|
98
|
+
* @template U
|
|
99
|
+
*/
|
|
100
|
+
export function Select2SearchEvent() { }
|
|
101
|
+
if (false) {
|
|
102
|
+
/** @type {?} */
|
|
103
|
+
Select2SearchEvent.prototype.component;
|
|
104
|
+
/** @type {?} */
|
|
105
|
+
Select2SearchEvent.prototype.value;
|
|
106
|
+
/** @type {?} */
|
|
107
|
+
Select2SearchEvent.prototype.search;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* @record
|
|
111
|
+
* @template U
|
|
112
|
+
*/
|
|
113
|
+
export function Select2RemoveEvent() { }
|
|
114
|
+
if (false) {
|
|
115
|
+
/** @type {?} */
|
|
116
|
+
Select2RemoveEvent.prototype.component;
|
|
117
|
+
/** @type {?} */
|
|
118
|
+
Select2RemoveEvent.prototype.value;
|
|
119
|
+
/** @type {?} */
|
|
120
|
+
Select2RemoveEvent.prototype.removedOption;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* @record
|
|
124
|
+
*/
|
|
125
|
+
export function Select2ScrollEvent() { }
|
|
126
|
+
if (false) {
|
|
127
|
+
/** @type {?} */
|
|
128
|
+
Select2ScrollEvent.prototype.component;
|
|
129
|
+
/** @type {?} */
|
|
130
|
+
Select2ScrollEvent.prototype.way;
|
|
131
|
+
/** @type {?} */
|
|
132
|
+
Select2ScrollEvent.prototype.search;
|
|
133
|
+
}
|
|
134
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0Mi1pbnRlcmZhY2VzLmpzIiwic291cmNlUm9vdCI6Ii9tZWRpYS96ZWZsaW5nL1pBSURFLTYvR2l0L25nLXNlbGVjdDIvcHJvamVjdHMvbmctc2VsZWN0Mi1jb21wb25lbnQvc3JjLyIsInNvdXJjZXMiOlsibGliL3NlbGVjdDItaW50ZXJmYWNlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7OztBQUVBLGtDQVdDOzs7Ozs7SUFURyw2QkFBYzs7Ozs7SUFFZCwrQkFBeUI7Ozs7O0lBRXpCLCtCQUFpQjs7Ozs7SUFFakIsa0NBQW9COzs7OztJQUVwQiw0QkFBVzs7Ozs7QUFHZixtQ0FpQkM7Ozs7OztJQWZHLDhCQUFvQjs7Ozs7SUFFcEIsOEJBQWM7Ozs7O0lBRWQsaUNBQW1COzs7OztJQUVuQiwyQkFBWTs7Ozs7SUFFWixnQ0FBaUI7Ozs7O0lBRWpCLG1DQUFvQjs7Ozs7SUFFcEIsNkJBQVc7Ozs7O0lBRVgsNkJBQWU7Ozs7OztBQVNuQix3Q0FJQzs7O0lBSEcsdUNBQW1COztJQUNuQixtQ0FBUzs7SUFDVCxxQ0FBeUI7Ozs7OztBQUc3Qix3Q0FJQzs7O0lBSEcsdUNBQW1COztJQUNuQixtQ0FBUzs7SUFDVCxvQ0FBZTs7Ozs7O0FBR25CLHdDQUlDOzs7SUFIRyx1Q0FBbUI7O0lBQ25CLG1DQUFTOztJQUNULDJDQUE2Qjs7Ozs7QUFHakMsd0NBSUM7OztJQUhHLHVDQUFtQjs7SUFDbkIsaUNBQW1COztJQUNuQixvQ0FBZSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNlbGVjdDIgfSBmcm9tICcuL3NlbGVjdDIuY29tcG9uZW50JztcblxuZXhwb3J0IGludGVyZmFjZSBTZWxlY3QyR3JvdXAge1xuICAgIC8qKiBsYWJlbCBvZiBncm91cCAqL1xuICAgIGxhYmVsOiBzdHJpbmc7XG4gICAgLyoqIG9wdGlvbnMgbGlzdCAqL1xuICAgIG9wdGlvbnM6IFNlbGVjdDJPcHRpb25bXTtcbiAgICAvKiogYWRkIGNsYXNzZXMgICovXG4gICAgY2xhc3Nlcz86IHN0cmluZztcbiAgICAvKiogdGVtcGxhdGUgaWQgICovXG4gICAgdGVtcGxhdGVJZD86IHN0cmluZztcbiAgICAvKiogdGVtcGxhdGUgZGF0YSAgKi9cbiAgICBkYXRhPzogYW55O1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFNlbGVjdDJPcHRpb24ge1xuICAgIC8qKiB2YWx1ZSAgKi9cbiAgICB2YWx1ZTogU2VsZWN0MlZhbHVlO1xuICAgIC8qKiBsYWJlbCBvZiBvcHRpb24gKi9cbiAgICBsYWJlbDogc3RyaW5nO1xuICAgIC8qKiBubyBzZWxlY3RhYmxlIGlzIGRpc2FibGVkICovXG4gICAgZGlzYWJsZWQ/OiBib29sZWFuO1xuICAgIC8qKiBmb3IgaWRlbnRpZmljYXRpb24gKi9cbiAgICBpZD86IHN0cmluZztcbiAgICAvKiogYWRkIGNsYXNzZXMgICovXG4gICAgY2xhc3Nlcz86IHN0cmluZztcbiAgICAvKiogdGVtcGxhdGUgaWQgICovXG4gICAgdGVtcGxhdGVJZD86IHN0cmluZztcbiAgICAvKiogdGVtcGxhdGUgZGF0YSAgKi9cbiAgICBkYXRhPzogYW55O1xuICAgIC8qKiBoaWRlIHRoaXMgb3B0aW9uICovXG4gICAgaGlkZT86IGJvb2xlYW47XG59XG5cbmV4cG9ydCB0eXBlIFNlbGVjdDJWYWx1ZSA9IHN0cmluZyB8IG51bWJlciB8IGJvb2xlYW4gfCBvYmplY3Q7XG5cbmV4cG9ydCB0eXBlIFNlbGVjdDJVcGRhdGVWYWx1ZSA9IFNlbGVjdDJWYWx1ZSB8IFNlbGVjdDJWYWx1ZVtdO1xuXG5leHBvcnQgdHlwZSBTZWxlY3QyRGF0YSA9IChTZWxlY3QyR3JvdXAgfCBTZWxlY3QyT3B0aW9uKVtdO1xuXG5leHBvcnQgaW50ZXJmYWNlIFNlbGVjdDJVcGRhdGVFdmVudDxVIGV4dGVuZHMgU2VsZWN0MlVwZGF0ZVZhbHVlID0gU2VsZWN0MlZhbHVlPiB7XG4gICAgY29tcG9uZW50OiBTZWxlY3QyO1xuICAgIHZhbHVlOiBVO1xuICAgIG9wdGlvbnM6IFNlbGVjdDJPcHRpb25bXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBTZWxlY3QyU2VhcmNoRXZlbnQ8VSBleHRlbmRzIFNlbGVjdDJVcGRhdGVWYWx1ZSA9IFNlbGVjdDJWYWx1ZT4ge1xuICAgIGNvbXBvbmVudDogU2VsZWN0MjtcbiAgICB2YWx1ZTogVTtcbiAgICBzZWFyY2g6IHN0cmluZztcbn1cblxuZXhwb3J0IGludGVyZmFjZSBTZWxlY3QyUmVtb3ZlRXZlbnQ8VSBleHRlbmRzIFNlbGVjdDJVcGRhdGVWYWx1ZSA9IFNlbGVjdDJWYWx1ZT4ge1xuICAgIGNvbXBvbmVudDogU2VsZWN0MjtcbiAgICB2YWx1ZTogVTtcbiAgICByZW1vdmVkT3B0aW9uOiBTZWxlY3QyT3B0aW9uO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIFNlbGVjdDJTY3JvbGxFdmVudCB7XG4gICAgY29tcG9uZW50OiBTZWxlY3QyO1xuICAgIHdheTogJ3VwJyB8ICdkb3duJztcbiAgICBzZWFyY2g6IHN0cmluZztcbn1cbiJdfQ==
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: lib/select2-label.component.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Directive } from '@angular/core';
|
|
7
|
-
export class Select2Label {
|
|
8
|
-
}
|
|
9
|
-
Select2Label.decorators = [
|
|
10
|
-
{ type: Directive, args: [{ selector: 'select2-label' },] }
|
|
11
|
-
];
|
|
12
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview added by tsickle
|
|
3
|
+
* Generated from: lib/select2-label.component.ts
|
|
4
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
+
*/
|
|
6
|
+
import { Directive } from '@angular/core';
|
|
7
|
+
export class Select2Label {
|
|
8
|
+
}
|
|
9
|
+
Select2Label.decorators = [
|
|
10
|
+
{ type: Directive, args: [{ selector: 'select2-label' },] }
|
|
11
|
+
];
|
|
12
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0Mi1sYWJlbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiL21lZGlhL3plZmxpbmcvWkFJREUtNi9HaXQvbmctc2VsZWN0Mi9wcm9qZWN0cy9uZy1zZWxlY3QyLWNvbXBvbmVudC9zcmMvIiwic291cmNlcyI6WyJsaWIvc2VsZWN0Mi1sYWJlbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRzFDLE1BQU0sT0FBTyxZQUFZOzs7WUFEeEIsU0FBUyxTQUFDLEVBQUUsUUFBUSxFQUFFLGVBQWUsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHsgc2VsZWN0b3I6ICdzZWxlY3QyLWxhYmVsJyB9KVxuZXhwb3J0IGNsYXNzIFNlbGVjdDJMYWJlbCB7fVxuIl19
|