@dereekb/dbx-form 7.0.1 → 7.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.
Files changed (66) hide show
  1. package/esm2020/lib/formly/config/validation.mjs +5 -5
  2. package/esm2020/lib/formly/field/checklist/checklist.item.field.component.mjs +5 -5
  3. package/esm2020/lib/formly/field/checklist/checklist.item.field.mjs +4 -5
  4. package/esm2020/lib/formly/field/field.mjs +15 -9
  5. package/esm2020/lib/formly/field/selection/pickable/pickable.field.directive.mjs +5 -5
  6. package/esm2020/lib/formly/field/selection/pickable/pickable.field.mjs +8 -8
  7. package/esm2020/lib/formly/field/selection/searchable/searchable.chip.field.component.mjs +1 -1
  8. package/esm2020/lib/formly/field/selection/searchable/searchable.field.directive.mjs +5 -5
  9. package/esm2020/lib/formly/field/selection/searchable/searchable.field.mjs +8 -8
  10. package/esm2020/lib/formly/field/selection/searchable/searchable.text.field.component.mjs +2 -2
  11. package/esm2020/lib/formly/field/selection/searchable/text.chip.field.mjs +5 -5
  12. package/esm2020/lib/formly/field/texteditor/texteditor.field.component.mjs +3 -3
  13. package/esm2020/lib/formly/field/texteditor/texteditor.field.mjs +3 -3
  14. package/esm2020/lib/formly/field/value/array/array.field.component.mjs +3 -3
  15. package/esm2020/lib/formly/field/value/array/array.field.mjs +3 -3
  16. package/esm2020/lib/formly/field/value/boolean/boolean.field.mjs +5 -5
  17. package/esm2020/lib/formly/field/value/date/datetime.field.component.mjs +3 -3
  18. package/esm2020/lib/formly/field/value/date/datetime.field.mjs +4 -5
  19. package/esm2020/lib/formly/field/value/enum/enum.field.mjs +2 -2
  20. package/esm2020/lib/formly/field/value/hidden.field.mjs +2 -2
  21. package/esm2020/lib/formly/field/value/phone/phone.field.component.mjs +3 -6
  22. package/esm2020/lib/formly/field/value/phone/phone.field.mjs +4 -5
  23. package/esm2020/lib/formly/field/value/text/text.address.field.mjs +2 -2
  24. package/esm2020/lib/formly/field/value/text/text.field.mjs +4 -4
  25. package/esm2020/lib/formly/field/wrapper/expandable.wrapper.delegate.mjs +4 -4
  26. package/esm2020/lib/formly/field/wrapper/flex.wrapper.component.mjs +2 -2
  27. package/esm2020/lib/formly/field/wrapper/form.wrapper.module.mjs +20 -19
  28. package/esm2020/lib/formly/field/wrapper/info.wrapper.component.mjs +2 -2
  29. package/esm2020/lib/formly/field/wrapper/section.wrapper.component.mjs +3 -3
  30. package/esm2020/lib/formly/field/wrapper/style.wrapper.component.mjs +2 -5
  31. package/esm2020/lib/formly/field/wrapper/subsection.wrapper.component.mjs +3 -3
  32. package/esm2020/lib/formly/field/wrapper/working.wrapper.component.mjs +1 -1
  33. package/esm2020/lib/formly/field/wrapper/wrapper.mjs +24 -33
  34. package/esm2020/lib/formly/template/login.mjs +2 -2
  35. package/fesm2015/dereekb-dbx-form.mjs +174 -200
  36. package/fesm2015/dereekb-dbx-form.mjs.map +1 -1
  37. package/fesm2020/dereekb-dbx-form.mjs +180 -192
  38. package/fesm2020/dereekb-dbx-form.mjs.map +1 -1
  39. package/lib/formly/field/checklist/checklist.item.field.component.d.ts +4 -7
  40. package/lib/formly/field/checklist/checklist.item.field.d.ts +4 -3
  41. package/lib/formly/field/field.d.ts +9 -4
  42. package/lib/formly/field/selection/pickable/pickable.field.d.ts +2 -2
  43. package/lib/formly/field/selection/pickable/pickable.field.directive.d.ts +4 -7
  44. package/lib/formly/field/selection/searchable/searchable.chip.field.component.d.ts +3 -6
  45. package/lib/formly/field/selection/searchable/searchable.field.d.ts +4 -4
  46. package/lib/formly/field/selection/searchable/searchable.field.directive.d.ts +5 -10
  47. package/lib/formly/field/selection/searchable/searchable.text.field.component.d.ts +4 -7
  48. package/lib/formly/field/selection/searchable/text.chip.field.d.ts +5 -6
  49. package/lib/formly/field/texteditor/texteditor.field.component.d.ts +3 -3
  50. package/lib/formly/field/value/array/array.field.d.ts +2 -2
  51. package/lib/formly/field/value/date/datetime.field.component.d.ts +4 -7
  52. package/lib/formly/field/value/date/datetime.field.d.ts +3 -3
  53. package/lib/formly/field/value/phone/phone.field.component.d.ts +6 -9
  54. package/lib/formly/field/value/phone/phone.field.d.ts +3 -3
  55. package/lib/formly/field/wrapper/expandable.wrapper.delegate.d.ts +3 -7
  56. package/lib/formly/field/wrapper/flex.wrapper.component.d.ts +3 -6
  57. package/lib/formly/field/wrapper/info.wrapper.component.d.ts +3 -6
  58. package/lib/formly/field/wrapper/section.wrapper.component.d.ts +3 -6
  59. package/lib/formly/field/wrapper/style.wrapper.component.d.ts +1 -5
  60. package/lib/formly/field/wrapper/subsection.wrapper.component.d.ts +3 -6
  61. package/lib/formly/field/wrapper/working.wrapper.component.d.ts +1 -4
  62. package/lib/formly/field/wrapper/wrapper.d.ts +17 -10
  63. package/lib/formly/formly.context.d.ts +3 -1
  64. package/lib/formly/formly.context.directive.d.ts +3 -1
  65. package/lib/formly/formly.form.component.d.ts +3 -1
  66. package/package.json +5 -5
@@ -32,7 +32,9 @@ export declare class DbxFormlyContext<T = unknown> implements DbxForm<T> {
32
32
  private _initialValue;
33
33
  private _disabled;
34
34
  private _delegate;
35
- readonly fields$: Observable<FormlyFieldConfig[]>;
35
+ readonly fields$: Observable<FormlyFieldConfig<import("@ngx-formly/core").FormlyFieldProps & {
36
+ [additionalProperties: string]: any;
37
+ }>[]>;
36
38
  readonly disabled$: Observable<string[]>;
37
39
  readonly stream$: Observable<DbxFormEvent>;
38
40
  destroy(): void;
@@ -8,7 +8,9 @@ import * as i0 from "@angular/core";
8
8
  */
9
9
  export declare class DbxFormlyFieldsContextDirective<T = unknown> extends AbstractAsyncFormlyFormDirective<T> implements OnDestroy {
10
10
  private _fields;
11
- readonly fields$: import("rxjs").Observable<Maybe<FormlyFieldConfig[]>>;
11
+ readonly fields$: import("rxjs").Observable<Maybe<FormlyFieldConfig<import("@ngx-formly/core").FormlyFieldProps & {
12
+ [additionalProperties: string]: any;
13
+ }>[]>>;
12
14
  get fields(): Maybe<FormlyFieldConfig[]>;
13
15
  set fields(fields: Maybe<FormlyFieldConfig[]>);
14
16
  ngOnDestroy(): void;
@@ -26,7 +26,9 @@ export declare class DbxFormlyFormComponent<T> extends AbstractSubscriptionDirec
26
26
  form: FormGroup;
27
27
  model: T;
28
28
  options: FormlyFormOptions;
29
- readonly fields$: Observable<FormlyFieldConfig[]>;
29
+ readonly fields$: Observable<FormlyFieldConfig<import("@ngx-formly/core").FormlyFieldProps & {
30
+ [additionalProperties: string]: any;
31
+ }>[]>;
30
32
  readonly stream$: Observable<DbxFormEvent>;
31
33
  constructor(context: DbxFormlyContext<T>);
32
34
  ngOnInit(): void;
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-form",
3
- "version": "7.0.1",
3
+ "version": "7.3.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.0.0",
6
6
  "@angular/core": "^13.0.0",
7
- "@dereekb/dbx-core": "7.0.1",
7
+ "@dereekb/dbx-core": "7.3.0",
8
8
  "@angular/material": "^13.0.0",
9
- "@dereekb/dbx-web": "7.0.1",
9
+ "@dereekb/dbx-web": "7.3.0",
10
10
  "@angular/forms": "^13.0.0",
11
- "@ngx-formly/core": "6.0.0-next.9",
12
- "@ngx-formly/material": "6.0.0-next.9",
11
+ "@ngx-formly/core": "6.0.0-beta.2",
12
+ "@ngx-formly/material": "6.0.0-beta.2",
13
13
  "change-case": "^4.1.2",
14
14
  "ngx-editor": "^12.1.1",
15
15
  "ngx-mat-intl-tel-input": "git+https://git@github.com/dereekb/ngx-mat-intl-tel-input#dbe3d1144979df12bdc133f92692ad643a2cdecc"