@3kles/kles-material-dynamicforms 21.7.6 → 21.8.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@3kles/kles-material-dynamicforms",
3
- "version": "21.7.6",
3
+ "version": "21.8.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/3kles-lab/klesmaterialdynamicforms"
@@ -189,6 +189,7 @@ interface IKlesFieldUi {
189
189
  presets?: readonly string[];
190
190
  };
191
191
  direction?: 'column' | 'row' | 'grid' | 'inline-grid';
192
+ wrap?: boolean;
192
193
  textareaAutoSize?: {
193
194
  minRows?: number;
194
195
  maxRows?: number;
@@ -311,6 +312,7 @@ declare class KlesDynamicFormComponent implements OnInit, OnChanges {
311
312
  submit: EventEmitter<any>;
312
313
  _onLoaded: EventEmitter<any>;
313
314
  direction: 'column' | 'row' | 'grid' | 'inline-grid';
315
+ wrap: boolean;
314
316
  formClass: string | string[] | Set<string> | {
315
317
  [klass: string]: any;
316
318
  };
@@ -331,7 +333,7 @@ declare class KlesDynamicFormComponent implements OnInit, OnChanges {
331
333
  private validateAllFormFields;
332
334
  private createUi;
333
335
  static ɵfac: i0.ɵɵFactoryDeclaration<KlesDynamicFormComponent, never>;
334
- static ɵcmp: i0.ɵɵComponentDeclaration<KlesDynamicFormComponent, "app-kles-dynamic-form", ["klesDynamicForm"], { "context": { "alias": "context"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "validators": { "alias": "validators"; "required": false; }; "asyncValidators": { "alias": "asyncValidators"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "formClass": { "alias": "formClass"; "required": false; }; }, { "submit": "submit"; "_onLoaded": "_onLoaded"; }, never, never, true, never>;
336
+ static ɵcmp: i0.ɵɵComponentDeclaration<KlesDynamicFormComponent, "app-kles-dynamic-form", ["klesDynamicForm"], { "context": { "alias": "context"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "validators": { "alias": "validators"; "required": false; }; "asyncValidators": { "alias": "asyncValidators"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; "formClass": { "alias": "formClass"; "required": false; }; }, { "submit": "submit"; "_onLoaded": "_onLoaded"; }, never, never, true, never>;
335
337
  }
336
338
 
337
339
  declare class KlesComponentDirective implements OnInit, OnChanges {
@@ -772,7 +774,7 @@ declare class KlesFormChipComponent extends KlesFieldAbstract implements OnInit,
772
774
 
773
775
  declare class KlesFormGroupComponent extends KlesFieldAbstract implements OnInit, OnDestroy {
774
776
  orientationClass: 'group-container' | 'group-container-column' | 'group-container-row' | 'group-container-grid' | 'group-container-inline-grid';
775
- get className(): "group-container" | "group-container-column" | "group-container-row" | "group-container-grid" | "group-container-inline-grid";
777
+ get className(): string;
776
778
  subGroup: UntypedFormGroup;
777
779
  subUi: GroupUiState;
778
780
  ngOnInit(): void;