@js-smart/react-kit 1.0.1 → 1.0.2
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.
- package/index.d.ts +21 -0
- package/index.js +208 -0
- package/index.mjs +14350 -0
- package/lib/components/CenteredCircularProgress.d.ts +7 -0
- package/lib/components/ConfirmationDialog.d.ts +11 -0
- package/lib/components/DismissibleAlert.d.ts +18 -0
- package/lib/components/OpenInNewIconLink.d.ts +18 -0
- package/lib/components/ReactIf.d.ts +14 -0
- package/lib/components/buttons/CancelButton.d.ts +26 -0
- package/lib/components/buttons/DeleteButton.d.ts +14 -0
- package/lib/components/buttons/ExcelButton.d.ts +26 -0
- package/lib/components/buttons/GoBackButton.d.ts +8 -0
- package/lib/components/buttons/HistoryButton.d.ts +26 -0
- package/lib/components/buttons/LoadingSuccessButton.d.ts +26 -0
- package/lib/components/buttons/ManageButton.d.ts +11 -0
- package/lib/components/buttons/SuccessButton.d.ts +26 -0
- package/lib/components/snack-bar/AppSnackBar.d.ts +7 -0
- package/lib/components/snack-bar/QuerySnackBar.d.ts +18 -0
- package/lib/constants/AppConstants.d.ts +15 -0
- package/lib/types/ProgressState.d.ts +7 -0
- package/lib/utils/BooleanUtils.d.ts +7 -0
- package/lib/utils/DateUtils.d.ts +22 -0
- package/lib/utils/NumberUtils.d.ts +7 -0
- package/lib/utils/ProgressStateUtils.d.ts +39 -0
- package/lib/utils/StringUtils.d.ts +7 -0
- package/lib/utils/UrlUtils.d.ts +11 -0
- package/package.json +1 -1
- package/style.css +0 -0
- package/.babelrc +0 -12
- package/.eslintrc.json +0 -18
- package/README.md +0 -7
- package/project.json +0 -10
- package/src/index.ts +0 -29
- package/src/lib/components/CenteredCircularProgress.tsx +0 -16
- package/src/lib/components/ConfirmationDialog.tsx +0 -40
- package/src/lib/components/DismissibleAlert.tsx +0 -64
- package/src/lib/components/OpenInNewIconLink.tsx +0 -28
- package/src/lib/components/ReactIf.tsx +0 -13
- package/src/lib/components/buttons/CancelButton.tsx +0 -39
- package/src/lib/components/buttons/DeleteButton.tsx +0 -29
- package/src/lib/components/buttons/ExcelButton.tsx +0 -39
- package/src/lib/components/buttons/GoBackButton.tsx +0 -14
- package/src/lib/components/buttons/HistoryButton.tsx +0 -39
- package/src/lib/components/buttons/LoadingSuccessButton.tsx +0 -50
- package/src/lib/components/buttons/ManageButton.tsx +0 -26
- package/src/lib/components/buttons/SuccessButton.tsx +0 -38
- package/src/lib/components/snack-bar/AppSnackBar.tsx +0 -46
- package/src/lib/components/snack-bar/QuerySnackBar.tsx +0 -62
- package/src/lib/constants/AppConstants.ts +0 -17
- package/src/lib/react-kit.module.scss +0 -22
- package/src/lib/types/ProgressState.ts +0 -7
- package/src/lib/utils/BooleanUtils.ts +0 -13
- package/src/lib/utils/DateUtils.ts +0 -43
- package/src/lib/utils/NumberUtils.ts +0 -12
- package/src/lib/utils/ProgressStateUtils.ts +0 -74
- package/src/lib/utils/StringUtils.ts +0 -14
- package/src/lib/utils/UrlUtils.ts +0 -19
- package/tsconfig.json +0 -21
- package/tsconfig.lib.json +0 -23
- package/tsconfig.spec.json +0 -26
- package/vite.config.ts +0 -63
package/index.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export { CancelButton } from './lib/components/buttons/CancelButton';
|
|
2
|
+
export { DeleteButton } from './lib/components/buttons/DeleteButton';
|
|
3
|
+
export { GoBackButton } from './lib/components/buttons/GoBackButton';
|
|
4
|
+
export { HistoryButton } from './lib/components/buttons/HistoryButton';
|
|
5
|
+
export { LoadingSuccessButton } from './lib/components/buttons/LoadingSuccessButton';
|
|
6
|
+
export { ManageButton } from './lib/components/buttons/ManageButton';
|
|
7
|
+
export { SuccessButton } from './lib/components/buttons/SuccessButton';
|
|
8
|
+
export { ExcelButton } from './lib/components/buttons/ExcelButton';
|
|
9
|
+
export { AppSnackBar } from './lib/components/snack-bar/AppSnackBar';
|
|
10
|
+
export { QuerySnackBar } from './lib/components/snack-bar/QuerySnackBar';
|
|
11
|
+
export { CenteredCircularProgress } from './lib/components/CenteredCircularProgress';
|
|
12
|
+
export { ConfirmDialog } from './lib/components/ConfirmationDialog';
|
|
13
|
+
export { DismissibleAlert } from './lib/components/DismissibleAlert';
|
|
14
|
+
export { OpenInNewIconLink } from './lib/components/OpenInNewIconLink';
|
|
15
|
+
export { ReactIf } from './lib/components/ReactIf';
|
|
16
|
+
export * from './lib/utils/BooleanUtils';
|
|
17
|
+
export * from './lib/utils/DateUtils';
|
|
18
|
+
export * from './lib/utils/NumberUtils';
|
|
19
|
+
export * from './lib/utils/ProgressStateUtils';
|
|
20
|
+
export * from './lib/utils/StringUtils';
|
|
21
|
+
export * from './lib/utils/UrlUtils';
|