@xapp/form-widget 1.72.0 → 1.72.1
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/Button/Button.d.ts +0 -0
- package/dist/components/Button/Button.stories.d.ts +3 -2
- package/dist/components/Carousel/CarouselItem.d.ts +0 -0
- package/dist/components/LinkButton/LinkButton.d.ts +2 -2
- package/dist/components/SearchResponsePart/SearchResponsePart.d.ts +0 -0
- package/dist/index.es.js +32 -46
- package/dist/index.es.js.map +1 -1
- package/dist/setupTests.d.ts +1 -1
- package/dist/xapp-form-widget.css +18 -3
- package/dist/xapp-form-widget.js +10 -10
- package/package.json +40 -37
|
Binary file
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Meta } from "@storybook/react/types-6-0";
|
|
2
2
|
import { VFC } from "react";
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
import { Button } from "./Button";
|
|
4
|
+
declare const meta: Meta<typeof Button>;
|
|
5
|
+
export default meta;
|
|
5
6
|
export declare const Default: VFC;
|
|
6
7
|
export declare const Expand: VFC;
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { FC } from "react";
|
|
1
|
+
import { FC, PropsWithChildren } from "react";
|
|
2
2
|
export interface LinkButtonProps {
|
|
3
3
|
readonly href: string;
|
|
4
4
|
readonly className?: string;
|
|
5
5
|
readonly expand?: boolean;
|
|
6
6
|
}
|
|
7
|
-
export declare const LinkButton: FC<LinkButtonProps
|
|
7
|
+
export declare const LinkButton: FC<PropsWithChildren<LinkButtonProps>>;
|
|
Binary file
|