@js-smart/react-kit 5.12.0-beta.4 → 5.13.0-beta.1

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 (140) hide show
  1. package/index.cjs +74 -0
  2. package/{react-kit/src/index.ts → index.d.ts} +9 -16
  3. package/index.js +75 -0
  4. package/index.mjs +6326 -0
  5. package/lib/components/CenteredCircularProgress.d.ts +7 -0
  6. package/lib/components/ConfirmationDialog.d.ts +11 -0
  7. package/lib/components/DismissibleAlert.d.ts +17 -0
  8. package/lib/components/NextLink.d.ts +17 -0
  9. package/lib/components/OpenInNewIconLink.d.ts +17 -0
  10. package/lib/components/ReactIf.d.ts +36 -0
  11. package/lib/components/buttons/CancelButton.d.ts +28 -0
  12. package/lib/components/buttons/DeleteButton.d.ts +16 -0
  13. package/lib/components/buttons/EditIconButton.d.ts +8 -0
  14. package/lib/components/buttons/ExcelButton.d.ts +26 -0
  15. package/lib/components/buttons/GoBackButton.d.ts +10 -0
  16. package/lib/components/buttons/HistoryButton.d.ts +28 -0
  17. package/lib/components/buttons/LoadingSuccessButton.d.ts +28 -0
  18. package/lib/components/buttons/ManageButton.d.ts +14 -0
  19. package/lib/components/buttons/SuccessButton.d.ts +28 -0
  20. package/lib/components/snack-bar/AppSnackBar.d.ts +6 -0
  21. package/lib/components/snack-bar/QuerySnackBar.d.ts +18 -0
  22. package/lib/components/table/TablePaginationActions.d.ts +9 -0
  23. package/lib/components/tabs/TabPanel.d.ts +12 -0
  24. package/lib/config/fetch/FetchClient.d.ts +58 -0
  25. package/lib/config/fetch/FetchClientTypes.d.ts +39 -0
  26. package/lib/config/fetch/FetchInterceptor.d.ts +21 -0
  27. package/lib/constants/AppConstants.d.ts +15 -0
  28. package/lib/constants/HttpConstants.d.ts +13 -0
  29. package/lib/types/ProgressState.d.ts +7 -0
  30. package/lib/utils/BooleanUtils.d.ts +7 -0
  31. package/{react-kit/src/lib/utils/CssUtils.ts → lib/utils/CssUtils.d.ts} +1 -3
  32. package/lib/utils/DateUtils.d.ts +22 -0
  33. package/lib/utils/NumberUtils.d.ts +7 -0
  34. package/lib/utils/ProgressStateUtils.d.ts +38 -0
  35. package/lib/utils/StringUtils.d.ts +7 -0
  36. package/lib/utils/UrlUtils.d.ts +11 -0
  37. package/lib/utils/fetchClient.d.ts +12 -0
  38. package/package.json +31 -86
  39. package/.editorconfig +0 -13
  40. package/.eslintignore +0 -1
  41. package/.eslintrc.json +0 -41
  42. package/.github/copilot-instructions.md +0 -11
  43. package/.github/workflows/build.yml +0 -45
  44. package/.github/workflows/release.yml +0 -65
  45. package/.prettierignore +0 -5
  46. package/.prettierrc +0 -9
  47. package/.vscode/extensions.json +0 -7
  48. package/CHANGELOG.md +0 -24
  49. package/CODE_OF_CONDUCT.md +0 -128
  50. package/FUNDING.yml +0 -1
  51. package/LICENSE +0 -21
  52. package/README.md +0 -1
  53. package/apps/react-kit-demo/.eslintrc.json +0 -22
  54. package/apps/react-kit-demo/index.html +0 -16
  55. package/apps/react-kit-demo/project.json +0 -9
  56. package/apps/react-kit-demo/public/favicon.ico +0 -0
  57. package/apps/react-kit-demo/src/app/Home.tsx +0 -17
  58. package/apps/react-kit-demo/src/app/all-books/AllBooks.tsx +0 -68
  59. package/apps/react-kit-demo/src/app/app.module.scss +0 -1
  60. package/apps/react-kit-demo/src/app/app.tsx +0 -29
  61. package/apps/react-kit-demo/src/app/buttons/ButtonsDemo.tsx +0 -58
  62. package/apps/react-kit-demo/src/app/dialog/DialogDemo.tsx +0 -23
  63. package/apps/react-kit-demo/src/app/links/LinksDemo.tsx +0 -20
  64. package/apps/react-kit-demo/src/app/progress-bar/CenterCircularProgressDemo.tsx +0 -10
  65. package/apps/react-kit-demo/src/app/react-if/ReactIfDemo.tsx +0 -44
  66. package/apps/react-kit-demo/src/app/snack-bar/SnackBarDemo.tsx +0 -35
  67. package/apps/react-kit-demo/src/assets/.gitkeep +0 -0
  68. package/apps/react-kit-demo/src/constants/ApiConstants.ts +0 -7
  69. package/apps/react-kit-demo/src/constants/DialogMode.ts +0 -2
  70. package/apps/react-kit-demo/src/constants/HttpConstants.ts +0 -18
  71. package/apps/react-kit-demo/src/constants/StateConstants.ts +0 -2
  72. package/apps/react-kit-demo/src/main.tsx +0 -17
  73. package/apps/react-kit-demo/src/routes/Routes.tsx +0 -55
  74. package/apps/react-kit-demo/src/services/BookService.ts +0 -21
  75. package/apps/react-kit-demo/src/styles.scss +0 -36
  76. package/apps/react-kit-demo/src/theme.ts +0 -46
  77. package/apps/react-kit-demo/src/types/Book.ts +0 -8
  78. package/apps/react-kit-demo/src/utils/CssUtils.ts +0 -13
  79. package/apps/react-kit-demo/tsconfig.app.json +0 -18
  80. package/apps/react-kit-demo/tsconfig.json +0 -21
  81. package/apps/react-kit-demo/tsconfig.spec.json +0 -28
  82. package/apps/react-kit-demo/vite.config.ts +0 -50
  83. package/nx.json +0 -52
  84. package/react-kit/.babelrc +0 -12
  85. package/react-kit/.eslintrc.json +0 -18
  86. package/react-kit/README.md +0 -7
  87. package/react-kit/package-lock.json +0 -1330
  88. package/react-kit/package.json +0 -45
  89. package/react-kit/project.json +0 -10
  90. package/react-kit/src/lib/components/CenteredCircularProgress.tsx +0 -15
  91. package/react-kit/src/lib/components/ConfirmationDialog.tsx +0 -28
  92. package/react-kit/src/lib/components/DismissibleAlert.tsx +0 -60
  93. package/react-kit/src/lib/components/NextLink.tsx +0 -26
  94. package/react-kit/src/lib/components/OpenInNewIconLink.tsx +0 -42
  95. package/react-kit/src/lib/components/ReactIf.tsx +0 -53
  96. package/react-kit/src/lib/components/buttons/CancelButton.tsx +0 -45
  97. package/react-kit/src/lib/components/buttons/DeleteButton.tsx +0 -35
  98. package/react-kit/src/lib/components/buttons/EditIconButton.tsx +0 -23
  99. package/react-kit/src/lib/components/buttons/ExcelButton.tsx +0 -43
  100. package/react-kit/src/lib/components/buttons/GoBackButton.tsx +0 -22
  101. package/react-kit/src/lib/components/buttons/HistoryButton.tsx +0 -45
  102. package/react-kit/src/lib/components/buttons/LoadingSuccessButton.tsx +0 -53
  103. package/react-kit/src/lib/components/buttons/ManageButton.tsx +0 -31
  104. package/react-kit/src/lib/components/buttons/SuccessButton.tsx +0 -44
  105. package/react-kit/src/lib/components/snack-bar/AppSnackBar.tsx +0 -46
  106. package/react-kit/src/lib/components/snack-bar/QuerySnackBar.tsx +0 -62
  107. package/react-kit/src/lib/components/table/TablePaginationActions.tsx +0 -58
  108. package/react-kit/src/lib/components/tabs/TabPanel.tsx +0 -26
  109. package/react-kit/src/lib/constants/AppConstants.ts +0 -17
  110. package/react-kit/src/lib/types/ProgressState.ts +0 -7
  111. package/react-kit/src/lib/utils/BooleanUtils.ts +0 -13
  112. package/react-kit/src/lib/utils/DateUtils.ts +0 -43
  113. package/react-kit/src/lib/utils/NumberUtils.ts +0 -12
  114. package/react-kit/src/lib/utils/ProgressStateUtils.ts +0 -68
  115. package/react-kit/src/lib/utils/StringUtils.ts +0 -14
  116. package/react-kit/src/lib/utils/UrlUtils.ts +0 -19
  117. package/react-kit/src/lib/utils/fetchClient.ts +0 -64
  118. package/react-kit/src/tests/buttons/CancelButton.test.tsx +0 -69
  119. package/react-kit/src/tests/buttons/DeleteButton.test.tsx +0 -63
  120. package/react-kit/src/tests/buttons/EditIconButton.test.tsx +0 -34
  121. package/react-kit/src/tests/buttons/HistoryButton.test.tsx +0 -46
  122. package/react-kit/src/tests/buttons/LoadingSuccessButton.test.tsx +0 -53
  123. package/react-kit/src/tests/buttons/ManageButton.test.tsx +0 -49
  124. package/react-kit/src/tests/buttons/SuccessButton.test.tsx +0 -46
  125. package/react-kit/src/tests/snack-bar/AppSnackBar.test.tsx +0 -54
  126. package/react-kit/src/tests/utils/BooleanUtils.test.ts +0 -35
  127. package/react-kit/src/tests/utils/CssUtils.test.ts +0 -17
  128. package/react-kit/src/tests/utils/DateUtils.test.ts +0 -46
  129. package/react-kit/src/tests/utils/NumberUtils.test.ts +0 -19
  130. package/react-kit/src/tests/utils/ProgressStateUtils.test.ts +0 -131
  131. package/react-kit/src/tests/utils/StringUtils.test.ts +0 -33
  132. package/react-kit/src/tests/utils/UrlUtils.test.ts +0 -19
  133. package/react-kit/tsconfig.json +0 -21
  134. package/react-kit/tsconfig.lib.json +0 -18
  135. package/react-kit/tsconfig.spec.json +0 -27
  136. package/react-kit/vite.config.ts +0 -72
  137. package/release.sh +0 -28
  138. package/tsconfig.base.json +0 -22
  139. package/vitest.workspace.js +0 -3
  140. package/vitest.workspace.ts +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.