@zealicsolutions/web-ui 1.0.108 → 1.0.109-test.0
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/components/Buttons/TextButton.d.ts +1 -1
- package/dist/cjs/components/Input/helpers.d.ts +2 -2
- package/dist/cjs/containers/Container.d.ts +1 -1
- package/dist/cjs/containers/ReplicatorContainer/ReplicatorContainer.d.ts +1 -1
- package/dist/cjs/containers/styles.d.ts +1 -1
- package/dist/cjs/containers/types/types.d.ts +2 -2
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/molecules/BasicTextField/BasicTextField.stories.d.ts +27 -27
- package/dist/cjs/molecules/Button/Button.d.ts +1 -1
- package/dist/cjs/molecules/Checklist/Checklist.stories.d.ts +5 -5
- package/dist/cjs/molecules/Drawer/styles.d.ts +1 -1
- package/dist/cjs/molecules/Stepper/Stepper.stories.d.ts +5 -5
- package/dist/cjs/molecules/Tabs/Tabs.stories.d.ts +5 -5
- package/dist/cjs/organisms/@MUI_ONLY/TodaysTasksOrganism.d.ts +3 -0
- package/dist/cjs/organisms/@MUI_ONLY/TodaysTasksOrganism.stories.d.ts +5 -0
- package/dist/cjs/organisms/stories/AppointmentBookingDisplay.stories.d.ts +4 -0
- package/dist/cjs/organisms/stories/AppointmentBookingOrganism.stories.d.ts +5 -0
- package/dist/cjs/organisms/stories/StudyDetailsDisplayOrganism.stories.d.ts +5 -0
- package/dist/cjs/organisms/stories/StudyWithVisitSchedulesDisplayOrganism.stories.d.ts +5 -0
- package/dist/cjs/organisms/stories/organism-configs/appointment-booking.d.ts +1525 -0
- package/dist/cjs/organisms/stories/{organism_example.d.ts → organism-configs/organism-with-nested-replicators.d.ts} +19 -1
- package/dist/cjs/organisms/stories/organism-configs/study-details-display.d.ts +2650 -0
- package/dist/cjs/organisms/stories/organism-configs/study-with-visit-schedules.d.ts +2241 -0
- package/dist/cjs/organisms/stories/utils/organismMappers.d.ts +1 -0
- package/dist/esm/components/Buttons/TextButton.d.ts +1 -1
- package/dist/esm/components/Input/helpers.d.ts +2 -2
- package/dist/esm/containers/Container.d.ts +1 -1
- package/dist/esm/containers/Container.js +1 -1
- package/dist/esm/containers/Container.js.map +1 -1
- package/dist/esm/containers/ReplicatorContainer/ReplicatorContainer.d.ts +1 -1
- package/dist/esm/containers/ReplicatorContainer/ReplicatorContainer.js +1 -1
- package/dist/esm/containers/ReplicatorContainer/ReplicatorContainer.js.map +1 -1
- package/dist/esm/containers/styles.d.ts +1 -1
- package/dist/esm/containers/types/types.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/BasicTextField/BasicTextField.stories.d.ts +27 -27
- package/dist/esm/molecules/Button/Button.d.ts +1 -1
- package/dist/esm/molecules/Checklist/Checklist.stories.d.ts +5 -5
- package/dist/esm/molecules/Drawer/styles.d.ts +1 -1
- package/dist/esm/molecules/Stepper/Stepper.stories.d.ts +5 -5
- package/dist/esm/molecules/Tabs/Tabs.stories.d.ts +5 -5
- package/dist/esm/organisms/@MUI_ONLY/TodaysTasksOrganism.d.ts +3 -0
- package/dist/esm/organisms/@MUI_ONLY/TodaysTasksOrganism.stories.d.ts +5 -0
- package/dist/esm/organisms/stories/AppointmentBookingDisplay.stories.d.ts +4 -0
- package/dist/esm/organisms/stories/AppointmentBookingOrganism.stories.d.ts +5 -0
- package/dist/esm/organisms/stories/StudyDetailsDisplayOrganism.stories.d.ts +5 -0
- package/dist/esm/organisms/stories/StudyWithVisitSchedulesDisplayOrganism.stories.d.ts +5 -0
- package/dist/esm/organisms/stories/organism-configs/appointment-booking.d.ts +1525 -0
- package/dist/esm/organisms/stories/{organism_example.d.ts → organism-configs/organism-with-nested-replicators.d.ts} +19 -1
- package/dist/esm/organisms/stories/organism-configs/study-details-display.d.ts +2650 -0
- package/dist/esm/organisms/stories/organism-configs/study-with-visit-schedules.d.ts +2241 -0
- package/dist/esm/organisms/stories/utils/organismMappers.d.ts +1 -0
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
- package/dist/cjs/organisms/stories/DisplayOrganismNestedLevels.d.ts +0 -8
- package/dist/esm/organisms/stories/DisplayOrganismNestedLevels.d.ts +0 -8
@@ -10,7 +10,7 @@ export type TextButtonProps = Pick<BaseButtonProps, 'disabled' | 'onClick' | 'ch
|
|
10
10
|
textColor: string;
|
11
11
|
}>;
|
12
12
|
export declare const BaseTextButton: React.FC<TextButtonProps & React.AnchorHTMLAttributes<HTMLAnchorElement>>;
|
13
|
-
export declare const TextButton: import("@emotion/styled").StyledComponent<Pick<BaseButtonProps, "children" | "
|
13
|
+
export declare const TextButton: import("@emotion/styled").StyledComponent<Pick<BaseButtonProps, "children" | "onClick" | "disabled" | "size" | "colorTheme"> & Partial<{
|
14
14
|
buttonLink: string;
|
15
15
|
elementId: string;
|
16
16
|
$styles: StylesType;
|
@@ -10,7 +10,7 @@ export type MaskConfig = {
|
|
10
10
|
};
|
11
11
|
export declare const getSpecificInputProps: (type: string) => {
|
12
12
|
type?: HTMLInputTypeAttribute | undefined;
|
13
|
-
inputMode?: "
|
13
|
+
inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
14
14
|
};
|
15
15
|
export declare const getMaskInputProps: (type?: string, config?: MaskConfig) => Pick<MaskedInputProps, 'pipe' | 'mask' | 'placeholder' | 'keepCharPositions'>;
|
16
16
|
export declare const getInputIconColor: ({ isEditMode, isFocused, isError, disabled, }: Pick<Partial<{
|
@@ -38,6 +38,6 @@ export declare const getInputIconColor: ({ isEditMode, isFocused, isError, disab
|
|
38
38
|
}>;
|
39
39
|
config?: MaskConfig | undefined;
|
40
40
|
state: import("containers").FormStateType;
|
41
|
-
}>, "
|
41
|
+
}>, "disabled" | "isEditMode" | "isError"> & {
|
42
42
|
isFocused: boolean;
|
43
43
|
}) => ThemeColors;
|
@@ -4,5 +4,5 @@ import { DmfId, PathSegment } from '../contexts/ContainerRuntimeContext/types';
|
|
4
4
|
export declare const Container: FC<PropsWithChildren<ContainerProps & {
|
5
5
|
id: string;
|
6
6
|
nestedPathSegments?: PathSegment[];
|
7
|
-
|
7
|
+
dataModelFieldId?: DmfId;
|
8
8
|
}>>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { DmfId, PathSegment } from '../../contexts/ContainerRuntimeContext/types';
|
3
3
|
export type ReplicatorContainerProps = {
|
4
|
-
|
4
|
+
dataModelFieldId: DmfId;
|
5
5
|
nestedPathSegments?: PathSegment[];
|
6
6
|
children?: React.ReactNode;
|
7
7
|
/**
|
@@ -33,7 +33,7 @@ export declare const ContainerWrapper: import("@emotion/styled").StyledComponent
|
|
33
33
|
activeOrganismIds: string[];
|
34
34
|
padding: import("containers/types/types").Padding;
|
35
35
|
enableBackgroundImage: boolean;
|
36
|
-
|
36
|
+
dataModelFieldId?: string | undefined;
|
37
37
|
}> | undefined;
|
38
38
|
properties?: ContainerProperties | undefined;
|
39
39
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
@@ -81,7 +81,7 @@ export type ContainerPropsType = Partial<{
|
|
81
81
|
activeOrganismIds: string[];
|
82
82
|
padding: Padding;
|
83
83
|
enableBackgroundImage: boolean;
|
84
|
-
|
84
|
+
dataModelFieldId?: DmfId;
|
85
85
|
}>;
|
86
86
|
export type AdditionalContainerProps = Partial<{
|
87
87
|
containerStyle: CSSObject;
|
@@ -106,7 +106,7 @@ export type ContainerComponentProps = {
|
|
106
106
|
id: string;
|
107
107
|
instance: 'container';
|
108
108
|
type: ContainerType;
|
109
|
-
|
109
|
+
dataModelFieldId?: DmfId;
|
110
110
|
items: (ContainerComponentProps | Molecule)[];
|
111
111
|
config: Partial<{
|
112
112
|
wide: AdditionalContainerProps;
|