@the-liberators/ngx-scrumteamsurvey-tools 2.3.16 → 2.3.17

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.
@@ -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, { "label": { "alias": "label"; "required": false; }; "maximum": { "alias": "maximum"; "required": false; }; "addLabel": { "alias": "addLabel"; "required": false; }; "emptyLabel": { "alias": "emptyLabel"; "required": false; }; }, { "changed": "changed"; }, never, never, false, 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
  }
@@ -0,0 +1,5 @@
1
+ export declare class KeyValueDto {
2
+ constructor(key: string, value: string);
3
+ key: string;
4
+ value: string;
5
+ }
@@ -20,4 +20,5 @@ export declare class SnapshotDto {
20
20
  coreDimensions: DimensionResultDto[];
21
21
  factorScores: FactorScoreCollectionDto;
22
22
  notificationEmail: string;
23
+ invitationGoal: number;
23
24
  }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-liberators/ngx-scrumteamsurvey-tools",
3
- "version": "2.3.16",
3
+ "version": "2.3.17",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.9",
6
6
  "@angular/core": "^18.2.9",
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/multi-email-input/multi-email-input.component';
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';