dfh-ui-library 1.12.440 → 1.12.441
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/SideBarListView/todos.d.ts +6 -1
- package/dist/cjs/types/components/index.d.ts +0 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/SideBarListView/todos.d.ts +6 -1
- package/dist/esm/types/components/index.d.ts +0 -1
- package/dist/index.d.ts +6 -3
- package/package.json +1 -1
@@ -1,7 +1,12 @@
|
|
1
1
|
import React from "react";
|
2
|
-
import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/components/common.model";
|
2
|
+
import { ListMasterDataProps, NoteProps, UrgentDataProps } from "../../shared/models/components/common.model";
|
3
3
|
export interface ITodoToggleRequestParams {
|
4
4
|
noteId?: string;
|
5
|
+
note?: NoteProps;
|
6
|
+
actionedUser?: string;
|
7
|
+
patient?: string;
|
8
|
+
survey?: string;
|
9
|
+
noteType?: string;
|
5
10
|
toggleOptions: {
|
6
11
|
noteIndex: number;
|
7
12
|
check: boolean;
|
@@ -58,4 +58,3 @@ export { default as ButtonGroupMultiSelect } from "./ButtonGroup/ButtonGroupMult
|
|
58
58
|
export { default as CheckBoxComponent } from "./FilterButtonGroup/Checkbox";
|
59
59
|
export { default as Todos } from "./SideBarListView/todos";
|
60
60
|
export { default as UrgentChallenges } from "./SideBarListView/urgentChallenges";
|
61
|
-
export { default as MonthPicker } from "./MonthPicker";
|
package/dist/index.d.ts
CHANGED
@@ -6,6 +6,11 @@ export { ColumnDef, SortingState } from '@tanstack/react-table';
|
|
6
6
|
|
7
7
|
interface ITodoToggleRequestParams {
|
8
8
|
noteId?: string;
|
9
|
+
note?: NoteProps;
|
10
|
+
actionedUser?: string;
|
11
|
+
patient?: string;
|
12
|
+
survey?: string;
|
13
|
+
noteType?: string;
|
9
14
|
toggleOptions: {
|
10
15
|
noteIndex: number;
|
11
16
|
check: boolean;
|
@@ -1480,8 +1485,6 @@ interface UrgentChallengeProps {
|
|
1480
1485
|
}
|
1481
1486
|
declare const UrgentChallenges: React__default.FC<UrgentChallengeProps>;
|
1482
1487
|
|
1483
|
-
declare const MonthPicker: React__default.FC<CustomDatePickerProps>;
|
1484
|
-
|
1485
1488
|
interface UseSchemaProcessorProps {
|
1486
1489
|
schema: ISchema[];
|
1487
1490
|
externalSetComponents: (data: IComponent[]) => void;
|
@@ -1794,4 +1797,4 @@ declare const themeConfigs: {
|
|
1794
1797
|
plugins: any[];
|
1795
1798
|
};
|
1796
1799
|
|
1797
|
-
export { BADGETYPE, Badge, type BadgeColorVariant, BorderType, Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, type ISolutionvalues, Icon, IconInput, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, type InputType, InputValidation, InputsGroup, Label, type ListMasterDataProps, ListRow, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal,
|
1800
|
+
export { BADGETYPE, Badge, type BadgeColorVariant, BorderType, Breadcrumb, type BtnOptionDropdown, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithUpload, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, type DropdownSearchProps, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, type ISolutionvalues, Icon, IconInput, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, type InputType, InputValidation, InputsGroup, Label, type ListMasterDataProps, ListRow, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, Modal, NavBar, NoteEditor, type NoteHistoryProps, type NoteItemProps, type NoteProps, type OptionProps, PanelCard, PhoneNumberInput, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SideBarListView, Signature, SortDropdown, Spinner, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, type TimelineEventProps, Todos, Tooltip, TooltipWithChildren, Typho, Typhography, UrgentChallenges, type UrgentDataProps, useSchemaProcessor as UseSchemaProcessor, type VariantTypes, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|