@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.
- package/bundles/theseam-ui-common-framework.umd.js +48 -14
- package/bundles/theseam-ui-common-framework.umd.js.map +1 -1
- package/esm2015/framework/base-layout/base-layout.module.js +4 -1
- package/esm2015/framework/base-layout/directives/base-layout-side-bar-footer.directive.js +15 -0
- package/esm2015/framework/side-nav/side-nav.component.js +24 -7
- package/esm2015/framework/side-nav/side-nav.module.js +4 -2
- package/esm2015/framework/theseam-ui-common-framework.js +10 -9
- package/fesm2015/theseam-ui-common-framework.js +39 -7
- package/fesm2015/theseam-ui-common-framework.js.map +1 -1
- package/framework/base-layout/directives/base-layout-side-bar-footer.directive.d.ts +6 -0
- package/framework/side-nav/side-nav.component.d.ts +7 -2
- package/framework/theseam-ui-common-framework.d.ts +9 -8
- package/framework/theseam-ui-common-framework.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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 {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
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';
|