@zealicsolutions/web-ui 0.4.55 → 0.4.56
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +20 -20
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/Container.d.ts +1 -1
- package/dist/cjs/src/contexts/OrganismContext/OrganismContext.d.ts +3 -2
- package/dist/cjs/src/contexts/OrganismContext/OrganismContextProvider.d.ts +17 -9
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/Container.d.ts +1 -1
- package/dist/esm/src/contexts/OrganismContext/OrganismContext.d.ts +3 -2
- package/dist/esm/src/contexts/OrganismContext/OrganismContextProvider.d.ts +17 -9
- package/dist/index.d.ts +28 -20
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ContainerComponentProps, ContainerProps } from 'containers';
|
2
2
|
import { Dispatch, ReactNode, SetStateAction } from 'react';
|
3
3
|
import type { AnyObject } from 'typescript';
|
4
|
-
export declare const Container: ({
|
4
|
+
export declare const Container: ({ id, type, wide, props, compact, children, metadata, isMobile, }: Partial<{
|
5
5
|
type: import("containers").ContainerType;
|
6
6
|
containerTemplateType: "row_content_container";
|
7
7
|
wide: Partial<{
|
@@ -4,6 +4,7 @@ import { PasswordRuleValidation } from 'molecules/PasswordSetup/PasswordSetup';
|
|
4
4
|
import { Dispatch, SetStateAction } from 'react';
|
5
5
|
import type { AnyObject } from 'typescript';
|
6
6
|
import { GroupedStepItemsByStepContainer } from './utils';
|
7
|
+
import { ConfigurationItem } from './OrganismContextProvider';
|
7
8
|
export declare type OrganismContextType = {
|
8
9
|
items: (ContainerComponentProps | Molecule)[];
|
9
10
|
groupStepItemsByStepContainer: () => GroupedStepItemsByStepContainer;
|
@@ -27,7 +28,7 @@ export declare type OrganismContextType = {
|
|
27
28
|
organismMetadata?: {
|
28
29
|
stateListenerId?: string;
|
29
30
|
} & AnyObject;
|
30
|
-
onConfigurationItemClicked: (
|
31
|
-
|
31
|
+
onConfigurationItemClicked: (itemInfo?: Omit<ConfigurationItem, 'organismId'>) => void;
|
32
|
+
selectedConfigurationItemId?: string;
|
32
33
|
};
|
33
34
|
export declare const OrganismContext: import("react").Context<OrganismContextType>;
|
@@ -2,18 +2,26 @@ import { PropsWithChildren } from 'react';
|
|
2
2
|
import { ContainerComponentProps, Molecule } from 'containers';
|
3
3
|
import type { AnyObject } from 'typescript';
|
4
4
|
import { PasswordRuleValidation } from 'molecules/PasswordSetup/PasswordSetup';
|
5
|
-
export declare type
|
6
|
-
|
5
|
+
export declare type ConfigurationItem = {
|
6
|
+
entity: 'container' | 'molecule';
|
7
|
+
entityId: string;
|
8
|
+
organismId: string;
|
9
|
+
};
|
10
|
+
export declare type OrganismContextProviderProps = PropsWithChildren<{
|
11
|
+
organismId: string;
|
12
|
+
} & Partial<{
|
7
13
|
formId: string;
|
14
|
+
editable: boolean;
|
15
|
+
initItems: (ContainerComponentProps | Molecule)[];
|
16
|
+
validations: PasswordRuleValidation[];
|
8
17
|
submitHandler: (data: {
|
9
18
|
formId: string;
|
10
19
|
data: AnyObject;
|
11
20
|
}) => void;
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
onConfigurationItemHandler?: (itemPath?: string) => void;
|
21
|
+
isFormInEditMode: boolean;
|
22
|
+
organismMetadata: AnyObject;
|
23
|
+
isConfigurationMode: boolean;
|
24
|
+
onConfigurationItemHandler: (itemInfo: ConfigurationItem) => void;
|
25
|
+
selectedConfigurationItemId: string;
|
18
26
|
}>>;
|
19
|
-
export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, editable, isFormInEditMode, organismMetadata, isConfigurationMode, onConfigurationItemHandler, }:
|
27
|
+
export declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, organismId, validations, editable, isFormInEditMode, organismMetadata, isConfigurationMode, onConfigurationItemHandler, selectedConfigurationItemId, }: OrganismContextProviderProps) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
@@ -118,7 +118,7 @@ declare type SelectProps = Partial<{
|
|
118
118
|
}>;
|
119
119
|
declare const Select: ({ ref, onBlur, onChange, value, placeholder, options, disabled, optionsPresentation, isError, isEditMode, selectInternalConfig, isRichText, }: SelectProps) => JSX.Element;
|
120
120
|
|
121
|
-
declare const Container: ({
|
121
|
+
declare const Container: ({ id, type, wide, props, compact, children, metadata, isMobile, }: Partial<{
|
122
122
|
type: containers.ContainerType;
|
123
123
|
containerTemplateType: "row_content_container";
|
124
124
|
wide: Partial<{
|
@@ -1498,6 +1498,30 @@ declare const ButtonActionsProvider: ({ children, popupProps }: ButtonActionsPro
|
|
1498
1498
|
declare type StepItem = ContainerComponentProps$1 | Molecule$1;
|
1499
1499
|
declare type GroupedStepItemsByStepContainer = Map<string, StepItem[]>;
|
1500
1500
|
|
1501
|
+
declare type ConfigurationItem = {
|
1502
|
+
entity: 'container' | 'molecule';
|
1503
|
+
entityId: string;
|
1504
|
+
organismId: string;
|
1505
|
+
};
|
1506
|
+
declare type OrganismContextProviderProps = PropsWithChildren<{
|
1507
|
+
organismId: string;
|
1508
|
+
} & Partial<{
|
1509
|
+
formId: string;
|
1510
|
+
editable: boolean;
|
1511
|
+
initItems: (ContainerComponentProps$1 | Molecule$1)[];
|
1512
|
+
validations: PasswordRuleValidation[];
|
1513
|
+
submitHandler: (data: {
|
1514
|
+
formId: string;
|
1515
|
+
data: AnyObject$1;
|
1516
|
+
}) => void;
|
1517
|
+
isFormInEditMode: boolean;
|
1518
|
+
organismMetadata: AnyObject$1;
|
1519
|
+
isConfigurationMode: boolean;
|
1520
|
+
onConfigurationItemHandler: (itemInfo: ConfigurationItem) => void;
|
1521
|
+
selectedConfigurationItemId: string;
|
1522
|
+
}>>;
|
1523
|
+
declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, organismId, validations, editable, isFormInEditMode, organismMetadata, isConfigurationMode, onConfigurationItemHandler, selectedConfigurationItemId, }: OrganismContextProviderProps) => JSX.Element;
|
1524
|
+
|
1501
1525
|
declare type OrganismContextType = {
|
1502
1526
|
items: (ContainerComponentProps$1 | Molecule$1)[];
|
1503
1527
|
groupStepItemsByStepContainer: () => GroupedStepItemsByStepContainer;
|
@@ -1521,27 +1545,11 @@ declare type OrganismContextType = {
|
|
1521
1545
|
organismMetadata?: {
|
1522
1546
|
stateListenerId?: string;
|
1523
1547
|
} & AnyObject$1;
|
1524
|
-
onConfigurationItemClicked: (
|
1525
|
-
|
1548
|
+
onConfigurationItemClicked: (itemInfo?: Omit<ConfigurationItem, 'organismId'>) => void;
|
1549
|
+
selectedConfigurationItemId?: string;
|
1526
1550
|
};
|
1527
1551
|
declare const OrganismContext: react.Context<OrganismContextType>;
|
1528
1552
|
|
1529
|
-
declare type FormStepContextProviderProps = PropsWithChildren<Partial<{
|
1530
|
-
initItems: (ContainerComponentProps$1 | Molecule$1)[];
|
1531
|
-
formId: string;
|
1532
|
-
submitHandler: (data: {
|
1533
|
-
formId: string;
|
1534
|
-
data: AnyObject$1;
|
1535
|
-
}) => void;
|
1536
|
-
validations: PasswordRuleValidation[];
|
1537
|
-
editable: boolean;
|
1538
|
-
isFormInEditMode?: boolean;
|
1539
|
-
organismMetadata?: AnyObject$1;
|
1540
|
-
isConfigurationMode?: boolean;
|
1541
|
-
onConfigurationItemHandler?: (itemPath?: string) => void;
|
1542
|
-
}>>;
|
1543
|
-
declare const OrganismContextProvider: ({ initItems, children, submitHandler, formId, validations, editable, isFormInEditMode, organismMetadata, isConfigurationMode, onConfigurationItemHandler, }: FormStepContextProviderProps) => JSX.Element;
|
1544
|
-
|
1545
1553
|
declare type AccountButtonContextType = Partial<{
|
1546
1554
|
userInitials: string;
|
1547
1555
|
logOutHandler: Callback$1;
|
@@ -2159,4 +2167,4 @@ declare type LinkProps = Omit<TextButtonProps$1, 'children'> & Partial<{
|
|
2159
2167
|
}>;
|
2160
2168
|
declare const Link: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, ...props }: LinkProps) => JSX.Element | null;
|
2161
2169
|
|
2162
|
-
export { AccountButtonContext, AccountButtonContextType, AccountButtonMolecule, AccountButtonProvider, AccountButtonProviderProps, AcquisitionForm, AcquisitionFormProps, ActionAttributes, ActionEventType, ActionTypes, AdditionalContainerProps, AdditionalTabContainerProps, Alert, AlertProps, AnnotationsList, ArrowIconWrapper, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownMenuConfigType, AvatarDropdownProps, AvatarProps, BackgroundImage, BaseButtonProps, BaseMolecule, Body, BodyProps, BooleanAttributes, BottomNaVBarItemProps, BottomNavBarItem, BottomNavBarNavigation, BottomNavBarNavigationProps, BreakpointSizesTypes, Button, ButtonActionsContext, ButtonActionsContextType, ButtonActionsProvider, ButtonActionsProviderProps, ButtonMolecule, ButtonProps, ButtonType, ButtonVariant, ButtonsWrapper, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, Carousel, CarouselProps, Checkbox, CheckboxField, CheckboxFieldMolecule, CheckboxFieldProps, CheckboxGroup, CheckboxGroupProps, CheckboxProps, CheckboxesProps, Circle, CircleBoxProps, CirclesWrapper, CircularIndicator, CircularIndicatorProps, CircularIndicatorStyledComponent, ColorAttributes, ColumnItem, Columns, ColumnsProps, ConditionConfig, ConditionConfigAttributes, ConditionCriteria, Consent, ConsentCaptureMethod, ConsentFieldMolecule, ConsentProps, ConsentType, Container, ContainerAlignItemsType, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, ContainerTemplateType, ContainerType, ContainerWrapper, CriteriaType, CustomValidation, CustomValidationProps, CustomValidationRule, DataConnectionAttributes, DataConnectionValues, DataModelFieldFormat, DataModelFieldFormatCodeTypes, DataModelFieldFormatValueTypes, DefaultSelectionType, DefaultTemplate, DefaultTemplateProps, Divider, DividerProps, DownloadFile, Drawer, DynamicContentZone, DynamicContentZoneProps, DynamicElementProps, EmphasizedText, EmphasizedTextProps, ErrorText, FeedContent, FeedContentContainer, FeedContentContainerProps, FeedContentHeader, FeedContentHeaderProps, FeedTemplateKeys, FieldLabels, FieldLabelsProps, FieldMapper, FieldMapperProps, FieldRuleLabelTypes, FieldSection, FieldSectionProps, FieldTypes, FilteredFeedContentType, FontSizesTypes, FontWeight, Footer, FooterContactInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, FormContainerProps, FormDataStateConfig, FormOrganismItem, FormStateType, FormStepContainerProps,
|
2170
|
+
export { AccountButtonContext, AccountButtonContextType, AccountButtonMolecule, AccountButtonProvider, AccountButtonProviderProps, AcquisitionForm, AcquisitionFormProps, ActionAttributes, ActionEventType, ActionTypes, AdditionalContainerProps, AdditionalTabContainerProps, Alert, AlertProps, AnnotationsList, ArrowIconWrapper, AuthMethod, Avatar, AvatarDropdown, AvatarDropdownMenuConfigType, AvatarDropdownProps, AvatarProps, BackgroundImage, BaseButtonProps, BaseMolecule, Body, BodyProps, BooleanAttributes, BottomNaVBarItemProps, BottomNavBarItem, BottomNavBarNavigation, BottomNavBarNavigationProps, BreakpointSizesTypes, Button, ButtonActionsContext, ButtonActionsContextType, ButtonActionsProvider, ButtonActionsProviderProps, ButtonMolecule, ButtonProps, ButtonType, ButtonVariant, ButtonsWrapper, COMMUNICATION_LINK_DATA_TEXT, COMMUNICATION_LINK_DATA_URL, COMMUNICATION_LINK_ELEMENT_ID, CaretIconWrapper, Carousel, CarouselProps, Checkbox, CheckboxField, CheckboxFieldMolecule, CheckboxFieldProps, CheckboxGroup, CheckboxGroupProps, CheckboxProps, CheckboxesProps, Circle, CircleBoxProps, CirclesWrapper, CircularIndicator, CircularIndicatorProps, CircularIndicatorStyledComponent, ColorAttributes, ColumnItem, Columns, ColumnsProps, ConditionConfig, ConditionConfigAttributes, ConditionCriteria, ConfigurationItem, Consent, ConsentCaptureMethod, ConsentFieldMolecule, ConsentProps, ConsentType, Container, ContainerAlignItemsType, ContainerComponent, ContainerComponentProps, ContainerPositionType, ContainerProps, ContainerPropsType, ContainerScrollBehaviourType, ContainerTemplateType, ContainerType, ContainerWrapper, CriteriaType, CustomValidation, CustomValidationProps, CustomValidationRule, DataConnectionAttributes, DataConnectionValues, DataModelFieldFormat, DataModelFieldFormatCodeTypes, DataModelFieldFormatValueTypes, DefaultSelectionType, DefaultTemplate, DefaultTemplateProps, Divider, DividerProps, DownloadFile, Drawer, DynamicContentZone, DynamicContentZoneProps, DynamicElementProps, EmphasizedText, EmphasizedTextProps, ErrorText, FeedContent, FeedContentContainer, FeedContentContainerProps, FeedContentHeader, FeedContentHeaderProps, FeedTemplateKeys, FieldLabels, FieldLabelsProps, FieldMapper, FieldMapperProps, FieldRuleLabelTypes, FieldSection, FieldSectionProps, FieldTypes, FilteredFeedContentType, FontSizesTypes, FontWeight, Footer, FooterContactInfo, FooterLink, FooterProps, ForgotPasswordForm, ForgotPasswordFormProps, FormContainerProps, FormDataStateConfig, FormOrganismItem, FormStateType, FormStepContainerProps, GoogleMap, GoogleMapProps, Header, HeaderProps, HeroImage, HeroImageAlignment, HeroImageProps, HeroImageTemplate, HeroSlider, HeroSliderProps, HeroSliderWrapper, HorizontalButtons, HorizontalButtonsField, HorizontalButtonsProps, HorizontalPadding, ISI, ISIProps, Icon, IconButton, IconButtonProps, IconNames, IconProps, IconWrapper, Image, ImageAttributes, ImageMolecule, ImageProps, Input, InputField, InputFieldInternalConfigProps, InputFieldProps, InputFieldTypes, InputIconProps, InputProps, IterableAttributes, LabelInternalConfig, Link, LinkAttributes, LinkMolecule, LinkProps, LinkVariant, LoginForm, LoginFormProps, MATRIX_MESSAGE_DATA_ID, MATRIX_MESSAGE_ELEMENT_ID, MapPosition, MenuItems, MenuItemsProps, MenuNavigation, MenuNavigationProps, MetadataStateConfig, MetadataType, MlrRichTextViewerContext, MlrRichTextViewerContextType, MlrRichTextViewerProvider, MlrRichTextViewerProviderProps, ModalWrapper, Molecule, MoleculeTypes, NavigationDotsWrapper, OrganismContext, OrganismContextProvider, OrganismContextProviderProps, OrganismContextType, OrganismItem, OrganismItemProps, OrientationType, OrientationTypeLabel, Padding, PaddingProps, PaddingVariants, PasswordSetupMolecule, PdfDocument, PdfDocumentProps, PopupPropsType, ProcessStep, ProcessStepsAttributes, ProcessStepsMoleculeType, ProcessTracker, ProcessTrackerOrientation, ProcessTrackerProps, ProcessTrackerStateValue, ProcessTrackerStatus, ProfileInformation, ProfileInformationProps, RadioButtonField, RadioButtonFieldMolecule, RadioButtonFieldProps, RadioButtonInternalConfigProps, RadioButtons, RadioButtonsProps, RadioGroupWrapper, RegularImage, RegularImageProps, RichTextEditorProps, RichTextViewer, RuleLabelInternalConfig, SegmentationType, Select, SelectAttributes, SelectField, SelectFieldMolecule, SelectFieldProps, SelectInternalConfigurationOptions, SelectOption, SelectProps, SelectableCardGroup, SelectableCardGroupProps, SeoTags, SetPasswordForm, SetPasswordFormProps, SetPasswordRuleValidation, SizesTypes, SlateValueChildType, Slide, SliderProps, SlidesWrapper, Spacer, SpacerProps, Spinner, StateActionType, StateConfigType, StateContext, StateContextProvider, StateContextProviderProps, StateContextType, StateEventType, StateListenerConfigType, StateModifierConfigType, Stepper, StepperProps, StyleWrapper, SubscribePanel, Tab, TabGroup, TabGroupMolecule, TabGroupProps, TabOption, TabProps, TabTheme, TabType, TextAlign, TextAttributes, TextButton, TextButtonProps, TextInputMolecule, TextMolecule, TextMoleculeProps, TextMoleculeType, TextProps, TextTypes, TextWrapper, TextWrapperProps, ThemeColors, ThemeColorsType, ThemeDevicesType, ThemeSizesType, ThemeTextType, Tooltip, TooltipInternalConfig, TooltipProps, TouchableOpacity, TouchableOpacityProps, TwoFactorAuth, TwoFactorAuthProps, UICheckboxField, UIField, UIFields, UIInputField, UISelectField, ValidationTag, ValidationTagProps, ValidationTagStatus, VerticalPadding, Video, VideoAttributes, VideoMolecule, VideoProps, WrappedContainerType, Wrapper, ZealTheme, ZealThemeProvider, ZealUIModal, ZealUIModalProps, acquisitionFormMockFields, baseButtonAllowedConfigurations, defaultTheme, defaultValue, getFieldPlaceholder, getFieldsFromFieldSections, getInitialValuesFromFields, isFormValid, loginMockFields, passwordMockFields, profileInformationMockForm, sectionMockFields, setPasswordMockFields, showAcceptToastMessage, toast, toastStyles, useButtonActionsContext, useMediaQuery, useMlrRichTextViewerContext, useRequiredConsentsAcceptedValues, useStep };
|