@cloudtower/eagle 0.27.1 → 0.27.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.
@@ -3,7 +3,7 @@ declare const _default: import("@storybook/types").ComponentAnnotations<import("
3
3
  className?: string | undefined;
4
4
  } & import("../../..").StringProps>;
5
5
  export default _default;
6
- export declare const WithOutTags: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, import("../../../spec/react-final-form").FieldRenderProps<any, HTMLElement> & {
6
+ export declare const WithoutTags: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, import("../../../spec/react-final-form").FieldRenderProps<any, HTMLElement> & {
7
7
  disabled?: boolean | undefined;
8
8
  className?: string | undefined;
9
9
  } & import("../../..").StringProps>;
@@ -1,10 +1,4 @@
1
1
  import React from "react";
2
- export declare const NameTag: import("@linaria/react").StyledMeta & React.FunctionComponent<React.ClassAttributes<HTMLSpanElement> & React.HTMLAttributes<HTMLSpanElement> & Record<never, unknown> & {
3
- as?: React.ElementType<any> | undefined;
4
- }>;
5
- declare const I18nNameTag: React.FC<{
6
- name: string;
7
- i18nKey: string;
8
- [key: string]: unknown;
9
- }>;
2
+ import { I18nNameTagType } from "../../spec";
3
+ declare const I18nNameTag: React.FC<I18nNameTagType>;
10
4
  export default I18nNameTag;
@@ -2,13 +2,13 @@
2
2
  import { Meta, StoryObj } from "@storybook/react";
3
3
  import { SplitTagComponentType, TagColor, TagComponentType } from "../../spec";
4
4
  declare const story: Meta<TagComponentType>;
5
- export declare const Basic: StoryObj<TagComponentType>;
6
- export declare const Default: StoryObj<{
5
+ export declare const Basic: StoryObj<{
7
6
  content: string;
8
7
  color: TagColor;
9
8
  size: "small" | "medium";
10
9
  hoverable: boolean;
11
10
  }>;
11
+ export declare const Variants: StoryObj<TagComponentType>;
12
12
  export declare const Custom: StoryObj<{
13
13
  content: string;
14
14
  color: TagColor;
@@ -2,3 +2,4 @@ import { LinariaClassName } from "@linaria/core";
2
2
  export declare const Size: Record<"small" | "medium", LinariaClassName>;
3
3
  export declare const TagStyle: LinariaClassName;
4
4
  export declare const IconStyle: LinariaClassName;
5
+ export declare const NameTagStyle: LinariaClassName;