@zealicsolutions/web-ui 0.3.195 → 0.3.197
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/containers/types/moleculeTypes.d.ts +2 -2
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +2 -2
- package/dist/index.d.ts +4 -3
- 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';
|
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
|
}
|
package/package.json
CHANGED