@gravitee/ui-particles-angular 16.2.0 → 16.2.1-apim-11674-edit-ps-flows-for-llm-proxy-fe880ee
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
|
|
19
|
+
import * as i4$3 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';
|
|
@@ -40,7 +40,7 @@ import { ReadMode, ReadFile } from 'ngx-file-helpers';
|
|
|
40
40
|
import { FormlyJsonschema } from '@ngx-formly/core/json-schema';
|
|
41
41
|
import * as i27 from '@angular/material/slide-toggle';
|
|
42
42
|
import { MatSlideToggle } from '@angular/material/slide-toggle';
|
|
43
|
-
import * as i5
|
|
43
|
+
import * as i5 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
|
|
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]>;
|
|
221
221
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioFormTagsInputModule>;
|
|
222
222
|
}
|
|
223
223
|
|
|
@@ -242,6 +242,157 @@ 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
|
+
|
|
245
396
|
type GioBannerTypes = 'error' | 'info' | 'success' | 'warning';
|
|
246
397
|
declare class GioBannerComponent {
|
|
247
398
|
type: GioBannerTypes;
|
|
@@ -366,7 +517,7 @@ declare class GioConfirmAndValidateDialogComponent {
|
|
|
366
517
|
|
|
367
518
|
declare class GioConfirmAndValidateDialogModule {
|
|
368
519
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioConfirmAndValidateDialogModule, never>;
|
|
369
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GioConfirmAndValidateDialogModule, [typeof GioConfirmAndValidateDialogComponent], [typeof i2.CommonModule, typeof i6.FormsModule, typeof i4.MatButtonModule, typeof i3$2.MatDialogModule, typeof
|
|
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]>;
|
|
370
521
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioConfirmAndValidateDialogModule>;
|
|
371
522
|
}
|
|
372
523
|
|
|
@@ -695,7 +846,7 @@ declare class GioElAssistantComponent {
|
|
|
695
846
|
|
|
696
847
|
declare class GioFormHeadersModule {
|
|
697
848
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormHeadersModule, never>;
|
|
698
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GioFormHeadersModule, [typeof GioFormHeadersComponent, typeof GioFormHeadersLabelComponent], [typeof i2.CommonModule, typeof
|
|
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
850
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioFormHeadersModule>;
|
|
700
851
|
}
|
|
701
852
|
|
|
@@ -1125,7 +1276,7 @@ declare class GioClipboardCopyIconComponent extends GioClipboardComponent {
|
|
|
1125
1276
|
|
|
1126
1277
|
declare class GioClipboardModule {
|
|
1127
1278
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioClipboardModule, never>;
|
|
1128
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GioClipboardModule, [typeof GioClipboardCopyWrapperComponent, typeof GioClipboardCopyIconComponent], [typeof i2.CommonModule, typeof i4$1.MatIconModule, typeof i5
|
|
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]>;
|
|
1129
1280
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioClipboardModule>;
|
|
1130
1281
|
}
|
|
1131
1282
|
|
|
@@ -1193,13 +1344,13 @@ declare class GioFormCronHintComponent {
|
|
|
1193
1344
|
|
|
1194
1345
|
declare class GioFormCronModule {
|
|
1195
1346
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormCronModule, never>;
|
|
1196
|
-
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
|
|
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]>;
|
|
1197
1348
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioFormCronModule>;
|
|
1198
1349
|
}
|
|
1199
1350
|
|
|
1200
1351
|
declare class GioFormJsonSchemaModule {
|
|
1201
1352
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioFormJsonSchemaModule, never>;
|
|
1202
|
-
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
|
|
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]>;
|
|
1203
1354
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioFormJsonSchemaModule>;
|
|
1204
1355
|
}
|
|
1205
1356
|
|
|
@@ -1430,7 +1581,7 @@ declare class GioLicenseExpirationNotificationComponent implements OnInit, OnCha
|
|
|
1430
1581
|
|
|
1431
1582
|
declare class GioLicenseExpirationNotificationModule {
|
|
1432
1583
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioLicenseExpirationNotificationModule, never>;
|
|
1433
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GioLicenseExpirationNotificationModule, [typeof GioLicenseExpirationNotificationComponent], [typeof i2.CommonModule, typeof i4.MatButtonModule, typeof i5
|
|
1584
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GioLicenseExpirationNotificationModule, [typeof GioLicenseExpirationNotificationComponent], [typeof i2.CommonModule, typeof i4.MatButtonModule, typeof i5.MatTooltipModule, typeof GioIconsModule], [typeof GioLicenseExpirationNotificationComponent]>;
|
|
1434
1585
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioLicenseExpirationNotificationModule>;
|
|
1435
1586
|
}
|
|
1436
1587
|
|
|
@@ -1679,7 +1830,7 @@ declare class GioMenuLicenseExpirationNotificationComponent {
|
|
|
1679
1830
|
|
|
1680
1831
|
declare class GioMenuModule {
|
|
1681
1832
|
static ɵfac: i0.ɵɵFactoryDeclaration<GioMenuModule, never>;
|
|
1682
|
-
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
|
|
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]>;
|
|
1683
1834
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioMenuModule>;
|
|
1684
1835
|
}
|
|
1685
1836
|
|
|
@@ -1795,6 +1946,15 @@ declare class GioTopBarLinkModule {
|
|
|
1795
1946
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioTopBarLinkModule>;
|
|
1796
1947
|
}
|
|
1797
1948
|
|
|
1949
|
+
interface OemTheme {
|
|
1950
|
+
menuBackground: string;
|
|
1951
|
+
menuActive: string;
|
|
1952
|
+
}
|
|
1953
|
+
declare const computeStyles: (theme: OemTheme) => {
|
|
1954
|
+
key: string;
|
|
1955
|
+
value: string;
|
|
1956
|
+
}[];
|
|
1957
|
+
|
|
1798
1958
|
declare class GioCardEmptyStateComponent {
|
|
1799
1959
|
icon: string | undefined;
|
|
1800
1960
|
title: string | undefined;
|
|
@@ -1809,5 +1969,5 @@ declare class GioCardEmptyStateModule {
|
|
|
1809
1969
|
static ɵinj: i0.ɵɵInjectorDeclaration<GioCardEmptyStateModule>;
|
|
1810
1970
|
}
|
|
1811
1971
|
|
|
1812
|
-
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, isFormHeaderElConfig, isLicensePluginOptions, isPromptError, isPromptSuccess };
|
|
1813
|
-
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, OverlayOptions, PromptError, PromptSuccess, SelectorItem, Tags, UTM };
|
|
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 };
|