jqwidgets-ng 14.1.17 → 14.1.18

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 +291 -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 +291 -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,291 @@
1
+ import '../jqwidgets/jqxcore';
2
+ import '../jqwidgets/jqxcheckbox';
3
+ import * as i0 from '@angular/core';
4
+ import { Component, Input, NgModule } from '@angular/core';
5
+ import { FormsModule } from '@angular/forms';
6
+
7
+ /// <reference path="../../jqwidgets.d.ts" />
8
+ class jqxCheckBoxGroupComponent {
9
+ constructor(containerElement) {
10
+ this.autoCreate = true;
11
+ this.properties = ['change', 'disabled', 'items', 'value', 'layout', 'labelPosition', 'rtl', 'theme'];
12
+ this.elementRef = containerElement;
13
+ }
14
+ ngOnInit() {
15
+ if (this.autoCreate) {
16
+ this.createComponent();
17
+ }
18
+ }
19
+ ;
20
+ ngOnChanges(changes) {
21
+ if (this.host) {
22
+ for (let i = 0; i < this.properties.length; i++) {
23
+ let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
24
+ let areEqual = false;
25
+ if (this[attrName] !== undefined) {
26
+ if (typeof this[attrName] === 'object') {
27
+ if (this[attrName] instanceof Array) {
28
+ areEqual = this.arraysEqual(this[attrName], this.host.jqxCheckBoxGroup(this.properties[i]));
29
+ }
30
+ if (areEqual) {
31
+ return false;
32
+ }
33
+ this.host.jqxCheckBoxGroup(this.properties[i], this[attrName]);
34
+ continue;
35
+ }
36
+ if (this[attrName] !== this.host.jqxCheckBoxGroup(this.properties[i])) {
37
+ this.host.jqxCheckBoxGroup(this.properties[i], this[attrName]);
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ arraysEqual(attrValue, hostValue) {
44
+ if ((attrValue && !hostValue) || (!attrValue && hostValue)) {
45
+ return false;
46
+ }
47
+ if (attrValue.length != hostValue.length) {
48
+ return false;
49
+ }
50
+ for (let i = 0; i < attrValue.length; i++) {
51
+ if (attrValue[i] !== hostValue[i]) {
52
+ return false;
53
+ }
54
+ }
55
+ return true;
56
+ }
57
+ manageAttributes() {
58
+ let options = {};
59
+ for (let i = 0; i < this.properties.length; i++) {
60
+ let attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
61
+ if (this[attrName] !== undefined) {
62
+ options[this.properties[i]] = this[attrName];
63
+ }
64
+ }
65
+ return options;
66
+ }
67
+ moveClasses(parentEl, childEl) {
68
+ let classes = parentEl.classList;
69
+ if (classes.length > 0) {
70
+ childEl.classList.add(...classes);
71
+ }
72
+ parentEl.className = '';
73
+ }
74
+ moveStyles(parentEl, childEl) {
75
+ let style = parentEl.style.cssText;
76
+ childEl.style.cssText = style;
77
+ parentEl.style.cssText = '';
78
+ }
79
+ createComponent(options) {
80
+ if (this.host) {
81
+ return;
82
+ }
83
+ if (options) {
84
+ JQXLite.extend(options, this.manageAttributes());
85
+ }
86
+ else {
87
+ options = this.manageAttributes();
88
+ }
89
+ this.host = JQXLite(this.elementRef.nativeElement.firstChild);
90
+ this.moveClasses(this.elementRef.nativeElement, this.host[0]);
91
+ this.moveStyles(this.elementRef.nativeElement, this.host[0]);
92
+ this.__wireEvents__();
93
+ this.widgetObject = jqwidgets.createInstance(this.host, 'jqxCheckBoxGroup', options);
94
+ }
95
+ createWidget(options) {
96
+ this.createComponent(options);
97
+ }
98
+ __updateRect__() {
99
+ if (this.host)
100
+ this.host.css({ width: this.attrWidth, height: this.attrHeight });
101
+ }
102
+ setOptions(options) {
103
+ this.host.jqxCheckBoxGroup('setOptions', options);
104
+ }
105
+ // jqxCheckBoxGroupComponent properties
106
+ change(arg) {
107
+ if (arg !== undefined) {
108
+ this.host.jqxCheckBoxGroup('change', arg);
109
+ }
110
+ else {
111
+ return this.host.jqxCheckBoxGroup('change');
112
+ }
113
+ }
114
+ disabled(arg) {
115
+ if (arg !== undefined) {
116
+ this.host.jqxCheckBoxGroup('disabled', arg);
117
+ }
118
+ else {
119
+ return this.host.jqxCheckBoxGroup('disabled');
120
+ }
121
+ }
122
+ items(arg) {
123
+ if (arg !== undefined) {
124
+ this.host.jqxCheckBoxGroup('items', arg);
125
+ }
126
+ else {
127
+ return this.host.jqxCheckBoxGroup('items');
128
+ }
129
+ }
130
+ value(arg) {
131
+ if (arg !== undefined) {
132
+ this.host.jqxCheckBoxGroup('value', arg);
133
+ }
134
+ else {
135
+ return this.host.jqxCheckBoxGroup('value');
136
+ }
137
+ }
138
+ layout(arg) {
139
+ if (arg !== undefined) {
140
+ this.host.jqxCheckBoxGroup('layout', arg);
141
+ }
142
+ else {
143
+ return this.host.jqxCheckBoxGroup('layout');
144
+ }
145
+ }
146
+ labelPosition(arg) {
147
+ if (arg !== undefined) {
148
+ this.host.jqxCheckBoxGroup('labelPosition', arg);
149
+ }
150
+ else {
151
+ return this.host.jqxCheckBoxGroup('labelPosition');
152
+ }
153
+ }
154
+ rtl(arg) {
155
+ if (arg !== undefined) {
156
+ this.host.jqxCheckBoxGroup('rtl', arg);
157
+ }
158
+ else {
159
+ return this.host.jqxCheckBoxGroup('rtl');
160
+ }
161
+ }
162
+ theme(arg) {
163
+ if (arg !== undefined) {
164
+ this.host.jqxCheckBoxGroup('theme', arg);
165
+ }
166
+ else {
167
+ return this.host.jqxCheckBoxGroup('theme');
168
+ }
169
+ }
170
+ // jqxCheckBoxGroupComponent functions
171
+ getValue() {
172
+ return this.host.jqxCheckBoxGroup('getValue');
173
+ }
174
+ getValueAt(index) {
175
+ return this.host.jqxCheckBoxGroup('getValueAt', index);
176
+ }
177
+ enableAt(index) {
178
+ this.host.jqxCheckBoxGroup('enableAt', index);
179
+ }
180
+ disableAt(index) {
181
+ this.host.jqxCheckBoxGroup('disableAt', index);
182
+ }
183
+ checkAt(index) {
184
+ this.host.jqxCheckBoxGroup('checkAt', index);
185
+ }
186
+ uncheckAt(index) {
187
+ this.host.jqxCheckBoxGroup('uncheckAt', index);
188
+ }
189
+ uncheckAll() {
190
+ this.host.jqxCheckBoxGroup('uncheckAll');
191
+ }
192
+ checkAll() {
193
+ this.host.jqxCheckBoxGroup('checkAll');
194
+ }
195
+ checkValue(value) {
196
+ this.host.jqxCheckBoxGroup('checkValue', value);
197
+ }
198
+ uncheckValue(value) {
199
+ this.host.jqxCheckBoxGroup('uncheckValue', value);
200
+ }
201
+ disable() {
202
+ this.host.jqxCheckBoxGroup('disable');
203
+ }
204
+ destroy() {
205
+ this.host.jqxCheckBoxGroup('destroy');
206
+ }
207
+ enable() {
208
+ this.host.jqxCheckBoxGroup('enable');
209
+ }
210
+ render() {
211
+ this.host.jqxCheckBoxGroup('render');
212
+ }
213
+ val(value) {
214
+ if (value !== undefined) {
215
+ return this.host.jqxCheckBoxGroup('val', value);
216
+ }
217
+ else {
218
+ return this.host.jqxCheckBoxGroup('val');
219
+ }
220
+ }
221
+ ;
222
+ // jqxCheckBoxGroupComponent events
223
+ __wireEvents__() {
224
+ }
225
+ } //jqxCheckBoxGroupComponent
226
+ jqxCheckBoxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
227
+ 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 });
228
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupComponent, decorators: [{
229
+ type: Component,
230
+ args: [{
231
+ selector: 'jqxCheckBoxGroup',
232
+ template: '<div><ng-content></ng-content></div>'
233
+ }]
234
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { attrChange: [{
235
+ type: Input,
236
+ args: ['change']
237
+ }], attrDisabled: [{
238
+ type: Input,
239
+ args: ['disabled']
240
+ }], attrItems: [{
241
+ type: Input,
242
+ args: ['items']
243
+ }], attrValue: [{
244
+ type: Input,
245
+ args: ['value']
246
+ }], attrLayout: [{
247
+ type: Input,
248
+ args: ['layout']
249
+ }], attrLabelPosition: [{
250
+ type: Input,
251
+ args: ['labelPosition']
252
+ }], attrRtl: [{
253
+ type: Input,
254
+ args: ['rtl']
255
+ }], attrTheme: [{
256
+ type: Input,
257
+ args: ['theme']
258
+ }], attrWidth: [{
259
+ type: Input,
260
+ args: ['width']
261
+ }], attrHeight: [{
262
+ type: Input,
263
+ args: ['height']
264
+ }], autoCreate: [{
265
+ type: Input,
266
+ args: ['auto-create']
267
+ }] } });
268
+
269
+ class jqxCheckBoxGroupModule {
270
+ }
271
+ jqxCheckBoxGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
272
+ jqxCheckBoxGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, declarations: [jqxCheckBoxGroupComponent], imports: [FormsModule], exports: [jqxCheckBoxGroupComponent] });
273
+ jqxCheckBoxGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, imports: [[
274
+ FormsModule
275
+ ]] });
276
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxCheckBoxGroupModule, decorators: [{
277
+ type: NgModule,
278
+ args: [{
279
+ imports: [
280
+ FormsModule
281
+ ],
282
+ declarations: [jqxCheckBoxGroupComponent],
283
+ exports: [jqxCheckBoxGroupComponent]
284
+ }]
285
+ }] });
286
+
287
+ /**
288
+ * Generated bundle index. Do not edit.
289
+ */
290
+
291
+ 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']