@cloudtower/eagle 0.27.2-alpha.0 → 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.
- package/dist/components/Fields/FieldsString/FieldsString.stories.d.ts +1 -1
- package/dist/components/I18nNameTag/index.d.ts +2 -8
- package/dist/components/Loading/style.d.ts +4 -0
- package/dist/components/Tag/Tag.stories.d.ts +2 -2
- package/dist/components/Tag/style.d.ts +1 -0
- package/dist/components.css +1778 -2059
- package/dist/core/StepProgress/StepProgress.stories.d.ts +8 -0
- package/dist/core/StepProgress/index.d.ts +3 -0
- package/dist/esm/index.js +624 -593
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +19 -8
- package/dist/spec/type.d.ts +5 -0
- package/dist/style.css +1507 -1788
- package/dist/umd/index.js +621 -590
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/icon.d.ts +2 -1
- package/dist/variables.scss +2 -0
- package/package.json +5 -6
- package/dist/components/images/index.d.ts +0 -15
|
@@ -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
|
|
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
|
-
|
|
3
|
-
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const LoadingWrapper: import("@linaria/core").LinariaClassName;
|
|
2
|
+
export declare const LoadingLine1: import("@linaria/core").LinariaClassName;
|
|
3
|
+
export declare const LoadingLine2: import("@linaria/core").LinariaClassName;
|
|
4
|
+
export declare const LoadingLine3: import("@linaria/core").LinariaClassName;
|
|
@@ -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<
|
|
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;
|