jqwidgets-ng 14.1.17 → 14.1.19

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.
Files changed (36) hide show
  1. package/esm2020/jqxcheckboxgroup/angular_jqxcheckboxgroup.mjs +264 -0
  2. package/esm2020/jqxcheckboxgroup/angular_jqxcheckboxgroup.module.mjs +21 -0
  3. package/esm2020/jqxcheckboxgroup/index.mjs +1 -0
  4. package/esm2020/jqxcheckboxgroup/jqwidgets-ng-jqxcheckboxgroup.mjs +4 -0
  5. package/esm2020/jqxcheckboxgroup/public_api.mjs +2 -0
  6. package/esm2020/jqxdropdownlist/angular_jqxdropdownlist.mjs +16 -2
  7. package/esm2020/jqxgrid/angular_jqxgrid.mjs +16 -2
  8. package/esm2020/jqxradiobuttongroup/angular_jqxradiobuttongroup.mjs +261 -0
  9. package/esm2020/jqxradiobuttongroup/angular_jqxradiobuttongroup.module.mjs +21 -0
  10. package/esm2020/jqxradiobuttongroup/index.mjs +1 -0
  11. package/esm2020/jqxradiobuttongroup/jqwidgets-ng-jqxradiobuttongroup.mjs +4 -0
  12. package/esm2020/jqxradiobuttongroup/public_api.mjs +2 -0
  13. package/fesm2015/jqwidgets-ng-jqxcheckboxgroup.mjs +292 -0
  14. package/fesm2015/jqwidgets-ng-jqxdropdownlist.mjs +16 -2
  15. package/fesm2015/jqwidgets-ng-jqxgrid.mjs +16 -2
  16. package/fesm2015/jqwidgets-ng-jqxradiobuttongroup.mjs +289 -0
  17. package/fesm2020/jqwidgets-ng-jqxcheckboxgroup.mjs +292 -0
  18. package/fesm2020/jqwidgets-ng-jqxdropdownlist.mjs +16 -2
  19. package/fesm2020/jqwidgets-ng-jqxgrid.mjs +16 -2
  20. package/fesm2020/jqwidgets-ng-jqxradiobuttongroup.mjs +289 -0
  21. package/jqwidgets.d.ts +65 -0
  22. package/jqxcheckboxgroup/angular_jqxcheckboxgroup.d.ts +57 -0
  23. package/jqxcheckboxgroup/angular_jqxcheckboxgroup.module.d.ts +8 -0
  24. package/jqxcheckboxgroup/index.d.ts +1 -0
  25. package/jqxcheckboxgroup/jqwidgets-ng-jqxcheckboxgroup.d.ts +5 -0
  26. package/jqxcheckboxgroup/package.json +13 -0
  27. package/jqxcheckboxgroup/public_api.d.ts +2 -0
  28. package/jqxdropdownlist/angular_jqxdropdownlist.d.ts +3 -1
  29. package/jqxgrid/angular_jqxgrid.d.ts +3 -1
  30. package/jqxradiobuttongroup/angular_jqxradiobuttongroup.d.ts +56 -0
  31. package/jqxradiobuttongroup/angular_jqxradiobuttongroup.module.d.ts +8 -0
  32. package/jqxradiobuttongroup/index.d.ts +1 -0
  33. package/jqxradiobuttongroup/jqwidgets-ng-jqxradiobuttongroup.d.ts +5 -0
  34. package/jqxradiobuttongroup/package.json +13 -0
  35. package/jqxradiobuttongroup/public_api.d.ts +2 -0
  36. package/package.json +1 -1
@@ -0,0 +1,261 @@
1
+ /// <reference path="../../jqwidgets.d.ts" />
2
+ /// <reference path="../../jqwidgets.d.ts" />
3
+ import { Component, Input } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export class jqxRadioButtonGroupComponent {
6
+ constructor(containerElement) {
7
+ this.autoCreate = true;
8
+ this.properties = ['change', 'disabled', 'items', 'value', 'layout', 'labelPosition', 'rtl', 'theme'];
9
+ this.elementRef = containerElement;
10
+ }
11
+ ngOnInit() {
12
+ if (this.autoCreate) {
13
+ this.createComponent();
14
+ }
15
+ }
16
+ ;
17
+ ngOnChanges(changes) {
18
+ if (this.host) {
19
+ for (let i = 0; i < this.properties.length; i++) {
20
+ let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
21
+ let areEqual = false;
22
+ if (this[attrName] !== undefined) {
23
+ if (typeof this[attrName] === 'object') {
24
+ if (this[attrName] instanceof Array) {
25
+ areEqual = this.arraysEqual(this[attrName], this.host.jqxRadioButtonGroup(this.properties[i]));
26
+ }
27
+ if (areEqual) {
28
+ return false;
29
+ }
30
+ this.host.jqxRadioButtonGroup(this.properties[i], this[attrName]);
31
+ continue;
32
+ }
33
+ if (this[attrName] !== this.host.jqxRadioButtonGroup(this.properties[i])) {
34
+ this.host.jqxRadioButtonGroup(this.properties[i], this[attrName]);
35
+ }
36
+ }
37
+ }
38
+ }
39
+ }
40
+ arraysEqual(attrValue, hostValue) {
41
+ if ((attrValue && !hostValue) || (!attrValue && hostValue)) {
42
+ return false;
43
+ }
44
+ if (attrValue.length != hostValue.length) {
45
+ return false;
46
+ }
47
+ for (let i = 0; i < attrValue.length; i++) {
48
+ if (attrValue[i] !== hostValue[i]) {
49
+ return false;
50
+ }
51
+ }
52
+ return true;
53
+ }
54
+ manageAttributes() {
55
+ let options = {};
56
+ for (let i = 0; i < this.properties.length; i++) {
57
+ let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
58
+ if (this[attrName] !== undefined) {
59
+ options[this.properties[i]] = this[attrName];
60
+ }
61
+ }
62
+ return options;
63
+ }
64
+ moveClasses(parentEl, childEl) {
65
+ let classes = parentEl.classList;
66
+ if (classes.length > 0) {
67
+ childEl.classList.add(...classes);
68
+ }
69
+ parentEl.className = '';
70
+ }
71
+ moveStyles(parentEl, childEl) {
72
+ let style = parentEl.style.cssText;
73
+ childEl.style.cssText = style;
74
+ parentEl.style.cssText = '';
75
+ }
76
+ createComponent(options) {
77
+ if (this.host) {
78
+ return;
79
+ }
80
+ if (options) {
81
+ JQXLite.extend(options, this.manageAttributes());
82
+ }
83
+ else {
84
+ options = this.manageAttributes();
85
+ }
86
+ this.host = JQXLite(this.elementRef.nativeElement.firstChild);
87
+ this.moveClasses(this.elementRef.nativeElement, this.host[0]);
88
+ this.moveStyles(this.elementRef.nativeElement, this.host[0]);
89
+ this.__wireEvents__();
90
+ this.widgetObject = jqwidgets.createInstance(this.host, 'jqxRadioButtonGroup', options);
91
+ }
92
+ createWidget(options) {
93
+ this.createComponent(options);
94
+ }
95
+ __updateRect__() {
96
+ if (this.host)
97
+ this.host.css({ width: this.attrWidth, height: this.attrHeight });
98
+ }
99
+ setOptions(options) {
100
+ this.host.jqxRadioButtonGroup('setOptions', options);
101
+ }
102
+ // jqxRadioButtonGroupComponent properties
103
+ change(arg) {
104
+ if (arg !== undefined) {
105
+ this.host.jqxRadioButtonGroup('change', arg);
106
+ }
107
+ else {
108
+ return this.host.jqxRadioButtonGroup('change');
109
+ }
110
+ }
111
+ disabled(arg) {
112
+ if (arg !== undefined) {
113
+ this.host.jqxRadioButtonGroup('disabled', arg);
114
+ }
115
+ else {
116
+ return this.host.jqxRadioButtonGroup('disabled');
117
+ }
118
+ }
119
+ items(arg) {
120
+ if (arg !== undefined) {
121
+ this.host.jqxRadioButtonGroup('items', arg);
122
+ }
123
+ else {
124
+ return this.host.jqxRadioButtonGroup('items');
125
+ }
126
+ }
127
+ value(arg) {
128
+ if (arg !== undefined) {
129
+ this.host.jqxRadioButtonGroup('value', arg);
130
+ }
131
+ else {
132
+ return this.host.jqxRadioButtonGroup('value');
133
+ }
134
+ }
135
+ layout(arg) {
136
+ if (arg !== undefined) {
137
+ this.host.jqxRadioButtonGroup('layout', arg);
138
+ }
139
+ else {
140
+ return this.host.jqxRadioButtonGroup('layout');
141
+ }
142
+ }
143
+ labelPosition(arg) {
144
+ if (arg !== undefined) {
145
+ this.host.jqxRadioButtonGroup('labelPosition', arg);
146
+ }
147
+ else {
148
+ return this.host.jqxRadioButtonGroup('labelPosition');
149
+ }
150
+ }
151
+ rtl(arg) {
152
+ if (arg !== undefined) {
153
+ this.host.jqxRadioButtonGroup('rtl', arg);
154
+ }
155
+ else {
156
+ return this.host.jqxRadioButtonGroup('rtl');
157
+ }
158
+ }
159
+ theme(arg) {
160
+ if (arg !== undefined) {
161
+ this.host.jqxRadioButtonGroup('theme', arg);
162
+ }
163
+ else {
164
+ return this.host.jqxRadioButtonGroup('theme');
165
+ }
166
+ }
167
+ // jqxRadioButtonGroupComponent functions
168
+ getValue() {
169
+ return this.host.jqxRadioButtonGroup('getValue');
170
+ }
171
+ getValueAt(index) {
172
+ return this.host.jqxRadioButtonGroup('getValueAt', index);
173
+ }
174
+ enableAt(index) {
175
+ this.host.jqxRadioButtonGroup('enableAt', index);
176
+ }
177
+ disableAt(index) {
178
+ this.host.jqxRadioButtonGroup('disableAt', index);
179
+ }
180
+ checkAt(index) {
181
+ this.host.jqxRadioButtonGroup('checkAt', index);
182
+ }
183
+ uncheckAt(index) {
184
+ this.host.jqxRadioButtonGroup('uncheckAt', index);
185
+ }
186
+ uncheckAll() {
187
+ this.host.jqxRadioButtonGroup('uncheckAll');
188
+ }
189
+ checkValue(value) {
190
+ this.host.jqxRadioButtonGroup('checkValue', value);
191
+ }
192
+ uncheckValue(value) {
193
+ this.host.jqxRadioButtonGroup('uncheckValue', value);
194
+ }
195
+ disable() {
196
+ this.host.jqxRadioButtonGroup('disable');
197
+ }
198
+ destroy() {
199
+ this.host.jqxRadioButtonGroup('destroy');
200
+ }
201
+ enable() {
202
+ this.host.jqxRadioButtonGroup('enable');
203
+ }
204
+ render() {
205
+ this.host.jqxRadioButtonGroup('render');
206
+ }
207
+ val(value) {
208
+ if (value !== undefined) {
209
+ return this.host.jqxRadioButtonGroup('val', value);
210
+ }
211
+ else {
212
+ return this.host.jqxRadioButtonGroup('val');
213
+ }
214
+ }
215
+ ;
216
+ // jqxRadioButtonGroupComponent events
217
+ __wireEvents__() {
218
+ }
219
+ } //jqxRadioButtonGroupComponent
220
+ jqxRadioButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
221
+ jqxRadioButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxRadioButtonGroupComponent, selector: "jqxRadioButtonGroup", inputs: { attrChange: ["change", "attrChange"], attrDisabled: ["disabled", "attrDisabled"], attrItems: ["items", "attrItems"], attrValue: ["value", "attrValue"], attrLayout: ["layout", "attrLayout"], attrLabelPosition: ["labelPosition", "attrLabelPosition"], attrRtl: ["rtl", "attrRtl"], attrTheme: ["theme", "attrTheme"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true });
222
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupComponent, decorators: [{
223
+ type: Component,
224
+ args: [{
225
+ selector: 'jqxRadioButtonGroup',
226
+ template: '<div><ng-content></ng-content></div>'
227
+ }]
228
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { attrChange: [{
229
+ type: Input,
230
+ args: ['change']
231
+ }], attrDisabled: [{
232
+ type: Input,
233
+ args: ['disabled']
234
+ }], attrItems: [{
235
+ type: Input,
236
+ args: ['items']
237
+ }], attrValue: [{
238
+ type: Input,
239
+ args: ['value']
240
+ }], attrLayout: [{
241
+ type: Input,
242
+ args: ['layout']
243
+ }], attrLabelPosition: [{
244
+ type: Input,
245
+ args: ['labelPosition']
246
+ }], attrRtl: [{
247
+ type: Input,
248
+ args: ['rtl']
249
+ }], attrTheme: [{
250
+ type: Input,
251
+ args: ['theme']
252
+ }], attrWidth: [{
253
+ type: Input,
254
+ args: ['width']
255
+ }], attrHeight: [{
256
+ type: Input,
257
+ args: ['height']
258
+ }], autoCreate: [{
259
+ type: Input,
260
+ args: ['auto-create']
261
+ }] } });
@@ -0,0 +1,21 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { FormsModule } from '@angular/forms';
3
+ import { jqxRadioButtonGroupComponent } from './angular_jqxradiobuttongroup';
4
+ import * as i0 from "@angular/core";
5
+ export class jqxRadioButtonGroupModule {
6
+ }
7
+ jqxRadioButtonGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8
+ jqxRadioButtonGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupModule, declarations: [jqxRadioButtonGroupComponent], imports: [FormsModule], exports: [jqxRadioButtonGroupComponent] });
9
+ jqxRadioButtonGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupModule, imports: [[
10
+ FormsModule
11
+ ]] });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupModule, decorators: [{
13
+ type: NgModule,
14
+ args: [{
15
+ imports: [
16
+ FormsModule
17
+ ],
18
+ declarations: [jqxRadioButtonGroupComponent],
19
+ exports: [jqxRadioButtonGroupComponent]
20
+ }]
21
+ }] });
@@ -0,0 +1 @@
1
+ export * from './public_api';
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
@@ -0,0 +1,2 @@
1
+ export * from './angular_jqxradiobuttongroup';
2
+ export * from './angular_jqxradiobuttongroup.module';
@@ -0,0 +1,292 @@
1
+ import '../jqwidgets/jqxcore';
2
+ import '../jqwidgets/jqxcheckbox';
3
+ import '../jqwidgets/jqxcheckboxgroup';
4
+ import * as i0 from '@angular/core';
5
+ import { Component, Input, NgModule } from '@angular/core';
6
+ import { FormsModule } from '@angular/forms';
7
+
8
+ /// <reference path="../../jqwidgets.d.ts" />
9
+ class jqxCheckBoxGroupComponent {
10
+ constructor(containerElement) {
11
+ this.autoCreate = true;
12
+ this.properties = ['change', 'disabled', 'items', 'value', 'layout', 'labelPosition', 'rtl', 'theme'];
13
+ this.elementRef = containerElement;
14
+ }
15
+ ngOnInit() {
16
+ if (this.autoCreate) {
17
+ this.createComponent();
18
+ }
19
+ }
20
+ ;
21
+ ngOnChanges(changes) {
22
+ if (this.host) {
23
+ for (let i = 0; i < this.properties.length; i++) {
24
+ let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
25
+ let areEqual = false;
26
+ if (this[attrName] !== undefined) {
27
+ if (typeof this[attrName] === 'object') {
28
+ if (this[attrName] instanceof Array) {
29
+ areEqual = this.arraysEqual(this[attrName], this.host.jqxCheckBoxGroup(this.properties[i]));
30
+ }
31
+ if (areEqual) {
32
+ return false;
33
+ }
34
+ this.host.jqxCheckBoxGroup(this.properties[i], this[attrName]);
35
+ continue;
36
+ }
37
+ if (this[attrName] !== this.host.jqxCheckBoxGroup(this.properties[i])) {
38
+ this.host.jqxCheckBoxGroup(this.properties[i], this[attrName]);
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
44
+ arraysEqual(attrValue, hostValue) {
45
+ if ((attrValue && !hostValue) || (!attrValue && hostValue)) {
46
+ return false;
47
+ }
48
+ if (attrValue.length != hostValue.length) {
49
+ return false;
50
+ }
51
+ for (let i = 0; i < attrValue.length; i++) {
52
+ if (attrValue[i] !== hostValue[i]) {
53
+ return false;
54
+ }
55
+ }
56
+ return true;
57
+ }
58
+ manageAttributes() {
59
+ let options = {};
60
+ for (let i = 0; i < this.properties.length; i++) {
61
+ let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
62
+ if (this[attrName] !== undefined) {
63
+ options[this.properties[i]] = this[attrName];
64
+ }
65
+ }
66
+ return options;
67
+ }
68
+ moveClasses(parentEl, childEl) {
69
+ let classes = parentEl.classList;
70
+ if (classes.length > 0) {
71
+ childEl.classList.add(...classes);
72
+ }
73
+ parentEl.className = '';
74
+ }
75
+ moveStyles(parentEl, childEl) {
76
+ let style = parentEl.style.cssText;
77
+ childEl.style.cssText = style;
78
+ parentEl.style.cssText = '';
79
+ }
80
+ createComponent(options) {
81
+ if (this.host) {
82
+ return;
83
+ }
84
+ if (options) {
85
+ JQXLite.extend(options, this.manageAttributes());
86
+ }
87
+ else {
88
+ options = this.manageAttributes();
89
+ }
90
+ this.host = JQXLite(this.elementRef.nativeElement.firstChild);
91
+ this.moveClasses(this.elementRef.nativeElement, this.host[0]);
92
+ this.moveStyles(this.elementRef.nativeElement, this.host[0]);
93
+ this.__wireEvents__();
94
+ this.widgetObject = jqwidgets.createInstance(this.host, 'jqxCheckBoxGroup', options);
95
+ }
96
+ createWidget(options) {
97
+ this.createComponent(options);
98
+ }
99
+ __updateRect__() {
100
+ if (this.host)
101
+ this.host.css({ width: this.attrWidth, height: this.attrHeight });
102
+ }
103
+ setOptions(options) {
104
+ this.host.jqxCheckBoxGroup('setOptions', options);
105
+ }
106
+ // jqxCheckBoxGroupComponent properties
107
+ change(arg) {
108
+ if (arg !== undefined) {
109
+ this.host.jqxCheckBoxGroup('change', arg);
110
+ }
111
+ else {
112
+ return this.host.jqxCheckBoxGroup('change');
113
+ }
114
+ }
115
+ disabled(arg) {
116
+ if (arg !== undefined) {
117
+ this.host.jqxCheckBoxGroup('disabled', arg);
118
+ }
119
+ else {
120
+ return this.host.jqxCheckBoxGroup('disabled');
121
+ }
122
+ }
123
+ items(arg) {
124
+ if (arg !== undefined) {
125
+ this.host.jqxCheckBoxGroup('items', arg);
126
+ }
127
+ else {
128
+ return this.host.jqxCheckBoxGroup('items');
129
+ }
130
+ }
131
+ value(arg) {
132
+ if (arg !== undefined) {
133
+ this.host.jqxCheckBoxGroup('value', arg);
134
+ }
135
+ else {
136
+ return this.host.jqxCheckBoxGroup('value');
137
+ }
138
+ }
139
+ layout(arg) {
140
+ if (arg !== undefined) {
141
+ this.host.jqxCheckBoxGroup('layout', arg);
142
+ }
143
+ else {
144
+ return this.host.jqxCheckBoxGroup('layout');
145
+ }
146
+ }
147
+ labelPosition(arg) {
148
+ if (arg !== undefined) {
149
+ this.host.jqxCheckBoxGroup('labelPosition', arg);
150
+ }
151
+ else {
152
+ return this.host.jqxCheckBoxGroup('labelPosition');
153
+ }
154
+ }
155
+ rtl(arg) {
156
+ if (arg !== undefined) {
157
+ this.host.jqxCheckBoxGroup('rtl', arg);
158
+ }
159
+ else {
160
+ return this.host.jqxCheckBoxGroup('rtl');
161
+ }
162
+ }
163
+ theme(arg) {
164
+ if (arg !== undefined) {
165
+ this.host.jqxCheckBoxGroup('theme', arg);
166
+ }
167
+ else {
168
+ return this.host.jqxCheckBoxGroup('theme');
169
+ }
170
+ }
171
+ // jqxCheckBoxGroupComponent functions
172
+ getValue() {
173
+ return this.host.jqxCheckBoxGroup('getValue');
174
+ }
175
+ getValueAt(index) {
176
+ return this.host.jqxCheckBoxGroup('getValueAt', index);
177
+ }
178
+ enableAt(index) {
179
+ this.host.jqxCheckBoxGroup('enableAt', index);
180
+ }
181
+ disableAt(index) {
182
+ this.host.jqxCheckBoxGroup('disableAt', index);
183
+ }
184
+ checkAt(index) {
185
+ this.host.jqxCheckBoxGroup('checkAt', index);
186
+ }
187
+ uncheckAt(index) {
188
+ this.host.jqxCheckBoxGroup('uncheckAt', index);
189
+ }
190
+ uncheckAll() {
191
+ this.host.jqxCheckBoxGroup('uncheckAll');
192
+ }
193
+ checkAll() {
194
+ this.host.jqxCheckBoxGroup('checkAll');
195
+ }
196
+ checkValue(value) {
197
+ this.host.jqxCheckBoxGroup('checkValue', value);
198
+ }
199
+ uncheckValue(value) {
200
+ this.host.jqxCheckBoxGroup('uncheckValue', value);
201
+ }
202
+ disable() {
203
+ this.host.jqxCheckBoxGroup('disable');
204
+ }
205
+ destroy() {
206
+ this.host.jqxCheckBoxGroup('destroy');
207
+ }
208
+ enable() {
209
+ this.host.jqxCheckBoxGroup('enable');
210
+ }
211
+ render() {
212
+ this.host.jqxCheckBoxGroup('render');
213
+ }
214
+ val(value) {
215
+ if (value !== undefined) {
216
+ return this.host.jqxCheckBoxGroup('val', value);
217
+ }
218
+ else {
219
+ return this.host.jqxCheckBoxGroup('val');
220
+ }
221
+ }
222
+ ;
223
+ // jqxCheckBoxGroupComponent events
224
+ __wireEvents__() {
225
+ }
226
+ } //jqxCheckBoxGroupComponent
227
+ jqxCheckBoxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
228
+ jqxCheckBoxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxCheckBoxGroupComponent, selector: "jqxCheckBoxGroup", inputs: { attrChange: ["change", "attrChange"], attrDisabled: ["disabled", "attrDisabled"], attrItems: ["items", "attrItems"], attrValue: ["value", "attrValue"], attrLayout: ["layout", "attrLayout"], attrLabelPosition: ["labelPosition", "attrLabelPosition"], attrRtl: ["rtl", "attrRtl"], attrTheme: ["theme", "attrTheme"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true });
229
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupComponent, decorators: [{
230
+ type: Component,
231
+ args: [{
232
+ selector: 'jqxCheckBoxGroup',
233
+ template: '<div><ng-content></ng-content></div>'
234
+ }]
235
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { attrChange: [{
236
+ type: Input,
237
+ args: ['change']
238
+ }], attrDisabled: [{
239
+ type: Input,
240
+ args: ['disabled']
241
+ }], attrItems: [{
242
+ type: Input,
243
+ args: ['items']
244
+ }], attrValue: [{
245
+ type: Input,
246
+ args: ['value']
247
+ }], attrLayout: [{
248
+ type: Input,
249
+ args: ['layout']
250
+ }], attrLabelPosition: [{
251
+ type: Input,
252
+ args: ['labelPosition']
253
+ }], attrRtl: [{
254
+ type: Input,
255
+ args: ['rtl']
256
+ }], attrTheme: [{
257
+ type: Input,
258
+ args: ['theme']
259
+ }], attrWidth: [{
260
+ type: Input,
261
+ args: ['width']
262
+ }], attrHeight: [{
263
+ type: Input,
264
+ args: ['height']
265
+ }], autoCreate: [{
266
+ type: Input,
267
+ args: ['auto-create']
268
+ }] } });
269
+
270
+ class jqxCheckBoxGroupModule {
271
+ }
272
+ jqxCheckBoxGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
273
+ jqxCheckBoxGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, declarations: [jqxCheckBoxGroupComponent], imports: [FormsModule], exports: [jqxCheckBoxGroupComponent] });
274
+ jqxCheckBoxGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, imports: [[
275
+ FormsModule
276
+ ]] });
277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, decorators: [{
278
+ type: NgModule,
279
+ args: [{
280
+ imports: [
281
+ FormsModule
282
+ ],
283
+ declarations: [jqxCheckBoxGroupComponent],
284
+ exports: [jqxCheckBoxGroupComponent]
285
+ }]
286
+ }] });
287
+
288
+ /**
289
+ * Generated bundle index. Do not edit.
290
+ */
291
+
292
+ export { jqxCheckBoxGroupComponent, jqxCheckBoxGroupModule };
@@ -18,7 +18,7 @@ const CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR = {
18
18
  class jqxDropDownListComponent {
19
19
  constructor(containerElement) {
20
20
  this.autoCreate = true;
21
- this.properties = ['autoOpen', 'autoDropDownHeight', 'animationType', 'checkboxes', 'closeDelay', 'disabled', 'displayMember', 'dropDownHorizontalAlignment', 'dropDownVerticalAlignment', 'dropDownHeight', 'dropDownWidth', 'enableSelection', 'enableBrowserBoundsDetection', 'enableHover', 'filterable', 'filterHeight', 'filterDelay', 'filterPlaceHolder', 'height', 'incrementalSearch', 'incrementalSearchDelay', 'itemHeight', 'openDelay', 'placeHolder', 'popupZIndex', 'rtl', 'renderer', 'selectionRenderer', 'searchMode', 'source', 'selectedIndex', 'theme', 'template', 'valueMember', 'width'];
21
+ this.properties = ['autoOpen', 'autoDropDownHeight', 'animationType', 'checkboxes', 'closeDelay', 'disabled', 'displayMember', 'dropDownHorizontalAlignment', 'dropDownVerticalAlignment', 'dropDownHeight', 'dropDownWidth', 'enableSelection', 'enableBrowserBoundsDetection', 'enableHover', 'filterable', 'filterHeight', 'filterDelay', 'filterPlaceHolder', 'height', 'incrementalSearch', 'incrementalSearchDelay', 'itemHeight', 'openDelay', 'placeHolder', 'popupZIndex', 'rtl', 'renderer', 'selectionRenderer', 'searchMode', 'source', 'selectedIndex', 'scrollBarSize', 'theme', 'template', 'valueMember', 'width'];
22
22
  this.onTouchedCallback = noop;
23
23
  this.onChangeCallback = noop;
24
24
  // jqxDropDownListComponent events
@@ -507,6 +507,17 @@ class jqxDropDownListComponent {
507
507
  return this.host.jqxDropDownList('selectedIndex');
508
508
  }
509
509
  }
510
+ scrollBarSize(arg) {
511
+ if (this.autoCreate && !this.host) {
512
+ this.createComponent();
513
+ }
514
+ if (arg !== undefined) {
515
+ this.host.jqxDropDownList('scrollBarSize', arg);
516
+ }
517
+ else {
518
+ return this.host.jqxDropDownList('scrollBarSize');
519
+ }
520
+ }
510
521
  theme(arg) {
511
522
  if (this.autoCreate && !this.host) {
512
523
  this.createComponent();
@@ -810,7 +821,7 @@ class jqxDropDownListComponent {
810
821
  }
811
822
  } //jqxDropDownListComponent
812
823
  jqxDropDownListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDropDownListComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
813
- jqxDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxDropDownListComponent, selector: "jqxDropDownList", inputs: { attrAutoOpen: ["autoOpen", "attrAutoOpen"], attrAutoDropDownHeight: ["autoDropDownHeight", "attrAutoDropDownHeight"], attrAnimationType: ["animationType", "attrAnimationType"], attrCheckboxes: ["checkboxes", "attrCheckboxes"], attrCloseDelay: ["closeDelay", "attrCloseDelay"], attrDisabled: ["disabled", "attrDisabled"], attrDisplayMember: ["displayMember", "attrDisplayMember"], attrDropDownHorizontalAlignment: ["dropDownHorizontalAlignment", "attrDropDownHorizontalAlignment"], attrDropDownVerticalAlignment: ["dropDownVerticalAlignment", "attrDropDownVerticalAlignment"], attrDropDownHeight: ["dropDownHeight", "attrDropDownHeight"], attrDropDownWidth: ["dropDownWidth", "attrDropDownWidth"], attrEnableSelection: ["enableSelection", "attrEnableSelection"], attrEnableBrowserBoundsDetection: ["enableBrowserBoundsDetection", "attrEnableBrowserBoundsDetection"], attrEnableHover: ["enableHover", "attrEnableHover"], attrFilterable: ["filterable", "attrFilterable"], attrFilterHeight: ["filterHeight", "attrFilterHeight"], attrFilterDelay: ["filterDelay", "attrFilterDelay"], attrFilterPlaceHolder: ["filterPlaceHolder", "attrFilterPlaceHolder"], attrIncrementalSearch: ["incrementalSearch", "attrIncrementalSearch"], attrIncrementalSearchDelay: ["incrementalSearchDelay", "attrIncrementalSearchDelay"], attrItemHeight: ["itemHeight", "attrItemHeight"], attrOpenDelay: ["openDelay", "attrOpenDelay"], attrPlaceHolder: ["placeHolder", "attrPlaceHolder"], attrPopupZIndex: ["popupZIndex", "attrPopupZIndex"], attrRtl: ["rtl", "attrRtl"], attrRenderer: ["renderer", "attrRenderer"], attrSelectionRenderer: ["selectionRenderer", "attrSelectionRenderer"], attrSearchMode: ["searchMode", "attrSearchMode"], attrSource: ["source", "attrSource"], attrSelectedIndex: ["selectedIndex", "attrSelectedIndex"], attrTheme: ["theme", "attrTheme"], attrTemplate: ["template", "attrTemplate"], attrValueMember: ["valueMember", "attrValueMember"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, outputs: { onBindingComplete: "onBindingComplete", onClose: "onClose", onCheckChange: "onCheckChange", onChange: "onChange", onOpen: "onOpen", onSelect: "onSelect", onUnselect: "onUnselect" }, providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR], usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
824
+ jqxDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: jqxDropDownListComponent, selector: "jqxDropDownList", inputs: { attrAutoOpen: ["autoOpen", "attrAutoOpen"], attrAutoDropDownHeight: ["autoDropDownHeight", "attrAutoDropDownHeight"], attrAnimationType: ["animationType", "attrAnimationType"], attrCheckboxes: ["checkboxes", "attrCheckboxes"], attrCloseDelay: ["closeDelay", "attrCloseDelay"], attrDisabled: ["disabled", "attrDisabled"], attrDisplayMember: ["displayMember", "attrDisplayMember"], attrDropDownHorizontalAlignment: ["dropDownHorizontalAlignment", "attrDropDownHorizontalAlignment"], attrDropDownVerticalAlignment: ["dropDownVerticalAlignment", "attrDropDownVerticalAlignment"], attrDropDownHeight: ["dropDownHeight", "attrDropDownHeight"], attrDropDownWidth: ["dropDownWidth", "attrDropDownWidth"], attrEnableSelection: ["enableSelection", "attrEnableSelection"], attrEnableBrowserBoundsDetection: ["enableBrowserBoundsDetection", "attrEnableBrowserBoundsDetection"], attrEnableHover: ["enableHover", "attrEnableHover"], attrFilterable: ["filterable", "attrFilterable"], attrFilterHeight: ["filterHeight", "attrFilterHeight"], attrFilterDelay: ["filterDelay", "attrFilterDelay"], attrFilterPlaceHolder: ["filterPlaceHolder", "attrFilterPlaceHolder"], attrIncrementalSearch: ["incrementalSearch", "attrIncrementalSearch"], attrIncrementalSearchDelay: ["incrementalSearchDelay", "attrIncrementalSearchDelay"], attrItemHeight: ["itemHeight", "attrItemHeight"], attrOpenDelay: ["openDelay", "attrOpenDelay"], attrPlaceHolder: ["placeHolder", "attrPlaceHolder"], attrPopupZIndex: ["popupZIndex", "attrPopupZIndex"], attrRtl: ["rtl", "attrRtl"], attrRenderer: ["renderer", "attrRenderer"], attrSelectionRenderer: ["selectionRenderer", "attrSelectionRenderer"], attrSearchMode: ["searchMode", "attrSearchMode"], attrSource: ["source", "attrSource"], attrSelectedIndex: ["selectedIndex", "attrSelectedIndex"], attrScrollBarSize: ["scrollBarSize", "attrScrollBarSize"], attrTheme: ["theme", "attrTheme"], attrTemplate: ["template", "attrTemplate"], attrValueMember: ["valueMember", "attrValueMember"], attrWidth: ["width", "attrWidth"], attrHeight: ["height", "attrHeight"], autoCreate: ["auto-create", "autoCreate"] }, outputs: { onBindingComplete: "onBindingComplete", onClose: "onClose", onCheckChange: "onCheckChange", onChange: "onChange", onOpen: "onOpen", onSelect: "onSelect", onUnselect: "onUnselect" }, providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR], usesOnChanges: true, ngImport: i0, template: '<div><ng-content></ng-content></div>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
814
825
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxDropDownListComponent, decorators: [{
815
826
  type: Component,
816
827
  args: [{
@@ -909,6 +920,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
909
920
  }], attrSelectedIndex: [{
910
921
  type: Input,
911
922
  args: ['selectedIndex']
923
+ }], attrScrollBarSize: [{
924
+ type: Input,
925
+ args: ['scrollBarSize']
912
926
  }], attrTheme: [{
913
927
  type: Input,
914
928
  args: ['theme']