@gravitee/ui-particles-angular 13.8.1 → 13.9.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.
@@ -10,11 +10,16 @@ export declare class GioFormlyJsonSchemaService {
10
10
  toFormlyFieldConfig(jsonSchema: GioJsonSchema, context?: GioJsonSchemaContext): FormlyFieldConfig;
11
11
  private displayIfMap;
12
12
  private uiTypeMap;
13
+ private uiBorder;
13
14
  private formatMap;
14
15
  private bannerMap;
15
16
  private toggleMap;
16
17
  private disableIfMap;
17
18
  private enumLabelMap;
19
+ /**
20
+ * Remove the label of the oneOf fields to avoid to display it twice (with the select and the object title)
21
+ */
22
+ private sanitizeOneOf;
18
23
  private deprecatedMap;
19
24
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFormlyJsonSchemaService, never>;
20
25
  static ɵprov: i0.ɵɵInjectableDeclaration<GioFormlyJsonSchemaService>;
@@ -10,6 +10,7 @@ export interface GioConfig extends GioUiTypeConfig {
10
10
  banner?: GioBannerConfig;
11
11
  monacoEditorConfig?: GioMonacoEditorConfig;
12
12
  enumLabelMap?: Record<string, string>;
13
+ uiBorder?: 'none' | 'full';
13
14
  }
14
15
  type GioBannerConfig = {
15
16
  title: string;
@@ -1,7 +1,10 @@
1
+ import { OnInit } from '@angular/core';
1
2
  import { FieldArrayType } from '@ngx-formly/core';
2
3
  import * as i0 from "@angular/core";
3
- export declare class GioFjsArrayTypeComponent extends FieldArrayType {
4
+ export declare class GioFjsArrayTypeComponent extends FieldArrayType implements OnInit {
4
5
  collapse: boolean;
6
+ classNoUiBorder: boolean;
7
+ ngOnInit(): void;
5
8
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFjsArrayTypeComponent, never>;
6
9
  static ɵcmp: i0.ɵɵComponentDeclaration<GioFjsArrayTypeComponent, "gio-fjs-array-type", never, {}, {}, never, never, false, never>;
7
10
  }
@@ -1,6 +1,9 @@
1
+ import { OnInit } from '@angular/core';
1
2
  import { FieldType } from '@ngx-formly/core';
2
3
  import * as i0 from "@angular/core";
3
- export declare class GioFjsObjectTypeComponent extends FieldType {
4
+ export declare class GioFjsObjectTypeComponent extends FieldType implements OnInit {
5
+ classNoUiBorder: boolean;
6
+ ngOnInit(): void;
4
7
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFjsObjectTypeComponent, never>;
5
8
  static ɵcmp: i0.ɵɵComponentDeclaration<GioFjsObjectTypeComponent, "gio-fjs-object-type", never, {}, {}, never, never, false, never>;
6
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-particles-angular",
3
- "version": "13.8.1",
3
+ "version": "13.9.0",
4
4
  "description": "Gravitee.io - UI Particles Angular",
5
5
  "repository": {
6
6
  "type": "git",