Fixes for non-breaking typos and typos configuration

Signed-off-by: Andre Wanlin <awanlin@spotify.com>

More

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2026-04-29 16:53:20 -05:00
parent 84913005fd
commit 2f33a9f63f
41 changed files with 128 additions and 48 deletions
@@ -66,7 +66,7 @@ export type AuthProviderInfo = {
icon: IconComponent | IconElement;
/**
* Optional user friendly messaage to display for the auth provider.
* Optional user friendly message to display for the auth provider.
*/
message?: string;
};
@@ -278,14 +278,14 @@ describe('createExtension', () => {
expect(String(extension)).toBe(
'ExtensionDefinition{attachTo=<plugin>@tabs+page:<plugin>@tabs+<plugin>/index@tabs+page:<plugin>/index@otherTabs}',
);
const overrdeExtension = extension.override({
const overrideExtension = extension.override({
attachTo: [
parent2.inputs.tabs,
parent3.inputs.tabs,
parent4.inputs.otherTabs,
] as any,
});
expect(String(overrdeExtension)).toBe(
expect(String(overrideExtension)).toBe(
'ExtensionDefinition{attachTo=page:<plugin>@tabs+<plugin>/index@tabs+page:<plugin>/index@otherTabs}',
);
});
@@ -48,8 +48,8 @@ import { describeParentCallSite } from '../routing/describeParentCallSite';
* @remarks
*
* This function is primarily intended to enable the use of inferred type
* parameters for blueprint params, but it can also be used to transoform the
* params before they are handed ot the blueprint.
* parameters for blueprint params, but it can also be used to transform the
* params before they are handed to the blueprint.
*
* The function must return an object created with
* {@link createExtensionBlueprintParams}.