@xapp/form-widget 1.76.0 → 1.76.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/Form/Form.d.ts +0 -0
- package/dist/components/FormDisplay/FormDisplay.d.ts +0 -0
- package/dist/components/FormDisplay/FormDisplay.stories.d.ts +5 -0
- package/dist/components/FormDisplay/index.d.ts +0 -0
- package/dist/components/FormDisplay/model.d.ts +0 -0
- package/dist/components/FormFieldCard/FormFieldCard.d.ts +0 -0
- package/dist/components/FormFieldCard/FormFieldCard.stories.d.ts +4 -1
- package/dist/components/FormFieldChips/FormFieldChips.d.ts +0 -0
- package/dist/components/FormFieldChips/FormFieldChips.stories.d.ts +3 -0
- package/dist/components/FormFieldChips/FormFieldSelect.d.ts +0 -0
- package/dist/components/FormFieldDate/FormFieldDate.d.ts +0 -0
- package/dist/components/FormFieldDateRange/FormFieldDateRange.d.ts +0 -0
- package/dist/components/FormFieldDropdown/FormFieldDropdown.d.ts +0 -0
- package/dist/components/FormFieldTextInput/FormFieldTextInput.d.ts +0 -0
- package/dist/components/FormResponse/FormResponse.d.ts +0 -0
- package/dist/components/FormResponse/FormResponse.stories.d.ts +15 -0
- package/dist/components/FormResponse/SearchResponsePart.d.ts +0 -0
- package/dist/components/FormResponse/index.d.ts +0 -0
- package/dist/components/FormStepDisplay/FormStepDisplay.d.ts +0 -0
- package/dist/components/FormStepDisplay/FormStepDisplay.stories.d.ts +1 -0
- package/dist/components/ResponseDisplay/ResponseDisplay.d.ts +0 -0
- package/dist/components/ResponseDisplay/index.d.ts +0 -0
- package/dist/components/index.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +169 -132
- package/dist/index.es.js.map +1 -1
- package/dist/stories/default-form-service-options.d.ts +2 -0
- package/dist/stories/default-form.d.ts +2 -0
- package/dist/types.d.ts +0 -0
- package/dist/xapp-form-widget.css +31 -27
- package/dist/xapp-form-widget.js +55 -47
- package/package.json +17 -17
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { Meta } from "@storybook/react";
|
|
1
|
+
import { Meta, StoryFn } from "@storybook/react";
|
|
2
|
+
import { FormCardProps } from "./FormFieldCard";
|
|
2
3
|
declare const _default: Meta;
|
|
3
4
|
export default _default;
|
|
5
|
+
type Story = StoryFn<FormCardProps>;
|
|
4
6
|
export declare const Default: any;
|
|
7
|
+
export declare const WithVariants: Story;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Meta } from "@storybook/react";
|
|
2
|
+
import { VFC, FC } from "react";
|
|
3
|
+
declare const _default: Meta;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const DisplayFormResponse: FC;
|
|
6
|
+
export declare const DisplayFormResponseLoading: FC;
|
|
7
|
+
export declare const TextResponse: VFC;
|
|
8
|
+
export declare const HtmlResponse: VFC;
|
|
9
|
+
export declare const SuggestionsResponse: VFC;
|
|
10
|
+
export declare const ListResponse: VFC;
|
|
11
|
+
export declare const ListPartialImagesResponse: VFC;
|
|
12
|
+
export declare const ListNoImagesResponse: VFC;
|
|
13
|
+
export declare const CarouselResponse: VFC;
|
|
14
|
+
export declare const CarouselPartialImagesResponse: VFC;
|
|
15
|
+
export declare const CarouselNoImagesResponse: VFC;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -3,6 +3,7 @@ declare const _default: Meta;
|
|
|
3
3
|
export default _default;
|
|
4
4
|
export declare const Default: any;
|
|
5
5
|
export declare const WithDate: any;
|
|
6
|
+
export declare const WithMandatoryGroup: any;
|
|
6
7
|
export declare const WithOptionalEmail: any;
|
|
7
8
|
export declare const WithManyInputs: any;
|
|
8
9
|
export declare const WithIFrameStep: any;
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { Form, FormContainer, FormProps } from "./Form";
|
|
2
2
|
export { FormWidget, FormWidgetProps } from "./FormWidget";
|
|
3
|
-
export {
|
|
3
|
+
export { FormDisplay } from "./FormDisplay";
|
|
4
4
|
export { WidgetStylesheet } from "./WidgetStylesheet";
|
|
5
5
|
export * from "./FormFieldChips";
|
|
6
6
|
export * from "./FormStepDisplay";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { Form, FormContainer, FormProps, FormWidget, FormWidgetProps,
|
|
1
|
+
export { Form, FormContainer, FormProps, FormWidget, FormWidgetProps, FormDisplay, WidgetStylesheet, } from "./components";
|
|
2
2
|
export { FormWidgetConfig, StentorApiConfig } from "./config";
|
|
3
3
|
export { FormWidgetCardTheme, FormWidgetCheckboxTheme, FormWidgetChipsTheme, FormWidgetDateTheme, FormWidgetDropdownTheme, FormWidgetTextTheme, } from "@xapp/stentor-form-widget-channel";
|
|
4
4
|
export { SearchIcon, SpinnerIcon, LeftAngleIcon, RightAngleIcon } from "./components/icons";
|
|
5
5
|
export { parseWidgetEnv } from "./utils/parseWidgetEnv";
|
|
6
|
-
export * from "./components/
|
|
6
|
+
export * from "./components/FormDisplay/model";
|
|
7
7
|
export { FormWidgetEnv, FormWidgetTheme } from "@xapp/stentor-form-widget-channel";
|