@proximus/lavender-link 1.2.0-alpha.64 → 1.2.0-alpha.66

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.
Files changed (2) hide show
  1. package/dist/Link.d.ts +2 -2
  2. package/package.json +2 -1
package/dist/Link.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { PxElement } from '@proximus/lavender-common';
2
- import type { SVGIcon } from '@proximus/lavender-icon';
2
+ 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[];
@@ -17,7 +17,7 @@ export declare class Link extends PxElement<HTMLLinkElement> {
17
17
  updateTypography(attrName: string, oldValue: string, newValue: string, attrValue: string[]): void;
18
18
  get $before(): HTMLSlotElement;
19
19
  get $after(): HTMLSlotElement;
20
- get $iconNotBeforeAfter(): SVGIcon;
20
+ get $iconNotBeforeAfter(): Icon;
21
21
  get disabled(): string;
22
22
  set disabled(value: string);
23
23
  get variant(): string;
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@proximus/lavender-link",
3
- "version": "1.2.0-alpha.64",
3
+ "version": "1.2.0-alpha.66",
4
4
  "description": "",
5
5
  "main": "dist/index.es.js",
6
+ "types": "dist/index.d.ts",
6
7
  "files": [
7
8
  "dist"
8
9
  ],