jqwidgets-ng 14.1.16 → 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 (37) 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/jqxsplitlayout.js +2445 -6
  22. package/jqwidgets.d.ts +65 -0
  23. package/jqxcheckboxgroup/angular_jqxcheckboxgroup.d.ts +57 -0
  24. package/jqxcheckboxgroup/angular_jqxcheckboxgroup.module.d.ts +8 -0
  25. package/jqxcheckboxgroup/index.d.ts +1 -0
  26. package/jqxcheckboxgroup/jqwidgets-ng-jqxcheckboxgroup.d.ts +5 -0
  27. package/jqxcheckboxgroup/package.json +13 -0
  28. package/jqxcheckboxgroup/public_api.d.ts +2 -0
  29. package/jqxdropdownlist/angular_jqxdropdownlist.d.ts +3 -1
  30. package/jqxgrid/angular_jqxgrid.d.ts +3 -1
  31. package/jqxradiobuttongroup/angular_jqxradiobuttongroup.d.ts +56 -0
  32. package/jqxradiobuttongroup/angular_jqxradiobuttongroup.module.d.ts +8 -0
  33. package/jqxradiobuttongroup/index.d.ts +1 -0
  34. package/jqxradiobuttongroup/jqwidgets-ng-jqxradiobuttongroup.d.ts +5 -0
  35. package/jqxradiobuttongroup/package.json +13 -0
  36. package/jqxradiobuttongroup/public_api.d.ts +2 -0
  37. package/package.json +1 -1
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,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="jqwidgets-ng/jqxcheckboxgroup" />
5
+ export * from './index';
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ export * from './angular_jqxcheckboxgroup';
2
+ export * from './angular_jqxcheckboxgroup.module';
@@ -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,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="jqwidgets-ng/jqxradiobuttongroup" />
5
+ export * from './index';
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ export * from './angular_jqxradiobuttongroup';
2
+ export * from './angular_jqxradiobuttongroup.module';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jqwidgets-ng",
3
- "version": "14.1.16",
3
+ "version": "14.1.18",
4
4
  "preferGlobal": true,
5
5
  "keywords": [
6
6
  "Angular 14",