@zealicsolutions/web-ui 0.3.251 → 0.3.253
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/atoms/Buttons/Buttons.stories.d.ts +1 -0
- package/dist/cjs/src/atoms/Buttons/TextButton.d.ts +2 -0
- package/dist/cjs/src/molecules/Columns/styles.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/atoms/Buttons/Buttons.stories.d.ts +1 -0
- package/dist/esm/src/atoms/Buttons/TextButton.d.ts +2 -0
- package/dist/esm/src/molecules/Columns/styles.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +2 -2
@@ -12,6 +12,7 @@ declare const _default: {
|
|
12
12
|
elementId: string;
|
13
13
|
$styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
14
14
|
$variant: import("atoms/Buttons/TextButton").LinkVariant;
|
15
|
+
textColor: string;
|
15
16
|
}>, "target">;
|
16
17
|
};
|
17
18
|
export default _default;
|
@@ -6,6 +6,7 @@ export declare type TextButtonProps = Pick<BaseButtonProps, 'disabled' | 'onClic
|
|
6
6
|
elementId: string;
|
7
7
|
$styles: StylesType;
|
8
8
|
$variant: LinkVariant;
|
9
|
+
textColor: string;
|
9
10
|
}>;
|
10
11
|
export declare const TextButton: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {
|
11
12
|
target: "_blank";
|
@@ -14,4 +15,5 @@ export declare const TextButton: import("styled-components").StyledComponent<"a"
|
|
14
15
|
elementId: string;
|
15
16
|
$styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
16
17
|
$variant: LinkVariant;
|
18
|
+
textColor: string;
|
17
19
|
}>, "target">;
|
@@ -9,6 +9,7 @@ export declare const Link: import("styled-components").StyledComponent<"a", impo
|
|
9
9
|
elementId: string;
|
10
10
|
$styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
11
11
|
$variant: import("atoms").LinkVariant;
|
12
|
+
textColor: string;
|
12
13
|
}>, "target">;
|
13
14
|
export declare const ColumnCardWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
14
15
|
isMobile: boolean;
|
package/dist/index.d.ts
CHANGED
@@ -907,6 +907,7 @@ declare type TextButtonProps = Pick<BaseButtonProps$1, 'disabled' | 'onClick' |
|
|
907
907
|
elementId: string;
|
908
908
|
$styles: StylesType;
|
909
909
|
$variant: LinkVariant;
|
910
|
+
textColor: string;
|
910
911
|
}>;
|
911
912
|
declare const TextButton: styled_components.StyledComponent<"a", styled_components.DefaultTheme, {
|
912
913
|
target: "_blank";
|
@@ -915,6 +916,7 @@ declare const TextButton: styled_components.StyledComponent<"a", styled_componen
|
|
915
916
|
elementId: string;
|
916
917
|
$styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|
917
918
|
$variant: LinkVariant;
|
919
|
+
textColor: string;
|
918
920
|
}>, "target">;
|
919
921
|
|
920
922
|
declare type ValidationTagStatus = 'DEFAULT' | 'ERROR' | 'SUCCESS';
|
package/package.json
CHANGED