@zealicsolutions/web-ui 1.0.53-test.33 → 1.0.53-test.35

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.
@@ -1,13 +1,13 @@
1
1
  import { LinkProperties, ObjectStateProperties, StateProperties, TextProperties } from 'containers';
2
2
  import { ChecklistItem, CustomStep, TextProps } from 'molecules';
3
- import { SpeedDialActionItemType } from '../../molecules/SpeedDial/types';
4
3
  import { AccordionItem } from '../../molecules/Accordion/Accordion';
5
4
  import { DividerProps } from '../../molecules/Divider/Divider';
6
5
  import { MenuItemType } from '../../molecules/Menu/Menu';
7
6
  import { SimpleTextProps } from '../../molecules/SimpleText/SimpleText';
7
+ import { SpeedDialActionItemType } from '../../molecules/SpeedDial/types';
8
8
  import { TabsItemProps } from '../../molecules/Tabs/Tabs';
9
9
  import type { StrictUnion } from '../../typescript';
10
- export declare type MoleculeItemTypes = 'stepper_item' | 'checklist_item' | 'accordion_item' | 'menu_item' | 'divider_item' | 'text_item' | 'tabs_item' | 'speed_dial_action_item';
10
+ export declare type MoleculeItemTypes = 'stepper_item' | 'checklist_item' | 'accordion_item' | 'menu_item' | 'divider_item' | 'text_item' | 'tabs_item' | 'rich_text_item' | 'speed_dial_action_item';
11
11
  export declare type BaseItem = {
12
12
  id: string;
13
13
  name: string;
@@ -17,7 +17,7 @@ import { NumericInputFieldProps } from '../../molecules/NumericInputField/Numeri
17
17
  import { PhoneNumberInputFieldProps } from '../../molecules/PhoneNumberInputField/PhoneNumberInputField';
18
18
  import { TabsProps } from '../../molecules/Tabs/Tabs';
19
19
  import { VisitMoleculeProps } from '../../molecules/Visit/VisitMolecule';
20
- import { AccordionItemDTO, ChecklistItemDTO, DividerItemDTO, MenuItemDTO, StepperItemDTO, TabsItemDTO, TextItemDTO } from './moleculeItemTypes';
20
+ import { AccordionItemDTO, ChecklistItemDTO, DividerItemDTO, MenuItemDTO, RichTextItemDTO, StepperItemDTO, TabsItemDTO, TextItemDTO } from './moleculeItemTypes';
21
21
  import { SpeedDialItem, SpeedDialProps } from '../../molecules/SpeedDial/types';
22
22
  import { ConditionConfig, ContainerComponentProps, MetadataType } from './types';
23
23
  export declare type ActionTypes = 'link' | 'popup' | 'drawer' | 'download' | 'submit' | 'reset' | 'destroy';
@@ -497,7 +497,7 @@ export interface DrawerMoleculeType extends BaseMoleculeType {
497
497
  text: TextProperties;
498
498
  disabled: BooleanProperties;
499
499
  };
500
- children: (MenuItemDTO | DividerItemDTO | TextItemDTO)[];
500
+ children: (MenuItemDTO | DividerItemDTO | TextItemDTO | RichTextItemDTO)[];
501
501
  }
502
502
  export interface SpeedDialMoleculeType extends BaseMoleculeType {
503
503
  type: 'speed_dial';