@dereekb/dbx-web 9.18.2 → 9.18.3

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.
@@ -5082,15 +5082,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
5082
5082
  class DbxSectionPageComponent extends DbxSectionHeaderComponent {
5083
5083
  constructor() {
5084
5084
  super(...arguments);
5085
+ this.scroll = 'all';
5085
5086
  this.hintInline = true;
5086
5087
  }
5087
5088
  }
5088
5089
  DbxSectionPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxSectionPageComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
5089
- DbxSectionPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxSectionPageComponent, selector: "dbx-section-page", inputs: { hintInline: "hintInline" }, usesInheritance: true, ngImport: i0, template: `
5090
- <div class="dbx-content-page dbx-section-page">
5091
- <div class="dbx-section-header" [h]="h ?? 2" [header]="header" [onlyHeader]="onlyHeader" [icon]="icon" [hint]="hint" [hintInline]="true">
5092
- <ng-content select="[sectionHeader]"></ng-content>
5093
- </div>
5090
+ DbxSectionPageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxSectionPageComponent, selector: "dbx-section-page", inputs: { scroll: "scroll", hintInline: "hintInline" }, host: { properties: { "class": "\"dbx-section-page-scroll-\" + scroll" }, classAttribute: "d-block dbx-content-page dbx-section-page" }, usesInheritance: true, ngImport: i0, template: `
5091
+ <div class="dbx-section-header" [h]="h ?? 2" [header]="header" [onlyHeader]="onlyHeader" [icon]="icon" [hint]="hint" [hintInline]="true">
5092
+ <ng-content select="[sectionHeader]"></ng-content>
5093
+ </div>
5094
+ <div class="dbx-section-page-content">
5094
5095
  <ng-content></ng-content>
5095
5096
  </div>
5096
5097
  `, isInline: true, dependencies: [{ kind: "component", type: DbxSectionHeaderComponent, selector: "dbx-section-header,.dbx-section-header", inputs: ["h", "header", "onlyHeader", "icon", "hint", "hintInline", "headerConfig"] }] });
@@ -5099,18 +5100,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
5099
5100
  args: [{
5100
5101
  selector: 'dbx-section-page',
5101
5102
  template: `
5102
- <div class="dbx-content-page dbx-section-page">
5103
- <div class="dbx-section-header" [h]="h ?? 2" [header]="header" [onlyHeader]="onlyHeader" [icon]="icon" [hint]="hint" [hintInline]="true">
5104
- <ng-content select="[sectionHeader]"></ng-content>
5105
- </div>
5103
+ <div class="dbx-section-header" [h]="h ?? 2" [header]="header" [onlyHeader]="onlyHeader" [icon]="icon" [hint]="hint" [hintInline]="true">
5104
+ <ng-content select="[sectionHeader]"></ng-content>
5105
+ </div>
5106
+ <div class="dbx-section-page-content">
5106
5107
  <ng-content></ng-content>
5107
5108
  </div>
5108
- `
5109
+ `,
5110
+ host: {
5111
+ class: 'd-block dbx-content-page dbx-section-page',
5112
+ '[class]': '"dbx-section-page-scroll-" + scroll'
5113
+ }
5109
5114
  }]
5110
- }], propDecorators: { hintInline: [{
5115
+ }], propDecorators: { scroll: [{
5116
+ type: Input
5117
+ }], hintInline: [{
5111
5118
  type: Input
5112
5119
  }] } });
5113
5120
 
5121
+ const declarations = [DbxSectionHeaderComponent, DbxSectionPageComponent, DbxSectionComponent, DbxSubSectionComponent, DbxIntroActionSectionComponent];
5114
5122
  /**
5115
5123
  * Module for container-type components.
5116
5124
  */
@@ -5123,8 +5131,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
5123
5131
  type: NgModule,
5124
5132
  args: [{
5125
5133
  imports: [CommonModule, DbxRouterAnchorModule, MatButtonModule, MatRippleModule, MatIconModule],
5126
- declarations: [DbxSectionHeaderComponent, DbxSectionPageComponent, DbxSectionComponent, DbxSubSectionComponent, DbxIntroActionSectionComponent],
5127
- exports: [DbxSectionHeaderComponent, DbxSectionPageComponent, DbxSectionComponent, DbxSubSectionComponent, DbxIntroActionSectionComponent]
5134
+ declarations,
5135
+ exports: declarations
5128
5136
  }]
5129
5137
  }] });
5130
5138