@unipin/angular-applet 18.2.2 → 18.3.0

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.
@@ -9,6 +9,7 @@ export declare class FormCurrencyInputComponent implements ControlValueAccessor,
9
9
  numberPlaceholder: string;
10
10
  protected readonly ch: ChangeDetectorRef;
11
11
  protected readonly currencyService: CurrencyService;
12
+ label: string;
12
13
  clearable: boolean;
13
14
  isInputNumber: boolean;
14
15
  numberValue: number | null;
@@ -47,5 +48,5 @@ export declare class FormCurrencyInputComponent implements ControlValueAccessor,
47
48
  limitDecimal({ charCode, preventDefault, target: { value } }: any): void;
48
49
  protected setIsLoading(b: boolean): void;
49
50
  static ɵfac: i0.ɵɵFactoryDeclaration<FormCurrencyInputComponent, [{ attribute: "placeholder"; }, { attribute: "numberPlaceholder"; }, null, null]>;
50
- static ɵcmp: i0.ɵɵComponentDeclaration<FormCurrencyInputComponent, "up-currency-input", never, { "clearable": { "alias": "clearable"; "required": false; }; "isInputNumber": { "alias": "isInputNumber"; "required": false; }; "numberValue": { "alias": "numberValue"; "required": false; }; "isNumberDisabled": { "alias": "isNumberDisabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormCurrencyInputComponent, "up-currency-input", never, { "label": { "alias": "label"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "isInputNumber": { "alias": "isInputNumber"; "required": false; }; "numberValue": { "alias": "numberValue"; "required": false; }; "isNumberDisabled": { "alias": "isNumberDisabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
51
52
  }
@@ -1,12 +1,12 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { ApolloQueryResult } from '@apollo/client/core';
3
3
  import { Apollo } from 'apollo-angular';
4
- import { Country } from '../../../graphql/generated';
4
+ import { Country, CountryQueryCriteria } from '../../../graphql/generated';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class CountryService {
7
7
  protected readonly apollo: Apollo;
8
8
  constructor(apollo: Apollo);
9
- query(): Observable<ApolloQueryResult<{
9
+ query(input?: CountryQueryCriteria): Observable<ApolloQueryResult<{
10
10
  webConfigMsCountry: {
11
11
  data: Country[];
12
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unipin/angular-applet",
3
- "version": "18.2.2",
3
+ "version": "18.3.0",
4
4
  "sideEffects": false,
5
5
  "homepage": "https://backoffice.unipin.com/",
6
6
  "description": "Angular specific wrappers for UniPin applet",