dfh-ui-library 1.13.138 → 1.13.139
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/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/SideBarListView/SideBarListViewV2.d.ts +4 -0
- package/dist/cjs/types/components/SideBarListView/index.d.ts +1 -1
- package/dist/cjs/types/components/SideBarListView/todos.d.ts +3 -0
- package/dist/cjs/types/components/SideBarListView/todosV2.d.ts +2 -0
- package/dist/cjs/types/components/SideBarListView/urgentChallenges.d.ts +2 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/SideBarListView/SideBarListViewV2.d.ts +4 -0
- package/dist/esm/types/components/SideBarListView/index.d.ts +1 -1
- package/dist/esm/types/components/SideBarListView/todos.d.ts +3 -0
- package/dist/esm/types/components/SideBarListView/todosV2.d.ts +2 -0
- package/dist/esm/types/components/SideBarListView/urgentChallenges.d.ts +2 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +11 -10
- package/package.json +1 -1
- package/dist/cjs/types/components/SideBarListView/SideListViewV2.d.ts +0 -12
- package/dist/esm/types/components/SideBarListView/SideListViewV2.d.ts +0 -12
@@ -1,2 +1,2 @@
|
|
1
1
|
export { default as SideBarListView } from './SideBarListView';
|
2
|
-
export { default as SideBarListViewV2 } from './
|
2
|
+
export { default as SideBarListViewV2 } from './SideBarListViewV2';
|
@@ -16,6 +16,9 @@ interface todosProps {
|
|
16
16
|
detailAction?: (rowId: string | undefined) => void;
|
17
17
|
handleNameClick?: (id?: string) => void;
|
18
18
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
19
|
+
onLoadMore?: () => void;
|
20
|
+
hasMoreData?: boolean;
|
21
|
+
isDataLoading?: boolean;
|
19
22
|
}
|
20
23
|
declare const Todos: React.FC<todosProps>;
|
21
24
|
export default Todos;
|
@@ -18,6 +18,8 @@ interface TodosV2Props {
|
|
18
18
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
19
19
|
searchText?: string;
|
20
20
|
isDataLoading?: boolean;
|
21
|
+
onLoadMore?: () => void;
|
22
|
+
hasMoreData?: boolean;
|
21
23
|
}
|
22
24
|
declare const TodosV2: React.FC<TodosV2Props>;
|
23
25
|
export default TodosV2;
|
@@ -6,6 +6,8 @@ interface UrgentChallengeProps {
|
|
6
6
|
handleNameClick?: (id?: string) => void;
|
7
7
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
8
8
|
isDataLoading?: boolean;
|
9
|
+
onLoadMore?: () => void;
|
10
|
+
hasMoreData?: boolean;
|
9
11
|
}
|
10
12
|
declare const UrgentChallenges: React.FC<UrgentChallengeProps>;
|
11
13
|
export default UrgentChallenges;
|
@@ -837,6 +837,8 @@ export interface SideBarListProps {
|
|
837
837
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
838
838
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
839
839
|
isDataLoading?: boolean;
|
840
|
+
hasMoreData?: boolean;
|
841
|
+
onLoadMore?: () => void;
|
840
842
|
}
|
841
843
|
export interface PatientConsentProps {
|
842
844
|
consentDate?: string | Date | null;
|
package/dist/index.d.ts
CHANGED
@@ -20,6 +20,9 @@ interface todosProps {
|
|
20
20
|
detailAction?: (rowId: string | undefined) => void;
|
21
21
|
handleNameClick?: (id?: string) => void;
|
22
22
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams$1) => void;
|
23
|
+
onLoadMore?: () => void;
|
24
|
+
hasMoreData?: boolean;
|
25
|
+
isDataLoading?: boolean;
|
23
26
|
}
|
24
27
|
declare const Todos: React__default.FC<todosProps>;
|
25
28
|
|
@@ -709,6 +712,8 @@ interface SideBarListProps {
|
|
709
712
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
710
713
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams$1) => void;
|
711
714
|
isDataLoading?: boolean;
|
715
|
+
hasMoreData?: boolean;
|
716
|
+
onLoadMore?: () => void;
|
712
717
|
}
|
713
718
|
interface PatientConsentProps {
|
714
719
|
consentDate?: string | Date | null;
|
@@ -1782,15 +1787,7 @@ declare const RegularDropdown: React__default.FC<VersionDropDownProps>;
|
|
1782
1787
|
|
1783
1788
|
declare const SideBarListView: React__default.FC<SideBarListProps>;
|
1784
1789
|
|
1785
|
-
|
1786
|
-
currentPage?: number;
|
1787
|
-
pageSize?: number;
|
1788
|
-
totalCount?: number;
|
1789
|
-
onPageChange?: (page: number) => void;
|
1790
|
-
onPageSizeChange?: (pageSize: number) => void;
|
1791
|
-
isLoadingMore?: boolean;
|
1792
|
-
}
|
1793
|
-
declare const SideListViewV2: React__default.FC<SideListViewV2Props>;
|
1790
|
+
declare const SideBarListViewV2: React__default.FC<SideBarListProps>;
|
1794
1791
|
|
1795
1792
|
declare const TabButton: React__default.FC<TabButtonProps>;
|
1796
1793
|
|
@@ -1831,6 +1828,8 @@ interface TodosV2Props {
|
|
1831
1828
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
1832
1829
|
searchText?: string;
|
1833
1830
|
isDataLoading?: boolean;
|
1831
|
+
onLoadMore?: () => void;
|
1832
|
+
hasMoreData?: boolean;
|
1834
1833
|
}
|
1835
1834
|
declare const TodosV2: React__default.FC<TodosV2Props>;
|
1836
1835
|
|
@@ -1840,6 +1839,8 @@ interface UrgentChallengeProps {
|
|
1840
1839
|
handleNameClick?: (id?: string) => void;
|
1841
1840
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
1842
1841
|
isDataLoading?: boolean;
|
1842
|
+
onLoadMore?: () => void;
|
1843
|
+
hasMoreData?: boolean;
|
1843
1844
|
}
|
1844
1845
|
declare const UrgentChallenges: React__default.FC<UrgentChallengeProps>;
|
1845
1846
|
|
@@ -2159,5 +2160,5 @@ declare const themeConfigs: {
|
|
2159
2160
|
plugins: any[];
|
2160
2161
|
};
|
2161
2162
|
|
2162
|
-
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupMultiSelectWithInputsFormGen, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithMultiSelectFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, ComboBox, ConboboxV2 as ComboboxV2, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, IconInputV2, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputDatePickerV2, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, NoteEditorV2, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PhoneNumberInput4, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SelectV2, SideBarListView,
|
2163
|
+
export { BADGETYPE, Badge, BorderType, Breadcrumb, Button, ButtonGroup, ButtonGroupFormGen, ButtonGroupMultiSelect, ButtonGroupMultiSelectV2, ButtonGroupMultiSelectWithInputsFormGen, ButtonGroupWithInputs, ButtonGroupWithInputsFormGen, ButtonGroupWithMultiSelectFormGen, ButtonGroupWithUpload, ButtonV2, Card, Checkbox as CheckBox, CheckBoxComponent, ClickedAction, ComboBox, ConboboxV2 as ComboboxV2, DFHFormProvider as ComponentProvider, CustomFileInput, CustomDatePicker as DatePicker, DialogBox, DynamicDualInputTextGroupFormGen, FilterButtonGroup, Heading, HistoryDetails, Icon, IconInput, IconInputV2, ImageInput, ImagePreview, IndeterminateCheckbox, InfoCard, Input, InputDatePicker, InputDatePickerV2, InputValidation, InputsGroup, Label, ListRow, LoadingSpinner, Logo, Message, Modal, MultiSelectFormGen, NavBar, NoteEditor, NoteEditorV2, PanelCard, PhoneNumberInput, PhoneNumberInput2, PhoneNumberInput3, PhoneNumberInput4, PreviousDataBadge, ProgressBar, RadioButton, RegularDropdown, Row, SearchDropdownWithButton, Select, SelectUserWithButton, SelectV2, SideBarListView, SideBarListViewV2, Signature, SortDropdown, Spinner, SsnInput, Stepper, Tab, TabButton, TabList, TabPanel, Table, TagSelect as TagDropdown, TagSelect, Textarea, Timeline, Todos, TodosV2, Tooltip, TooltipWithChildren, Typho, Typhography, TyphographyFormGen, UrgentChallenges, useSchemaProcessor as UseSchemaProcessor, VersionDateDropdown, themeConfigs, usePagination, useSorting };
|
2163
2164
|
export type { AccountPopoverMenuItem, BadgeColorVariant, BtnOptionDropdown, DropdownSearchProps, ISolutionvalues, InputType, ListMasterDataProps, LogoProps, MessageProps, NoteChildrenProps, NoteHistoryProps, NoteItemProps, NoteProps, OptionProps, TimelineEventProps, UrgentDataProps, VariantTypes };
|
package/package.json
CHANGED
@@ -1,12 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { SideBarListProps } from '../../shared/models/components/common.model';
|
3
|
-
interface SideListViewV2Props extends SideBarListProps {
|
4
|
-
currentPage?: number;
|
5
|
-
pageSize?: number;
|
6
|
-
totalCount?: number;
|
7
|
-
onPageChange?: (page: number) => void;
|
8
|
-
onPageSizeChange?: (pageSize: number) => void;
|
9
|
-
isLoadingMore?: boolean;
|
10
|
-
}
|
11
|
-
declare const SideListViewV2: React.FC<SideListViewV2Props>;
|
12
|
-
export default SideListViewV2;
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { SideBarListProps } from '../../shared/models/components/common.model';
|
3
|
-
interface SideListViewV2Props extends SideBarListProps {
|
4
|
-
currentPage?: number;
|
5
|
-
pageSize?: number;
|
6
|
-
totalCount?: number;
|
7
|
-
onPageChange?: (page: number) => void;
|
8
|
-
onPageSizeChange?: (pageSize: number) => void;
|
9
|
-
isLoadingMore?: boolean;
|
10
|
-
}
|
11
|
-
declare const SideListViewV2: React.FC<SideListViewV2Props>;
|
12
|
-
export default SideListViewV2;
|