tango-app-ui-shared 3.0.38-dev → 3.0.40-dev
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/esm2022/lib/modules/common/custom-select/custom-select.component.mjs +3 -3
- package/esm2022/lib/modules/common/filters/filters.component.mjs +10 -3
- package/esm2022/lib/modules/common/pagination/pagination.component.mjs +5 -5
- package/esm2022/lib/modules/intro/lead-intro/lead-intro.component.mjs +20 -4
- package/esm2022/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.mjs +4 -4
- package/esm2022/lib/modules/layout/toolbar/toolbar.component.mjs +2 -2
- package/fesm2022/{tango-app-ui-shared-intro.module-6XgiboVK.mjs → tango-app-ui-shared-intro.module-fAn0-Hl0.mjs} +19 -4
- package/fesm2022/tango-app-ui-shared-intro.module-fAn0-Hl0.mjs.map +1 -0
- package/fesm2022/tango-app-ui-shared.mjs +20 -13
- package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
- package/lib/modules/common/pagination/pagination.component.d.ts +1 -1
- package/lib/modules/intro/lead-intro/lead-intro.component.d.ts +9 -3
- package/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.d.ts +1 -0
- package/package.json +1 -1
- package/fesm2022/tango-app-ui-shared-intro.module-6XgiboVK.mjs.map +0 -1
|
@@ -11,7 +11,7 @@ export declare class PaginationComponent {
|
|
|
11
11
|
pageChange: EventEmitter<number>;
|
|
12
12
|
pageSizeChange: EventEmitter<number>;
|
|
13
13
|
onPageChange(page: number): void;
|
|
14
|
-
onPageSizeChange(): void;
|
|
14
|
+
onPageSizeChange(pageSize: any): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "lib-pagination", never, { "collection": { "alias": "collection"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "directionLinks": { "alias": "directionLinks"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "paginationSizes": { "alias": "paginationSizes"; "required": false; }; }, { "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; }, never, never, false, never>;
|
|
17
17
|
}
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { GlobalStateService, PageInfoService } from 'tango-app-ui-global';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class LeadIntroComponent {
|
|
5
|
+
export declare class LeadIntroComponent implements OnDestroy {
|
|
4
6
|
private pageInfo;
|
|
5
|
-
|
|
7
|
+
private gs;
|
|
8
|
+
private router;
|
|
9
|
+
private readonly destroy$;
|
|
10
|
+
constructor(pageInfo: PageInfoService, gs: GlobalStateService, router: Router);
|
|
11
|
+
ngOnDestroy(): void;
|
|
6
12
|
setPageData(): void;
|
|
7
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<LeadIntroComponent, never>;
|
|
8
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<LeadIntroComponent, "lib-lead-intro", never, {}, {}, never, never, false, never>;
|
|
@@ -9,6 +9,7 @@ export declare class SidebarMenuComponent implements OnInit {
|
|
|
9
9
|
private router;
|
|
10
10
|
usersList: any;
|
|
11
11
|
authlocalStorageToken: string;
|
|
12
|
+
oldDashboardRoutingUrl: any;
|
|
12
13
|
constructor(authService: AuthService, gs: GlobalStateService, router: Router);
|
|
13
14
|
private readonly destroy$;
|
|
14
15
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tango-app-ui-shared-intro.module-6XgiboVK.mjs","sources":["../../../projects/tango-app-shared/src/lib/modules/intro/lead-intro/lead-intro.component.ts","../../../projects/tango-app-shared/src/lib/modules/intro/lead-intro/lead-intro.component.html","../../../projects/tango-app-shared/src/lib/modules/intro/intro-routing.module.ts","../../../projects/tango-app-shared/src/lib/modules/intro/intro.module.ts"],"sourcesContent":["import { Component } from '@angular/core';\r\nimport { PageInfoService } from 'tango-app-ui-global';\r\n\r\n@Component({\r\n selector: 'lib-lead-intro',\r\n templateUrl: './lead-intro.component.html',\r\n styleUrl: './lead-intro.component.scss'\r\n})\r\nexport class LeadIntroComponent {\r\n\r\n constructor(private pageInfo: PageInfoService,){\r\n this.setPageData()\r\n }\r\n\r\n setPageData() {\r\n this.pageInfo.setTitle('Explore')\r\n this.pageInfo.setDescription('')\r\n this.pageInfo.setBreadcrumbs([\r\n { title: 'Explore', path: '/explore', isActive: false, isSeparator: false },\r\n { title: 'Explore', path: '/explore', isActive: false, isSeparator: true },\r\n ])\r\n }\r\n\r\n}\r\n","<div class=\"d-flex align-items-center justify-content-center\">\r\n <h1>Waiting for approval</h1>\r\n</div>","import { NgModule } from '@angular/core';\r\nimport { RouterModule, Routes } from '@angular/router';\r\nimport { LeadIntroComponent } from './lead-intro/lead-intro.component';\r\n\r\nconst routes: Routes = [\r\n {\r\n path:'',\r\n component:LeadIntroComponent\r\n }\r\n];\r\n\r\n@NgModule({\r\n imports: [RouterModule.forChild(routes)],\r\n exports: [RouterModule]\r\n})\r\nexport class IntroRoutingModule { }\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\n\r\nimport { IntroRoutingModule } from './intro-routing.module';\r\nimport { LeadIntroComponent } from './lead-intro/lead-intro.component';\r\n\r\n\r\n@NgModule({\r\n declarations: [\r\n LeadIntroComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n IntroRoutingModule\r\n ]\r\n})\r\nexport class IntroModule { }\r\n"],"names":[],"mappings":"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"}
|