@proximus/lavender-link 2.0.0-alpha.54 → 2.0.0-alpha.55
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/dist/Link.d.ts +9 -0
- package/package.json +1 -1
package/dist/Link.d.ts
CHANGED
|
@@ -3,6 +3,15 @@ import type { Icon } from '@proximus/lavender-icon';
|
|
|
3
3
|
export declare const linktextsizesValues: string[];
|
|
4
4
|
export declare const linkVariantValues: string[];
|
|
5
5
|
export declare const linkShapeValues: string[];
|
|
6
|
+
/**
|
|
7
|
+
* @summary A link component.
|
|
8
|
+
* @slot before - Content to be placed before the link text.
|
|
9
|
+
* @slot after - Content to be placed after the link text.
|
|
10
|
+
* @attr {string} href - The URL that the hyperlink points to.
|
|
11
|
+
* @attr {string} target - Where to display the linked URL.
|
|
12
|
+
* @attr {string} rel - The relationship of the linked URL as space-separated link types.
|
|
13
|
+
* @attr {string} download - Prompts the user to save the linked URL instead of navigating to it.
|
|
14
|
+
*/
|
|
6
15
|
export declare class Link extends PxElement<HTMLLinkElement> {
|
|
7
16
|
static nativeName: string;
|
|
8
17
|
private template;
|