@fluid-topics/ft-button 1.2.15 → 1.2.17

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.
@@ -3,12 +3,12 @@ import { Position } from "@fluid-topics/ft-tooltip";
3
3
  import { FtIconVariants } from "@fluid-topics/ft-icon";
4
4
  import { HTMLTemplateResult } from "lit";
5
5
  import { ClassInfo } from "lit/directives/class-map.js";
6
- import { HTMLAttributeAnchorTarget } from "react";
6
+ type HTMLAnchorElementTargetAttribute = "_self" | "_blank" | "_parent" | "_top";
7
7
  export interface FtBaseButtonProperties {
8
8
  disabled?: boolean;
9
9
  label?: string;
10
10
  href?: string;
11
- target?: HTMLAttributeAnchorTarget;
11
+ target?: HTMLAnchorElementTargetAttribute;
12
12
  icon?: string;
13
13
  iconVariant?: FtIconVariants;
14
14
  trailingIcon?: boolean;
@@ -22,7 +22,7 @@ declare const FtBaseButton_base: import("@fluid-topics/ft-wc-utils").FtFormCompo
22
22
  export declare class FtBaseButton extends FtBaseButton_base implements FtBaseButtonProperties {
23
23
  static elementDefinitions: ElementDefinitionsMap;
24
24
  href?: string;
25
- target?: HTMLAttributeAnchorTarget;
25
+ target?: HTMLAnchorElementTargetAttribute;
26
26
  role: string;
27
27
  type: "button" | "submit" | "reset";
28
28
  disabled: boolean;