@the-liberators/ngx-scrumteamsurvey-tools 2.3.30 → 2.3.33
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/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs +36 -1
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs.map +1 -1
- package/lib/pipes/truncate/truncate.module.d.ts +7 -0
- package/lib/pipes/truncate/truncate.pipe.d.ts +7 -0
- package/lib/results/models/teamListResponseDto.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./truncate.pipe";
|
|
3
|
+
export declare class TruncatePipeModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipeModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TruncatePipeModule, [typeof i1.TruncatePipe], never, [typeof i1.TruncatePipe]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TruncatePipeModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TruncatePipe implements PipeTransform {
|
|
4
|
+
transform(value: string, limit?: number): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", false>;
|
|
7
|
+
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { PaginatedResponse } from "../../models/paginatedResponse";
|
|
2
2
|
import { TeamDto } from "./teamDto.model";
|
|
3
|
+
import { SelectListItemApiDto } from "./teamMetaDataDto";
|
|
3
4
|
export declare class TeamListResponseDto {
|
|
4
5
|
teams: PaginatedResponse<TeamDto>;
|
|
5
6
|
tags: string[];
|
|
6
7
|
names: TeamNameAndKeyDto[];
|
|
8
|
+
teamTypes: SelectListItemApiDto[];
|
|
7
9
|
}
|
|
8
10
|
export declare class TeamNameAndKeyDto {
|
|
9
11
|
name: string;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -137,6 +137,8 @@ export * from './lib/pipes/segmentName/segmentName.module';
|
|
|
137
137
|
export * from './lib/pipes/segmentName/segmentName.pipe';
|
|
138
138
|
export * from './lib/pipes/slugify/ngx-slugify.module';
|
|
139
139
|
export * from './lib/pipes/slugify/ngx-slugify.pipe';
|
|
140
|
+
export * from './lib/pipes/truncate/truncate.module';
|
|
141
|
+
export * from './lib/pipes/truncate/truncate.pipe';
|
|
140
142
|
export * from './lib/results/components/arrow/arrow.component';
|
|
141
143
|
export * from './lib/results/components/badge-progression/badge-progression.component';
|
|
142
144
|
export * from './lib/results/components/badge-streak/badge-streak.component';
|