@gravitee/ui-particles-angular 12.3.0-gio-form-selection-inline-0dfea7c → 12.3.0-gio-form-selection-inline-375f403

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.
@@ -1 +1 @@
1
- {"version":3,"file":"gravitee-ui-particles-angular-gio-asciidoctor.mjs","sources":["../../../projects/ui-particles-angular/gio-asciidoctor/gio-asciidoctor.service.ts","../../../projects/ui-particles-angular/gio-asciidoctor/gio-asciidoctor.component.ts","../../../projects/ui-particles-angular/gio-asciidoctor/gio-asciidoctor.module.ts","../../../projects/ui-particles-angular/gio-asciidoctor/public-api.ts","../../../projects/ui-particles-angular/gio-asciidoctor/gravitee-ui-particles-angular-gio-asciidoctor.ts"],"sourcesContent":["/*\n * Copyright (C) 2023 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Injectable } from '@angular/core';\nimport { from, Observable, of } from 'rxjs';\nimport { shareReplay } from 'rxjs/operators';\nimport asciidoctor, { Asciidoctor } from '@asciidoctor/core';\n\ndeclare global {\n interface Window {\n Asciidoctor: Asciidoctor;\n }\n}\n\n@Injectable({\n providedIn: 'root',\n})\nexport class GioAsciidoctorService {\n public load(): Observable<Asciidoctor> {\n return this.loadAsciidoctor().pipe(\n // If already loaded, we don't want to load it again\n shareReplay(1),\n );\n }\n\n private loadAsciidoctor(): Observable<Asciidoctor> {\n if (!window.Asciidoctor) {\n const loadAsciidoctor = async () => {\n window.Asciidoctor = asciidoctor();\n return window.Asciidoctor;\n };\n\n return from(loadAsciidoctor());\n } else {\n return of(window.Asciidoctor);\n }\n }\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { APP_ID, Component, ElementRef, Inject, Input, OnChanges, OnDestroy, SecurityContext, SimpleChanges } from '@angular/core';\nimport { takeUntil } from 'rxjs/operators';\nimport { ReplaySubject, Subject, forkJoin } from 'rxjs';\nimport { HttpClient } from '@angular/common/http';\nimport { DomSanitizer } from '@angular/platform-browser';\nimport { Asciidoctor, Options } from '@asciidoctor/core';\nimport { GioPrismJsService } from '@gravitee/ui-particles-angular';\n\nimport { GioAsciidoctorService } from './gio-asciidoctor.service';\n\n@Component({\n selector: 'gio-asciidoctor',\n template: '',\n styleUrls: ['./gio-asciidoctor.component.scss'],\n})\nexport class GioAsciidoctorComponent implements OnChanges, OnDestroy {\n @Input()\n public content?: string;\n\n @Input()\n public src?: string;\n\n private options: Options = {\n header_footer: false,\n attributes: {\n showtitle: true,\n },\n safe: 'secure',\n };\n\n private asciidoctor$ = new ReplaySubject<Asciidoctor>(1);\n private unsubscribe$ = new Subject<void>();\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n private _uniqueId: string = (this.constructor as any)['ɵcmp'].id;\n\n constructor(\n private readonly gioAsciidoctorService: GioAsciidoctorService,\n private readonly gioPrismJsService: GioPrismJsService,\n private readonly sanitizer: DomSanitizer,\n private readonly elementRef: ElementRef,\n private readonly httpClient: HttpClient,\n @Inject(APP_ID) private readonly appId: string,\n ) {\n // Asynchronously load asciidoctor.js and prism.js\n forkJoin([this.gioAsciidoctorService.load(), this.gioPrismJsService.loadPrismJs()])\n .pipe(takeUntil(this.unsubscribe$))\n .subscribe(([asciidoctor]) => {\n this.asciidoctor$.next(asciidoctor);\n });\n }\n\n public ngOnChanges(changes: SimpleChanges): void {\n if (changes.content && this.content) {\n this.render(this.content);\n }\n if (changes.src && this.src) {\n this.httpClient\n .get(this.src, { responseType: 'text' })\n .pipe(takeUntil(this.unsubscribe$))\n .subscribe(content => {\n this.render(content);\n });\n }\n }\n\n public ngOnDestroy(): void {\n this.unsubscribe$.next();\n this.unsubscribe$.complete();\n }\n\n private render(content?: string): void {\n if (!content) {\n return;\n }\n\n // When asciidoctor is not loaded yet, wait for it\n this.asciidoctor$.pipe(takeUntil(this.unsubscribe$)).subscribe(asciidoctor => {\n const html = asciidoctor.convert(content, this.options);\n this.elementRef.nativeElement.innerHTML = this.sanitizer.sanitize(SecurityContext.HTML, html);\n\n // Highlight all code blocks with PrismJs\n const highlights = this.elementRef.nativeElement.querySelectorAll('pre.highlight');\n for (const element of highlights) {\n element.setAttribute('class', 'prismjs highlight');\n if (window.Prism) {\n window.Prism.highlightAllUnder(element);\n }\n }\n\n // Manually add Angular encapsulation attribute to all elements at the end\n const descandants = this.elementRef.nativeElement.querySelectorAll('*');\n for (const element of descandants) {\n element.setAttribute(`_ngcontent-${this.appId}-${this._uniqueId}`, '');\n }\n });\n }\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { GioAsciidoctorComponent } from './gio-asciidoctor.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [GioAsciidoctorComponent],\n exports: [GioAsciidoctorComponent],\n})\nexport class GioAsciidoctorModule {}\n","/*\n * Copyright (C) 2024 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './gio-asciidoctor.module';\nexport * from './gio-asciidoctor.component';\nexport * from './gio-asciidoctor.service';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"gravitee-ui-particles-angular-gio-asciidoctor.mjs","sources":["../../../projects/ui-particles-angular/gio-asciidoctor/gio-asciidoctor.service.ts","../../../projects/ui-particles-angular/gio-asciidoctor/gio-asciidoctor.component.ts","../../../projects/ui-particles-angular/gio-asciidoctor/gio-asciidoctor.module.ts","../../../projects/ui-particles-angular/gio-asciidoctor/public-api.ts","../../../projects/ui-particles-angular/gio-asciidoctor/gravitee-ui-particles-angular-gio-asciidoctor.ts"],"sourcesContent":["/*\n * Copyright (C) 2023 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Injectable } from '@angular/core';\nimport { from, Observable, of } from 'rxjs';\nimport { shareReplay } from 'rxjs/operators';\nimport asciidoctor, { Asciidoctor } from '@asciidoctor/core';\n\ndeclare global {\n interface Window {\n Asciidoctor: Asciidoctor;\n }\n}\n\n@Injectable({\n providedIn: 'root',\n})\nexport class GioAsciidoctorService {\n public load(): Observable<Asciidoctor> {\n return this.loadAsciidoctor().pipe(\n // If already loaded, we don't want to load it again\n shareReplay(1),\n );\n }\n\n private loadAsciidoctor(): Observable<Asciidoctor> {\n if (!window.Asciidoctor) {\n const loadAsciidoctor = async () => {\n window.Asciidoctor = asciidoctor();\n return window.Asciidoctor;\n };\n\n return from(loadAsciidoctor());\n } else {\n return of(window.Asciidoctor);\n }\n }\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport {\n APP_ID,\n ChangeDetectorRef,\n Component,\n ElementRef,\n Inject,\n Input,\n OnChanges,\n OnDestroy,\n SecurityContext,\n SimpleChanges,\n} from '@angular/core';\nimport { takeUntil } from 'rxjs/operators';\nimport { ReplaySubject, Subject, forkJoin } from 'rxjs';\nimport { HttpClient } from '@angular/common/http';\nimport { DomSanitizer } from '@angular/platform-browser';\nimport { Asciidoctor, Options } from '@asciidoctor/core';\nimport { GioPrismJsService } from '@gravitee/ui-particles-angular';\n\nimport { GioAsciidoctorService } from './gio-asciidoctor.service';\n\n@Component({\n selector: 'gio-asciidoctor',\n template: '',\n styleUrls: ['./gio-asciidoctor.component.scss'],\n})\nexport class GioAsciidoctorComponent implements OnChanges, OnDestroy {\n @Input()\n public content?: string;\n\n @Input()\n public src?: string;\n\n private options: Options = {\n header_footer: false,\n attributes: {\n showtitle: true,\n },\n safe: 'secure',\n };\n\n private asciidoctor$ = new ReplaySubject<Asciidoctor>(1);\n private unsubscribe$ = new Subject<void>();\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n private _uniqueId: string = (this.constructor as any)['ɵcmp'].id;\n\n constructor(\n private readonly gioAsciidoctorService: GioAsciidoctorService,\n private readonly gioPrismJsService: GioPrismJsService,\n private readonly sanitizer: DomSanitizer,\n private readonly elementRef: ElementRef,\n private readonly httpClient: HttpClient,\n private readonly changeDetectorRef: ChangeDetectorRef,\n @Inject(APP_ID) private readonly appId: string,\n ) {\n // Asynchronously load asciidoctor.js and prism.js\n forkJoin([this.gioAsciidoctorService.load(), this.gioPrismJsService.loadPrismJs()])\n .pipe(takeUntil(this.unsubscribe$))\n .subscribe(([asciidoctor]) => {\n this.asciidoctor$.next(asciidoctor);\n });\n }\n\n public ngOnChanges(changes: SimpleChanges): void {\n if (changes.content && this.content) {\n this.render(this.content);\n }\n if (changes.src && this.src) {\n this.httpClient\n .get(this.src, { responseType: 'text' })\n .pipe(takeUntil(this.unsubscribe$))\n .subscribe(content => {\n this.render(content);\n });\n }\n }\n\n public ngOnDestroy(): void {\n this.unsubscribe$.next();\n this.unsubscribe$.complete();\n }\n\n private render(content?: string): void {\n if (!content) {\n return;\n }\n\n // When asciidoctor is not loaded yet, wait for it\n this.asciidoctor$.pipe(takeUntil(this.unsubscribe$)).subscribe(asciidoctor => {\n const html = asciidoctor.convert(content, this.options);\n this.elementRef.nativeElement.innerHTML = this.sanitizer.sanitize(SecurityContext.HTML, html);\n\n // Highlight all code blocks with PrismJs\n const highlights = this.elementRef.nativeElement.querySelectorAll('pre.highlight');\n for (const element of highlights) {\n element.setAttribute('class', 'prismjs highlight');\n if (window.Prism) {\n window.Prism.highlightAllUnder(element);\n }\n }\n\n // Manually add Angular encapsulation attribute to all elements at the end\n const descandants = this.elementRef.nativeElement.querySelectorAll('*');\n for (const element of descandants) {\n element.setAttribute(`_ngcontent-${this.appId}-${this._uniqueId}`, '');\n }\n this.changeDetectorRef.markForCheck();\n this.changeDetectorRef.detectChanges();\n });\n }\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { GioAsciidoctorComponent } from './gio-asciidoctor.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [GioAsciidoctorComponent],\n exports: [GioAsciidoctorComponent],\n})\nexport class GioAsciidoctorModule {}\n","/*\n * Copyright (C) 2024 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './gio-asciidoctor.module';\nexport * from './gio-asciidoctor.component';\nexport * from './gio-asciidoctor.service';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -6383,6 +6383,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.3", ngImpor
6383
6383
  }]
6384
6384
  }] });
6385
6385
 
6386
+ /*
6387
+ * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
6388
+ *
6389
+ * Licensed under the Apache License, Version 2.0 (the "License");
6390
+ * you may not use this file except in compliance with the License.
6391
+ * You may obtain a copy of the License at
6392
+ *
6393
+ * http://www.apache.org/licenses/LICENSE-2.0
6394
+ *
6395
+ * Unless required by applicable law or agreed to in writing, software
6396
+ * distributed under the License is distributed on an "AS IS" BASIS,
6397
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
6398
+ * See the License for the specific language governing permissions and
6399
+ * limitations under the License.
6400
+ */
6401
+ class GioFormSelectionInlineCardHarness extends ComponentHarness {
6402
+ static { this.hostSelector = 'gio-form-selection-inline-card'; }
6403
+ /**
6404
+ * Gets a `HarnessPredicate` that can be used to search for a `GioFormSelectionInlineCardHarness` that meets
6405
+ * certain criteria.
6406
+ *
6407
+ * @param options Options for filtering which input instances are considered a match.
6408
+ * @return a `HarnessPredicate` configured with the given options.
6409
+ */
6410
+ static with(options = {}) {
6411
+ return new HarnessPredicate(GioFormSelectionInlineCardHarness, options).addOption('value', options.value, (harness, value) => HarnessPredicate.stringMatches(harness.getValue(), value));
6412
+ }
6413
+ async getValue() {
6414
+ const host = await this.host();
6415
+ return (await host.getAttribute('ng-reflect-value')) ?? null;
6416
+ }
6417
+ async isSelected() {
6418
+ return (await this.host()).hasClass('selected');
6419
+ }
6420
+ async isDisabled() {
6421
+ return (await this.host()).hasClass('disabled');
6422
+ }
6423
+ async getContentText() {
6424
+ const content = await this.locatorFor('.card__content')();
6425
+ return content.text();
6426
+ }
6427
+ }
6428
+
6386
6429
  /*
6387
6430
  * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
6388
6431
  *
@@ -6401,7 +6444,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.3", ngImpor
6401
6444
  class GioFormSelectionInlineHarness extends ComponentHarness {
6402
6445
  constructor() {
6403
6446
  super(...arguments);
6404
- this.getCards = this.locatorForAll('gio-form-selection-inline-card');
6447
+ this.getCards = this.locatorForAll(GioFormSelectionInlineCardHarness);
6405
6448
  this.getCardByValue = (value) => this.locatorFor(`gio-form-selection-inline-card[ng-reflect-value="${value}"]`)();
6406
6449
  }
6407
6450
  static { this.hostSelector = 'gio-form-selection-inline'; }
@@ -6417,21 +6460,31 @@ class GioFormSelectionInlineHarness extends ComponentHarness {
6417
6460
  }
6418
6461
  async getSelectedValue() {
6419
6462
  const cards = await this.getCards();
6420
- const cardsAttr = await parallel(() => cards.map(async (row) => ({ class: await row.hasClass('selected'), value: await row.getAttribute('ng-reflect-value') })));
6463
+ const cardsAttr = await parallel(() => cards.map(async (row) => ({ class: await row.isSelected(), value: await row.getValue() })));
6421
6464
  return cardsAttr.find(card => card.class)?.value ?? undefined;
6422
6465
  }
6423
6466
  async getUnselectedValues() {
6424
6467
  const cards = await this.getCards();
6425
- const cardsAttr = await parallel(() => cards.map(async (row) => ({ class: await row.hasClass('selected'), value: await row.getAttribute('value') })));
6468
+ const cardsAttr = await parallel(() => cards.map(async (row) => ({ class: await row.isSelected(), value: await row.getValue() })));
6426
6469
  return cardsAttr.filter(card => !card.class).map(card => card.value ?? undefined);
6427
6470
  }
6471
+ async getSelectionCards() {
6472
+ const cards = await this.getCards();
6473
+ const cardsAttr = await parallel(() => cards.map(async (card) => ({
6474
+ text: await card.getContentText(),
6475
+ selected: await card.isSelected(),
6476
+ value: (await card.getValue()) ?? undefined,
6477
+ disabled: await card.isDisabled(),
6478
+ })));
6479
+ return cardsAttr.map(card => ({ text: card.text, selected: card.selected, value: card.value, disabled: card.disabled }));
6480
+ }
6428
6481
  async select(value) {
6429
6482
  const card = await this.getCardByValue(value);
6430
6483
  await card.click();
6431
6484
  }
6432
6485
  async isDisabled() {
6433
6486
  const cards = await this.getCards();
6434
- const cardsAttr = await parallel(() => cards.map(async (card) => ({ hasClass: await card.hasClass('disabled') })));
6487
+ const cardsAttr = await parallel(() => cards.map(async (card) => ({ hasClass: await card.isDisabled() })));
6435
6488
  return cardsAttr.every(card => card.hasClass);
6436
6489
  }
6437
6490
  }
@@ -7658,5 +7711,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.3", ngImpor
7658
7711
  * Generated bundle index. Do not edit.
7659
7712
  */
7660
7713
 
7661
- 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, GioFormCronComponent, GioFormCronHarness, GioFormCronHintComponent, GioFormCronLabelComponent, GioFormCronModule, GioFormFilePickerAddButtonComponent, GioFormFilePickerComponent, GioFormFilePickerEmptyComponent, GioFormFilePickerInputHarness, GioFormFilePickerLabelComponent, GioFormFilePickerModule, GioFormFocusInvalidFormDirective, GioFormFocusInvalidIgnoreDirective, GioFormFocusInvalidModule, GioFormHeadersComponent, GioFormHeadersHarness, GioFormHeadersLabelComponent, GioFormHeadersModule, GioFormJsonSchemaComponent, GioFormJsonSchemaModule, GioFormLabelComponent, GioFormPrefixDirective, GioFormSelectionInlineCardComponent, GioFormSelectionInlineCardContentComponent, 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, GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoEditorHarness, GioMonacoEditorModule, GioPrismJsService, GioSafePipeModule, GioSaveBarComponent, GioSaveBarHarness, GioSaveBarModule, GioSubmenuComponent, GioSubmenuGroupComponent, GioSubmenuItemComponent, GioSubmenuModule, GioSubmenuTitleDirective, GioTopBarComponent, GioTopBarContentComponent, GioTopBarLinkComponent, GioTopBarLinkModule, GioTopBarMenuComponent, GioTopBarMenuModule, GioTopBarModule, LICENSE_CONFIGURATION_TESTING, NewFile, OEM_DEFAULT_LOGO, OEM_LICENSE_CONFIGURATION_TESTING, OEM_THEME_ARG_TYPES, SafePipe, computeAndInjectStylesForStory, computeStyles, computeStylesForStory, isLicensePluginOptions, resetStoryStyleInjection };
7714
+ 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, 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, GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoEditorHarness, GioMonacoEditorModule, GioPrismJsService, GioSafePipeModule, GioSaveBarComponent, GioSaveBarHarness, GioSaveBarModule, GioSubmenuComponent, GioSubmenuGroupComponent, GioSubmenuItemComponent, GioSubmenuModule, GioSubmenuTitleDirective, GioTopBarComponent, GioTopBarContentComponent, GioTopBarLinkComponent, GioTopBarLinkModule, GioTopBarMenuComponent, GioTopBarMenuModule, GioTopBarModule, LICENSE_CONFIGURATION_TESTING, NewFile, OEM_DEFAULT_LOGO, OEM_LICENSE_CONFIGURATION_TESTING, OEM_THEME_ARG_TYPES, SafePipe, computeAndInjectStylesForStory, computeStyles, computeStylesForStory, isLicensePluginOptions, resetStoryStyleInjection };
7662
7715
  //# sourceMappingURL=gravitee-ui-particles-angular.mjs.map