forstok-ui-lib 5.2.45 → 5.2.47

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/index.d.ts CHANGED
@@ -19,6 +19,7 @@ type TLinkBase = {
19
19
  $activated?: boolean;
20
20
  $elipsis?: boolean;
21
21
  $shadow?: boolean;
22
+ $iconRight?: string;
22
23
  disabled?: boolean;
23
24
  } & ((AnchorHTMLAttributes<HTMLAnchorElement> & {
24
25
  href?: string;
@@ -27,7 +28,7 @@ type TLinkBase = {
27
28
  href?: undefined;
28
29
  onClick?: (e: MouseEvent<HTMLSpanElement>) => void;
29
30
  }));
30
- declare const LinkComponent: ({ children, mode, $activated, href, $elipsis, $shadow, disabled, ...props }: TLinkBase) => react_jsx_runtime.JSX.Element;
31
+ declare const LinkComponent: ({ children, mode, $activated, href, $elipsis, $shadow, $iconRight, disabled, ...props }: TLinkBase) => react_jsx_runtime.JSX.Element;
31
32
 
32
33
  type RemoveUnderscoreFirstLetter<S extends string> = S extends `${infer FirstLetter}${infer U}` ? `${FirstLetter extends "_" ? U : `${FirstLetter}${U}`}` : S;
33
34
  type CamelToSnakeCase<S extends string> = S extends `${infer T}${infer U}` ? `${T extends Capitalize<T> ? "_" : ""}${RemoveUnderscoreFirstLetter<Lowercase<T>>}${CamelToSnakeCase<U>}` : S;