@campxdev/react-blueprint 1.7.3 → 1.7.5

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.
Files changed (45) hide show
  1. package/package.json +1 -1
  2. package/src/assets/images/svg/index.ts +13 -13
  3. package/src/components/Assets/ErrorPages/InternalServerError.tsx +5 -5
  4. package/src/components/Assets/ErrorPages/NoInternetConnection.tsx +5 -5
  5. package/src/components/Assets/ErrorPages/NoItemFound.tsx +6 -5
  6. package/src/components/Assets/ErrorPages/PageNotFound.tsx +5 -5
  7. package/src/components/Assets/ErrorPages/UnAuthorized.tsx +5 -5
  8. package/src/components/Assets/ErrorPages/styles.tsx +1 -1
  9. package/src/components/Assets/Icons/IconComponents/ClearIcon.tsx +37 -0
  10. package/src/components/Assets/Icons/IconComponents/DoneSquare.tsx +2 -2
  11. package/src/components/Assets/Icons/IconComponents/DownArrow.tsx +32 -0
  12. package/src/components/Assets/Icons/IconComponents/LIneDivider.tsx +23 -0
  13. package/src/components/Assets/Icons/IconComponents/RedirectIcon.tsx +1 -1
  14. package/src/components/Assets/Icons/Icons.tsx +6 -0
  15. package/src/components/DataDisplay/ActivityLogView/ActivityLogView.tsx +2 -2
  16. package/src/components/DataDisplay/ActivityLogView/service.tsx +1 -19
  17. package/src/components/DataDisplay/DataTable/DataTable.tsx +62 -39
  18. package/src/components/DataDisplay/DataTable/TablePagination.tsx +20 -12
  19. package/src/components/DataDisplay/EmptyIllustration/EmptyIllustration.tsx +40 -0
  20. package/src/components/DataDisplay/export.ts +1 -0
  21. package/src/components/Feedback/Spinner/Spinner.css +13 -25
  22. package/src/components/Input/RadioGroup/RadioGroup.tsx +6 -2
  23. package/src/components/Input/SearchBar/SearchBar.tsx +17 -14
  24. package/src/components/Input/SingleSelect/SingleSelect.tsx +2 -1
  25. package/src/components/Input/SingleSelect/components/MenuFooter.tsx +24 -0
  26. package/src/components/Input/SingleSelect/components/OptionsLoader.tsx +14 -0
  27. package/src/components/Input/SingleSelect/components/SingleFilter.tsx +69 -62
  28. package/src/components/Input/SingleSelect/components/SingleInput.tsx +45 -18
  29. package/src/components/Input/TextField/TextField.tsx +4 -1
  30. package/src/components/Input/styles.tsx +5 -5
  31. package/src/components/Layout/PageContent/PageContent.tsx +4 -3
  32. package/src/components/Layout/PageHeader/PageHeader.tsx +22 -69
  33. package/src/components/Layout/PageHeader/components/SearchBar.tsx +69 -26
  34. package/src/components/Layout/PageHeader/components/TableColumnsSelector/TableColumnsSelector.tsx +124 -22
  35. package/src/components/Navigation/Breadcrumbs/Breadcrumbs.tsx +1 -0
  36. package/src/components/Navigation/DropDownMenu/DropDownMenu.tsx +2 -2
  37. package/src/components/Navigation/Sidebar/styles.tsx +2 -1
  38. package/src/components/Navigation/TabsContainer/TabsContainer.tsx +4 -1
  39. package/src/redux/slices/pageHeaderSlice.ts +4 -1
  40. package/src/themes/commonTheme.ts +30 -5
  41. package/src/components/DataDisplay/styles.tsx +0 -6
  42. package/src/components/Input/components/OptionsLoader.tsx +0 -22
  43. /package/src/assets/images/svg/{Emptylistmage.svg → empty.svg} +0 -0
  44. /package/src/assets/images/svg/{error-cactus.svg → error-image.svg} +0 -0
  45. /package/src/assets/images/svg/{Internalserverimage.svg → server-error.svg} +0 -0