@simpleangularcontrols/sac-bootstrap4 10.0.0-rc.28 → 10.0.0-rc.29

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.
@@ -2044,7 +2044,7 @@
2044
2044
  SacGridColumnComponent.decorators = [
2045
2045
  { type: core.Component, args: [{
2046
2046
  selector: 'sac-gridcolumn',
2047
- template: "<th\n #headerElement\n scope=\"col\"\n *ngIf=\"IsHeader()\"\n [style.width]=\"width\"\n [class.text-right]=\"alignment === 'right'\"\n [class.text-center]=\"alignment === 'center'\"\n (click)=\"SortByColumn()\">\n <span>{{ header }}</span>\n <span\n class=\"pl-2\"\n [class]=\"IconSortUp\"\n *ngIf=\"IsSortedColumn() && GetSortDirection() === 'asc'\"></span>\n <span\n class=\"pl-2\"\n [class]=\"IconSortDown\"\n *ngIf=\"IsSortedColumn() && GetSortDirection() === 'desc'\"></span>\n</th>\n<td\n #bodyElement\n scope=\"col\"\n *ngIf=\"IsBody()\"\n [style.width]=\"width\"\n [class.ellipsis]=\"IsEllipsis()\"\n (click)=\"ColumnClick()\"\n [style.max-width]=\"IsEllipsis() ? width : null\"\n [style.overflow]=\"IsEllipsis() ? 'hidden' : null\"\n [style.text-overflow]=\"IsEllipsis() ? 'ellipsis' : null\"\n [style.white-space]=\"IsEllipsis() ? 'nowrap' : null\"\n [class.text-right]=\"alignment === 'right'\"\n [class.text-center]=\"alignment === 'center'\">\n <span\n [attr.title]=\"IsEllipsis() ? value : null\"\n [innerHtml]=\"value\"></span>\n</td>\n",
2047
+ template: "<th\n #headerElement\n scope=\"col\"\n *ngIf=\"IsHeader()\"\n [style.width]=\"width\"\n [class.text-right]=\"alignment === 'right'\"\n [class.text-center]=\"alignment === 'center'\"\n (click)=\"SortByColumn()\">\n <span>{{ header }}</span>\n <span\n class=\"pl-2\"\n [class]=\"IconSortUp\"\n *ngIf=\"IsSortedColumn() && GetSortDirection() === 'asc'\"></span>\n <span\n class=\"pl-2\"\n [class]=\"IconSortDown\"\n *ngIf=\"IsSortedColumn() && GetSortDirection() === 'desc'\"></span>\n</th>\n<td\n #bodyElement\n scope=\"col\"\n *ngIf=\"IsBody()\"\n [style.width]=\"width\"\n [class.ellipsis]=\"IsEllipsis()\"\n (click)=\"ColumnClick()\"\n [style.max-width]=\"IsEllipsis() ? width : null\"\n [style.overflow]=\"IsEllipsis() ? 'hidden' : null\"\n [style.text-overflow]=\"IsEllipsis() ? 'ellipsis' : null\"\n [style.white-space]=\"IsEllipsis() ? 'nowrap' : null\"\n [class.text-right]=\"alignment === 'right'\"\n [class.text-center]=\"alignment === 'center'\"\n [class.table-active]=\"contextstyle === 'active'\"\n [class.table-primary]=\"contextstyle === 'primary'\"\n [class.table-secondary]=\"contextstyle === 'secondary'\"\n [class.table-light]=\"contextstyle === 'light'\"\n [class.table-dark]=\"contextstyle === 'dark'\"\n [class.table-success]=\"contextstyle === 'success'\"\n [class.table-warning]=\"contextstyle === 'warning'\"\n [class.table-danger]=\"contextstyle === 'danger'\"\n [class.table-info]=\"contextstyle === 'info'\">\n <span\n [attr.title]=\"IsEllipsis() ? value : null\"\n [innerHtml]=\"value\"></span>\n</td>\n",
2048
2048
  providers: [
2049
2049
  {
2050
2050
  provide: sacCommon.SacGridColumnBaseCommon,
@@ -2080,7 +2080,7 @@
2080
2080
  SacGridColumnActionComponent.decorators = [
2081
2081
  { type: core.Component, args: [{
2082
2082
  selector: 'sac-gridcolumnaction',
2083
- template: "<th\n #headerElement\n scope=\"col\"\n *ngIf=\"IsHeader()\"\n [style.width]=\"width\"\n [class.text-right]=\"alignment === 'right'\"\n [class.text-center]=\"alignment === 'center'\">\n <span></span>\n</th>\n<td\n #bodyElement\n scope=\"col\"\n class=\"px-2\"\n *ngIf=\"IsBody()\"\n [class.text-right]=\"alignment === 'right'\"\n [class.text-center]=\"alignment === 'center'\">\n <ng-content></ng-content>\n</td>\n",
2083
+ template: "<th\n #headerElement\n scope=\"col\"\n *ngIf=\"IsHeader()\"\n [style.width]=\"width\"\n [class.text-right]=\"alignment === 'right'\"\n [class.text-center]=\"alignment === 'center'\">\n <span></span>\n</th>\n<td\n #bodyElement\n scope=\"col\"\n class=\"px-2\"\n *ngIf=\"IsBody()\"\n [class.text-right]=\"alignment === 'right'\"\n [class.text-center]=\"alignment === 'center'\"\n [class.table-active]=\"contextstyle === 'active'\"\n [class.table-primary]=\"contextstyle === 'primary'\"\n [class.table-secondary]=\"contextstyle === 'secondary'\"\n [class.table-light]=\"contextstyle === 'light'\"\n [class.table-dark]=\"contextstyle === 'dark'\"\n [class.table-success]=\"contextstyle === 'success'\"\n [class.table-warning]=\"contextstyle === 'warning'\"\n [class.table-danger]=\"contextstyle === 'danger'\"\n [class.table-info]=\"contextstyle === 'info'\">\n <ng-content></ng-content>\n</td>\n",
2084
2084
  providers: [
2085
2085
  {
2086
2086
  provide: sacCommon.SacGridColumnBaseCommon,