@theseam/ui-common 0.3.8 → 0.3.10

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.
@@ -0,0 +1,6 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { HasElementRef } from '@theseam/ui-common/core';
3
+ export declare class BaseLayoutSideBarFooterDirective implements HasElementRef {
4
+ _elementRef: ElementRef;
5
+ constructor(_elementRef: ElementRef);
6
+ }
@@ -1,12 +1,14 @@
1
1
  import { BooleanInput } from '@angular/cdk/coercion';
2
- import { OnDestroy, OnInit } from '@angular/core';
2
+ import { EventEmitter, OnDestroy, OnInit, TemplateRef, ViewContainerRef } from '@angular/core';
3
3
  import { BehaviorSubject, Observable } from 'rxjs';
4
4
  import { TheSeamLayoutService } from '@theseam/ui-common/layout';
5
5
  import { ITheSeamBaseLayoutNav, ITheSeamBaseLayoutRef } from '../base-layout/index';
6
6
  import { ISideNavItem } from './side-nav.models';
7
7
  import { TheSeamSideNavService } from './side-nav.service';
8
+ import { TemplatePortal } from '@angular/cdk/portal';
8
9
  export declare function sideNavExpandStateChangeFn(fromState: string, toState: string): boolean;
9
10
  export declare class SideNavComponent implements OnInit, OnDestroy, ITheSeamBaseLayoutNav {
11
+ private readonly _viewContainerRef;
10
12
  private readonly _layout;
11
13
  private readonly _sideNav;
12
14
  private readonly _baseLayoutRef;
@@ -26,10 +28,13 @@ export declare class SideNavComponent implements OnInit, OnDestroy, ITheSeamBase
26
28
  set overlay(value: boolean);
27
29
  private _overlay;
28
30
  readonly overlay$: Observable<boolean>;
31
+ toggleExpand: EventEmitter<boolean>;
29
32
  readonly isMobile$: Observable<boolean>;
30
33
  readonly sideNavExpandedState$: Observable<string>;
31
34
  _backdropHidden: BehaviorSubject<boolean>;
32
- constructor(_layout: TheSeamLayoutService, _sideNav: TheSeamSideNavService, _baseLayoutRef: ITheSeamBaseLayoutRef);
35
+ _sideBarFooterTpl?: TemplateRef<any> | null;
36
+ _sideBarFooterPortal?: TemplatePortal;
37
+ constructor(_viewContainerRef: ViewContainerRef, _layout: TheSeamLayoutService, _sideNav: TheSeamSideNavService, _baseLayoutRef: ITheSeamBaseLayoutRef);
33
38
  ngOnInit(): void;
34
39
  ngOnDestroy(): void;
35
40
  expand(): void;
@@ -2,11 +2,12 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
- export { TheSeamSchemaFormCheckboxComponent as ɵc } from './schema-form-controls/schema-form-checkbox/schema-form-checkbox.component';
6
- export { TheSeamSchemaFormControlsModule as ɵb } from './schema-form-controls/schema-form-controls.module';
7
- export { TheSeamSchemaFormInputComponent as ɵf } from './schema-form-controls/schema-form-input/schema-form-input.component';
8
- export { TheSeamSchemaFormNumberComponent as ɵg } from './schema-form-controls/schema-form-number/schema-form-number.component';
9
- export { TheSeamSchemaFormSelectComponent as ɵe } from './schema-form-controls/schema-form-select/schema-form-select.component';
10
- export { TheSeamSchemaFormSubmitSplitComponent as ɵh } from './schema-form-controls/schema-form-submit-split/schema-form-submit-split.component';
11
- export { TheSeamSchemaFormSubmitComponent as ɵd } from './schema-form-controls/schema-form-submit/schema-form-submit.component';
12
- export { TheSeamSideNavService as ɵa } from './side-nav/side-nav.service';
5
+ export { BaseLayoutSideBarFooterDirective as ɵa } from './base-layout/directives/base-layout-side-bar-footer.directive';
6
+ export { TheSeamSchemaFormCheckboxComponent as ɵd } from './schema-form-controls/schema-form-checkbox/schema-form-checkbox.component';
7
+ export { TheSeamSchemaFormControlsModule as ɵc } from './schema-form-controls/schema-form-controls.module';
8
+ export { TheSeamSchemaFormInputComponent as ɵg } from './schema-form-controls/schema-form-input/schema-form-input.component';
9
+ export { TheSeamSchemaFormNumberComponent as ɵh } from './schema-form-controls/schema-form-number/schema-form-number.component';
10
+ export { TheSeamSchemaFormSelectComponent as ɵf } from './schema-form-controls/schema-form-select/schema-form-select.component';
11
+ export { TheSeamSchemaFormSubmitSplitComponent as ɵi } from './schema-form-controls/schema-form-submit-split/schema-form-submit-split.component';
12
+ export { TheSeamSchemaFormSubmitComponent as ɵe } from './schema-form-controls/schema-form-submit/schema-form-submit.component';
13
+ export { TheSeamSideNavService as ɵb } from './side-nav/side-nav.service';