@the-liberators/ngx-scrumteamsurvey-tools 2.3.16 → 2.3.18
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/actions/dialogs/dialog-export-actions/dialog-export-actions.component.mjs +3 -3
- package/esm2022/lib/components/metadata-input/metadata-input.component.mjs +99 -0
- package/esm2022/lib/components/metadata-input/metadata-input.module.mjs +39 -0
- package/esm2022/lib/components/multi-email-input/multi-email-input.component.mjs +5 -7
- package/esm2022/lib/models/keyValueDto.mjs +7 -0
- package/esm2022/lib/results/dialogs/dialog-export-factorscores/dialog-export-factorscores.component.mjs +3 -3
- package/esm2022/lib/results/dialogs/dialog-export-teamlist/dialog-export-teamlist.component.mjs +3 -3
- package/esm2022/lib/results/models/snapshotDto.model.mjs +1 -1
- package/esm2022/lib/results/models/teamDto.model.mjs +1 -1
- package/esm2022/public-api.mjs +4 -2
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs +319 -191
- package/fesm2022/the-liberators-ngx-scrumteamsurvey-tools.mjs.map +1 -1
- package/lib/components/metadata-input/metadata-input.component.d.ts +27 -0
- package/lib/components/metadata-input/metadata-input.module.d.ts +11 -0
- package/lib/components/multi-email-input/multi-email-input.component.d.ts +1 -2
- package/lib/models/keyValueDto.d.ts +5 -0
- package/lib/results/models/snapshotDto.model.d.ts +1 -0
- package/lib/results/models/teamDto.model.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormArray, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { KeyValueDto } from '../../models/keyValueDto';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MetaDataInputComponent implements ControlValueAccessor {
|
|
6
|
+
private formBuilder;
|
|
7
|
+
form: FormGroup;
|
|
8
|
+
maximum: number;
|
|
9
|
+
addLabel: string;
|
|
10
|
+
emptyLabel: string;
|
|
11
|
+
changed: EventEmitter<KeyValueDto[]>;
|
|
12
|
+
constructor(formBuilder: FormBuilder);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
onChange: any;
|
|
15
|
+
onTouch: any;
|
|
16
|
+
writeValue(fields: KeyValueDto[]): void;
|
|
17
|
+
getValue(): KeyValueDto[];
|
|
18
|
+
registerOnChange(fn: any): void;
|
|
19
|
+
registerOnTouched(fn: any): void;
|
|
20
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
21
|
+
addField(): void;
|
|
22
|
+
removeField(index: number): void;
|
|
23
|
+
fields(): FormArray;
|
|
24
|
+
private createField;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MetaDataInputComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetaDataInputComponent, "metadata-input", never, { "maximum": { "alias": "maximum"; "required": false; }; "addLabel": { "alias": "addLabel"; "required": false; }; "emptyLabel": { "alias": "emptyLabel"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./metadata-input.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/material/form-field";
|
|
6
|
+
import * as i5 from "@angular/material/input";
|
|
7
|
+
export declare class MetadataInputModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataInputModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MetadataInputModule, [typeof i1.MetaDataInputComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.MatFormFieldModule, typeof i3.ReactiveFormsModule, typeof i5.MatInputModule], [typeof i1.MetaDataInputComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MetadataInputModule>;
|
|
11
|
+
}
|
|
@@ -4,7 +4,6 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class MultiEmailInputComponent implements ControlValueAccessor {
|
|
5
5
|
private formBuilder;
|
|
6
6
|
form: FormGroup;
|
|
7
|
-
label: string;
|
|
8
7
|
maximum: number;
|
|
9
8
|
addLabel: string;
|
|
10
9
|
emptyLabel: string;
|
|
@@ -25,5 +24,5 @@ export declare class MultiEmailInputComponent implements ControlValueAccessor {
|
|
|
25
24
|
private createField;
|
|
26
25
|
private isValidEmail;
|
|
27
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiEmailInputComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiEmailInputComponent, "multi-email-input", never, { "
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiEmailInputComponent, "multi-email-input", never, { "maximum": { "alias": "maximum"; "required": false; }; "addLabel": { "alias": "addLabel"; "required": false; }; "emptyLabel": { "alias": "emptyLabel"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
|
|
29
28
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { KeyValueDto } from "../../models/keyValueDto";
|
|
1
2
|
import { BadgeDto } from "./badgeDto";
|
|
2
3
|
import { BenchmarkTypeEnum, InterventionSummaryDto } from "./factorScoreDto";
|
|
3
4
|
import { SnapshotDto } from "./snapshotDto.model";
|
|
@@ -21,4 +22,5 @@ export declare class TeamDto {
|
|
|
21
22
|
improvementGoal: string;
|
|
22
23
|
archived: boolean;
|
|
23
24
|
teamType: string;
|
|
25
|
+
metaData: KeyValueDto[];
|
|
24
26
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -71,7 +71,8 @@ export * from './lib/components/tabnavigator/tabnavigator.component';
|
|
|
71
71
|
export * from './lib/components/tabnavigator/tabnavigator.module';
|
|
72
72
|
export * from './lib/components/multi-email-input/multi-email-input.component';
|
|
73
73
|
export * from './lib/components/multi-email-input/multi-email-input.module';
|
|
74
|
-
export * from './lib/components/
|
|
74
|
+
export * from './lib/components/metadata-input/metadata-input.component';
|
|
75
|
+
export * from './lib/components/metadata-input/metadata-input.module';
|
|
75
76
|
export * from './lib/components/topicselector/customCheckValidator';
|
|
76
77
|
export * from './lib/components/topicselector/minTopicsSelectedValidator';
|
|
77
78
|
export * from './lib/components/topicselector/topic-selector.component';
|
|
@@ -126,6 +127,7 @@ export * from './lib/models/pagingOptions';
|
|
|
126
127
|
export * from './lib/models/selectListItem';
|
|
127
128
|
export * from './lib/models/userInfoDto';
|
|
128
129
|
export * from './lib/models/userSettingsDto';
|
|
130
|
+
export * from './lib/models/keyValueDto';
|
|
129
131
|
export * from './lib/pipes/callback/callback.module';
|
|
130
132
|
export * from './lib/pipes/callback/callback.pipe';
|
|
131
133
|
export * from './lib/pipes/dateRange/ngx-dateRange.module';
|