@skyux/layout 5.6.1 → 5.7.1

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 (27) hide show
  1. package/bundles/skyux-layout.umd.js +39 -42
  2. package/documentation.json +68 -1075
  3. package/esm2015/index.js +1 -1
  4. package/esm2015/index.js.map +1 -1
  5. package/esm2015/lib/modules/back-to-top/back-to-top-adapter.service.js +33 -38
  6. package/esm2015/lib/modules/back-to-top/back-to-top-adapter.service.js.map +1 -1
  7. package/esm2015/lib/modules/back-to-top/back-to-top.directive.js +1 -2
  8. package/esm2015/lib/modules/back-to-top/back-to-top.directive.js.map +1 -1
  9. package/esm2015/lib/modules/back-to-top/{back-top-top.module.js → back-to-top.module.js} +1 -1
  10. package/esm2015/lib/modules/back-to-top/back-to-top.module.js.map +1 -0
  11. package/esm2015/lib/modules/fluid-grid/column.component.js +3 -0
  12. package/esm2015/lib/modules/fluid-grid/column.component.js.map +1 -1
  13. package/esm2015/lib/modules/format/format.component.js +1 -1
  14. package/esm2015/lib/modules/format/format.component.js.map +1 -1
  15. package/esm2015/lib/modules/inline-delete/inline-delete-adapter.service.js.map +1 -1
  16. package/esm2015/lib/modules/shared/sky-layout-resources.module.js +1 -1
  17. package/esm2015/lib/modules/shared/sky-layout-resources.module.js.map +1 -1
  18. package/fesm2015/skyux-layout.js +41 -44
  19. package/fesm2015/skyux-layout.js.map +1 -1
  20. package/index.d.ts +1 -1
  21. package/lib/modules/back-to-top/back-to-top-adapter.service.d.ts +5 -4
  22. package/lib/modules/back-to-top/{back-top-top.module.d.ts → back-to-top.module.d.ts} +0 -0
  23. package/lib/modules/fluid-grid/column.component.d.ts +3 -0
  24. package/lib/modules/format/format.component.d.ts +1 -1
  25. package/lib/modules/shared/sky-layout-resources.module.d.ts +1 -1
  26. package/package.json +9 -9
  27. package/esm2015/lib/modules/back-to-top/back-top-top.module.js.map +0 -1
package/index.d.ts CHANGED
@@ -2,7 +2,7 @@ export * from './lib/modules/action-button/action-button-permalink';
2
2
  export * from './lib/modules/action-button/action-button.module';
3
3
  export * from './lib/modules/action-button/types/action-button-container-align-items';
4
4
  export * from './lib/modules/action-button/types/action-button-container-align-items-type';
5
- export * from './lib/modules/back-to-top/back-top-top.module';
5
+ export * from './lib/modules/back-to-top/back-to-top.module';
6
6
  export * from './lib/modules/back-to-top/models/back-to-top-message';
7
7
  export * from './lib/modules/back-to-top/models/back-to-top-message-type';
8
8
  export * from './lib/modules/back-to-top/models/back-to-top-options';
@@ -1,5 +1,5 @@
1
1
  import { ElementRef, OnDestroy } from '@angular/core';
2
- import { SkyAppWindowRef } from '@skyux/core';
2
+ import { SkyAppWindowRef, SkyScrollableHostService } from '@skyux/core';
3
3
  import { Observable } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  /**
@@ -7,8 +7,10 @@ import * as i0 from "@angular/core";
7
7
  */
8
8
  export declare class SkyBackToTopDomAdapterService implements OnDestroy {
9
9
  private windowRef;
10
+ private scrollableHostService;
10
11
  private ngUnsubscribe;
11
- constructor(windowRef: SkyAppWindowRef);
12
+ private scrollableHostScrollEventUnsubscribe;
13
+ constructor(windowRef: SkyAppWindowRef, scrollableHostService: SkyScrollableHostService);
12
14
  ngOnDestroy(): void;
13
15
  /**
14
16
  * This event returns a boolean on scroll indicating whether the provided element is in view.
@@ -20,8 +22,7 @@ export declare class SkyBackToTopDomAdapterService implements OnDestroy {
20
22
  * @param elementRef The target element reference.
21
23
  */
22
24
  scrollToElement(elementRef: ElementRef): void;
23
- findScrollableParent(element: any): any;
24
- isElementScrolledInView(element: any, parentElement: any): boolean;
25
+ isElementScrolledInView(element: ElementRef): boolean;
25
26
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyBackToTopDomAdapterService, never>;
26
27
  static ɵprov: i0.ɵɵInjectableDeclaration<SkyBackToTopDomAdapterService>;
27
28
  }
@@ -1,5 +1,8 @@
1
1
  import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
+ /**
4
+ * Displays a column within a row of the fluid grid.
5
+ */
3
6
  export declare class SkyColumnComponent implements OnInit, OnChanges {
4
7
  /**
5
8
  * Specifies the number of columns (1-12) to use on extra-small screens
@@ -5,7 +5,7 @@ export declare class SkyFormatComponent {
5
5
  itemsForDisplay: SkyFormatItem[];
6
6
  /**
7
7
  * The tokenized string that represents the template. Tokens use the `{n}` notation
8
- * where n is the ordinal of the item to replace the token.
8
+ * where `n` is the ordinal of the item to replace the token.
9
9
  */
10
10
  set text(value: string);
11
11
  get text(): string;
@@ -2,7 +2,7 @@ import { SkyAppLocaleInfo, SkyLibResourcesProvider } from '@skyux/i18n';
2
2
  import * as i0 from "@angular/core";
3
3
  import * as i1 from "@skyux/i18n";
4
4
  export declare class SkyLayoutResourcesProvider implements SkyLibResourcesProvider {
5
- getString(localeInfo: SkyAppLocaleInfo, name: string): string;
5
+ getString(localeInfo: SkyAppLocaleInfo, name: string): string | undefined;
6
6
  }
7
7
  /**
8
8
  * Import into any component library module that needs to use resource strings.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/layout",
3
- "version": "5.6.1",
3
+ "version": "5.7.1",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -22,14 +22,14 @@
22
22
  "@angular/forms": "^12.2.16",
23
23
  "@angular/platform-browser": "^12.2.16",
24
24
  "@angular/router": "^12.2.16",
25
- "@skyux-sdk/testing": "5.6.1",
26
- "@skyux/core": "5.6.1",
27
- "@skyux/forms": "5.6.1",
28
- "@skyux/i18n": "5.6.1",
29
- "@skyux/indicators": "5.6.1",
30
- "@skyux/modals": "5.6.1",
31
- "@skyux/router": "5.6.1",
32
- "@skyux/theme": "5.6.1"
25
+ "@skyux-sdk/testing": "5.7.1",
26
+ "@skyux/core": "5.7.1",
27
+ "@skyux/forms": "5.7.1",
28
+ "@skyux/i18n": "5.7.1",
29
+ "@skyux/indicators": "5.7.1",
30
+ "@skyux/modals": "5.7.1",
31
+ "@skyux/router": "5.7.1",
32
+ "@skyux/theme": "5.7.1"
33
33
  },
34
34
  "dependencies": {
35
35
  "tslib": "^2.3.1"
@@ -1 +0,0 @@
1
- {"version":3,"file":"back-top-top.module.js","sourceRoot":"","sources":["../../../../../../../../libs/components/layout/src/lib/modules/back-to-top/back-top-top.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAC;AAEjF,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;;AAahE,MAAM,OAAO,kBAAkB;;gHAAlB,kBAAkB;iHAAlB,kBAAkB,iBAVd,qBAAqB,EAAE,qBAAqB,aAEzD,YAAY;QACZ,aAAa;QACb,aAAa;QACb,wBAAwB,aAEhB,qBAAqB,EAAE,qBAAqB;iHAG3C,kBAAkB,YATpB;YACP,YAAY;YACZ,aAAa;YACb,aAAa;YACb,wBAAwB;SACzB;4FAIU,kBAAkB;kBAX9B,QAAQ;mBAAC;oBACR,YAAY,EAAE,CAAC,qBAAqB,EAAE,qBAAqB,CAAC;oBAC5D,OAAO,EAAE;wBACP,YAAY;wBACZ,aAAa;wBACb,aAAa;wBACb,wBAAwB;qBACzB;oBACD,OAAO,EAAE,CAAC,qBAAqB,EAAE,qBAAqB,CAAC;oBACvD,eAAe,EAAE,CAAC,qBAAqB,CAAC;iBACzC","sourcesContent":["import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyDockModule } from '@skyux/core';\nimport { SkyI18nModule } from '@skyux/i18n';\n\nimport { SkyLayoutResourcesModule } from '../shared/sky-layout-resources.module';\n\nimport { SkyBackToTopComponent } from './back-to-top.component';\nimport { SkyBackToTopDirective } from './back-to-top.directive';\n\n@NgModule({\n declarations: [SkyBackToTopComponent, SkyBackToTopDirective],\n imports: [\n CommonModule,\n SkyDockModule,\n SkyI18nModule,\n SkyLayoutResourcesModule,\n ],\n exports: [SkyBackToTopComponent, SkyBackToTopDirective],\n entryComponents: [SkyBackToTopComponent],\n})\nexport class SkyBackToTopModule {}\n"]}