@3kles/kles-material-dynamicforms 21.4.0 → 21.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@3kles/kles-material-dynamicforms",
3
- "version": "21.4.0",
3
+ "version": "21.4.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/3kles-lab/klesmaterialdynamicforms"
@@ -195,6 +195,7 @@ interface IKlesFieldUi {
195
195
  tooltip?: string;
196
196
  imageUrl?: string;
197
197
  imageAlt?: string;
198
+ currencyOptions?: IKlesCurrencyOptions;
198
199
  resolveUi?: IKlesFieldUiResolver;
199
200
  }
200
201
  interface IKlesFormField {
@@ -250,7 +251,6 @@ interface IKlesFormField {
250
251
  onBlur?: (field: IKlesFieldConfig, group: UntypedFormGroup) => void;
251
252
  providers?: Array<Provider | StaticProvider>;
252
253
  onAction?: (event: IKlesFieldActionEvent<any, any>) => void;
253
- currencyOptions?: IKlesCurrencyOptions;
254
254
  statusOptions?: IKlesStatusOptions;
255
255
  }
256
256
  type IKlesFieldConfig = IKlesFormField & IKlesFieldUi;
@@ -1037,6 +1037,10 @@ declare class KlesFormSelectionListSearchComponent extends KlesFieldAbstract imp
1037
1037
  }
1038
1038
 
1039
1039
  declare class KlesFormTileComponent extends KlesFieldAbstract {
1040
+ private readonly control;
1041
+ private readonly controlValue;
1042
+ readonly formattedValue: i0.Signal<string>;
1043
+ readonly displayValue: i0.Signal<string>;
1040
1044
  static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormTileComponent, never>;
1041
1045
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormTileComponent, "app-kles-form-tile", never, {}, {}, never, never, true, never>;
1042
1046
  }
@@ -1148,6 +1152,7 @@ declare class KlesCurrencyValueAccessorDirective implements ControlValueAccessor
1148
1152
  }
1149
1153
  declare class KlesFormCurrencyComponent extends KlesFieldAbstract {
1150
1154
  readonly localeId: string;
1155
+ readonly currencyOptions: i0.Signal<_3kles_kles_material_dynamicforms.IKlesCurrencyOptions>;
1151
1156
  readonly defaultCurrencyCode: string;
1152
1157
  static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormCurrencyComponent, never>;
1153
1158
  static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormCurrencyComponent, "kles-form-currency", never, {}, {}, never, ["*"], true, never>;