@onemrvapublic/design-system 21.7.7 → 21.7.8-develop.1

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.
@@ -1,5 +1,5 @@
1
1
  // Auto-generated — do not edit
2
- const VERSION = '21.7.7';
2
+ const VERSION = '21.7.8-develop.1';
3
3
 
4
4
  const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;
5
5
 
@@ -1 +1 @@
1
- {"version":3,"file":"onemrvapublic-design-system.mjs","sources":["../../../../projects/onemrva/design-system/version.ts","../../../../projects/onemrva/design-system/index.ts","../../../../projects/onemrva/design-system/onemrvapublic-design-system.ts"],"sourcesContent":["// Auto-generated — do not edit\nexport const VERSION = '21.7.7';\n","export { VERSION } from './version';\n\nexport const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAA;AACO,MAAM,OAAO,GAAG;;ACChB,MAAM,yCAAyC,GAAG;;ACFzD;;AAEG;;;;"}
1
+ {"version":3,"file":"onemrvapublic-design-system.mjs","sources":["../../../../projects/onemrva/design-system/version.ts","../../../../projects/onemrva/design-system/index.ts","../../../../projects/onemrva/design-system/onemrvapublic-design-system.ts"],"sourcesContent":["// Auto-generated — do not edit\nexport const VERSION = '21.7.8-develop.1';\n","export { VERSION } from './version';\n\nexport const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAA;AACO,MAAM,OAAO,GAAG;;ACChB,MAAM,yCAAyC,GAAG;;ACFzD;;AAEG;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onemrvapublic/design-system",
3
- "version": "21.7.7",
3
+ "version": "21.7.8-develop.1",
4
4
  "description": "Design System Onem/Rva without theme included",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,10 +1,12 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { OnInit } from '@angular/core';
3
3
  import { FormGroup, FormControl } from '@angular/forms';
4
+ import { OnemrvaMatInputAddressComponent } from '@onemrvapublic/design-system/mat-input-address';
4
5
  import { OSMResult } from '@onemrvapublic/design-system/shared';
5
6
 
6
7
  declare class OnemRvaAddress implements OnInit {
7
8
  readonly defaultCountry: _angular_core.InputSignal<string>;
9
+ readonly childComponent: _angular_core.Signal<OnemrvaMatInputAddressComponent | undefined>;
8
10
  readonly form: _angular_core.InputSignal<FormGroup<{
9
11
  country: FormControl<string | null>;
10
12
  street: FormControl<string | null>;
@@ -28,6 +30,7 @@ declare class OnemRvaAddress implements OnInit {
28
30
  get boxControl(): FormControl<string | null>;
29
31
  get numeroControl(): FormControl<string | null>;
30
32
  ngOnInit(): void;
33
+ onCountrySelected(): void;
31
34
  onAddressSelected(result: OSMResult): void;
32
35
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OnemRvaAddress, never>;
33
36
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<OnemRvaAddress, "onemrva-address", never, { "defaultCountry": { "alias": "defaultCountry"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; }, { "update": "update"; }, never, never, true, never>;
@@ -1,5 +1,5 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { OnInit } from '@angular/core';
2
+ import { OnInit, ElementRef } from '@angular/core';
3
3
  import { FormControl } from '@angular/forms';
4
4
  import { Observable } from 'rxjs';
5
5
  import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
@@ -15,6 +15,7 @@ declare class OnemrvaMatInputAddressComponent implements OnInit {
15
15
  readonly hint: _angular_core.InputSignal<string>;
16
16
  readonly countryCodes: _angular_core.InputSignal<string[]>;
17
17
  readonly getAddress: _angular_core.OutputEmitterRef<OSMResult>;
18
+ readonly inputField: _angular_core.Signal<ElementRef<HTMLInputElement>>;
18
19
  readonly autocompleteTrigger: _angular_core.Signal<MatAutocompleteTrigger>;
19
20
  results$: Observable<OSMResult[]>;
20
21
  private readonly osm;
@@ -24,6 +25,7 @@ declare class OnemrvaMatInputAddressComponent implements OnInit {
24
25
  ngOnInit(): void;
25
26
  selectAddress(address: OSMResult, emit?: boolean): void;
26
27
  clear(): void;
28
+ focus(): void;
27
29
  handleEnter(): void;
28
30
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OnemrvaMatInputAddressComponent, never>;
29
31
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<OnemrvaMatInputAddressComponent, "onemrva-mat-input-address", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "address": { "alias": "address"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "noEntriesFoundLabel": { "alias": "noEntriesFoundLabel"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "countryCodes": { "alias": "countryCodes"; "required": false; "isSignal": true; }; }, { "getAddress": "getAddress"; }, never, never, true, never>;
@@ -1,4 +1,4 @@
1
- declare const VERSION = "21.7.7";
1
+ declare const VERSION = "21.7.8-develop.1";
2
2
 
3
3
  declare const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;
4
4