@gravitee/ui-particles-angular 16.0.0-card-selection-harness-1b96509 → 16.0.0-card-selection-harness-7f04116

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.
@@ -7366,6 +7366,7 @@ class GioFormSelectionInlineCardHarness extends ComponentHarness {
7366
7366
  }
7367
7367
  async getValue() {
7368
7368
  const host = await this.host();
7369
+ // Fallback to keep for Angular 19 compatibility. Can be removed when all projects are on Angular 20+
7369
7370
  const value = (await host.getAttribute('value')) ?? (await host.getAttribute('ng-reflect-value'));
7370
7371
  return value ?? null;
7371
7372
  }
@@ -7417,7 +7418,7 @@ class GioFormSelectionInlineHarness extends ComponentHarness {
7417
7418
  if (primaryLocator) {
7418
7419
  return primaryLocator;
7419
7420
  }
7420
- // fallback
7421
+ // Fallback to keep for Angular 19 compatibility. Can be removed when all projects are on Angular 20+
7421
7422
  const secondaryLocator = await this.locatorForOptional(`gio-form-selection-inline-card[ng-reflect-value="${value}"]`)();
7422
7423
  if (secondaryLocator) {
7423
7424
  return secondaryLocator;