@kashifd/jwero-components 0.8.30 → 0.8.32

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.
@@ -24,6 +24,8 @@ type JweroVerticalTabsType = {
24
24
  onClick?: (value: string, access?: boolean, navigateUrl?: string) => void;
25
25
  topListSx?: SxProps<Theme>;
26
26
  bottomListSx?: SxProps<Theme>;
27
+ loading?: boolean;
28
+ loadingCount?: number;
27
29
  };
28
- declare const JweroVerticalTabs: ({ title, currentMenu, bottomMenuLists, titleProps, labelProps, menuLists, listSx, titleBoxSx, boxSx, labelBoxSx, onClick, topListSx, bottomListSx, }: JweroVerticalTabsType) => import("react/jsx-runtime").JSX.Element;
30
+ declare const JweroVerticalTabs: ({ title, currentMenu, bottomMenuLists, titleProps, labelProps, menuLists, listSx, titleBoxSx, boxSx, labelBoxSx, onClick, topListSx, bottomListSx, loading, loadingCount, }: JweroVerticalTabsType) => import("react/jsx-runtime").JSX.Element;
29
31
  export default JweroVerticalTabs;
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.30",
5
+ "version": "0.8.32",
6
6
  "type": "module",
7
7
  "main": "dist/index.umd.js",
8
8
  "module": "dist/index.es.js",
@@ -19,7 +19,7 @@
19
19
  "dist"
20
20
  ],
21
21
  "scripts": {
22
- "dev": "vite",
22
+ "dev": "vite --host --port 9002",
23
23
  "clean": "rimraf dist",
24
24
  "prebuild": "npm run clean",
25
25
  "build": "node --max-old-space-size=4096 ./node_modules/vite/bin/vite.js build",