@zealicsolutions/web-ui 0.3.194 → 0.3.196
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/types/moleculeTypes.d.ts +2 -2
- package/dist/cjs/src/molecules/Checklist/Checklist.d.ts +1 -1
- package/dist/cjs/src/molecules/Checklist/Checklist.stories.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +2 -2
- package/dist/esm/src/molecules/Checklist/Checklist.d.ts +1 -1
- package/dist/esm/src/molecules/Checklist/Checklist.stories.d.ts +1 -1
- package/dist/index.d.ts +5 -4
- package/package.json +2 -2
@@ -4,9 +4,9 @@ import { Dispatch, SetStateAction } from 'react';
|
|
4
4
|
import { UseFormReturn } from 'react-hook-form';
|
5
5
|
import type { AnyObject, Nullable, StrictUnion, StylesType } from 'typescript';
|
6
6
|
import { SizesTypes } from 'theme';
|
7
|
+
import { CheckboxInternalConfigProps } from 'atoms/Checkbox/types';
|
8
|
+
import { MaskConfig } from 'atoms/Input/helpers';
|
7
9
|
import { ConditionConfig, ContainerComponentProps, MetadataType } from './types';
|
8
|
-
import { MaskConfig } from '../../atoms/Input/helpers';
|
9
|
-
import { CheckboxInternalConfigProps } from '../../atoms/Checkbox/types';
|
10
10
|
export declare type ActionTypes = 'link' | 'popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy';
|
11
11
|
export declare type DataModelFieldFormatCodeTypes = 'date' | 'email' | 'string' | 'integer' | 'boolean' | 'numeric' | 'zip_code' | 'phone_number';
|
12
12
|
export declare type DataModelFieldFormatValueTypes = 'any' | 'text' | 'email' | 'integer' | 'numerical' | 'us_zip_code' | 'phone_number' | 'month_year_date' | 'day_month_year_date' | 'month_day_year_date' | 'year_month_day_date';
|
@@ -17,7 +17,7 @@ export declare type ChecklistProps = {
|
|
17
17
|
gap: SizesTypes;
|
18
18
|
} & CheckboxInternalConfigProps;
|
19
19
|
};
|
20
|
-
export declare const Checklist: ({ items, props: { gap, ...checkboxProps } }: ChecklistProps) => JSX.Element;
|
20
|
+
export declare const Checklist: ({ items, props: { gap, ...checkboxProps }, }: ChecklistProps) => JSX.Element;
|
21
21
|
export declare const ChecklistWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
22
22
|
$gap: SizesTypes;
|
23
23
|
}, never>;
|
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
|
|
2
2
|
import { Checklist as ChecklistComponent } from 'molecules';
|
3
3
|
declare const _default: {
|
4
4
|
title: string;
|
5
|
-
component: ({ items, props: { gap, ...checkboxProps } }: import("molecules").ChecklistProps) => JSX.Element;
|
5
|
+
component: ({ items, props: { gap, ...checkboxProps }, }: import("molecules").ChecklistProps) => JSX.Element;
|
6
6
|
};
|
7
7
|
export default _default;
|
8
8
|
export declare const Checklist: StoryFn<typeof ChecklistComponent>;
|
package/dist/index.d.ts
CHANGED
@@ -18,6 +18,8 @@ import { SelectOption as SelectOption$1, LinkVariant as LinkVariant$1, TextProps
|
|
18
18
|
import { ChecklistItem as ChecklistItem$1, ImageProps as ImageProps$1, TextMoleculeProps as TextMoleculeProps$1, ButtonProps as ButtonProps$1, TabGroupProps as TabGroupProps$1, AdditionalTabContainerProps as AdditionalTabContainerProps$1, InputFieldProps as InputFieldProps$1, SelectFieldProps as SelectFieldProps$1, RadioButtonFieldProps as RadioButtonFieldProps$1, CheckboxFieldProps as CheckboxFieldProps$1, ConsentType as ConsentType$1, LinkProps as LinkProps$1, AvatarDropdownProps as AvatarDropdownProps$1, AvatarDropdownMenuConfigType as AvatarDropdownMenuConfigType$1, FieldSectionProps as FieldSectionProps$1, BaseButtonProps as BaseButtonProps$1, MenuItem, ConsentProps as ConsentProps$1, HeroImageProps as HeroImageProps$1, ColumnsProps as ColumnsProps$1, EmphasizedTextProps as EmphasizedTextProps$1, FeedContentHeaderProps as FeedContentHeaderProps$1, AlertProps as AlertProps$1, BottomNaVBarItemProps as BottomNaVBarItemProps$1, MenuItemsProps as MenuItemsProps$1 } from 'molecules';
|
19
19
|
import * as react_hook_form from 'react-hook-form';
|
20
20
|
import { UseFormReturn, ValidationMode, ControllerProps, DeepPartial, FieldValues, FormState, Control } from 'react-hook-form';
|
21
|
+
import { CheckboxInternalConfigProps as CheckboxInternalConfigProps$1 } from 'atoms/Checkbox/types';
|
22
|
+
import { MaskConfig as MaskConfig$1 } from 'atoms/Input/helpers';
|
21
23
|
import { TooltipProps as TooltipProps$1 } from 'rc-tooltip/lib/Tooltip';
|
22
24
|
import { WithGoogleMapProps } from 'react-google-maps/lib/withGoogleMap';
|
23
25
|
import { WithScriptjsProps } from 'react-google-maps/lib/withScriptjs';
|
@@ -43,7 +45,6 @@ import { AnnotationsList as AnnotationsList$1 } from 'contexts/MlrRichTextViewer
|
|
43
45
|
import * as contexts_MlrRichTextViewerContext_MlrRichTextViewerContext from 'contexts/MlrRichTextViewerContext/MlrRichTextViewerContext';
|
44
46
|
import * as contexts_ButtonActionsContext_ButtonActionsContext from 'contexts/ButtonActionsContext/ButtonActionsContext';
|
45
47
|
export * from 'helpers/constants';
|
46
|
-
import { CheckboxInternalConfigProps as CheckboxInternalConfigProps$1 } from 'atoms/Checkbox/types';
|
47
48
|
import { CustomDescendant } from 'atoms/RichTextViewer/types';
|
48
49
|
import { ConsentCaptureProps } from 'molecules/Consent/ConsentCapture';
|
49
50
|
import * as containers_types_types from 'containers/types/types';
|
@@ -283,7 +284,7 @@ declare type DataModelFieldFormat = {
|
|
283
284
|
label: string;
|
284
285
|
value: DataModelFieldFormatValueTypes;
|
285
286
|
code: DataModelFieldFormatCodeTypes;
|
286
|
-
config: MaskConfig;
|
287
|
+
config: MaskConfig$1;
|
287
288
|
};
|
288
289
|
declare type DataConnectionValues = {
|
289
290
|
dataFieldName: string;
|
@@ -517,7 +518,7 @@ interface ChecklistsMolecule extends BaseMolecule {
|
|
517
518
|
config: {
|
518
519
|
props: {
|
519
520
|
gap: SizesTypes$1;
|
520
|
-
} & CheckboxInternalConfigProps;
|
521
|
+
} & CheckboxInternalConfigProps$1;
|
521
522
|
};
|
522
523
|
attributes: ChecklistAttributes;
|
523
524
|
}
|
@@ -2216,7 +2217,7 @@ declare type ChecklistProps = {
|
|
2216
2217
|
gap: SizesTypes$1;
|
2217
2218
|
} & CheckboxInternalConfigProps$1;
|
2218
2219
|
};
|
2219
|
-
declare const Checklist: ({ items, props: { gap, ...checkboxProps } }: ChecklistProps) => JSX.Element;
|
2220
|
+
declare const Checklist: ({ items, props: { gap, ...checkboxProps }, }: ChecklistProps) => JSX.Element;
|
2220
2221
|
declare const ChecklistWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {
|
2221
2222
|
$gap: SizesTypes$1;
|
2222
2223
|
}, never>;
|
package/package.json
CHANGED