@indice/ng-components 0.5.0-beta.1 → 0.5.0
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/index.d.ts
CHANGED
|
@@ -699,6 +699,8 @@ declare class SidePaneComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
699
699
|
onComplete: EventEmitter<boolean>;
|
|
700
700
|
onOpen: EventEmitter<any>;
|
|
701
701
|
onClose: EventEmitter<any>;
|
|
702
|
+
params: any | undefined;
|
|
703
|
+
template: TemplateRef<any> | undefined;
|
|
702
704
|
constructor(router: Router, document: any);
|
|
703
705
|
ngOnChanges(changes: SimpleChanges): void;
|
|
704
706
|
ngOnDestroy(): void;
|
|
@@ -711,7 +713,7 @@ declare class SidePaneComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
711
713
|
show(): void;
|
|
712
714
|
hide(): void;
|
|
713
715
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
|
|
714
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; "size": { "alias": "pane-size"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
716
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; "size": { "alias": "pane-size"; "required": false; }; "params": { "alias": "params"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
715
717
|
}
|
|
716
718
|
|
|
717
719
|
declare class NavLinksListComponent implements OnInit, OnDestroy {
|
|
@@ -1242,20 +1244,23 @@ declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterViewInit,
|
|
|
1242
1244
|
private _componentLoaderFactory;
|
|
1243
1245
|
private _config;
|
|
1244
1246
|
private _dynamicComponentHosts;
|
|
1247
|
+
rightPane: SidePaneComponent | undefined;
|
|
1245
1248
|
busy: boolean;
|
|
1246
1249
|
sidebarFooterTemplate?: TemplateRef<any>;
|
|
1247
1250
|
private _routerSub$;
|
|
1248
|
-
constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
|
|
1249
1251
|
showRightPaneSM: boolean;
|
|
1250
1252
|
activeConfig: IShellConfig;
|
|
1251
1253
|
loaded: boolean;
|
|
1252
1254
|
hideSidebar: boolean;
|
|
1255
|
+
constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
|
|
1253
1256
|
ngAfterViewChecked(): void;
|
|
1254
1257
|
ngOnInit(): void;
|
|
1255
1258
|
ngAfterViewInit(): void;
|
|
1256
1259
|
private initCustomComponents;
|
|
1257
1260
|
ngOnDestroy(): void;
|
|
1258
1261
|
private loadCustomComponent;
|
|
1262
|
+
onSidePaneActivated($event: any): void;
|
|
1263
|
+
onSidePaneDeactivated($event: any): void;
|
|
1259
1264
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
|
|
1260
1265
|
static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "busy": { "alias": "busy"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
1261
1266
|
}
|
|
@@ -1379,6 +1384,7 @@ declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
|
|
|
1379
1384
|
icon: string | null;
|
|
1380
1385
|
busy: boolean;
|
|
1381
1386
|
actions: ViewAction[] | null;
|
|
1387
|
+
onAction: EventEmitter<ViewAction>;
|
|
1382
1388
|
private optionsLoaded;
|
|
1383
1389
|
private _options;
|
|
1384
1390
|
selectedTab: any;
|
|
@@ -1391,8 +1397,9 @@ declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
|
|
|
1391
1397
|
onSidePaneDeactivated($event: any): void;
|
|
1392
1398
|
closeSidePane(): void;
|
|
1393
1399
|
navigateLink(link: any): void;
|
|
1400
|
+
emitActionClick(action: ViewAction): void;
|
|
1394
1401
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
|
|
1395
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": { "alias": "title"; "required": false; }; "primary": { "alias": "primary-links"; "required": false; }; "secondary": { "alias": "secondary-links"; "required": false; }; "metaItems": { "alias": "meta-items"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1402
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": { "alias": "title"; "required": false; }; "primary": { "alias": "primary-links"; "required": false; }; "secondary": { "alias": "secondary-links"; "required": false; }; "metaItems": { "alias": "meta-items"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "onAction": "onAction"; }, never, ["*"], false, never>;
|
|
1396
1403
|
}
|
|
1397
1404
|
|
|
1398
1405
|
declare class SideViewLayoutComponent implements OnInit {
|
|
@@ -1424,6 +1431,7 @@ declare class SideViewLayoutComponent implements OnInit {
|
|
|
1424
1431
|
declare class FormLayoutComponent implements OnInit {
|
|
1425
1432
|
private router$;
|
|
1426
1433
|
private searchInput$?;
|
|
1434
|
+
formPane: SidePaneComponent | undefined;
|
|
1427
1435
|
title: string | null;
|
|
1428
1436
|
image: string | null;
|
|
1429
1437
|
icon: string | null;
|
|
@@ -1435,11 +1443,12 @@ declare class FormLayoutComponent implements OnInit {
|
|
|
1435
1443
|
onComplete: EventEmitter<boolean>;
|
|
1436
1444
|
constructor(router$: Router);
|
|
1437
1445
|
ngOnInit(): void;
|
|
1438
|
-
onSidePaneDeactivated($event: any): void;
|
|
1439
1446
|
emitActionClick(action: ViewAction): void;
|
|
1440
1447
|
searchActionClick(action: ViewAction, text: string): void;
|
|
1441
1448
|
searchActionType(text: string): void;
|
|
1442
1449
|
routerLinkActionClick(action: RouterViewAction | any, relative?: boolean): void;
|
|
1450
|
+
onSidePaneDeactivated($event: any): void;
|
|
1451
|
+
onSidePaneActivated($event: any): void;
|
|
1443
1452
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormLayoutComponent, never>;
|
|
1444
1453
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": { "alias": "title"; "required": false; }; "image": { "alias": "image"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "searchPlaceholder": { "alias": "search-placeholder"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "subTitle": { "alias": "sub-title"; "required": false; }; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"], false, never>;
|
|
1445
1454
|
}
|