@gravitee/ui-particles-angular 16.2.1-apim-11674-edit-ps-flows-for-llm-proxy-778b797 → 16.2.1-apim-11833-llm-proxy-ui-does-not-match-designs-2eb195a

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/index.d.ts CHANGED
@@ -16,7 +16,7 @@ import { MatFormFieldControl } from '@angular/material/form-field';
16
16
  import * as rxjs from 'rxjs';
17
17
  import { Observable, Subject, ReplaySubject } from 'rxjs';
18
18
  import * as i4$2 from '@angular/material/chips';
19
- import * as i4$3 from '@angular/material/input';
19
+ import * as i5 from '@angular/material/input';
20
20
  import * as i4$1 from '@angular/material/icon';
21
21
  import { MatIconRegistry } from '@angular/material/icon';
22
22
  import * as i9 from '@angular/material/select';
@@ -27,9 +27,9 @@ import { MatChipGridHarness, MatChipHarness } from '@angular/material/chips/test
27
27
  import * as i3$2 from '@angular/material/dialog';
28
28
  import { MatDialogRef, MatDialog } from '@angular/material/dialog';
29
29
  import { JSONSchema7 } from 'json-schema';
30
- import * as i16 from '@ngx-formly/core';
31
- import { FieldTypeConfig, FormlyFieldProps, FormlyFormBuilder, FormlyFieldConfig, FormlyFormOptions, FieldType as FieldType$1, FieldArrayType, FieldWrapper } from '@ngx-formly/core';
32
- import * as i17 from '@ngx-formly/material';
30
+ import * as i17 from '@ngx-formly/core';
31
+ import { FieldTypeConfig, FormlyFieldProps, FormlyFieldConfig, FormlyFormOptions, FieldType as FieldType$1, FieldArrayType, FieldWrapper } from '@ngx-formly/core';
32
+ import * as i18 from '@ngx-formly/material';
33
33
  import { FieldType } from '@ngx-formly/material';
34
34
  import Monaco, { editor } from 'monaco-editor';
35
35
  import * as i10 from '@angular/material/core';
@@ -38,9 +38,9 @@ import { MatInputHarness } from '@angular/material/input/testing';
38
38
  import * as i7$1 from 'ngx-file-helpers';
39
39
  import { ReadMode, ReadFile } from 'ngx-file-helpers';
40
40
  import { FormlyJsonschema } from '@ngx-formly/core/json-schema';
41
- import * as i27 from '@angular/material/slide-toggle';
41
+ import * as i28 from '@angular/material/slide-toggle';
42
42
  import { MatSlideToggle } from '@angular/material/slide-toggle';
43
- import * as i5 from '@angular/material/tooltip';
43
+ import * as i5$1 from '@angular/material/tooltip';
44
44
  import { MatTooltip } from '@angular/material/tooltip';
45
45
  import * as i7$2 from '@angular/cdk/clipboard';
46
46
  import { Clipboard } from '@angular/cdk/clipboard';
@@ -217,7 +217,7 @@ declare class GioLoaderModule {
217
217
 
218
218
  declare class GioFormTagsInputModule {
219
219
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFormTagsInputModule, never>;
220
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormTagsInputModule, [typeof GioFormTagsInputComponent], [typeof i2.CommonModule, typeof i3$1.A11yModule, typeof i4$2.MatChipsModule, typeof i4$3.MatInputModule, typeof i6.FormsModule, typeof i4$1.MatIconModule, typeof i8.MatAutocompleteModule, typeof i9.MatSelectModule, typeof GioLoaderModule], [typeof GioFormTagsInputComponent]>;
220
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormTagsInputModule, [typeof GioFormTagsInputComponent], [typeof i2.CommonModule, typeof i3$1.A11yModule, typeof i4$2.MatChipsModule, typeof i5.MatInputModule, typeof i6.FormsModule, typeof i4$1.MatIconModule, typeof i8.MatAutocompleteModule, typeof i9.MatSelectModule, typeof GioLoaderModule], [typeof GioFormTagsInputComponent]>;
221
221
  static ɵinj: i0.ɵɵInjectorDeclaration<GioFormTagsInputModule>;
222
222
  }
223
223
 
@@ -242,157 +242,6 @@ declare class GioFormTagsInputHarness extends ComponentHarness {
242
242
  clickTag(tag: string): Promise<void>;
243
243
  }
244
244
 
245
- type AutocompleteInputOptionsFlat = (string | {
246
- value: string;
247
- label: string;
248
- })[];
249
- type AutocompleteInputOptionsGroup = {
250
- groupLabel: string;
251
- groupOptions: AutocompleteInputOptionsFlat;
252
- }[];
253
- type AutocompleteInputOptions = AutocompleteInputOptionsFlat | AutocompleteInputOptionsGroup;
254
- declare class GioFormAutocompleteInputComponent implements MatFormFieldControl<string>, ControlValueAccessor, DoCheck, OnDestroy {
255
- readonly ngControl: NgControl;
256
- private readonly elRef;
257
- private readonly fm;
258
- private changeDetectorRef;
259
- private static nextId;
260
- _onChange: (_value: string | null) => void;
261
- _onTouched: () => void;
262
- private touched;
263
- ariaLabel: string;
264
- set autocompleteInputOptions(v: AutocompleteInputOptions | ((search: string) => Observable<AutocompleteInputOptions>) | undefined);
265
- _autocompleteInputOptions?: AutocompleteInputOptions | ((search: string) => Observable<AutocompleteInputOptions>);
266
- /**
267
- * Display function to show the label for a given value
268
- */
269
- displayWith?: (value: string) => string;
270
- set input(v: ElementRef<HTMLInputElement> | null);
271
- private _input;
272
- autocompleteInputFilteredOptions$?: Observable<{
273
- groupLabel?: string;
274
- groupOptions: {
275
- value: string;
276
- label: string;
277
- }[];
278
- }[]>;
279
- loading: boolean;
280
- inputValue: string;
281
- get value(): string | null;
282
- set value(_value: string | null);
283
- private _value;
284
- stateChanges: Subject<void>;
285
- id: string;
286
- get placeholder(): string;
287
- set placeholder(plh: string);
288
- private _placeholder;
289
- focused: boolean;
290
- get empty(): boolean;
291
- get shouldLabelFloat(): boolean;
292
- get required(): boolean;
293
- set required(req: boolean);
294
- private _required;
295
- get disabled(): boolean;
296
- set disabled(dis: boolean);
297
- private _disabled;
298
- get errorState(): boolean;
299
- controlType: string;
300
- autofilled?: boolean;
301
- userAriaDescribedBy?: string;
302
- constructor(ngControl: NgControl, elRef: ElementRef, fm: FocusMonitor, changeDetectorRef: ChangeDetectorRef);
303
- ngDoCheck(): void;
304
- ngOnDestroy(): void;
305
- setDisabledState(isDisabled: boolean): void;
306
- writeValue(value: string): void;
307
- registerOnChange(fn: (value: string | null) => void): void;
308
- registerOnTouched(fn: () => void): void;
309
- describedBy: string;
310
- setDescribedByIds(ids: string[]): void;
311
- onContainerClick(_event: MouseEvent): void;
312
- onAutocompleteInputSelect(event: MatAutocompleteSelectedEvent): void;
313
- onInputChange(value: string): void;
314
- getDisplayValue(value: string): string;
315
- private updateInputValue;
316
- private initAutocomplete;
317
- static ɵfac: i0.ɵɵFactoryDeclaration<GioFormAutocompleteInputComponent, [{ optional: true; self: true; }, null, null, null]>;
318
- static ɵcmp: i0.ɵɵComponentDeclaration<GioFormAutocompleteInputComponent, "gio-form-autocomplete-input", never, { "ariaLabel": { "alias": "aria-label"; "required": false; }; "autocompleteInputOptions": { "alias": "autocompleteInputOptions"; "required": false; }; "displayWith": { "alias": "displayWith"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
319
- }
320
-
321
- declare class GioFormAutocompleteInputModule {
322
- static ɵfac: i0.ɵɵFactoryDeclaration<GioFormAutocompleteInputModule, never>;
323
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormAutocompleteInputModule, [typeof GioFormAutocompleteInputComponent], [typeof i2.CommonModule, typeof i3$1.A11yModule, typeof i4$3.MatInputModule, typeof i6.FormsModule, typeof i8.MatAutocompleteModule, typeof GioLoaderModule], [typeof GioFormAutocompleteInputComponent]>;
324
- static ɵinj: i0.ɵɵInjectorDeclaration<GioFormAutocompleteInputModule>;
325
- }
326
-
327
- type GioFormAutocompleteInputHarnessFilters = BaseHarnessFilters;
328
- declare class GioFormAutocompleteInputHarness extends ComponentHarness {
329
- static hostSelector: string;
330
- static with(options?: GioFormAutocompleteInputHarnessFilters): HarnessPredicate<GioFormAutocompleteInputHarness>;
331
- private getInput;
332
- private getAutocomplete;
333
- /**
334
- * Gets the current value of the input
335
- */
336
- getValue(): Promise<string>;
337
- setValue(value: string): Promise<void>;
338
- /**
339
- * Types text into the input (triggers input events)
340
- */
341
- type(text: string): Promise<void>;
342
- /**
343
- * Focuses the input
344
- */
345
- focus(): Promise<void>;
346
- /**
347
- * Blurs the input
348
- */
349
- blur(): Promise<void>;
350
- /**
351
- * Checks if the input is focused
352
- */
353
- isFocused(): Promise<boolean>;
354
- /**
355
- * Checks if the input is disabled
356
- */
357
- isDisabled(): Promise<boolean>;
358
- /**
359
- * Gets the placeholder of the input
360
- */
361
- getPlaceholder(): Promise<string>;
362
- /**
363
- * Opens the autocomplete panel
364
- */
365
- openAutocomplete(): Promise<void>;
366
- /**
367
- * Checks if the autocomplete panel is open
368
- */
369
- isAutocompleteOpen(): Promise<boolean>;
370
- /**
371
- * Gets all autocomplete options
372
- */
373
- getAutocompleteOptions(): Promise<string[]>;
374
- /**
375
- * Selects an autocomplete option by text
376
- */
377
- selectOption(text: string): Promise<void>;
378
- /**
379
- * Checks if the input is in an error state
380
- */
381
- hasError(): Promise<boolean>;
382
- /**
383
- * Gets the aria-label of the input
384
- */
385
- getAriaLabel(): Promise<string | null>;
386
- /**
387
- * Types text into the input (triggers input events)
388
- */
389
- /**
390
- * Clears the input value
391
- */
392
- clear(): Promise<void>;
393
- getMatAutocompleteHarness(): Promise<MatAutocompleteHarness | null>;
394
- }
395
-
396
245
  type GioBannerTypes = 'error' | 'info' | 'success' | 'warning';
397
246
  declare class GioBannerComponent {
398
247
  type: GioBannerTypes;
@@ -517,7 +366,7 @@ declare class GioConfirmAndValidateDialogComponent {
517
366
 
518
367
  declare class GioConfirmAndValidateDialogModule {
519
368
  static ɵfac: i0.ɵɵFactoryDeclaration<GioConfirmAndValidateDialogModule, never>;
520
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioConfirmAndValidateDialogModule, [typeof GioConfirmAndValidateDialogComponent], [typeof i2.CommonModule, typeof i6.FormsModule, typeof i4.MatButtonModule, typeof i3$2.MatDialogModule, typeof i4$3.MatInputModule, typeof i7.MatFormFieldModule, typeof i3$1.A11yModule, typeof GioBannerModule], [typeof GioConfirmAndValidateDialogComponent]>;
369
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioConfirmAndValidateDialogModule, [typeof GioConfirmAndValidateDialogComponent], [typeof i2.CommonModule, typeof i6.FormsModule, typeof i4.MatButtonModule, typeof i3$2.MatDialogModule, typeof i5.MatInputModule, typeof i7.MatFormFieldModule, typeof i3$1.A11yModule, typeof GioBannerModule], [typeof GioConfirmAndValidateDialogComponent]>;
521
370
  static ɵinj: i0.ɵɵInjectorDeclaration<GioConfirmAndValidateDialogModule>;
522
371
  }
523
372
 
@@ -678,6 +527,7 @@ interface GioConfig extends GioUiTypeConfig {
678
527
  enumLabelMap?: Record<string, string>;
679
528
  uiBorder?: 'none' | 'full';
680
529
  el?: boolean;
530
+ currency?: boolean;
681
531
  }
682
532
  type GioBannerConfig = {
683
533
  title: string;
@@ -846,7 +696,7 @@ declare class GioElAssistantComponent {
846
696
 
847
697
  declare class GioFormHeadersModule {
848
698
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFormHeadersModule, never>;
849
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormHeadersModule, [typeof GioFormHeadersComponent, typeof GioFormHeadersLabelComponent], [typeof i2.CommonModule, typeof i4$3.MatInputModule, typeof i7.MatFormFieldModule, typeof i6.ReactiveFormsModule, typeof GioIconsModule, typeof i4.MatButtonModule, typeof i8.MatAutocompleteModule, typeof i10.MatOptionModule, typeof GioElPromptComponent, typeof GioPopoverComponent, typeof PopoverTriggerDirective, typeof GioElAssistantComponent], [typeof GioFormHeadersComponent, typeof GioFormHeadersLabelComponent]>;
699
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormHeadersModule, [typeof GioFormHeadersComponent, typeof GioFormHeadersLabelComponent], [typeof i2.CommonModule, typeof i5.MatInputModule, typeof i7.MatFormFieldModule, typeof i6.ReactiveFormsModule, typeof GioIconsModule, typeof i4.MatButtonModule, typeof i8.MatAutocompleteModule, typeof i10.MatOptionModule, typeof GioElPromptComponent, typeof GioPopoverComponent, typeof PopoverTriggerDirective, typeof GioElAssistantComponent], [typeof GioFormHeadersComponent, typeof GioFormHeadersLabelComponent]>;
850
700
  static ɵinj: i0.ɵɵInjectorDeclaration<GioFormHeadersModule>;
851
701
  }
852
702
 
@@ -1037,8 +887,7 @@ type GioJsonSchemaContext = Record<string, unknown>;
1037
887
 
1038
888
  declare class GioFormlyJsonSchemaService {
1039
889
  private readonly formlyJsonschema;
1040
- private readonly builder;
1041
- constructor(formlyJsonschema: FormlyJsonschema, builder: FormlyFormBuilder);
890
+ constructor(formlyJsonschema: FormlyJsonschema);
1042
891
  toFormlyFieldConfig(jsonSchema: GioJsonSchema, context?: GioJsonSchemaContext): FormlyFieldConfig;
1043
892
  private displayIfMap;
1044
893
  private uiTypeMap;
@@ -1172,6 +1021,14 @@ declare class GioElHelperWrapperComponent extends FieldWrapper implements AfterV
1172
1021
  static ɵcmp: i0.ɵɵComponentDeclaration<GioElHelperWrapperComponent, "gio-el-wrapper-wrapper", never, {}, {}, never, never, false, never>;
1173
1022
  }
1174
1023
 
1024
+ declare class GioCurrencyPrefixWrapperComponent extends FieldWrapper implements AfterViewInit {
1025
+ matPrefix: TemplateRef<unknown>;
1026
+ hide: boolean;
1027
+ ngAfterViewInit(): void;
1028
+ static ɵfac: i0.ɵɵFactoryDeclaration<GioCurrencyPrefixWrapperComponent, never>;
1029
+ static ɵcmp: i0.ɵɵComponentDeclaration<GioCurrencyPrefixWrapperComponent, "gio-currency-prefix-wrapper", never, {}, {}, never, never, false, never>;
1030
+ }
1031
+
1175
1032
  declare class GioFormSlideToggleComponent implements AfterContentInit, OnDestroy {
1176
1033
  private unsubscribe$;
1177
1034
  appearance: 'fill' | 'outline';
@@ -1276,7 +1133,7 @@ declare class GioClipboardCopyIconComponent extends GioClipboardComponent {
1276
1133
 
1277
1134
  declare class GioClipboardModule {
1278
1135
  static ɵfac: i0.ɵɵFactoryDeclaration<GioClipboardModule, never>;
1279
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioClipboardModule, [typeof GioClipboardCopyWrapperComponent, typeof GioClipboardCopyIconComponent], [typeof i2.CommonModule, typeof i4$1.MatIconModule, typeof i5.MatTooltipModule, typeof i10.MatRippleModule, typeof i7$2.ClipboardModule, typeof i4.MatButtonModule], [typeof GioClipboardCopyWrapperComponent, typeof GioClipboardCopyIconComponent]>;
1136
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioClipboardModule, [typeof GioClipboardCopyWrapperComponent, typeof GioClipboardCopyIconComponent], [typeof i2.CommonModule, typeof i4$1.MatIconModule, typeof i5$1.MatTooltipModule, typeof i10.MatRippleModule, typeof i7$2.ClipboardModule, typeof i4.MatButtonModule], [typeof GioClipboardCopyWrapperComponent, typeof GioClipboardCopyIconComponent]>;
1280
1137
  static ɵinj: i0.ɵɵInjectorDeclaration<GioClipboardModule>;
1281
1138
  }
1282
1139
 
@@ -1344,13 +1201,13 @@ declare class GioFormCronHintComponent {
1344
1201
 
1345
1202
  declare class GioFormCronModule {
1346
1203
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFormCronModule, never>;
1347
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormCronModule, [typeof GioFormCronComponent, typeof GioFormCronLabelComponent, typeof GioFormCronHintComponent], [typeof i2.CommonModule, typeof i6.ReactiveFormsModule, typeof i6$1.MatButtonToggleModule, typeof i7.MatFormFieldModule, typeof i9.MatSelectModule, typeof i4$3.MatInputModule, typeof i4.MatButtonModule, typeof i5.MatTooltipModule, typeof GioIconsModule], [typeof GioFormCronComponent, typeof GioFormCronLabelComponent, typeof GioFormCronHintComponent]>;
1204
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormCronModule, [typeof GioFormCronComponent, typeof GioFormCronLabelComponent, typeof GioFormCronHintComponent], [typeof i2.CommonModule, typeof i6.ReactiveFormsModule, typeof i6$1.MatButtonToggleModule, typeof i7.MatFormFieldModule, typeof i9.MatSelectModule, typeof i5.MatInputModule, typeof i4.MatButtonModule, typeof i5$1.MatTooltipModule, typeof GioIconsModule], [typeof GioFormCronComponent, typeof GioFormCronLabelComponent, typeof GioFormCronHintComponent]>;
1348
1205
  static ɵinj: i0.ɵɵInjectorDeclaration<GioFormCronModule>;
1349
1206
  }
1350
1207
 
1351
1208
  declare class GioFormJsonSchemaModule {
1352
1209
  static ɵfac: i0.ɵɵFactoryDeclaration<GioFormJsonSchemaModule, never>;
1353
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormJsonSchemaModule, [typeof GioFormJsonSchemaComponent, typeof GioFjsNullTypeComponent, typeof GioFjsObjectTypeComponent, typeof GioFjsMultiSchemaTypeComponent, typeof GioFjsArrayTypeComponent, typeof GioFjsToggleTypeComponent, typeof GioFjsHeadersTypeComponent, typeof GioFjsCodeEditorTypeComponent, typeof GioFjsCronTypeComponent, typeof GioBannerWrapperComponent, typeof GioPasswordEyeWrapperComponent, typeof GioElHelperWrapperComponent], [typeof i2.CommonModule, typeof i3$1.A11yModule, typeof i6.ReactiveFormsModule, typeof i16.FormlyModule, typeof i17.FormlyMaterialModule, typeof i4$3.MatInputModule, typeof GioIconsModule, typeof GioFormSlideToggleModule, typeof GioFormHeadersModule, typeof GioMonacoEditorModule, typeof GioFormCronModule, typeof GioPopoverComponent, typeof PopoverTriggerDirective, typeof GioElPromptComponent, typeof i27.MatSlideToggleModule, typeof i4.MatButtonModule, typeof GioElAssistantComponent], [typeof GioFormJsonSchemaComponent, typeof i16.FormlyModule]>;
1210
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormJsonSchemaModule, [typeof GioFormJsonSchemaComponent, typeof GioFjsNullTypeComponent, typeof GioFjsObjectTypeComponent, typeof GioFjsMultiSchemaTypeComponent, typeof GioFjsArrayTypeComponent, typeof GioFjsToggleTypeComponent, typeof GioFjsHeadersTypeComponent, typeof GioFjsCodeEditorTypeComponent, typeof GioFjsCronTypeComponent, typeof GioBannerWrapperComponent, typeof GioPasswordEyeWrapperComponent, typeof GioElHelperWrapperComponent, typeof GioCurrencyPrefixWrapperComponent], [typeof i2.CommonModule, typeof i3$1.A11yModule, typeof i6.ReactiveFormsModule, typeof i17.FormlyModule, typeof i18.FormlyMaterialModule, typeof i5.MatInputModule, typeof GioIconsModule, typeof GioFormSlideToggleModule, typeof GioFormHeadersModule, typeof GioMonacoEditorModule, typeof GioFormCronModule, typeof GioPopoverComponent, typeof PopoverTriggerDirective, typeof GioElPromptComponent, typeof i28.MatSlideToggleModule, typeof i4.MatButtonModule, typeof GioElAssistantComponent], [typeof GioFormJsonSchemaComponent, typeof i17.FormlyModule]>;
1354
1211
  static ɵinj: i0.ɵɵInjectorDeclaration<GioFormJsonSchemaModule>;
1355
1212
  }
1356
1213
 
@@ -1581,7 +1438,7 @@ declare class GioLicenseExpirationNotificationComponent implements OnInit, OnCha
1581
1438
 
1582
1439
  declare class GioLicenseExpirationNotificationModule {
1583
1440
  static ɵfac: i0.ɵɵFactoryDeclaration<GioLicenseExpirationNotificationModule, never>;
1584
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioLicenseExpirationNotificationModule, [typeof GioLicenseExpirationNotificationComponent], [typeof i2.CommonModule, typeof i4.MatButtonModule, typeof i5.MatTooltipModule, typeof GioIconsModule], [typeof GioLicenseExpirationNotificationComponent]>;
1441
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioLicenseExpirationNotificationModule, [typeof GioLicenseExpirationNotificationComponent], [typeof i2.CommonModule, typeof i4.MatButtonModule, typeof i5$1.MatTooltipModule, typeof GioIconsModule], [typeof GioLicenseExpirationNotificationComponent]>;
1585
1442
  static ɵinj: i0.ɵɵInjectorDeclaration<GioLicenseExpirationNotificationModule>;
1586
1443
  }
1587
1444
 
@@ -1830,7 +1687,7 @@ declare class GioMenuLicenseExpirationNotificationComponent {
1830
1687
 
1831
1688
  declare class GioMenuModule {
1832
1689
  static ɵfac: i0.ɵɵFactoryDeclaration<GioMenuModule, never>;
1833
- static ɵmod: i0.ɵɵNgModuleDeclaration<GioMenuModule, [typeof GioMenuComponent, typeof GioMenuItemComponent, typeof GioMenuFooterComponent, typeof GioMenuListComponent, typeof GioMenuHeaderComponent, typeof GioMenuSearchComponent, typeof GioMenuSelectorComponent, typeof GioMenuLicenseExpirationNotificationComponent], [typeof i2.CommonModule, typeof i8.MatAutocompleteModule, typeof i4$1.MatIconModule, typeof i4$3.MatInputModule, typeof GioIconsModule, typeof i9.MatSelectModule, typeof i6.ReactiveFormsModule], [typeof GioMenuComponent, typeof GioMenuItemComponent, typeof GioMenuFooterComponent, typeof GioMenuListComponent, typeof GioMenuHeaderComponent, typeof GioMenuSearchComponent, typeof GioMenuSelectorComponent, typeof GioMenuLicenseExpirationNotificationComponent]>;
1690
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GioMenuModule, [typeof GioMenuComponent, typeof GioMenuItemComponent, typeof GioMenuFooterComponent, typeof GioMenuListComponent, typeof GioMenuHeaderComponent, typeof GioMenuSearchComponent, typeof GioMenuSelectorComponent, typeof GioMenuLicenseExpirationNotificationComponent], [typeof i2.CommonModule, typeof i8.MatAutocompleteModule, typeof i4$1.MatIconModule, typeof i5.MatInputModule, typeof GioIconsModule, typeof i9.MatSelectModule, typeof i6.ReactiveFormsModule], [typeof GioMenuComponent, typeof GioMenuItemComponent, typeof GioMenuFooterComponent, typeof GioMenuListComponent, typeof GioMenuHeaderComponent, typeof GioMenuSearchComponent, typeof GioMenuSelectorComponent, typeof GioMenuLicenseExpirationNotificationComponent]>;
1834
1691
  static ɵinj: i0.ɵɵInjectorDeclaration<GioMenuModule>;
1835
1692
  }
1836
1693
 
@@ -1969,5 +1826,5 @@ declare class GioCardEmptyStateModule {
1969
1826
  static ɵinj: i0.ɵɵInjectorDeclaration<GioCardEmptyStateModule>;
1970
1827
  }
1971
1828
 
1972
- export { ConfigureTestingGioMonacoEditor, GIO_DIALOG_WIDTH, GIO_FORM_FOCUS_INVALID_IGNORE_SELECTOR, GioAvatarComponent, GioAvatarModule, GioBannerActionDirective, GioBannerBodyDirective, GioBannerComponent, GioBannerErrorComponent, GioBannerInfoComponent, GioBannerModule, GioBannerSuccessComponent, GioBannerWarningComponent, GioBaseFormFocusInvalidDirective, GioBreadcrumbComponent, GioBreadcrumbItemDirective, GioBreadcrumbModule, GioButtonFocusInvalidButtonDirective, GioCardEmptyStateComponent, GioCardEmptyStateModule, GioClipboardCopyIconComponent, GioClipboardCopyWrapperComponent, GioClipboardModule, GioConfirmAndValidateDialogComponent, GioConfirmAndValidateDialogHarness, GioConfirmAndValidateDialogModule, GioConfirmDialogComponent, GioConfirmDialogHarness, GioConfirmDialogModule, GioElAssistantComponent, GioElPromptComponent, GioElService, GioFormAutocompleteInputComponent, GioFormAutocompleteInputHarness, GioFormAutocompleteInputModule, GioFormCronComponent, GioFormCronHarness, GioFormCronHintComponent, GioFormCronLabelComponent, GioFormCronModule, GioFormFilePickerAddButtonComponent, GioFormFilePickerComponent, GioFormFilePickerEmptyComponent, GioFormFilePickerInputHarness, GioFormFilePickerLabelComponent, GioFormFilePickerModule, GioFormFocusInvalidFormDirective, GioFormFocusInvalidIgnoreDirective, GioFormFocusInvalidModule, GioFormHeadersComponent, GioFormHeadersHarness, GioFormHeadersLabelComponent, GioFormHeadersModule, GioFormJsonSchemaComponent, GioFormJsonSchemaModule, GioFormLabelComponent, GioFormPrefixDirective, GioFormSelectionInlineCardComponent, GioFormSelectionInlineCardContentComponent, GioFormSelectionInlineCardHarness, GioFormSelectionInlineCardSubtitleComponent, GioFormSelectionInlineCardTitleComponent, GioFormSelectionInlineComponent, GioFormSelectionInlineHarness, GioFormSelectionInlineModule, GioFormSlideToggleComponent, GioFormSlideToggleDirective, GioFormSlideToggleModule, GioFormTagsInputComponent, GioFormTagsInputHarness, GioFormTagsInputModule, GioIconsModule, GioLicenseDialogComponent, GioLicenseDialogModule, GioLicenseDirective, GioLicenseExpirationNotificationComponent, GioLicenseExpirationNotificationHarness, GioLicenseExpirationNotificationModule, GioLicenseModule, GioLicenseService, GioLicenseTestingModule, GioLoaderComponent, GioLoaderModule, GioMatConfigModule, GioMenuComponent, GioMenuFooterComponent, GioMenuHeaderComponent, GioMenuItemComponent, GioMenuLicenseExpirationNotificationComponent, GioMenuListComponent, GioMenuModule, GioMenuSearchComponent, GioMenuSearchHarness, GioMenuSearchService, GioMenuSelectorComponent, GioMenuSelectorHarness, GioMenuService, GioMonacoClipboardCopyComponent, GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoEditorHarness, GioMonacoEditorModule, GioPopoverComponent, GioPrismJsService, GioSafePipeModule, GioSaveBarComponent, GioSaveBarHarness, GioSaveBarModule, GioSubmenuComponent, GioSubmenuGroupComponent, GioSubmenuItemComponent, GioSubmenuModule, GioSubmenuTitleDirective, GioTopBarComponent, GioTopBarContentComponent, GioTopBarLinkComponent, GioTopBarLinkModule, GioTopBarMenuComponent, GioTopBarMenuModule, GioTopBarModule, LICENSE_CONFIGURATION_TESTING, NewFile, OEM_LICENSE_CONFIGURATION_TESTING, PopoverTriggerDirective, SafePipe, cleanLocalStorageReduceState, computeStyles, isFormHeaderElConfig, isLicensePluginOptions, isPromptError, isPromptSuccess };
1973
- export type { AutocompleteInputOptions, AutocompleteOptions, DisplayValueWithFn, ElAiPromptState, ElColumns, FeatureInfo, FeedbackRequestId, FeedbackSubmission, FeedbackType, FormHeaderFieldMapper, GioBannerTypes, GioConfig, GioConfirmAndValidateDialogData, GioConfirmDialogData, GioConfirmDialogResult, GioFormAutocompleteInputHarnessFilters, GioFormCronHarnessFilters, GioFormSelectionInlineCardHarnessFilters, GioFormSelectionInlineHarnessFilters, GioFormTagsInputHarnessFilters, GioIfConfig, GioJsonSchema, GioJsonSchemaContext, GioLicenseDialogData, GioMonacoEditorHarnessFilters, GioSubmenuTheme, GioTopBarProductTypes, GioTopBarTypes, GioUiTypeConfig, Header, License, LicenseConfiguration, LicenseOptions, LicenseOptionsBase, LicensePluginOptions, MenuSearchItem, MonacoEditorLanguageConfig, OemTheme, OverlayOptions, PromptError, PromptSuccess, SelectorItem, Tags, UTM };
1829
+ export { ConfigureTestingGioMonacoEditor, GIO_DIALOG_WIDTH, GIO_FORM_FOCUS_INVALID_IGNORE_SELECTOR, GioAvatarComponent, GioAvatarModule, GioBannerActionDirective, GioBannerBodyDirective, GioBannerComponent, GioBannerErrorComponent, GioBannerInfoComponent, GioBannerModule, GioBannerSuccessComponent, GioBannerWarningComponent, GioBaseFormFocusInvalidDirective, GioBreadcrumbComponent, GioBreadcrumbItemDirective, GioBreadcrumbModule, GioButtonFocusInvalidButtonDirective, GioCardEmptyStateComponent, GioCardEmptyStateModule, GioClipboardCopyIconComponent, GioClipboardCopyWrapperComponent, GioClipboardModule, GioConfirmAndValidateDialogComponent, GioConfirmAndValidateDialogHarness, GioConfirmAndValidateDialogModule, GioConfirmDialogComponent, GioConfirmDialogHarness, GioConfirmDialogModule, GioElAssistantComponent, GioElPromptComponent, GioElService, GioFormCronComponent, GioFormCronHarness, GioFormCronHintComponent, GioFormCronLabelComponent, GioFormCronModule, GioFormFilePickerAddButtonComponent, GioFormFilePickerComponent, GioFormFilePickerEmptyComponent, GioFormFilePickerInputHarness, GioFormFilePickerLabelComponent, GioFormFilePickerModule, GioFormFocusInvalidFormDirective, GioFormFocusInvalidIgnoreDirective, GioFormFocusInvalidModule, GioFormHeadersComponent, GioFormHeadersHarness, GioFormHeadersLabelComponent, GioFormHeadersModule, GioFormJsonSchemaComponent, GioFormJsonSchemaModule, GioFormLabelComponent, GioFormPrefixDirective, GioFormSelectionInlineCardComponent, GioFormSelectionInlineCardContentComponent, GioFormSelectionInlineCardHarness, GioFormSelectionInlineCardSubtitleComponent, GioFormSelectionInlineCardTitleComponent, GioFormSelectionInlineComponent, GioFormSelectionInlineHarness, GioFormSelectionInlineModule, GioFormSlideToggleComponent, GioFormSlideToggleDirective, GioFormSlideToggleModule, GioFormTagsInputComponent, GioFormTagsInputHarness, GioFormTagsInputModule, GioIconsModule, GioLicenseDialogComponent, GioLicenseDialogModule, GioLicenseDirective, GioLicenseExpirationNotificationComponent, GioLicenseExpirationNotificationHarness, GioLicenseExpirationNotificationModule, GioLicenseModule, GioLicenseService, GioLicenseTestingModule, GioLoaderComponent, GioLoaderModule, GioMatConfigModule, GioMenuComponent, GioMenuFooterComponent, GioMenuHeaderComponent, GioMenuItemComponent, GioMenuLicenseExpirationNotificationComponent, GioMenuListComponent, GioMenuModule, GioMenuSearchComponent, GioMenuSearchHarness, GioMenuSearchService, GioMenuSelectorComponent, GioMenuSelectorHarness, GioMenuService, GioMonacoClipboardCopyComponent, GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoEditorHarness, GioMonacoEditorModule, GioPopoverComponent, GioPrismJsService, GioSafePipeModule, GioSaveBarComponent, GioSaveBarHarness, GioSaveBarModule, GioSubmenuComponent, GioSubmenuGroupComponent, GioSubmenuItemComponent, GioSubmenuModule, GioSubmenuTitleDirective, GioTopBarComponent, GioTopBarContentComponent, GioTopBarLinkComponent, GioTopBarLinkModule, GioTopBarMenuComponent, GioTopBarMenuModule, GioTopBarModule, LICENSE_CONFIGURATION_TESTING, NewFile, OEM_LICENSE_CONFIGURATION_TESTING, PopoverTriggerDirective, SafePipe, cleanLocalStorageReduceState, computeStyles, isFormHeaderElConfig, isLicensePluginOptions, isPromptError, isPromptSuccess };
1830
+ export type { AutocompleteOptions, DisplayValueWithFn, ElAiPromptState, ElColumns, FeatureInfo, FeedbackRequestId, FeedbackSubmission, FeedbackType, FormHeaderFieldMapper, GioBannerTypes, GioConfig, GioConfirmAndValidateDialogData, GioConfirmDialogData, GioConfirmDialogResult, GioFormCronHarnessFilters, GioFormSelectionInlineCardHarnessFilters, GioFormSelectionInlineHarnessFilters, GioFormTagsInputHarnessFilters, GioIfConfig, GioJsonSchema, GioJsonSchemaContext, GioLicenseDialogData, GioMonacoEditorHarnessFilters, GioSubmenuTheme, GioTopBarProductTypes, GioTopBarTypes, GioUiTypeConfig, Header, License, LicenseConfiguration, LicenseOptions, LicenseOptionsBase, LicensePluginOptions, MenuSearchItem, MonacoEditorLanguageConfig, OemTheme, OverlayOptions, PromptError, PromptSuccess, SelectorItem, Tags, UTM };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-particles-angular",
3
- "version": "16.2.1-apim-11674-edit-ps-flows-for-llm-proxy-778b797",
3
+ "version": "16.2.1-apim-11833-llm-proxy-ui-does-not-match-designs-2eb195a",
4
4
  "description": "Gravitee.io - UI Particles Angular",
5
5
  "repository": {
6
6
  "type": "git",