@zealicsolutions/web-ui 1.0.44-beta-16 → 1.0.44-beta-18
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/containers/types/moleculeTypes.d.ts +2 -4
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/containers/types/moleculeTypes.d.ts +2 -4
- package/dist/esm/molecules/Select/Select.js +1 -1
- package/dist/esm/molecules/Select/Select.js.map +1 -1
- package/dist/esm/node_modules/is-hotkey/lib/index.js +1 -1
- package/dist/esm/node_modules/react-slick/lib/index.js +1 -1
- package/dist/index.d.ts +2518 -0
- package/package.json +1 -1
@@ -16,8 +16,6 @@ import { AccordionProps } from '../../molecules/Accordion/Accordion';
|
|
16
16
|
import { TabsProps } from '../../molecules/Tabs/Tabs';
|
17
17
|
import { MenuProps } from '../../molecules/Menu/Menu';
|
18
18
|
import { AvatarMoleculeProps } from '../../molecules/Avatar/Avatar';
|
19
|
-
import { CalendarMoleculeProps } from '../../molecules/Calendar/CalendarMolecule';
|
20
|
-
import { VisitMoleculeProps } from '../../molecules/Visit/VisitMolecule';
|
21
19
|
export declare type ActionTypes = 'link' | 'popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy';
|
22
20
|
export declare type DataModelFieldFormatCodeTypes = 'date' | 'email' | 'string' | 'integer' | 'boolean' | 'numeric' | 'zip_code' | 'phone_number';
|
23
21
|
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';
|
@@ -471,14 +469,14 @@ export interface AvatarMoleculeType extends BaseMoleculeType {
|
|
471
469
|
export interface CalendarMoleculeType extends BaseMoleculeType {
|
472
470
|
type: 'calendar';
|
473
471
|
config: {
|
474
|
-
props:
|
472
|
+
props: AnyObject;
|
475
473
|
};
|
476
474
|
properties: AnyObject;
|
477
475
|
}
|
478
476
|
export interface VisitMoleculeType extends BaseMoleculeType {
|
479
477
|
type: 'visit';
|
480
478
|
config: {
|
481
|
-
props:
|
479
|
+
props: AnyObject;
|
482
480
|
};
|
483
481
|
properties: AnyObject;
|
484
482
|
}
|