@zealicsolutions/web-ui 0.3.195 → 0.3.197
Sign up to get free protection for your applications and to get access to all the features.
- 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';
|