ids-enterprise-ng 21.0.6 → 21.0.8

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.
@@ -8942,6 +8942,18 @@ class SohoDataGridComponent {
8942
8942
  }
8943
8943
  return this._gridOptions.headerTabStops;
8944
8944
  }
8945
+ set suppressNonInteractiveFocus(suppressNonInteractiveFocus) {
8946
+ this._gridOptions.suppressNonInteractiveFocus = suppressNonInteractiveFocus;
8947
+ if (this.jQueryElement && this.datagrid) {
8948
+ this.datagrid.settings.suppressNonInteractiveFocus = suppressNonInteractiveFocus;
8949
+ }
8950
+ }
8951
+ get suppressNonInteractiveFocus() {
8952
+ if (this.datagrid) {
8953
+ return this.datagrid.settings.suppressNonInteractiveFocus;
8954
+ }
8955
+ return this._gridOptions.suppressNonInteractiveFocus;
8956
+ }
8945
8957
  set showEditorIcons(showEditorIcons) {
8946
8958
  this._gridOptions.showEditorIcons = showEditorIcons;
8947
8959
  if (this.jQueryElement && this.datagrid) {
@@ -10783,7 +10795,7 @@ class SohoDataGridComponent {
10783
10795
  }
10784
10796
  }
10785
10797
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoDataGridComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.ApplicationRef }, { token: SohoDataGridService, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
10786
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: SohoDataGridComponent, isStandalone: false, selector: "[soho-datagrid]", inputs: { gridOptions: "gridOptions", idProperty: "idProperty", ellipsisWithIcon: "ellipsisWithIcon", ariaLabel: "ariaLabel", frozenColumns: "frozenColumns", cellNavigation: "cellNavigation", rowNavigation: "rowNavigation", alternateRowShading: "alternateRowShading", dataset: "dataset", columnReorder: "columnReorder", disableClientSort: "disableClientSort", disableClientFilter: "disableClientFilter", resultsText: "resultsText", showFilterTotal: "showFilterTotal", editable: "editable", isRowDisabled: "isRowDisabled", allowOneExpandedRow: "allowOneExpandedRow", rowTemplate: "rowTemplate", rowTemplateComponent: "rowTemplateComponent", rowTemplateComponentInputs: "rowTemplateComponentInputs", rowTemplateField: "rowTemplateField", selectOnEdit: "selectOnEdit", isList: "isList", menuId: "menuId", menuBeforeOpen: "menuBeforeOpen", rowHeight: "rowHeight", fixedRowHeight: "fixedRowHeight", selectable: "selectable", showSelectAllCheckBox: "showSelectAllCheckBox", clickToSelect: "clickToSelect", toolbar: "toolbar", initializeToolbar: "initializeToolbar", saveUserSettings: "saveUserSettings", paging: "paging", pagesize: "pagesize", pagesizes: "pagesizes", indeterminate: "indeterminate", actionableMode: "actionableMode", saveColumns: "saveColumns", source: "source", filterable: "filterable", filterWhenTyping: "filterWhenTyping", treeGrid: "treeGrid", uniqueId: "uniqueId", rowReorder: "rowReorder", showDirty: "showDirty", addCellLayoutClass: "addCellLayoutClass", resizeMode: "resizeMode", headerBackgroundColor: "headerBackgroundColor", headerMenuId: "headerMenuId", headerMenuSelected: "headerMenuSelected", headerMenuBeforeOpen: "headerMenuBeforeOpen", disableRowDeactivation: "disableRowDeactivation", disableRowDeselection: "disableRowDeselection", userObject: "userObject", groupable: "groupable", data: "data", columns: "columns", summaryRowColumns: "summaryRowColumns", spacerColumn: "spacerColumn", sizeColumnsEqually: "sizeColumnsEqually", expandableRow: "expandableRow", redrawOnResize: "redrawOnResize", exportConvertNegative: "exportConvertNegative", overrideTabbing: "overrideTabbing", headerTabStops: "headerTabStops", showEditorIcons: "showEditorIcons", stickyHeader: "stickyHeader", attributes: "attributes", columnSizing: "columnSizing", stretchColumn: "stretchColumn", stretchColumnOnChange: "stretchColumnOnChange", showPageSizeSelector: "showPageSizeSelector", hidePagerOnOnePage: "hidePagerOnOnePage", columnGroup: "columnGroup", emptyMessage: "emptyMessage", enableTooltips: "enableTooltips", selectChildren: "selectChildren", allowChildExpandOnMatch: "allowChildExpandOnMatch", sohoDatagrid: ["soho-datagrid", "sohoDatagrid"], onBeforeSelect: "onBeforeSelect", allowSelectAcrossPages: "allowSelectAcrossPages", selectAllCurrentPage: "selectAllCurrentPage", columnIds: "columnIds", showNewRowIndicator: "showNewRowIndicator", onExpandChildren: "onExpandChildren", onCollapseChildren: "onCollapseChildren", onPostRenderCell: "onPostRenderCell", onDestroyCell: "onDestroyCell", onEditCell: "onEditCell", onKeyDown: "onKeyDown", onExpandRow: "onExpandRow", fallbackImage: "fallbackImage", fallbackTooltip: "fallbackTooltip" }, outputs: { selected: "selected", deselected: "deselected", cellchange: "cellchange", rowRemove: "rowRemove", rowAdd: "rowAdd", filtered: "filtered", expandrow: "expandrow", keydown: "keydown", exiteditmode: "exiteditmode", beforeentereditmode: "beforeentereditmode", entereditmode: "entereditmode", collapserow: "collapserow", sorted: "sorted", searched: "searched", nextPage: "nextPage", previousPage: "previousPage", firstPage: "firstPage", lastPage: "lastPage", pageSizeChange: "pageSizeChange", beforePaging: "beforePaging", afterPaging: "afterPaging", beforeRowActivated: "beforeRowActivated", rowActivated: "rowActivated", columnChange: "columnChange", rowDeactivated: "rowDeactivated", rowClicked: "rowClicked", rowDoubleClicked: "rowDoubleClicked", contextMenu: "contextMenu", rowReordered: "rowReordered", openFilterRow: "openFilterRow", closeFilterRow: "closeFilterRow", settingsChanged: "settingsChanged", rendered: "rendered", afterRender: "afterRender", verticalScroll: "verticalScroll", filteroperatorchanged: "filteroperatorchanged" }, host: { properties: { "class.is-disabled": "this.isDisabled", "attr.role": "this.datagridRole" } }, ngImport: i0, template: ' <ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10798
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: SohoDataGridComponent, isStandalone: false, selector: "[soho-datagrid]", inputs: { gridOptions: "gridOptions", idProperty: "idProperty", ellipsisWithIcon: "ellipsisWithIcon", ariaLabel: "ariaLabel", frozenColumns: "frozenColumns", cellNavigation: "cellNavigation", rowNavigation: "rowNavigation", alternateRowShading: "alternateRowShading", dataset: "dataset", columnReorder: "columnReorder", disableClientSort: "disableClientSort", disableClientFilter: "disableClientFilter", resultsText: "resultsText", showFilterTotal: "showFilterTotal", editable: "editable", isRowDisabled: "isRowDisabled", allowOneExpandedRow: "allowOneExpandedRow", rowTemplate: "rowTemplate", rowTemplateComponent: "rowTemplateComponent", rowTemplateComponentInputs: "rowTemplateComponentInputs", rowTemplateField: "rowTemplateField", selectOnEdit: "selectOnEdit", isList: "isList", menuId: "menuId", menuBeforeOpen: "menuBeforeOpen", rowHeight: "rowHeight", fixedRowHeight: "fixedRowHeight", selectable: "selectable", showSelectAllCheckBox: "showSelectAllCheckBox", clickToSelect: "clickToSelect", toolbar: "toolbar", initializeToolbar: "initializeToolbar", saveUserSettings: "saveUserSettings", paging: "paging", pagesize: "pagesize", pagesizes: "pagesizes", indeterminate: "indeterminate", actionableMode: "actionableMode", saveColumns: "saveColumns", source: "source", filterable: "filterable", filterWhenTyping: "filterWhenTyping", treeGrid: "treeGrid", uniqueId: "uniqueId", rowReorder: "rowReorder", showDirty: "showDirty", addCellLayoutClass: "addCellLayoutClass", resizeMode: "resizeMode", headerBackgroundColor: "headerBackgroundColor", headerMenuId: "headerMenuId", headerMenuSelected: "headerMenuSelected", headerMenuBeforeOpen: "headerMenuBeforeOpen", disableRowDeactivation: "disableRowDeactivation", disableRowDeselection: "disableRowDeselection", userObject: "userObject", groupable: "groupable", data: "data", columns: "columns", summaryRowColumns: "summaryRowColumns", spacerColumn: "spacerColumn", sizeColumnsEqually: "sizeColumnsEqually", expandableRow: "expandableRow", redrawOnResize: "redrawOnResize", exportConvertNegative: "exportConvertNegative", overrideTabbing: "overrideTabbing", headerTabStops: "headerTabStops", suppressNonInteractiveFocus: "suppressNonInteractiveFocus", showEditorIcons: "showEditorIcons", stickyHeader: "stickyHeader", attributes: "attributes", columnSizing: "columnSizing", stretchColumn: "stretchColumn", stretchColumnOnChange: "stretchColumnOnChange", showPageSizeSelector: "showPageSizeSelector", hidePagerOnOnePage: "hidePagerOnOnePage", columnGroup: "columnGroup", emptyMessage: "emptyMessage", enableTooltips: "enableTooltips", selectChildren: "selectChildren", allowChildExpandOnMatch: "allowChildExpandOnMatch", sohoDatagrid: ["soho-datagrid", "sohoDatagrid"], onBeforeSelect: "onBeforeSelect", allowSelectAcrossPages: "allowSelectAcrossPages", selectAllCurrentPage: "selectAllCurrentPage", columnIds: "columnIds", showNewRowIndicator: "showNewRowIndicator", onExpandChildren: "onExpandChildren", onCollapseChildren: "onCollapseChildren", onPostRenderCell: "onPostRenderCell", onDestroyCell: "onDestroyCell", onEditCell: "onEditCell", onKeyDown: "onKeyDown", onExpandRow: "onExpandRow", fallbackImage: "fallbackImage", fallbackTooltip: "fallbackTooltip" }, outputs: { selected: "selected", deselected: "deselected", cellchange: "cellchange", rowRemove: "rowRemove", rowAdd: "rowAdd", filtered: "filtered", expandrow: "expandrow", keydown: "keydown", exiteditmode: "exiteditmode", beforeentereditmode: "beforeentereditmode", entereditmode: "entereditmode", collapserow: "collapserow", sorted: "sorted", searched: "searched", nextPage: "nextPage", previousPage: "previousPage", firstPage: "firstPage", lastPage: "lastPage", pageSizeChange: "pageSizeChange", beforePaging: "beforePaging", afterPaging: "afterPaging", beforeRowActivated: "beforeRowActivated", rowActivated: "rowActivated", columnChange: "columnChange", rowDeactivated: "rowDeactivated", rowClicked: "rowClicked", rowDoubleClicked: "rowDoubleClicked", contextMenu: "contextMenu", rowReordered: "rowReordered", openFilterRow: "openFilterRow", closeFilterRow: "closeFilterRow", settingsChanged: "settingsChanged", rendered: "rendered", afterRender: "afterRender", verticalScroll: "verticalScroll", filteroperatorchanged: "filteroperatorchanged" }, host: { properties: { "class.is-disabled": "this.isDisabled", "attr.role": "this.datagridRole" } }, ngImport: i0, template: ' <ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10787
10799
  }
10788
10800
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoDataGridComponent, decorators: [{
10789
10801
  type: Component,
@@ -10927,6 +10939,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImpor
10927
10939
  type: Input
10928
10940
  }], headerTabStops: [{
10929
10941
  type: Input
10942
+ }], suppressNonInteractiveFocus: [{
10943
+ type: Input
10930
10944
  }], showEditorIcons: [{
10931
10945
  type: Input
10932
10946
  }], stickyHeader: [{
@@ -18064,6 +18078,41 @@ class SohoListBuilderComponent {
18064
18078
  this.updateRequired = true;
18065
18079
  }
18066
18080
  }
18081
+ /** When true, hides the entire toolbar and removes the space it occupies. */
18082
+ set hideToolbar(value) {
18083
+ this.options.hideToolbar = value;
18084
+ if (this.jQueryElement && this.listbuilder) {
18085
+ this.listbuilder.settings.hideToolbar = value;
18086
+ this.updateRequired = true;
18087
+ }
18088
+ }
18089
+ get hideToolbar() {
18090
+ return this.options.hideToolbar ?? false;
18091
+ }
18092
+ /** When set, clears all existing buttons from the toolbar's buttonset and rebuilds them in the specified order.
18093
+ * Valid values: 'add', 'up', 'down', 'edit', 'delete', 'separator'. */
18094
+ set buttons(value) {
18095
+ this.options.buttons = value;
18096
+ if (this.jQueryElement && this.listbuilder) {
18097
+ this.listbuilder.settings.buttons = value;
18098
+ this.updateRequired = true;
18099
+ }
18100
+ }
18101
+ get buttons() {
18102
+ return this.options.buttons;
18103
+ }
18104
+ /** When set, excludes the specified buttons from the toolbar.
18105
+ * Valid values: 'add', 'up', 'down', 'edit', 'delete'. */
18106
+ set excludeButtons(value) {
18107
+ this.options.excludeButtons = value;
18108
+ if (this.jQueryElement && this.listbuilder) {
18109
+ this.listbuilder.settings.excludeButtons = value;
18110
+ this.updateRequired = true;
18111
+ }
18112
+ }
18113
+ get excludeButtons() {
18114
+ return this.options.excludeButtons;
18115
+ }
18067
18116
  ngAfterViewInit() {
18068
18117
  if (!this.listBuilderRef) {
18069
18118
  throw Error('Unable to find listbuilder reference...');
@@ -18104,11 +18153,11 @@ class SohoListBuilderComponent {
18104
18153
  });
18105
18154
  }
18106
18155
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoListBuilderComponent, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
18107
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.8", type: SohoListBuilderComponent, isStandalone: false, selector: "[soho-listbuilder]", inputs: { sohoListBuilderElementId: "sohoListBuilderElementId", class: "class", dataset: "dataset", handle: "handle", btnAdd: "btnAdd", btnEdit: "btnEdit", btnDelete: "btnDelete", btnGoUp: "btnGoUp", btnGoDown: "btnGoDown", attributes: "attributes", template: "template", templateNewItem: "templateNewItem", templateItemContent: "templateItemContent" }, outputs: { afteradd: "afteradd", aftergoup: "aftergoup", aftergodown: "aftergodown", afterdelete: "afterdelete", beforeedit: "beforeedit", beforeadd: "beforeadd", beforegoup: "beforegoup", beforegodown: "beforegodown", beforedelete: "beforedelete", arrangeupdate: "arrangeupdate", entereditmode: "entereditmode", exiteditmode: "exiteditmode" }, host: { properties: { "class.listbuilder": "this.isListbuilder" } }, viewQueries: [{ propertyName: "listBuilderRef", first: true, predicate: ["listbuilder"], descendants: true, static: true }], ngImport: i0, template: "<div #listbuilder [class]=\"listClass\" [attr.id]=\"sohoListBuilderElementId\" >\n <soho-toolbar class=\"formatter-toolbar\">\n <soho-toolbar-button-set>\n <button soho-button=\"secondary\" icon=\"add\" data-action=\"add\" title=\"Add New\">Add</button>\n <div class=\"separator\"></div>\n <button soho-button=\"secondary\" icon=\"up-arrow\" data-action=\"goup\" title=\"Go Up\">Go Up</button>\n <button soho-button=\"secondary\" icon=\"down-arrow\" data-action=\"godown\" title=\"Go Down\">Go Down</button>\n <div class=\"separator\"></div>\n <button soho-button=\"secondary\" icon=\"edit\" data-action=\"edit\" title=\"Edit\">Edit</button>\n <button soho-button=\"secondary\" icon=\"delete\" data-action=\"delete\" title=\"Delete\">Delete</button>\n </soho-toolbar-button-set>\n </soho-toolbar>\n <div class=\"listbuilder-content\">\n <div class=\"listview\">\n <ul>\n <ng-content select=\"li[soho-listview-item]\"></ng-content>\n </ul>\n <ng-content select=\"[soho-emptymessage]\"></ng-content>\n </div>\n </div>\n</div>", dependencies: [{ kind: "component", type: SohoButtonComponent, selector: "button[soho-button]", inputs: ["soho-button", "buttonOptions", "toggleOnIcon", "toggleOffIcon", "replaceText", "hideMenuArrow", "hitbox", "notificationBadge", "notificationBadgeOptions", "extraIconClass", "isToggle", "isTogglePressed", "icon", "iconAlign", "isSubmit", "ripple", "state", "toggle", "expandableExpander", "moveToLeft", "moveToRight", "moveToSelected"] }, { kind: "component", type: SohoToolbarComponent, selector: "soho-toolbar, div[soho-toolbar]", inputs: ["noActionsButton", "hasMoreButton", "maxVisibleButtons", "rightAligned", "rightAlign", "resizeContainers", "favorButtonset", "moreMenuSettings", "attributes"], outputs: ["beforeActivated", "activated", "afterActivated", "selected", "menuItemMouseOver"] }, { kind: "component", type: SohoToolbarButtonSetComponent, selector: "soho-toolbar-button-set" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
18156
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.8", type: SohoListBuilderComponent, isStandalone: false, selector: "[soho-listbuilder]", inputs: { sohoListBuilderElementId: "sohoListBuilderElementId", class: "class", dataset: "dataset", handle: "handle", btnAdd: "btnAdd", btnEdit: "btnEdit", btnDelete: "btnDelete", btnGoUp: "btnGoUp", btnGoDown: "btnGoDown", attributes: "attributes", template: "template", templateNewItem: "templateNewItem", templateItemContent: "templateItemContent", hideToolbar: "hideToolbar", buttons: "buttons", excludeButtons: "excludeButtons" }, outputs: { afteradd: "afteradd", aftergoup: "aftergoup", aftergodown: "aftergodown", afterdelete: "afterdelete", beforeedit: "beforeedit", beforeadd: "beforeadd", beforegoup: "beforegoup", beforegodown: "beforegodown", beforedelete: "beforedelete", arrangeupdate: "arrangeupdate", entereditmode: "entereditmode", exiteditmode: "exiteditmode" }, host: { properties: { "class.listbuilder": "this.isListbuilder" } }, viewQueries: [{ propertyName: "listBuilderRef", first: true, predicate: ["listbuilder"], descendants: true, static: true }], ngImport: i0, template: "<div #listbuilder [class]=\"listClass\" [attr.id]=\"sohoListBuilderElementId\" >\n <soho-toolbar class=\"formatter-toolbar\">\n @if (buttons) {\n <soho-toolbar-button-set></soho-toolbar-button-set>\n } @else {\n <soho-toolbar-button-set>\n <button soho-button=\"secondary\" icon=\"add\" data-action=\"add\" title=\"Add New\"></button>\n <div class=\"separator\"></div>\n <button soho-button=\"secondary\" icon=\"up-arrow\" data-action=\"goup\" title=\"Go Up\"></button>\n <button soho-button=\"secondary\" icon=\"down-arrow\" data-action=\"godown\" title=\"Go Down\"></button>\n <div class=\"separator\"></div>\n <button soho-button=\"secondary\" icon=\"edit\" data-action=\"edit\" title=\"Edit\"></button>\n <button soho-button=\"secondary\" icon=\"delete\" data-action=\"delete\" title=\"Delete\"></button>\n </soho-toolbar-button-set>\n }\n </soho-toolbar>\n <div class=\"listbuilder-content\">\n <div class=\"listview\">\n <ul>\n <ng-content select=\"li[soho-listview-item]\"></ng-content>\n </ul>\n <ng-content select=\"[soho-emptymessage]\"></ng-content>\n </div>\n </div>\n</div>", dependencies: [{ kind: "component", type: SohoButtonComponent, selector: "button[soho-button]", inputs: ["soho-button", "buttonOptions", "toggleOnIcon", "toggleOffIcon", "replaceText", "hideMenuArrow", "hitbox", "notificationBadge", "notificationBadgeOptions", "extraIconClass", "isToggle", "isTogglePressed", "icon", "iconAlign", "isSubmit", "ripple", "state", "toggle", "expandableExpander", "moveToLeft", "moveToRight", "moveToSelected"] }, { kind: "component", type: SohoToolbarComponent, selector: "soho-toolbar, div[soho-toolbar]", inputs: ["noActionsButton", "hasMoreButton", "maxVisibleButtons", "rightAligned", "rightAlign", "resizeContainers", "favorButtonset", "moreMenuSettings", "attributes"], outputs: ["beforeActivated", "activated", "afterActivated", "selected", "menuItemMouseOver"] }, { kind: "component", type: SohoToolbarButtonSetComponent, selector: "soho-toolbar-button-set" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
18108
18157
  }
18109
18158
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoListBuilderComponent, decorators: [{
18110
18159
  type: Component,
18111
- args: [{ selector: '[soho-listbuilder]', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<div #listbuilder [class]=\"listClass\" [attr.id]=\"sohoListBuilderElementId\" >\n <soho-toolbar class=\"formatter-toolbar\">\n <soho-toolbar-button-set>\n <button soho-button=\"secondary\" icon=\"add\" data-action=\"add\" title=\"Add New\">Add</button>\n <div class=\"separator\"></div>\n <button soho-button=\"secondary\" icon=\"up-arrow\" data-action=\"goup\" title=\"Go Up\">Go Up</button>\n <button soho-button=\"secondary\" icon=\"down-arrow\" data-action=\"godown\" title=\"Go Down\">Go Down</button>\n <div class=\"separator\"></div>\n <button soho-button=\"secondary\" icon=\"edit\" data-action=\"edit\" title=\"Edit\">Edit</button>\n <button soho-button=\"secondary\" icon=\"delete\" data-action=\"delete\" title=\"Delete\">Delete</button>\n </soho-toolbar-button-set>\n </soho-toolbar>\n <div class=\"listbuilder-content\">\n <div class=\"listview\">\n <ul>\n <ng-content select=\"li[soho-listview-item]\"></ng-content>\n </ul>\n <ng-content select=\"[soho-emptymessage]\"></ng-content>\n </div>\n </div>\n</div>" }]
18160
+ args: [{ selector: '[soho-listbuilder]', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<div #listbuilder [class]=\"listClass\" [attr.id]=\"sohoListBuilderElementId\" >\n <soho-toolbar class=\"formatter-toolbar\">\n @if (buttons) {\n <soho-toolbar-button-set></soho-toolbar-button-set>\n } @else {\n <soho-toolbar-button-set>\n <button soho-button=\"secondary\" icon=\"add\" data-action=\"add\" title=\"Add New\"></button>\n <div class=\"separator\"></div>\n <button soho-button=\"secondary\" icon=\"up-arrow\" data-action=\"goup\" title=\"Go Up\"></button>\n <button soho-button=\"secondary\" icon=\"down-arrow\" data-action=\"godown\" title=\"Go Down\"></button>\n <div class=\"separator\"></div>\n <button soho-button=\"secondary\" icon=\"edit\" data-action=\"edit\" title=\"Edit\"></button>\n <button soho-button=\"secondary\" icon=\"delete\" data-action=\"delete\" title=\"Delete\"></button>\n </soho-toolbar-button-set>\n }\n </soho-toolbar>\n <div class=\"listbuilder-content\">\n <div class=\"listview\">\n <ul>\n <ng-content select=\"li[soho-listview-item]\"></ng-content>\n </ul>\n <ng-content select=\"[soho-emptymessage]\"></ng-content>\n </div>\n </div>\n</div>" }]
18112
18161
  }], ctorParameters: () => [{ type: i0.NgZone }], propDecorators: { isListbuilder: [{
18113
18162
  type: HostBinding,
18114
18163
  args: ['class.listbuilder']
@@ -18141,6 +18190,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.8", ngImpor
18141
18190
  type: Input
18142
18191
  }], templateItemContent: [{
18143
18192
  type: Input
18193
+ }], hideToolbar: [{
18194
+ type: Input
18195
+ }], buttons: [{
18196
+ type: Input
18197
+ }], excludeButtons: [{
18198
+ type: Input
18144
18199
  }], afteradd: [{
18145
18200
  type: Output
18146
18201
  }], aftergoup: [{
@@ -24702,7 +24757,17 @@ class SohoRadioButtonComponent {
24702
24757
  console.warn('The property `disabled` has been removed, please use [attr.disabled]="disable"');
24703
24758
  }
24704
24759
  get tabIndex() {
24705
- return this.element.nativeElement.checked ? 0 : -1;
24760
+ const el = this.element.nativeElement;
24761
+ const name = el.getAttribute('name');
24762
+ if (!name)
24763
+ return -1;
24764
+ if (el.checked)
24765
+ return 0;
24766
+ const root = (el.form || el.getRootNode());
24767
+ const group = Array.from(root.querySelectorAll(`input[type="radio"][name="${name}"]`));
24768
+ if (group.some(r => r.checked))
24769
+ return -1;
24770
+ return group.find(r => !r.disabled) === el ? 0 : -1;
24706
24771
  }
24707
24772
  /**
24708
24773
  * Constructor.
@@ -31932,7 +31997,7 @@ class SohoVersionInitializerService {
31932
31997
  * Initializes the version attribute.
31933
31998
  */
31934
31999
  initialize() {
31935
- $('html').attr(SohoVersionInitializerService.VERSION_ATTR_NAME, '21.0.6');
32000
+ $('html').attr(SohoVersionInitializerService.VERSION_ATTR_NAME, '21.0.8');
31936
32001
  }
31937
32002
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoVersionInitializerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
31938
32003
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.8", ngImport: i0, type: SohoVersionInitializerService, providedIn: 'root' }); }