@heartlandone/vega-angular 2.87.0 → 2.89.0

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,6 +1,6 @@
1
1
  import { Directive, ElementRef, HostListener } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
- import { VegaEventManager } from '@globalpayments/vega';
3
+ import { VegaEventManager } from '@heartlandone/vega';
4
4
 
5
5
  @Directive({ selector: 'vega-value-accessor' })
6
6
  export class ValueAccessor implements ControlValueAccessor {
@@ -69,10 +69,10 @@ function resolveEventPayloadImportPath(componentsContent) {
69
69
  ]);
70
70
 
71
71
  return componentsContent.replace(
72
- /(import type { (.*) as .* } from )'@globalpayments\/vega'/g,
72
+ /(import type { (.*) as .* } from )'@heartlandone\/vega'/g,
73
73
  function (matched, group1, group2) {
74
74
  const componentTypePath = EVENT_PAYLOAD_TYPE_TO_COMPONENT_TAG_MAP.get(group2);
75
- return `${group1}'@globalpayments/vega/dist/types/components/${componentTypePath}'`;
75
+ return `${group1}'@heartlandone/vega/dist/types/components/${componentTypePath}'`;
76
76
  },
77
77
  );
78
78
  }
package/testing/index.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { FeatureFlag } from '@globalpayments/vega';
2
- import { waitForVega } from '@globalpayments/vega';
1
+ import { FeatureFlag } from '@heartlandone/vega';
2
+ import { waitForVega } from '@heartlandone/vega';
3
3
  import type { RenderResult } from '@testing-library/angular';
4
4
 
5
5
  type Nullable<T> = T | undefined | null;
@@ -4,5 +4,5 @@
4
4
  "lib": {
5
5
  "entryFile": "./public-api.ts"
6
6
  },
7
- "allowedNonPeerDependencies": ["@testing-library/angular", "@globalpayments/vega"]
7
+ "allowedNonPeerDependencies": ["@testing-library/angular", "@heartlandone/vega"]
8
8
  }