@oc-digital/react-component-library 8.17.11 → 8.17.13-beta.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.
|
@@ -15,6 +15,7 @@ interface IMainNavigationItem {
|
|
|
15
15
|
name: ReactChild;
|
|
16
16
|
route: string;
|
|
17
17
|
archived?: boolean;
|
|
18
|
+
disableSubItemCount?: boolean;
|
|
18
19
|
}
|
|
19
20
|
export interface ISecondaryNavigationSubItem {
|
|
20
21
|
id: string;
|
|
@@ -38,7 +39,6 @@ export interface ISecondaryNavigationElement<T = any> {
|
|
|
38
39
|
defaultSortDirection?: "asc" | "desc";
|
|
39
40
|
onSortReverse?: (direction: -1 | 1) => void;
|
|
40
41
|
sortFunction?: SortingFunction<T>;
|
|
41
|
-
disableSubItemCount?: boolean;
|
|
42
42
|
}
|
|
43
43
|
export interface ISecondaryNavigationElements<T = any> {
|
|
44
44
|
[key: string]: ISecondaryNavigationElement<T>;
|
|
@@ -86,7 +86,6 @@ export interface ILeftNavigationProps<T = any> {
|
|
|
86
86
|
export interface IListItemProps extends ISecondaryNavigationItem {
|
|
87
87
|
config: ISideNavConfig;
|
|
88
88
|
Icon: React.FC<ISvgComponentProps>;
|
|
89
|
-
disableSubItemCount?: boolean;
|
|
90
89
|
}
|
|
91
90
|
export interface INavListItemStyleProps extends ISecondaryMainConfig, ISecondarySubConfig {
|
|
92
91
|
}
|