@zealicsolutions/web-ui 0.4.13 → 0.4.15
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/mock-data.d.ts +1 -0
- package/dist/cjs/src/molecules/CheckboxField/CheckboxField.d.ts +1 -1
- package/dist/cjs/src/molecules/CheckboxField/CheckboxField.stories.d.ts +1 -1
- package/dist/cjs/src/molecules/RadioButtonField/RadioButtonField.d.ts +1 -1
- package/dist/cjs/src/molecules/RadioButtonField/RadioButtonField.stories.d.ts +1 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/mock-data.d.ts +1 -0
- package/dist/esm/src/molecules/CheckboxField/CheckboxField.d.ts +1 -1
- package/dist/esm/src/molecules/CheckboxField/CheckboxField.stories.d.ts +1 -1
- package/dist/esm/src/molecules/RadioButtonField/RadioButtonField.d.ts +1 -1
- package/dist/esm/src/molecules/RadioButtonField/RadioButtonField.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
@@ -13,3 +13,4 @@ export declare const outlinedColumnContainer: ContainerComponentProps;
|
|
13
13
|
export declare const headerContainer: ContainerComponentProps;
|
14
14
|
export declare const headerContainerWithTabs: ContainerComponentProps;
|
15
15
|
export declare const DataField: ContainerComponentProps;
|
16
|
+
export declare const LogInPermanentPage: ContainerComponentProps;
|
@@ -32,4 +32,4 @@ export declare type CheckboxFieldProps = Partial<{
|
|
32
32
|
formData: AnyObject;
|
33
33
|
htmlElementId: string;
|
34
34
|
}>;
|
35
|
-
export declare const CheckboxField: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue, formData, htmlElementId, }: CheckboxFieldProps) => JSX.Element | null;
|
35
|
+
export declare const CheckboxField: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue, formData, htmlElementId, state, }: CheckboxFieldProps) => JSX.Element | null;
|
@@ -3,7 +3,7 @@ import type { StoryFn } from '@storybook/react';
|
|
3
3
|
import { CheckboxField as CheckboxFieldComponent } from 'molecules';
|
4
4
|
declare const _default: {
|
5
5
|
title: string;
|
6
|
-
component: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue, formData, htmlElementId, }: Partial<{
|
6
|
+
component: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue, formData, htmlElementId, state, }: Partial<{
|
7
7
|
checkboxesProps: Partial<{
|
8
8
|
checkboxGroupWrapperStyles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
9
9
|
checkboxFieldWrapperStyles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
@@ -20,7 +20,7 @@ export declare type RadioButtonFieldProps<T extends string> = Partial<{
|
|
20
20
|
formData: AnyObject;
|
21
21
|
htmlElementId: string;
|
22
22
|
}>;
|
23
|
-
export declare const RadioButtonField: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig, formData, htmlElementId, }: Partial<{
|
23
|
+
export declare const RadioButtonField: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig, formData, htmlElementId, state, }: Partial<{
|
24
24
|
name: string;
|
25
25
|
rules: ControllerProps['rules'];
|
26
26
|
styles: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<object, import("styled-components").DefaultTheme>>;
|
@@ -3,7 +3,7 @@ import type { ComponentStory } from '@storybook/react';
|
|
3
3
|
import { RadioButtonField as RadioButtonFieldComponent } from './RadioButtonField';
|
4
4
|
declare const _default: {
|
5
5
|
title: string;
|
6
|
-
component: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig, formData, htmlElementId, }: Partial<{
|
6
|
+
component: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig, formData, htmlElementId, state, }: Partial<{
|
7
7
|
name: string;
|
8
8
|
rules: Omit<Partial<{
|
9
9
|
required: string | import("react-hook-form").ValidationRule<boolean>;
|
package/dist/index.d.ts
CHANGED
@@ -1085,7 +1085,7 @@ declare type CheckboxFieldProps = Partial<{
|
|
1085
1085
|
formData: AnyObject$1;
|
1086
1086
|
htmlElementId: string;
|
1087
1087
|
}>;
|
1088
|
-
declare const CheckboxField: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue, formData, htmlElementId, }: CheckboxFieldProps) => JSX.Element | null;
|
1088
|
+
declare const CheckboxField: ({ checkboxesProps, name, rules, control, optional, required, labelsProps, wrapperStyles, conditionConfig, defaultValue, formData, htmlElementId, state, }: CheckboxFieldProps) => JSX.Element | null;
|
1089
1089
|
|
1090
1090
|
declare type CheckboxGroupProps = Partial<{
|
1091
1091
|
ref: RefCallBack;
|
@@ -1270,7 +1270,7 @@ declare type RadioButtonFieldProps<T extends string> = Partial<{
|
|
1270
1270
|
formData: AnyObject$1;
|
1271
1271
|
htmlElementId: string;
|
1272
1272
|
}>;
|
1273
|
-
declare const RadioButtonField: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig, formData, htmlElementId, }: Partial<{
|
1273
|
+
declare const RadioButtonField: <T extends string>({ name, rules, styles, control, optional, required, labelsProps, defaultValue, radioButtonsProps, conditionConfig, formData, htmlElementId, state, }: Partial<{
|
1274
1274
|
name: string;
|
1275
1275
|
rules: ControllerProps$1['rules'];
|
1276
1276
|
styles: styled_components.FlattenInterpolation<styled_components.ThemedStyledProps<object, styled_components.DefaultTheme>>;
|