@kashifd/jwero-components 0.8.14 → 0.8.16

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.
@@ -17,7 +17,8 @@ type JweroSidebarType = {
17
17
  primaryNavigationData: NavigationDataType[];
18
18
  secondaryNavigationData: NavigationDataType[];
19
19
  onClick?: (option: NavigationDataType) => void;
20
+ onContextMenu?: (option: NavigationDataType) => void;
20
21
  boxSx?: SxProps<Theme>;
21
22
  };
22
- declare const JweroSidebar: ({ currentPage, primaryNavigationData, secondaryNavigationData, onClick, boxSx, }: JweroSidebarType) => import("react/jsx-runtime").JSX.Element;
23
+ declare const JweroSidebar: ({ currentPage, primaryNavigationData, secondaryNavigationData, onClick, onContextMenu, boxSx, }: JweroSidebarType) => import("react/jsx-runtime").JSX.Element;
23
24
  export default JweroSidebar;
@@ -27,6 +27,7 @@ export type JweroTableType = {
27
27
  initialSortOrder?: "asc" | "desc";
28
28
  enableScrollButtons?: boolean;
29
29
  tableContainerSx?: SxProps<Theme>;
30
+ isLastColumnSticky?: boolean;
30
31
  };
31
- declare const JweroTable: ({ tableSx, data, tableHeaderList, rowData, onClick, onContextMenu, tableTitleNoLineBreak, initialSortBy, initialSortOrder, enableScrollButtons, tableContainerSx, }: JweroTableType) => import("react/jsx-runtime").JSX.Element;
32
+ declare const JweroTable: ({ tableSx, data, tableHeaderList, rowData, onClick, onContextMenu, tableTitleNoLineBreak, initialSortBy, initialSortOrder, enableScrollButtons, tableContainerSx, isLastColumnSticky, }: JweroTableType) => import("react/jsx-runtime").JSX.Element;
32
33
  export default JweroTable;
@@ -13,9 +13,10 @@ export type JweroDataTableType = JweroTableType & {
13
13
  };
14
14
  sx?: SxProps;
15
15
  tableTitleNoWrap?: boolean;
16
+ isLastColumnSticky?: boolean;
16
17
  };
17
18
  export type JweroDataPaginationType = JweroPaginationType & {
18
19
  flag: boolean;
19
20
  };
20
- declare const JweroDataTable: ({ tableSx, data, tableHeaderList, rowData, customTableHeader, onClick, onContextMenu, enableScrollButtons, pagination, rowsPerPageProps, tableTitleNoLineBreak, tableContainerSx, sx, }: JweroDataTableType) => import("react/jsx-runtime").JSX.Element;
21
+ declare const JweroDataTable: ({ tableSx, data, tableHeaderList, rowData, customTableHeader, onClick, onContextMenu, enableScrollButtons, isLastColumnSticky, pagination, rowsPerPageProps, tableTitleNoLineBreak, tableContainerSx, sx, }: JweroDataTableType) => import("react/jsx-runtime").JSX.Element;
21
22
  export default JweroDataTable;
@@ -26,7 +26,6 @@ type JweroTabsType = {
26
26
  tabListSx?: SxProps;
27
27
  tabSx?: SxProps;
28
28
  panelSx?: SxProps;
29
- mainSx?: SxProps;
30
29
  };
31
- declare const JweroTabs: ({ children, tabsObj, panelObj, onChangeFunction, customBorderBottom, customScrollButtons, customStartValue, tabListRightItem, tabListEndItem, boxSx, tabListSx, tabSx, panelSx, mainSx, }: JweroTabsType) => import("react/jsx-runtime").JSX.Element;
30
+ declare const JweroTabs: ({ children, tabsObj, panelObj, onChangeFunction, customBorderBottom, customScrollButtons, customStartValue, tabListRightItem, tabListEndItem, boxSx, tabListSx, tabSx, panelSx, }: JweroTabsType) => import("react/jsx-runtime").JSX.Element;
32
31
  export default JweroTabs;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@kashifd/jwero-components",
3
3
  "description": "A Jwero UI library for React",
4
4
  "private": false,
5
- "version": "0.8.14",
5
+ "version": "0.8.16",
6
6
  "type": "module",
7
7
  "main": "dist/index.umd.js",
8
8
  "module": "dist/index.es.js",