@zealicsolutions/web-ui 1.0.95-beta.3 → 1.0.95-beta.5
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 -2
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/molecules/DateCalendar/DateCalendar.d.ts +9 -1
- package/dist/cjs/molecules/DateCalendar/DateCalendar.stories.d.ts +8 -5
- package/dist/esm/containers/types/moleculeTypes.d.ts +2 -2
- package/dist/esm/molecules/BaseMolecule.js +1 -1
- package/dist/esm/molecules/BaseMolecule.js.map +1 -1
- package/dist/esm/molecules/DateCalendar/DateCalendar.d.ts +9 -1
- package/dist/esm/molecules/DateCalendar/DateCalendar.js +1 -1
- package/dist/esm/molecules/DateCalendar/DateCalendar.js.map +1 -1
- package/dist/esm/molecules/DateCalendar/DateCalendar.stories.d.ts +8 -5
- package/dist/index.d.ts +10 -2
- package/package.json +1 -1
@@ -130,7 +130,7 @@ export interface DateProperties {
|
|
130
130
|
value: Date | string | null;
|
131
131
|
}
|
132
132
|
export type MoleculeItemTypes = 'stepper_item' | 'checklist_item' | 'accordion_item' | 'menu_item' | 'tabs_item' | 'divider_item' | 'text_item' | 'rich_text_item' | 'speed_dial_action_item' | 'image_item';
|
133
|
-
export type MoleculeTypes = 'simple_text' | 'text' | 'header_tab_group' | 'consent' | 'signup_password_fields' | 'account_button' | 'stepper' | 'checklist' | 'accordion' | 'menu' | 'drawer' | 'tabs' | 'divider' | 'link' | 'video' | 'image' | 'button' | 'alert' | 'badge' | 'chip' | 'basic_text_field' | 'rating' | 'switch' | 'slider' | 'select' | 'date_picker' | 'time_picker' | 'email_input_field' | 'phone_number_input_field' | 'numeric_input_field' | 'currency_input_field' | 'email_display_field' | 'phone_number_display_field' | 'numeric_display_field' | 'currency_display_field' | 'basic_text_display_field' | 'select_display_field' | 'rating_display_field' | 'switch_display_field' | 'slider_display_field' | 'date_display_field' | 'time_picker_display' | 'avatar' | 'visit' | 'calendar' | 'speed_dial' | 'checkbox' | 'checkbox_display' | 'binary_radio_buttons' | 'binary_radio_buttons_display' | 'date_calendar' | '
|
133
|
+
export type MoleculeTypes = 'simple_text' | 'text' | 'header_tab_group' | 'consent' | 'signup_password_fields' | 'account_button' | 'stepper' | 'checklist' | 'accordion' | 'menu' | 'drawer' | 'tabs' | 'divider' | 'link' | 'video' | 'image' | 'button' | 'alert' | 'badge' | 'chip' | 'basic_text_field' | 'rating' | 'switch' | 'slider' | 'select' | 'date_picker' | 'time_picker' | 'email_input_field' | 'phone_number_input_field' | 'numeric_input_field' | 'currency_input_field' | 'email_display_field' | 'phone_number_display_field' | 'numeric_display_field' | 'currency_display_field' | 'basic_text_display_field' | 'select_display_field' | 'rating_display_field' | 'switch_display_field' | 'slider_display_field' | 'date_display_field' | 'time_picker_display' | 'avatar' | 'visit' | 'calendar' | 'speed_dial' | 'checkbox' | 'checkbox_display' | 'binary_radio_buttons' | 'binary_radio_buttons_display' | 'date_calendar' | 'date_calendar_display';
|
134
134
|
/**
|
135
135
|
* [ NEW MOLECULE: 3 ] Second Step is to add the new molecule name to this list, in snake case format
|
136
136
|
*
|
@@ -513,7 +513,7 @@ export interface CalendarMoleculeType extends BaseMoleculeType {
|
|
513
513
|
};
|
514
514
|
}
|
515
515
|
export interface DateCalendarMoleculeType extends BaseMoleculeType {
|
516
|
-
type: 'date_calendar' | '
|
516
|
+
type: 'date_calendar' | 'date_calendar_display';
|
517
517
|
config: {
|
518
518
|
props: {
|
519
519
|
sx?: {
|