@instructure/ui-link 11.7.2 → 11.7.3-snapshot-2
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/CHANGELOG.md +8 -0
- package/package.json +14 -14
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Link/v1/index.d.ts +1 -1
- package/types/Link/v2/index.d.ts +1 -1
package/types/Link/v1/index.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ declare class Link extends Component<LinkProps, LinkState> {
|
|
|
50
50
|
get containsTruncateText(): boolean;
|
|
51
51
|
get display(): "auto" | "block" | "inline-block" | "flex" | "inline-flex";
|
|
52
52
|
get interaction(): import("@instructure/ui-react-utils").InteractionType;
|
|
53
|
-
get element(): import("react").ComponentClass<any, any> | import("react").ComponentClass<Readonly<LinkProps>, any> | import("react").FunctionComponent<Readonly<LinkProps
|
|
53
|
+
get element(): import("react").ComponentClass<any, any> | NonNullable<import("@instructure/shared-types").AsElementType | undefined> | import("react").ComponentClass<Readonly<LinkProps>, any> | import("react").FunctionComponent<Readonly<LinkProps>>;
|
|
54
54
|
get focused(): boolean;
|
|
55
55
|
get focusable(): Element[];
|
|
56
56
|
get hasVisibleChildren(): boolean;
|
package/types/Link/v2/index.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ declare class Link extends Component<LinkProps, LinkState> {
|
|
|
52
52
|
get containsTruncateText(): boolean;
|
|
53
53
|
get display(): "auto" | "block" | "inline-block" | "flex" | "inline-flex";
|
|
54
54
|
get interaction(): import("@instructure/ui-react-utils").InteractionType;
|
|
55
|
-
get element(): import("react").ComponentClass<any, any> |
|
|
55
|
+
get element(): import("react").ComponentClass<any, any> | import("react").ComponentClass<Readonly<LinkProps>, any> | import("react").FunctionComponent<Readonly<LinkProps>> | NonNullable<import("@instructure/shared-types").AsElementType | undefined>;
|
|
56
56
|
get focused(): boolean;
|
|
57
57
|
get focusable(): Element[];
|
|
58
58
|
get hasVisibleChildren(): boolean;
|