@gravitee/ui-particles-angular 7.38.1 → 7.39.0-fix-badge-c1f1fa2

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.
@@ -3,8 +3,11 @@ export declare type GioBannerTypes = 'error' | 'info' | 'success' | 'warning';
3
3
  export declare class GioBannerComponent {
4
4
  type: GioBannerTypes;
5
5
  icon?: string;
6
+ collapsible?: boolean;
7
+ collapse: boolean;
8
+ toggleCollapse(): void;
6
9
  static ɵfac: i0.ɵɵFactoryDeclaration<GioBannerComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<GioBannerComponent, "gio-banner", never, { "type": "type"; "icon": "icon"; }, {}, never, ["*", "[gioBannerBody]", "[gioBannerAction]"]>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<GioBannerComponent, "gio-banner", never, { "type": "type"; "icon": "icon"; "collapsible": "collapsible"; }, {}, never, ["*", "[gioBannerBody]", "[gioBannerAction]"]>;
8
11
  }
9
12
  export declare class GioBannerBodyDirective {
10
13
  static ɵfac: i0.ɵɵFactoryDeclaration<GioBannerBodyDirective, never>;
@@ -2,9 +2,10 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./gio-banner.component";
3
3
  import * as i2 from "@angular/common";
4
4
  import * as i3 from "@angular/material/icon";
5
- import * as i4 from "../gio-icons/gio-icons.module";
5
+ import * as i4 from "@angular/material/button";
6
+ import * as i5 from "../gio-icons/gio-icons.module";
6
7
  export declare class GioBannerModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<GioBannerModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioBannerModule, [typeof i1.GioBannerComponent, typeof i1.GioBannerErrorComponent, typeof i1.GioBannerInfoComponent, typeof i1.GioBannerSuccessComponent, typeof i1.GioBannerWarningComponent, typeof i1.GioBannerBodyDirective, typeof i1.GioBannerActionDirective], [typeof i2.CommonModule, typeof i3.MatIconModule, typeof i4.GioIconsModule], [typeof i1.GioBannerComponent, typeof i1.GioBannerErrorComponent, typeof i1.GioBannerInfoComponent, typeof i1.GioBannerSuccessComponent, typeof i1.GioBannerWarningComponent, typeof i1.GioBannerBodyDirective, typeof i1.GioBannerActionDirective]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioBannerModule, [typeof i1.GioBannerComponent, typeof i1.GioBannerErrorComponent, typeof i1.GioBannerInfoComponent, typeof i1.GioBannerSuccessComponent, typeof i1.GioBannerWarningComponent, typeof i1.GioBannerBodyDirective, typeof i1.GioBannerActionDirective], [typeof i2.CommonModule, typeof i3.MatIconModule, typeof i4.MatButtonModule, typeof i5.GioIconsModule], [typeof i1.GioBannerComponent, typeof i1.GioBannerErrorComponent, typeof i1.GioBannerInfoComponent, typeof i1.GioBannerSuccessComponent, typeof i1.GioBannerWarningComponent, typeof i1.GioBannerBodyDirective, typeof i1.GioBannerActionDirective]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<GioBannerModule>;
10
11
  }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GioFormHeadersLabelComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<GioFormHeadersLabelComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<GioFormHeadersLabelComponent, "gio-form-headers-label", never, {}, {}, never, ["*"]>;
5
+ }
@@ -38,5 +38,5 @@ export declare class GioFormHeadersComponent implements OnInit, ControlValueAcce
38
38
  private removeLastHeader;
39
39
  private _filter;
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFormHeadersComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<GioFormHeadersComponent, "gio-form-headers", never, { "headerFieldMapper": "headerFieldMapper"; }, {}, never, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<GioFormHeadersComponent, "gio-form-headers", never, { "headerFieldMapper": "headerFieldMapper"; }, {}, never, ["gio-form-headers-label"]>;
42
42
  }
@@ -32,4 +32,8 @@ export declare class GioFormHeadersHarness extends ComponentHarness {
32
32
  value: string;
33
33
  }): Promise<void>;
34
34
  isDisabled(): Promise<boolean>;
35
+ getValue(): Promise<{
36
+ key: string;
37
+ value: string;
38
+ }[]>;
35
39
  }
@@ -1,15 +1,16 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./gio-form-headers.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@angular/material/input";
5
- import * as i4 from "@angular/material/form-field";
6
- import * as i5 from "@angular/forms";
7
- import * as i6 from "../gio-icons/gio-icons.module";
8
- import * as i7 from "@angular/material/button";
9
- import * as i8 from "@angular/material/autocomplete";
10
- import * as i9 from "@angular/material/core";
3
+ import * as i2 from "./gio-form-headers-label.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/material/input";
6
+ import * as i5 from "@angular/material/form-field";
7
+ import * as i6 from "@angular/forms";
8
+ import * as i7 from "../gio-icons/gio-icons.module";
9
+ import * as i8 from "@angular/material/button";
10
+ import * as i9 from "@angular/material/autocomplete";
11
+ import * as i10 from "@angular/material/core";
11
12
  export declare class GioFormHeadersModule {
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFormHeadersModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormHeadersModule, [typeof i1.GioFormHeadersComponent], [typeof i2.CommonModule, typeof i3.MatInputModule, typeof i4.MatFormFieldModule, typeof i5.ReactiveFormsModule, typeof i6.GioIconsModule, typeof i7.MatButtonModule, typeof i8.MatAutocompleteModule, typeof i9.MatOptionModule], [typeof i1.GioFormHeadersComponent]>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormHeadersModule, [typeof i1.GioFormHeadersComponent, typeof i2.GioFormHeadersLabelComponent], [typeof i3.CommonModule, typeof i4.MatInputModule, typeof i5.MatFormFieldModule, typeof i6.ReactiveFormsModule, typeof i7.GioIconsModule, typeof i8.MatButtonModule, typeof i9.MatAutocompleteModule, typeof i10.MatOptionModule], [typeof i1.GioFormHeadersComponent, typeof i2.GioFormHeadersLabelComponent]>;
14
15
  static ɵinj: i0.ɵɵInjectorDeclaration<GioFormHeadersModule>;
15
16
  }
@@ -17,6 +17,7 @@ export * from './gio-confirm-and-validate-dialog/gio-confirm-and-validate-dialog
17
17
  export * from './gio-confirm-and-validate-dialog/gio-confirm-and-validate-dialog.harness';
18
18
  export * from './gio-icons/gio-icons.module';
19
19
  export * from './gio-form-headers/gio-form-headers.component';
20
+ export * from './gio-form-headers/gio-form-headers-label.component';
20
21
  export * from './gio-form-headers/gio-form-headers.module';
21
22
  export * from './gio-form-headers/gio-form-headers.harness';
22
23
  export * from './gio-form-file-picker';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-particles-angular",
3
- "version": "7.38.1",
3
+ "version": "7.39.0-fix-badge-c1f1fa2",
4
4
  "description": "Gravitee.io - UI Particles Angular",
5
5
  "repository": {
6
6
  "type": "git",
@@ -42,6 +42,7 @@
42
42
 
43
43
  .mat-icon {
44
44
  width: inherit;
45
+ min-width: max-content;
45
46
  max-width: 16px;
46
47
  height: inherit;
47
48
 
@@ -24,7 +24,7 @@ $typography: map.get(theme.$mat-theme, typography);
24
24
 
25
25
  @mixin theme() {
26
26
  table.gio-table-light {
27
- border: 1px solid map.get(palettes.$mat-dove-palette, darker10);
27
+ border: 1px solid map.get(palettes.$mat-dove-palette, darker20);
28
28
  border-radius: 4px;
29
29
  border-collapse: inherit;
30
30
  border-spacing: 0;
@@ -52,5 +52,18 @@ $typography: map.get(theme.$mat-theme, typography);
52
52
  border-bottom: 0;
53
53
  }
54
54
  }
55
+
56
+ &.disabled {
57
+ border-color: map.get(palettes.$mat-dove-palette, darker10);
58
+
59
+ thead {
60
+ background-color: mat.get-color-from-palette(palettes.$mat-dove-palette, default, 0.6);
61
+ color: mat.get-color-from-palette(palettes.$mat-dove-palette, 'darker20');
62
+ }
63
+
64
+ tbody {
65
+ color: mat.get-color-from-palette(palettes.$mat-dove-palette, 'darker20');
66
+ }
67
+ }
55
68
  }
56
69
  }