@zealicsolutions/web-ui 1.1.44 → 1.1.45

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.
@@ -18,7 +18,11 @@ import { SpeedDialItem, SpeedDialProps } from '../../molecules/SpeedDial/types';
18
18
  import { TabsProps } from '../../molecules/Tabs/Tabs';
19
19
  import { AccordionItemDTO, ChecklistItemDTO, DividerItemDTO, ImageItemDTO, MenuItemDTO, RichTextItemDTO, StepperItemDTO, TabsItemDTO, TextItemDTO } from './moleculeItemTypes';
20
20
  import { ConditionConfig, MetadataType } from './types';
21
- export type ActionTypes = 'link' | 'open_popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy' | 'navigate_to_create_form' | 'navigate_to_edit_form' | 'navigate_to_prepopulate_form' | 'navigate_to_page_with_rwo_context';
21
+ /** @deprecated Use navigate_to_prepopulate_form or navigate_to_page_with_rwo_context instead. */
22
+ export type DeprecatedNavigateToEditForm = 'navigate_to_edit_form';
23
+ /** @deprecated Use navigate_to_page_with_rwo_context instead. */
24
+ export type DeprecatedNavigateToOrganismWithRwoContext = 'navigate_to_organism_with_rwo_context';
25
+ export type ActionTypes = 'link' | 'open_popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy' | 'navigate_to_create_form' | DeprecatedNavigateToEditForm | 'navigate_to_prepopulate_form' | 'navigate_to_page_with_rwo_context' | DeprecatedNavigateToOrganismWithRwoContext;
22
26
  export type DataModelFieldFormatCodeTypes = 'date' | 'email' | 'string' | 'integer' | 'boolean' | 'numeric' | 'zip_code' | 'phone_number';
23
27
  export 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';
24
28
  export type DownloadFile = {
@@ -46,8 +50,10 @@ export interface ActionObject {
46
50
  reset?: ResetAction;
47
51
  destroy?: DestroyAction;
48
52
  navigateToCreateForm?: NavigationConfig;
53
+ /** @deprecated Use navigateToPrepopulateForm or navigateToPageWithRwoContext instead. */
49
54
  navigateToEditForm?: NavigationConfig;
50
55
  navigateToPrepopulateForm?: NavigationConfig;
56
+ /** @deprecated Use navigateToPageWithRwoContext instead. */
51
57
  navigateToOrganismWithRwoContext?: NavigationConfig;
52
58
  navigateToPageWithRwoContext?: NavigationConfig;
53
59
  }