@banch0u/core-project-test-repository 1.0.30 → 1.1.0

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 (41) hide show
  1. package/dist/assets/icons/index.js +66 -0
  2. package/dist/components/Button/index.js +45 -0
  3. package/dist/components/ColSort/index.js +55 -0
  4. package/dist/components/Filter/index.js +185 -0
  5. package/dist/components/Loading/index.js +20 -0
  6. package/dist/components/Pagination/Select.js +33 -0
  7. package/dist/components/Pagination/constant.js +22 -0
  8. package/dist/components/Pagination/index.js +53 -0
  9. package/dist/hooks/useNotification.js +59 -0
  10. package/dist/index.js +56 -0
  11. package/dist/utils/message.js +58 -0
  12. package/package.json +6 -3
  13. package/.babelrc +0 -9
  14. package/index.js +0 -2
  15. package/src/assets/icons/index.js +0 -72
  16. package/src/components/Button/index.jsx +0 -61
  17. package/src/components/ColSort/index.jsx +0 -51
  18. package/src/components/Filter/index.jsx +0 -220
  19. package/src/components/Loading/index.jsx +0 -16
  20. package/src/components/Pagination/Select.jsx +0 -26
  21. package/src/components/Pagination/constant.js +0 -22
  22. package/src/components/Pagination/index.jsx +0 -33
  23. package/src/hooks/useNotification.js +0 -57
  24. package/src/index.js +0 -13
  25. package/src/utils/message.js +0 -37
  26. package/webpack.config.js +0 -35
  27. /package/{src → dist}/assets/fonts/Inter/Inter-Black.ttf +0 -0
  28. /package/{src → dist}/assets/fonts/Inter/Inter-Bold.ttf +0 -0
  29. /package/{src → dist}/assets/fonts/Inter/Inter-ExtraBold.ttf +0 -0
  30. /package/{src → dist}/assets/fonts/Inter/Inter-ExtraLight.ttf +0 -0
  31. /package/{src → dist}/assets/fonts/Inter/Inter-Light.ttf +0 -0
  32. /package/{src → dist}/assets/fonts/Inter/Inter-Medium.ttf +0 -0
  33. /package/{src → dist}/assets/fonts/Inter/Inter-Regular.ttf +0 -0
  34. /package/{src → dist}/assets/fonts/Inter/Inter-SemiBold.ttf +0 -0
  35. /package/{src → dist}/assets/fonts/Inter/Inter-Thin.ttf +0 -0
  36. /package/{src → dist}/assets/fonts/fonts.css +0 -0
  37. /package/{src → dist}/components/Button/index.module.scss +0 -0
  38. /package/{src → dist}/components/ColSort/index.module.scss +0 -0
  39. /package/{src → dist}/components/Filter/index.module.scss +0 -0
  40. /package/{src → dist}/components/Loading/index.module.scss +0 -0
  41. /package/{src → dist}/components/Pagination/Pagination.module.scss +0 -0
package/webpack.config.js DELETED
@@ -1,35 +0,0 @@
1
- const path = require('path');
2
-
3
- module.exports = {
4
- entry: './src/index.js', // Your entry file where your components are exported
5
- output: {
6
- path: path.resolve(__dirname, 'dist'),
7
- filename: 'bundle.js', // Your output bundle
8
- library: '@banch0u/core-project-test-repository', // Exposes your components as a library
9
- libraryTarget: 'umd', // Can be used in various environments like CommonJS, AMD, etc.
10
- clean: true, // Cleans the dist folder before each build
11
- },
12
- resolve: {
13
- extensions: ['.js', '.jsx'], // Resolve .js and .jsx files
14
- },
15
- module: {
16
- rules: [
17
- {
18
- test: /\.jsx?$/, // Applies to JavaScript/JSX files
19
- exclude: /node_modules/,
20
- use: {
21
- loader: 'babel-loader',
22
- },
23
- },
24
- {
25
- test: /\.scss$/, // Handles SCSS files
26
- use: [
27
- 'style-loader', // Adds styles to DOM
28
- 'css-loader', // Translates CSS into CommonJS
29
- 'sass-loader', // Compiles SCSS to CSS
30
- ],
31
- },
32
- ],
33
- },
34
- devtool: 'source-map', // For better error tracking
35
- };
File without changes
File without changes
File without changes