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.
- package/esm2020/jqxcheckboxgroup/angular_jqxcheckboxgroup.mjs +264 -0
- package/esm2020/jqxcheckboxgroup/angular_jqxcheckboxgroup.module.mjs +21 -0
- package/esm2020/jqxcheckboxgroup/index.mjs +1 -0
- package/esm2020/jqxcheckboxgroup/jqwidgets-ng-jqxcheckboxgroup.mjs +4 -0
- package/esm2020/jqxcheckboxgroup/public_api.mjs +2 -0
- package/esm2020/jqxdropdownlist/angular_jqxdropdownlist.mjs +16 -2
- package/esm2020/jqxgrid/angular_jqxgrid.mjs +16 -2
- package/esm2020/jqxradiobuttongroup/angular_jqxradiobuttongroup.mjs +261 -0
- package/esm2020/jqxradiobuttongroup/angular_jqxradiobuttongroup.module.mjs +21 -0
- package/esm2020/jqxradiobuttongroup/index.mjs +1 -0
- package/esm2020/jqxradiobuttongroup/jqwidgets-ng-jqxradiobuttongroup.mjs +4 -0
- package/esm2020/jqxradiobuttongroup/public_api.mjs +2 -0
- package/fesm2015/jqwidgets-ng-jqxcheckboxgroup.mjs +291 -0
- package/fesm2015/jqwidgets-ng-jqxdropdownlist.mjs +16 -2
- package/fesm2015/jqwidgets-ng-jqxgrid.mjs +16 -2
- package/fesm2015/jqwidgets-ng-jqxradiobuttongroup.mjs +289 -0
- package/fesm2020/jqwidgets-ng-jqxcheckboxgroup.mjs +291 -0
- package/fesm2020/jqwidgets-ng-jqxdropdownlist.mjs +16 -2
- package/fesm2020/jqwidgets-ng-jqxgrid.mjs +16 -2
- package/fesm2020/jqwidgets-ng-jqxradiobuttongroup.mjs +289 -0
- package/jqwidgets.d.ts +65 -0
- package/jqxcheckboxgroup/angular_jqxcheckboxgroup.d.ts +57 -0
- package/jqxcheckboxgroup/angular_jqxcheckboxgroup.module.d.ts +8 -0
- package/jqxcheckboxgroup/index.d.ts +1 -0
- package/jqxcheckboxgroup/jqwidgets-ng-jqxcheckboxgroup.d.ts +5 -0
- package/jqxcheckboxgroup/package.json +13 -0
- package/jqxcheckboxgroup/public_api.d.ts +2 -0
- package/jqxdropdownlist/angular_jqxdropdownlist.d.ts +3 -1
- package/jqxgrid/angular_jqxgrid.d.ts +3 -1
- package/jqxradiobuttongroup/angular_jqxradiobuttongroup.d.ts +56 -0
- package/jqxradiobuttongroup/angular_jqxradiobuttongroup.module.d.ts +8 -0
- package/jqxradiobuttongroup/index.d.ts +1 -0
- package/jqxradiobuttongroup/jqwidgets-ng-jqxradiobuttongroup.d.ts +5 -0
- package/jqxradiobuttongroup/package.json +13 -0
- package/jqxradiobuttongroup/public_api.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import '../jqwidgets/jqxcore';
|
|
2
|
+
import '../jqwidgets/jqxradiobutton';
|
|
3
|
+
import '../jqwidgets/jqxradiobuttongroup';
|
|
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 jqxRadioButtonGroupComponent {
|
|
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.jqxRadioButtonGroup(this.properties[i]));
|
|
30
|
+
}
|
|
31
|
+
if (areEqual) {
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
this.host.jqxRadioButtonGroup(this.properties[i], this[attrName]);
|
|
35
|
+
continue;
|
|
36
|
+
}
|
|
37
|
+
if (this[attrName] !== this.host.jqxRadioButtonGroup(this.properties[i])) {
|
|
38
|
+
this.host.jqxRadioButtonGroup(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, 'jqxRadioButtonGroup', 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.jqxRadioButtonGroup('setOptions', options);
|
|
105
|
+
}
|
|
106
|
+
// jqxRadioButtonGroupComponent properties
|
|
107
|
+
change(arg) {
|
|
108
|
+
if (arg !== undefined) {
|
|
109
|
+
this.host.jqxRadioButtonGroup('change', arg);
|
|
110
|
+
}
|
|
111
|
+
else {
|
|
112
|
+
return this.host.jqxRadioButtonGroup('change');
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
disabled(arg) {
|
|
116
|
+
if (arg !== undefined) {
|
|
117
|
+
this.host.jqxRadioButtonGroup('disabled', arg);
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
return this.host.jqxRadioButtonGroup('disabled');
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
items(arg) {
|
|
124
|
+
if (arg !== undefined) {
|
|
125
|
+
this.host.jqxRadioButtonGroup('items', arg);
|
|
126
|
+
}
|
|
127
|
+
else {
|
|
128
|
+
return this.host.jqxRadioButtonGroup('items');
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
value(arg) {
|
|
132
|
+
if (arg !== undefined) {
|
|
133
|
+
this.host.jqxRadioButtonGroup('value', arg);
|
|
134
|
+
}
|
|
135
|
+
else {
|
|
136
|
+
return this.host.jqxRadioButtonGroup('value');
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
layout(arg) {
|
|
140
|
+
if (arg !== undefined) {
|
|
141
|
+
this.host.jqxRadioButtonGroup('layout', arg);
|
|
142
|
+
}
|
|
143
|
+
else {
|
|
144
|
+
return this.host.jqxRadioButtonGroup('layout');
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
labelPosition(arg) {
|
|
148
|
+
if (arg !== undefined) {
|
|
149
|
+
this.host.jqxRadioButtonGroup('labelPosition', arg);
|
|
150
|
+
}
|
|
151
|
+
else {
|
|
152
|
+
return this.host.jqxRadioButtonGroup('labelPosition');
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
rtl(arg) {
|
|
156
|
+
if (arg !== undefined) {
|
|
157
|
+
this.host.jqxRadioButtonGroup('rtl', arg);
|
|
158
|
+
}
|
|
159
|
+
else {
|
|
160
|
+
return this.host.jqxRadioButtonGroup('rtl');
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
theme(arg) {
|
|
164
|
+
if (arg !== undefined) {
|
|
165
|
+
this.host.jqxRadioButtonGroup('theme', arg);
|
|
166
|
+
}
|
|
167
|
+
else {
|
|
168
|
+
return this.host.jqxRadioButtonGroup('theme');
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
// jqxRadioButtonGroupComponent functions
|
|
172
|
+
getValue() {
|
|
173
|
+
return this.host.jqxRadioButtonGroup('getValue');
|
|
174
|
+
}
|
|
175
|
+
getValueAt(index) {
|
|
176
|
+
return this.host.jqxRadioButtonGroup('getValueAt', index);
|
|
177
|
+
}
|
|
178
|
+
enableAt(index) {
|
|
179
|
+
this.host.jqxRadioButtonGroup('enableAt', index);
|
|
180
|
+
}
|
|
181
|
+
disableAt(index) {
|
|
182
|
+
this.host.jqxRadioButtonGroup('disableAt', index);
|
|
183
|
+
}
|
|
184
|
+
checkAt(index) {
|
|
185
|
+
this.host.jqxRadioButtonGroup('checkAt', index);
|
|
186
|
+
}
|
|
187
|
+
uncheckAt(index) {
|
|
188
|
+
this.host.jqxRadioButtonGroup('uncheckAt', index);
|
|
189
|
+
}
|
|
190
|
+
uncheckAll() {
|
|
191
|
+
this.host.jqxRadioButtonGroup('uncheckAll');
|
|
192
|
+
}
|
|
193
|
+
checkValue(value) {
|
|
194
|
+
this.host.jqxRadioButtonGroup('checkValue', value);
|
|
195
|
+
}
|
|
196
|
+
uncheckValue(value) {
|
|
197
|
+
this.host.jqxRadioButtonGroup('uncheckValue', value);
|
|
198
|
+
}
|
|
199
|
+
disable() {
|
|
200
|
+
this.host.jqxRadioButtonGroup('disable');
|
|
201
|
+
}
|
|
202
|
+
destroy() {
|
|
203
|
+
this.host.jqxRadioButtonGroup('destroy');
|
|
204
|
+
}
|
|
205
|
+
enable() {
|
|
206
|
+
this.host.jqxRadioButtonGroup('enable');
|
|
207
|
+
}
|
|
208
|
+
render() {
|
|
209
|
+
this.host.jqxRadioButtonGroup('render');
|
|
210
|
+
}
|
|
211
|
+
val(value) {
|
|
212
|
+
if (value !== undefined) {
|
|
213
|
+
return this.host.jqxRadioButtonGroup('val', value);
|
|
214
|
+
}
|
|
215
|
+
else {
|
|
216
|
+
return this.host.jqxRadioButtonGroup('val');
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
;
|
|
220
|
+
// jqxRadioButtonGroupComponent events
|
|
221
|
+
__wireEvents__() {
|
|
222
|
+
}
|
|
223
|
+
} //jqxRadioButtonGroupComponent
|
|
224
|
+
jqxRadioButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
225
|
+
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 });
|
|
226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupComponent, decorators: [{
|
|
227
|
+
type: Component,
|
|
228
|
+
args: [{
|
|
229
|
+
selector: 'jqxRadioButtonGroup',
|
|
230
|
+
template: '<div><ng-content></ng-content></div>'
|
|
231
|
+
}]
|
|
232
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { attrChange: [{
|
|
233
|
+
type: Input,
|
|
234
|
+
args: ['change']
|
|
235
|
+
}], attrDisabled: [{
|
|
236
|
+
type: Input,
|
|
237
|
+
args: ['disabled']
|
|
238
|
+
}], attrItems: [{
|
|
239
|
+
type: Input,
|
|
240
|
+
args: ['items']
|
|
241
|
+
}], attrValue: [{
|
|
242
|
+
type: Input,
|
|
243
|
+
args: ['value']
|
|
244
|
+
}], attrLayout: [{
|
|
245
|
+
type: Input,
|
|
246
|
+
args: ['layout']
|
|
247
|
+
}], attrLabelPosition: [{
|
|
248
|
+
type: Input,
|
|
249
|
+
args: ['labelPosition']
|
|
250
|
+
}], attrRtl: [{
|
|
251
|
+
type: Input,
|
|
252
|
+
args: ['rtl']
|
|
253
|
+
}], attrTheme: [{
|
|
254
|
+
type: Input,
|
|
255
|
+
args: ['theme']
|
|
256
|
+
}], attrWidth: [{
|
|
257
|
+
type: Input,
|
|
258
|
+
args: ['width']
|
|
259
|
+
}], attrHeight: [{
|
|
260
|
+
type: Input,
|
|
261
|
+
args: ['height']
|
|
262
|
+
}], autoCreate: [{
|
|
263
|
+
type: Input,
|
|
264
|
+
args: ['auto-create']
|
|
265
|
+
}] } });
|
|
266
|
+
|
|
267
|
+
class jqxRadioButtonGroupModule {
|
|
268
|
+
}
|
|
269
|
+
jqxRadioButtonGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
270
|
+
jqxRadioButtonGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupModule, declarations: [jqxRadioButtonGroupComponent], imports: [FormsModule], exports: [jqxRadioButtonGroupComponent] });
|
|
271
|
+
jqxRadioButtonGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupModule, imports: [[
|
|
272
|
+
FormsModule
|
|
273
|
+
]] });
|
|
274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: jqxRadioButtonGroupModule, decorators: [{
|
|
275
|
+
type: NgModule,
|
|
276
|
+
args: [{
|
|
277
|
+
imports: [
|
|
278
|
+
FormsModule
|
|
279
|
+
],
|
|
280
|
+
declarations: [jqxRadioButtonGroupComponent],
|
|
281
|
+
exports: [jqxRadioButtonGroupComponent]
|
|
282
|
+
}]
|
|
283
|
+
}] });
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Generated bundle index. Do not edit.
|
|
287
|
+
*/
|
|
288
|
+
|
|
289
|
+
export { jqxRadioButtonGroupComponent, jqxRadioButtonGroupModule };
|
package/jqwidgets.d.ts
CHANGED
|
@@ -1413,6 +1413,7 @@ declare module jqwidgets {
|
|
|
1413
1413
|
searchMode?: string;
|
|
1414
1414
|
source?: Array<any>;
|
|
1415
1415
|
selectedIndex?: number;
|
|
1416
|
+
scrollBarSize?: number;
|
|
1416
1417
|
theme?: string;
|
|
1417
1418
|
template?: string;
|
|
1418
1419
|
valueMember?: string;
|
|
@@ -2237,6 +2238,7 @@ declare module jqwidgets {
|
|
|
2237
2238
|
rendergridrows?: (params?: any) => any;
|
|
2238
2239
|
sortable?: boolean;
|
|
2239
2240
|
sortmode?: string;
|
|
2241
|
+
sortmodekey?: string;
|
|
2240
2242
|
selectedrowindex?: number;
|
|
2241
2243
|
selectedrowindexes?: Array<number>;
|
|
2242
2244
|
source?: GridSource;
|
|
@@ -4984,6 +4986,69 @@ declare module jqwidgets {
|
|
|
4984
4986
|
isValid(): boolean;
|
|
4985
4987
|
}// jqxQRcode
|
|
4986
4988
|
|
|
4989
|
+
export interface CheckBoxGroupOptions {
|
|
4990
|
+
// CheckBoxGroupOptions properties
|
|
4991
|
+
change?: (item?: any) => void;
|
|
4992
|
+
disabled?: boolean;
|
|
4993
|
+
items?: any;
|
|
4994
|
+
value?: any;
|
|
4995
|
+
layout?: string;
|
|
4996
|
+
labelPosition?: string;
|
|
4997
|
+
rtl?: boolean;
|
|
4998
|
+
theme?: string;
|
|
4999
|
+
}// CheckBoxGroupOptions
|
|
5000
|
+
|
|
5001
|
+
export interface jqxCheckBoxGroup extends widget, CheckBoxGroupOptions {
|
|
5002
|
+
|
|
5003
|
+
// jqxCheckBoxGroup functions
|
|
5004
|
+
getValue(): any;
|
|
5005
|
+
getValueAt(index: number): string;
|
|
5006
|
+
enableAt(index: number): void;
|
|
5007
|
+
disableAt(index: number): void;
|
|
5008
|
+
checkAt(index: number): void;
|
|
5009
|
+
uncheckAt(index: number): void;
|
|
5010
|
+
uncheckAll(): void;
|
|
5011
|
+
checkAll(): void;
|
|
5012
|
+
checkValue(value: string): void;
|
|
5013
|
+
uncheckValue(value: string): void;
|
|
5014
|
+
disable(): void;
|
|
5015
|
+
destroy(): void;
|
|
5016
|
+
enable(): void;
|
|
5017
|
+
render(): void;
|
|
5018
|
+
val(value: any): any;
|
|
5019
|
+
}// jqxCheckBoxGroup
|
|
5020
|
+
|
|
5021
|
+
export interface RadioButtonGroupOptions {
|
|
5022
|
+
// RadioButtonGroupOptions properties
|
|
5023
|
+
change?: (item?: any) => void;
|
|
5024
|
+
disabled?: boolean;
|
|
5025
|
+
items?: any;
|
|
5026
|
+
value?: any;
|
|
5027
|
+
layout?: string;
|
|
5028
|
+
labelPosition?: string;
|
|
5029
|
+
rtl?: boolean;
|
|
5030
|
+
theme?: string;
|
|
5031
|
+
}// RadioButtonGroupOptions
|
|
5032
|
+
|
|
5033
|
+
export interface jqxRadioButtonGroup extends widget, RadioButtonGroupOptions {
|
|
5034
|
+
|
|
5035
|
+
// jqxRadioButtonGroup functions
|
|
5036
|
+
getValue(): any;
|
|
5037
|
+
getValueAt(index: number): string;
|
|
5038
|
+
enableAt(index: number): void;
|
|
5039
|
+
disableAt(index: number): void;
|
|
5040
|
+
checkAt(index: number): void;
|
|
5041
|
+
uncheckAt(index: number): void;
|
|
5042
|
+
uncheckAll(): void;
|
|
5043
|
+
checkValue(value: string): void;
|
|
5044
|
+
uncheckValue(value: string): void;
|
|
5045
|
+
disable(): void;
|
|
5046
|
+
destroy(): void;
|
|
5047
|
+
enable(): void;
|
|
5048
|
+
render(): void;
|
|
5049
|
+
val(value: any): any;
|
|
5050
|
+
}// jqxRadioButtonGroup
|
|
5051
|
+
|
|
4987
5052
|
|
|
4988
5053
|
|
|
4989
5054
|
} // module jqwidgets
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/// <reference path="../jqwidgets.d.ts" />
|
|
2
|
+
import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class jqxCheckBoxGroupComponent implements OnChanges {
|
|
5
|
+
attrChange: (item?: any) => void;
|
|
6
|
+
attrDisabled: boolean;
|
|
7
|
+
attrItems: [];
|
|
8
|
+
attrValue: [];
|
|
9
|
+
attrLayout: string;
|
|
10
|
+
attrLabelPosition: string;
|
|
11
|
+
attrRtl: boolean;
|
|
12
|
+
attrTheme: string;
|
|
13
|
+
attrWidth: string | number;
|
|
14
|
+
attrHeight: string | number;
|
|
15
|
+
autoCreate: boolean;
|
|
16
|
+
properties: string[];
|
|
17
|
+
host: any;
|
|
18
|
+
elementRef: ElementRef;
|
|
19
|
+
widgetObject: jqwidgets.jqxCheckBoxGroup;
|
|
20
|
+
constructor(containerElement: ElementRef);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): boolean;
|
|
23
|
+
arraysEqual(attrValue: any, hostValue: any): boolean;
|
|
24
|
+
manageAttributes(): any;
|
|
25
|
+
moveClasses(parentEl: HTMLElement, childEl: HTMLElement): void;
|
|
26
|
+
moveStyles(parentEl: HTMLElement, childEl: HTMLElement): void;
|
|
27
|
+
createComponent(options?: any): void;
|
|
28
|
+
createWidget(options?: any): void;
|
|
29
|
+
__updateRect__(): void;
|
|
30
|
+
setOptions(options: any): void;
|
|
31
|
+
change(arg?: (item?: any) => void): (item?: any) => void;
|
|
32
|
+
disabled(arg?: boolean): boolean;
|
|
33
|
+
items(arg?: undefined): undefined;
|
|
34
|
+
value(arg?: undefined): undefined;
|
|
35
|
+
layout(arg?: string): string;
|
|
36
|
+
labelPosition(arg?: string): string;
|
|
37
|
+
rtl(arg?: boolean): boolean;
|
|
38
|
+
theme(arg?: string): string;
|
|
39
|
+
getValue(): undefined;
|
|
40
|
+
getValueAt(index: number): string;
|
|
41
|
+
enableAt(index: number): void;
|
|
42
|
+
disableAt(index: number): void;
|
|
43
|
+
checkAt(index: number): void;
|
|
44
|
+
uncheckAt(index: number): void;
|
|
45
|
+
uncheckAll(): void;
|
|
46
|
+
checkAll(): void;
|
|
47
|
+
checkValue(value: string): void;
|
|
48
|
+
uncheckValue(value: string): void;
|
|
49
|
+
disable(): void;
|
|
50
|
+
destroy(): void;
|
|
51
|
+
enable(): void;
|
|
52
|
+
render(): void;
|
|
53
|
+
val(value?: undefined): any;
|
|
54
|
+
__wireEvents__(): void;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<jqxCheckBoxGroupComponent, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<jqxCheckBoxGroupComponent, "jqxCheckBoxGroup", never, { "attrChange": "change"; "attrDisabled": "disabled"; "attrItems": "items"; "attrValue": "value"; "attrLayout": "layout"; "attrLabelPosition": "labelPosition"; "attrRtl": "rtl"; "attrTheme": "theme"; "attrWidth": "width"; "attrHeight": "height"; "autoCreate": "auto-create"; }, {}, never, ["*"]>;
|
|
57
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./angular_jqxcheckboxgroup";
|
|
3
|
+
import * as i2 from "@angular/forms";
|
|
4
|
+
export declare class jqxCheckBoxGroupModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<jqxCheckBoxGroupModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<jqxCheckBoxGroupModule, [typeof i1.jqxCheckBoxGroupComponent], [typeof i2.FormsModule], [typeof i1.jqxCheckBoxGroupComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<jqxCheckBoxGroupModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './public_api';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lib": {
|
|
3
|
+
"entryFile": "./src/index.ts"
|
|
4
|
+
},
|
|
5
|
+
"module": "../fesm2015/jqwidgets-ng-jqxcheckboxgroup.mjs",
|
|
6
|
+
"es2020": "../fesm2020/jqwidgets-ng-jqxcheckboxgroup.mjs",
|
|
7
|
+
"esm2020": "../esm2020/jqxcheckboxgroup/jqwidgets-ng-jqxcheckboxgroup.mjs",
|
|
8
|
+
"fesm2020": "../fesm2020/jqwidgets-ng-jqxcheckboxgroup.mjs",
|
|
9
|
+
"fesm2015": "../fesm2015/jqwidgets-ng-jqxcheckboxgroup.mjs",
|
|
10
|
+
"typings": "jqwidgets-ng-jqxcheckboxgroup.d.ts",
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"name": "jqwidgets-ng/jqxcheckboxgroup"
|
|
13
|
+
}
|
|
@@ -33,6 +33,7 @@ export declare class jqxDropDownListComponent implements ControlValueAccessor, O
|
|
|
33
33
|
attrSearchMode: string;
|
|
34
34
|
attrSource: Array<any>;
|
|
35
35
|
attrSelectedIndex: number;
|
|
36
|
+
attrScrollBarSize: number;
|
|
36
37
|
attrTheme: string;
|
|
37
38
|
attrTemplate: string;
|
|
38
39
|
attrValueMember: string;
|
|
@@ -94,6 +95,7 @@ export declare class jqxDropDownListComponent implements ControlValueAccessor, O
|
|
|
94
95
|
searchMode(arg?: string): string;
|
|
95
96
|
source(arg?: Array<any>): Array<any>;
|
|
96
97
|
selectedIndex(arg?: number): number;
|
|
98
|
+
scrollBarSize(arg?: number): number;
|
|
97
99
|
theme(arg?: string): string;
|
|
98
100
|
template(arg?: string): string;
|
|
99
101
|
valueMember(arg?: string): string;
|
|
@@ -147,5 +149,5 @@ export declare class jqxDropDownListComponent implements ControlValueAccessor, O
|
|
|
147
149
|
onUnselect: EventEmitter<any>;
|
|
148
150
|
__wireEvents__(): void;
|
|
149
151
|
static ɵfac: i0.ɵɵFactoryDeclaration<jqxDropDownListComponent, never>;
|
|
150
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<jqxDropDownListComponent, "jqxDropDownList", never, { "attrAutoOpen": "autoOpen"; "attrAutoDropDownHeight": "autoDropDownHeight"; "attrAnimationType": "animationType"; "attrCheckboxes": "checkboxes"; "attrCloseDelay": "closeDelay"; "attrDisabled": "disabled"; "attrDisplayMember": "displayMember"; "attrDropDownHorizontalAlignment": "dropDownHorizontalAlignment"; "attrDropDownVerticalAlignment": "dropDownVerticalAlignment"; "attrDropDownHeight": "dropDownHeight"; "attrDropDownWidth": "dropDownWidth"; "attrEnableSelection": "enableSelection"; "attrEnableBrowserBoundsDetection": "enableBrowserBoundsDetection"; "attrEnableHover": "enableHover"; "attrFilterable": "filterable"; "attrFilterHeight": "filterHeight"; "attrFilterDelay": "filterDelay"; "attrFilterPlaceHolder": "filterPlaceHolder"; "attrIncrementalSearch": "incrementalSearch"; "attrIncrementalSearchDelay": "incrementalSearchDelay"; "attrItemHeight": "itemHeight"; "attrOpenDelay": "openDelay"; "attrPlaceHolder": "placeHolder"; "attrPopupZIndex": "popupZIndex"; "attrRtl": "rtl"; "attrRenderer": "renderer"; "attrSelectionRenderer": "selectionRenderer"; "attrSearchMode": "searchMode"; "attrSource": "source"; "attrSelectedIndex": "selectedIndex"; "attrTheme": "theme"; "attrTemplate": "template"; "attrValueMember": "valueMember"; "attrWidth": "width"; "attrHeight": "height"; "autoCreate": "auto-create"; }, { "onBindingComplete": "onBindingComplete"; "onClose": "onClose"; "onCheckChange": "onCheckChange"; "onChange": "onChange"; "onOpen": "onOpen"; "onSelect": "onSelect"; "onUnselect": "onUnselect"; }, never, ["*"]>;
|
|
152
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<jqxDropDownListComponent, "jqxDropDownList", never, { "attrAutoOpen": "autoOpen"; "attrAutoDropDownHeight": "autoDropDownHeight"; "attrAnimationType": "animationType"; "attrCheckboxes": "checkboxes"; "attrCloseDelay": "closeDelay"; "attrDisabled": "disabled"; "attrDisplayMember": "displayMember"; "attrDropDownHorizontalAlignment": "dropDownHorizontalAlignment"; "attrDropDownVerticalAlignment": "dropDownVerticalAlignment"; "attrDropDownHeight": "dropDownHeight"; "attrDropDownWidth": "dropDownWidth"; "attrEnableSelection": "enableSelection"; "attrEnableBrowserBoundsDetection": "enableBrowserBoundsDetection"; "attrEnableHover": "enableHover"; "attrFilterable": "filterable"; "attrFilterHeight": "filterHeight"; "attrFilterDelay": "filterDelay"; "attrFilterPlaceHolder": "filterPlaceHolder"; "attrIncrementalSearch": "incrementalSearch"; "attrIncrementalSearchDelay": "incrementalSearchDelay"; "attrItemHeight": "itemHeight"; "attrOpenDelay": "openDelay"; "attrPlaceHolder": "placeHolder"; "attrPopupZIndex": "popupZIndex"; "attrRtl": "rtl"; "attrRenderer": "renderer"; "attrSelectionRenderer": "selectionRenderer"; "attrSearchMode": "searchMode"; "attrSource": "source"; "attrSelectedIndex": "selectedIndex"; "attrScrollBarSize": "scrollBarSize"; "attrTheme": "theme"; "attrTemplate": "template"; "attrValueMember": "valueMember"; "attrWidth": "width"; "attrHeight": "height"; "autoCreate": "auto-create"; }, { "onBindingComplete": "onBindingComplete"; "onClose": "onClose"; "onCheckChange": "onCheckChange"; "onChange": "onChange"; "onOpen": "onOpen"; "onSelect": "onSelect"; "onUnselect": "onUnselect"; }, never, ["*"]>;
|
|
151
153
|
}
|
|
@@ -118,6 +118,7 @@ export declare class jqxGridComponent implements OnChanges, AfterViewInit, After
|
|
|
118
118
|
attrRendergridrows: (params?: any) => any;
|
|
119
119
|
attrSortable: boolean;
|
|
120
120
|
attrSortmode: string;
|
|
121
|
+
attrSortmodekey: string;
|
|
121
122
|
attrSelectedrowindex: number;
|
|
122
123
|
attrSelectedrowindexes: Array<number>;
|
|
123
124
|
attrSource: jqwidgets.GridSource;
|
|
@@ -266,6 +267,7 @@ export declare class jqxGridComponent implements OnChanges, AfterViewInit, After
|
|
|
266
267
|
rendergridrows(arg?: (params?: any) => any): (params?: any) => any;
|
|
267
268
|
sortable(arg?: boolean): boolean;
|
|
268
269
|
sortmode(arg?: string): string;
|
|
270
|
+
sortmodekey(arg?: string): string;
|
|
269
271
|
selectedrowindex(arg?: number): number;
|
|
270
272
|
selectedrowindexes(arg?: Array<number>): Array<number>;
|
|
271
273
|
source(arg?: jqwidgets.GridSource): jqwidgets.GridSource;
|
|
@@ -406,5 +408,5 @@ export declare class jqxGridComponent implements OnChanges, AfterViewInit, After
|
|
|
406
408
|
onSort: EventEmitter<any>;
|
|
407
409
|
__wireEvents__(): void;
|
|
408
410
|
static ɵfac: i0.ɵɵFactoryDeclaration<jqxGridComponent, never>;
|
|
409
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<jqxGridComponent, "jqxGrid", never, { "attrAltrows": "altrows"; "attrAltstart": "altstart"; "attrAltstep": "altstep"; "attrAutoshowloadelement": "autoshowloadelement"; "attrAutoshowfiltericon": "autoshowfiltericon"; "attrAutoshowcolumnsmenubutton": "autoshowcolumnsmenubutton"; "attrShowcolumnlines": "showcolumnlines"; "attrShowrowlines": "showrowlines"; "attrShowcolumnheaderlines": "showcolumnheaderlines"; "attrAdaptive": "adaptive"; "attrAdaptivewidth": "adaptivewidth"; "attrCommandcolumn": "commandcolumn"; "attrCommandcolumnrenderer": "commandcolumnrenderer"; "attrClipboard": "clipboard"; "attrCloseablegroups": "closeablegroups"; "attrColumnsmenuwidth": "columnsmenuwidth"; "attrColumnmenuopening": "columnmenuopening"; "attrColumnmenuclosing": "columnmenuclosing"; "attrCellhover": "cellhover"; "attrEnablekeyboarddelete": "enablekeyboarddelete"; "attrEnableellipsis": "enableellipsis"; "attrEnablemousewheel": "enablemousewheel"; "attrEnableanimations": "enableanimations"; "attrEnabletooltips": "enabletooltips"; "attrEnablehover": "enablehover"; "attrEnablebrowserselection": "enablebrowserselection"; "attrEverpresentrowposition": "everpresentrowposition"; "attrEverpresentrowheight": "everpresentrowheight"; "attrEverpresentrowactions": "everpresentrowactions"; "attrEverpresentrowactionsmode": "everpresentrowactionsmode"; "attrFilterrowheight": "filterrowheight"; "attrFiltermode": "filtermode"; "attrGroupsrenderer": "groupsrenderer"; "attrGroupcolumnrenderer": "groupcolumnrenderer"; "attrGroupsexpandedbydefault": "groupsexpandedbydefault"; "attrHandlekeyboardnavigation": "handlekeyboardnavigation"; "attrPagerrenderer": "pagerrenderer"; "attrRtl": "rtl"; "attrShowdefaultloadelement": "showdefaultloadelement"; "attrShowfiltercolumnbackground": "showfiltercolumnbackground"; "attrShowfiltermenuitems": "showfiltermenuitems"; "attrShowpinnedcolumnbackground": "showpinnedcolumnbackground"; "attrShowsortcolumnbackground": "showsortcolumnbackground"; "attrShowsortmenuitems": "showsortmenuitems"; "attrShowgroupmenuitems": "showgroupmenuitems"; "attrShowrowdetailscolumn": "showrowdetailscolumn"; "attrShowheader": "showheader"; "attrShowgroupsheader": "showgroupsheader"; "attrShowaggregates": "showaggregates"; "attrShowgroupaggregates": "showgroupaggregates"; "attrShoweverpresentrow": "showeverpresentrow"; "attrShowfilterrow": "showfilterrow"; "attrShowemptyrow": "showemptyrow"; "attrShowstatusbar": "showstatusbar"; "attrStatusbarheight": "statusbarheight"; "attrShowtoolbar": "showtoolbar"; "attrShowfilterbar": "showfilterbar"; "attrFilterbarmode": "filterbarmode"; "attrSelectionmode": "selectionmode"; "attrUpdatefilterconditions": "updatefilterconditions"; "attrUpdatefilterpanel": "updatefilterpanel"; "attrTheme": "theme"; "attrToolbarheight": "toolbarheight"; "attrAutoheight": "autoheight"; "attrAutorowheight": "autorowheight"; "attrColumnsheight": "columnsheight"; "attrDeferreddatafields": "deferreddatafields"; "attrGroupsheaderheight": "groupsheaderheight"; "attrGroupindentwidth": "groupindentwidth"; "attrPagerheight": "pagerheight"; "attrRowsheight": "rowsheight"; "attrScrollbarsize": "scrollbarsize"; "attrScrollmode": "scrollmode"; "attrScrollfeedback": "scrollfeedback"; "attrAutosavestate": "autosavestate"; "attrAutoloadstate": "autoloadstate"; "attrColumns": "columns"; "attrEnableSanitize": "enableSanitize"; "attrCardview": "cardview"; "attrCardviewcolumns": "cardviewcolumns"; "attrCardheight": "cardheight"; "attrCardsize": "cardsize"; "attrColumngroups": "columngroups"; "attrColumnsmenu": "columnsmenu"; "attrColumnsresize": "columnsresize"; "attrColumnsautoresize": "columnsautoresize"; "attrColumnsreorder": "columnsreorder"; "attrCharting": "charting"; "attrDisabled": "disabled"; "attrEditable": "editable"; "attrBatcheditable": "batcheditable"; "attrEditmode": "editmode"; "attrFilter": "filter"; "attrFilterable": "filterable"; "attrGroupable": "groupable"; "attrGroups": "groups"; "attrHorizontalscrollbarstep": "horizontalscrollbarstep"; "attrHorizontalscrollbarlargestep": "horizontalscrollbarlargestep"; "attrInitrowdetails": "initrowdetails"; "attrKeyboardnavigation": "keyboardnavigation"; "attrLocalization": "localization"; "attrPagesize": "pagesize"; "attrPagesizeoptions": "pagesizeoptions"; "attrPagermode": "pagermode"; "attrPagerbuttonscount": "pagerbuttonscount"; "attrPageable": "pageable"; "attrAutofill": "autofill"; "attrRowdetails": "rowdetails"; "attrRowdetailstemplate": "rowdetailstemplate"; "attrReady": "ready"; "attrRendered": "rendered"; "attrRenderstatusbar": "renderstatusbar"; "attrRendertoolbar": "rendertoolbar"; "attrRendergridrows": "rendergridrows"; "attrSortable": "sortable"; "attrSortmode": "sortmode"; "attrSelectedrowindex": "selectedrowindex"; "attrSelectedrowindexes": "selectedrowindexes"; "attrSource": "source"; "attrSorttogglestates": "sorttogglestates"; "attrUpdatedelay": "updatedelay"; "attrVirtualmode": "virtualmode"; "attrVerticalscrollbarstep": "verticalscrollbarstep"; "attrVerticalscrollbarlargestep": "verticalscrollbarlargestep"; "attrWidth": "width"; "attrHeight": "height"; "autoCreate": "auto-create"; }, { "onBindingcomplete": "onBindingcomplete"; "onColumnresized": "onColumnresized"; "onColumnreordered": "onColumnreordered"; "onColumnclick": "onColumnclick"; "onCellclick": "onCellclick"; "onCelldoubleclick": "onCelldoubleclick"; "onCellselect": "onCellselect"; "onCellunselect": "onCellunselect"; "onCellvaluechanged": "onCellvaluechanged"; "onCellbeginedit": "onCellbeginedit"; "onCellendedit": "onCellendedit"; "onFilter": "onFilter"; "onGroupschanged": "onGroupschanged"; "onGroupexpand": "onGroupexpand"; "onGroupcollapse": "onGroupcollapse"; "onPagechanged": "onPagechanged"; "onPagesizechanged": "onPagesizechanged"; "onRowclick": "onRowclick"; "onRowdoubleclick": "onRowdoubleclick"; "onRowselect": "onRowselect"; "onRowunselect": "onRowunselect"; "onRowexpand": "onRowexpand"; "onRowcollapse": "onRowcollapse"; "onSort": "onSort"; }, never, ["*"]>;
|
|
411
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<jqxGridComponent, "jqxGrid", never, { "attrAltrows": "altrows"; "attrAltstart": "altstart"; "attrAltstep": "altstep"; "attrAutoshowloadelement": "autoshowloadelement"; "attrAutoshowfiltericon": "autoshowfiltericon"; "attrAutoshowcolumnsmenubutton": "autoshowcolumnsmenubutton"; "attrShowcolumnlines": "showcolumnlines"; "attrShowrowlines": "showrowlines"; "attrShowcolumnheaderlines": "showcolumnheaderlines"; "attrAdaptive": "adaptive"; "attrAdaptivewidth": "adaptivewidth"; "attrCommandcolumn": "commandcolumn"; "attrCommandcolumnrenderer": "commandcolumnrenderer"; "attrClipboard": "clipboard"; "attrCloseablegroups": "closeablegroups"; "attrColumnsmenuwidth": "columnsmenuwidth"; "attrColumnmenuopening": "columnmenuopening"; "attrColumnmenuclosing": "columnmenuclosing"; "attrCellhover": "cellhover"; "attrEnablekeyboarddelete": "enablekeyboarddelete"; "attrEnableellipsis": "enableellipsis"; "attrEnablemousewheel": "enablemousewheel"; "attrEnableanimations": "enableanimations"; "attrEnabletooltips": "enabletooltips"; "attrEnablehover": "enablehover"; "attrEnablebrowserselection": "enablebrowserselection"; "attrEverpresentrowposition": "everpresentrowposition"; "attrEverpresentrowheight": "everpresentrowheight"; "attrEverpresentrowactions": "everpresentrowactions"; "attrEverpresentrowactionsmode": "everpresentrowactionsmode"; "attrFilterrowheight": "filterrowheight"; "attrFiltermode": "filtermode"; "attrGroupsrenderer": "groupsrenderer"; "attrGroupcolumnrenderer": "groupcolumnrenderer"; "attrGroupsexpandedbydefault": "groupsexpandedbydefault"; "attrHandlekeyboardnavigation": "handlekeyboardnavigation"; "attrPagerrenderer": "pagerrenderer"; "attrRtl": "rtl"; "attrShowdefaultloadelement": "showdefaultloadelement"; "attrShowfiltercolumnbackground": "showfiltercolumnbackground"; "attrShowfiltermenuitems": "showfiltermenuitems"; "attrShowpinnedcolumnbackground": "showpinnedcolumnbackground"; "attrShowsortcolumnbackground": "showsortcolumnbackground"; "attrShowsortmenuitems": "showsortmenuitems"; "attrShowgroupmenuitems": "showgroupmenuitems"; "attrShowrowdetailscolumn": "showrowdetailscolumn"; "attrShowheader": "showheader"; "attrShowgroupsheader": "showgroupsheader"; "attrShowaggregates": "showaggregates"; "attrShowgroupaggregates": "showgroupaggregates"; "attrShoweverpresentrow": "showeverpresentrow"; "attrShowfilterrow": "showfilterrow"; "attrShowemptyrow": "showemptyrow"; "attrShowstatusbar": "showstatusbar"; "attrStatusbarheight": "statusbarheight"; "attrShowtoolbar": "showtoolbar"; "attrShowfilterbar": "showfilterbar"; "attrFilterbarmode": "filterbarmode"; "attrSelectionmode": "selectionmode"; "attrUpdatefilterconditions": "updatefilterconditions"; "attrUpdatefilterpanel": "updatefilterpanel"; "attrTheme": "theme"; "attrToolbarheight": "toolbarheight"; "attrAutoheight": "autoheight"; "attrAutorowheight": "autorowheight"; "attrColumnsheight": "columnsheight"; "attrDeferreddatafields": "deferreddatafields"; "attrGroupsheaderheight": "groupsheaderheight"; "attrGroupindentwidth": "groupindentwidth"; "attrPagerheight": "pagerheight"; "attrRowsheight": "rowsheight"; "attrScrollbarsize": "scrollbarsize"; "attrScrollmode": "scrollmode"; "attrScrollfeedback": "scrollfeedback"; "attrAutosavestate": "autosavestate"; "attrAutoloadstate": "autoloadstate"; "attrColumns": "columns"; "attrEnableSanitize": "enableSanitize"; "attrCardview": "cardview"; "attrCardviewcolumns": "cardviewcolumns"; "attrCardheight": "cardheight"; "attrCardsize": "cardsize"; "attrColumngroups": "columngroups"; "attrColumnsmenu": "columnsmenu"; "attrColumnsresize": "columnsresize"; "attrColumnsautoresize": "columnsautoresize"; "attrColumnsreorder": "columnsreorder"; "attrCharting": "charting"; "attrDisabled": "disabled"; "attrEditable": "editable"; "attrBatcheditable": "batcheditable"; "attrEditmode": "editmode"; "attrFilter": "filter"; "attrFilterable": "filterable"; "attrGroupable": "groupable"; "attrGroups": "groups"; "attrHorizontalscrollbarstep": "horizontalscrollbarstep"; "attrHorizontalscrollbarlargestep": "horizontalscrollbarlargestep"; "attrInitrowdetails": "initrowdetails"; "attrKeyboardnavigation": "keyboardnavigation"; "attrLocalization": "localization"; "attrPagesize": "pagesize"; "attrPagesizeoptions": "pagesizeoptions"; "attrPagermode": "pagermode"; "attrPagerbuttonscount": "pagerbuttonscount"; "attrPageable": "pageable"; "attrAutofill": "autofill"; "attrRowdetails": "rowdetails"; "attrRowdetailstemplate": "rowdetailstemplate"; "attrReady": "ready"; "attrRendered": "rendered"; "attrRenderstatusbar": "renderstatusbar"; "attrRendertoolbar": "rendertoolbar"; "attrRendergridrows": "rendergridrows"; "attrSortable": "sortable"; "attrSortmode": "sortmode"; "attrSortmodekey": "sortmodekey"; "attrSelectedrowindex": "selectedrowindex"; "attrSelectedrowindexes": "selectedrowindexes"; "attrSource": "source"; "attrSorttogglestates": "sorttogglestates"; "attrUpdatedelay": "updatedelay"; "attrVirtualmode": "virtualmode"; "attrVerticalscrollbarstep": "verticalscrollbarstep"; "attrVerticalscrollbarlargestep": "verticalscrollbarlargestep"; "attrWidth": "width"; "attrHeight": "height"; "autoCreate": "auto-create"; }, { "onBindingcomplete": "onBindingcomplete"; "onColumnresized": "onColumnresized"; "onColumnreordered": "onColumnreordered"; "onColumnclick": "onColumnclick"; "onCellclick": "onCellclick"; "onCelldoubleclick": "onCelldoubleclick"; "onCellselect": "onCellselect"; "onCellunselect": "onCellunselect"; "onCellvaluechanged": "onCellvaluechanged"; "onCellbeginedit": "onCellbeginedit"; "onCellendedit": "onCellendedit"; "onFilter": "onFilter"; "onGroupschanged": "onGroupschanged"; "onGroupexpand": "onGroupexpand"; "onGroupcollapse": "onGroupcollapse"; "onPagechanged": "onPagechanged"; "onPagesizechanged": "onPagesizechanged"; "onRowclick": "onRowclick"; "onRowdoubleclick": "onRowdoubleclick"; "onRowselect": "onRowselect"; "onRowunselect": "onRowunselect"; "onRowexpand": "onRowexpand"; "onRowcollapse": "onRowcollapse"; "onSort": "onSort"; }, never, ["*"]>;
|
|
410
412
|
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/// <reference path="../jqwidgets.d.ts" />
|
|
2
|
+
import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class jqxRadioButtonGroupComponent implements OnChanges {
|
|
5
|
+
attrChange: (item?: any) => void;
|
|
6
|
+
attrDisabled: boolean;
|
|
7
|
+
attrItems: [];
|
|
8
|
+
attrValue: [];
|
|
9
|
+
attrLayout: string;
|
|
10
|
+
attrLabelPosition: string;
|
|
11
|
+
attrRtl: boolean;
|
|
12
|
+
attrTheme: string;
|
|
13
|
+
attrWidth: string | number;
|
|
14
|
+
attrHeight: string | number;
|
|
15
|
+
autoCreate: boolean;
|
|
16
|
+
properties: string[];
|
|
17
|
+
host: any;
|
|
18
|
+
elementRef: ElementRef;
|
|
19
|
+
widgetObject: jqwidgets.jqxRadioButtonGroup;
|
|
20
|
+
constructor(containerElement: ElementRef);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): boolean;
|
|
23
|
+
arraysEqual(attrValue: any, hostValue: any): boolean;
|
|
24
|
+
manageAttributes(): any;
|
|
25
|
+
moveClasses(parentEl: HTMLElement, childEl: HTMLElement): void;
|
|
26
|
+
moveStyles(parentEl: HTMLElement, childEl: HTMLElement): void;
|
|
27
|
+
createComponent(options?: any): void;
|
|
28
|
+
createWidget(options?: any): void;
|
|
29
|
+
__updateRect__(): void;
|
|
30
|
+
setOptions(options: any): void;
|
|
31
|
+
change(arg?: (item?: any) => void): (item?: any) => void;
|
|
32
|
+
disabled(arg?: boolean): boolean;
|
|
33
|
+
items(arg?: undefined): undefined;
|
|
34
|
+
value(arg?: undefined): undefined;
|
|
35
|
+
layout(arg?: string): string;
|
|
36
|
+
labelPosition(arg?: string): string;
|
|
37
|
+
rtl(arg?: boolean): boolean;
|
|
38
|
+
theme(arg?: string): string;
|
|
39
|
+
getValue(): undefined;
|
|
40
|
+
getValueAt(index: number): string;
|
|
41
|
+
enableAt(index: number): void;
|
|
42
|
+
disableAt(index: number): void;
|
|
43
|
+
checkAt(index: number): void;
|
|
44
|
+
uncheckAt(index: number): void;
|
|
45
|
+
uncheckAll(): void;
|
|
46
|
+
checkValue(value: string): void;
|
|
47
|
+
uncheckValue(value: string): void;
|
|
48
|
+
disable(): void;
|
|
49
|
+
destroy(): void;
|
|
50
|
+
enable(): void;
|
|
51
|
+
render(): void;
|
|
52
|
+
val(value?: undefined): any;
|
|
53
|
+
__wireEvents__(): void;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<jqxRadioButtonGroupComponent, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<jqxRadioButtonGroupComponent, "jqxRadioButtonGroup", never, { "attrChange": "change"; "attrDisabled": "disabled"; "attrItems": "items"; "attrValue": "value"; "attrLayout": "layout"; "attrLabelPosition": "labelPosition"; "attrRtl": "rtl"; "attrTheme": "theme"; "attrWidth": "width"; "attrHeight": "height"; "autoCreate": "auto-create"; }, {}, never, ["*"]>;
|
|
56
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./angular_jqxradiobuttongroup";
|
|
3
|
+
import * as i2 from "@angular/forms";
|
|
4
|
+
export declare class jqxRadioButtonGroupModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<jqxRadioButtonGroupModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<jqxRadioButtonGroupModule, [typeof i1.jqxRadioButtonGroupComponent], [typeof i2.FormsModule], [typeof i1.jqxRadioButtonGroupComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<jqxRadioButtonGroupModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './public_api';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lib": {
|
|
3
|
+
"entryFile": "./src/index.ts"
|
|
4
|
+
},
|
|
5
|
+
"module": "../fesm2015/jqwidgets-ng-jqxradiobuttongroup.mjs",
|
|
6
|
+
"es2020": "../fesm2020/jqwidgets-ng-jqxradiobuttongroup.mjs",
|
|
7
|
+
"esm2020": "../esm2020/jqxradiobuttongroup/jqwidgets-ng-jqxradiobuttongroup.mjs",
|
|
8
|
+
"fesm2020": "../fesm2020/jqwidgets-ng-jqxradiobuttongroup.mjs",
|
|
9
|
+
"fesm2015": "../fesm2015/jqwidgets-ng-jqxradiobuttongroup.mjs",
|
|
10
|
+
"typings": "jqwidgets-ng-jqxradiobuttongroup.d.ts",
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"name": "jqwidgets-ng/jqxradiobuttongroup"
|
|
13
|
+
}
|