@apipass/inputs 1.0.128 → 1.0.129

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.
@@ -7,6 +7,7 @@ export interface InputKeyValueType {
7
7
  }
8
8
  export declare class InputKeyValueComponent implements OnInit {
9
9
  private _model;
10
+ private temporaryItem;
10
11
  showOptions: boolean;
11
12
  labelKey: string;
12
13
  labelValue: string;
@@ -18,7 +19,8 @@ export declare class InputKeyValueComponent implements OnInit {
18
19
  modelChange: EventEmitter<InputKeyValueType[]>;
19
20
  ngOnInit(): void;
20
21
  onChangeValues(last: boolean, $event: string): void;
21
- removeItem(index: any): void;
22
+ addTemporaryItem(): void;
23
+ removeItem(index: number): void;
22
24
  inputOptionChanged(event: string, index: number): void;
23
25
  static ɵfac: i0.ɵɵFactoryDeclaration<InputKeyValueComponent, never>;
24
26
  static ɵcmp: i0.ɵɵComponentDeclaration<InputKeyValueComponent, "input-key-value", never, { "labelKey": { "alias": "labelKey"; "required": false; }; "labelValue": { "alias": "labelValue"; "required": false; }; "widthPercentageInputOptions": { "alias": "widthPercentageInputOptions"; "required": false; }; "inputOptionsInitSelected": { "alias": "inputOptionsInitSelected"; "required": false; }; "inputOptions": { "alias": "inputOptions"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
@@ -6,6 +6,8 @@ export interface InputOptionsType {
6
6
  title: string;
7
7
  }
8
8
  export declare class InputTextComponent extends ValueAccessorBase<string> {
9
+ private _inputOptionsInitSelected;
10
+ private _inputOptions;
9
11
  label: string;
10
12
  disabled: boolean;
11
13
  iconSuffix: string;
@@ -14,8 +16,10 @@ export declare class InputTextComponent extends ValueAccessorBase<string> {
14
16
  size: 'DEFAULT' | 'SLIM';
15
17
  debounceTime: number;
16
18
  widthPercentageInputOptions: number;
17
- inputOptions: InputOptionsType[];
18
- inputOptionsInitSelected: string;
19
+ set inputOptions(inputOptions: InputOptionsType[]);
20
+ get inputOptions(): InputOptionsType[];
21
+ set inputOptionsInitSelected(inputOptionsInitSelected: string);
22
+ get inputOptionsInitSelected(): string;
19
23
  suffixIconClick: EventEmitter<boolean>;
20
24
  prefixIconClick: EventEmitter<boolean>;
21
25
  onDebounce: EventEmitter<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apipass/inputs",
3
- "version": "1.0.128",
3
+ "version": "1.0.129",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "16.0.2",
6
6
  "@angular/cdk": "16.0.1",