@kcndigitals/lib 1.0.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.
package/dist/style.css ADDED
@@ -0,0 +1 @@
1
+ ._tableFixHeader_8hpov_5{width:100%;border-collapse:collapse}._tableFixHeader_8hpov_5 thead th{position:sticky;top:0;background-color:#ff0;z-index:1;font-weight:700;text-align:center;border-bottom:2px solid #000}._tableFixHeader_8hpov_5 tbody tr:nth-child(2n){background-color:#f9f9f9}._tableFixHeader_8hpov_5 tbody tr:hover{background-color:#e3f2fd}._tableFixHeader_8hpov_5 td,._tableFixHeader_8hpov_5 th{padding:8px;border:1px solid #ddd}._labelStyle_8hpov_63{font-family:Roboto,sans-serif;font-size:16px;color:#000;font-weight:900}._btnStyle_8hpov_77{margin:"8px 0";color:"white";background-color:"#793af8";text-transform:"none"}._recordNoDisplay_8hpov_91{font-weight:700}._srp-title_8hpov_99{font-family:Poppins,sans-serif;font-weight:700;font-size:2rem;text-align:center;color:#fff;margin-bottom:20px;text-shadow:1px 1px 3px rgba(0,0,0,.3)}._srp-title_8hpov_99 span{font-weight:400;font-size:1.3rem;margin-left:8px}
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@kcndigitals/lib",
3
+ "version": "1.0.0",
4
+ "description": "A reusable UI component library using MUI",
5
+ "type": "module",
6
+
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ }
17
+ },
18
+
19
+ "files": [
20
+ "dist"
21
+ ],
22
+
23
+ "scripts": {
24
+ "dev": "vite",
25
+ "build": "vite build",
26
+ "preview": "vite preview",
27
+ "clean": "rimraf dist"
28
+ },
29
+
30
+ "peerDependencies": {
31
+ "@emotion/react": "^11.0.0",
32
+ "@emotion/styled": "^11.0.0",
33
+ "@mui/icons-material": "^7.1.0",
34
+ "@mui/material": "^7.1.0",
35
+ "axios": "^1.10.0",
36
+ "moment": "^2.30.1",
37
+ "react": "^18.0.0 || ^19.0.0",
38
+ "react-dom": "^18.0.0 || ^19.0.0",
39
+ "react-router-dom": "^6.22.3",
40
+ "xlsx": "^0.18.5"
41
+ },
42
+
43
+ "dependencies": {
44
+ "date-fns": "^4.1.0",
45
+ "dotenv": "^16.5.0",
46
+ "tslib": "^2.8.1"
47
+ },
48
+
49
+ "devDependencies": {
50
+ "@types/react": "^18.0.0",
51
+ "@types/react-dom": "^18.0.0",
52
+ "@types/zxcvbn": "^4.4.5",
53
+
54
+ "@vitejs/plugin-react": "^4.3.4",
55
+ "vite": "^5.2.0",
56
+
57
+ "typescript": "^5.8.3",
58
+ "rimraf": "^5.0.7",
59
+
60
+ "zxcvbn": "^4.4.2"
61
+ },
62
+
63
+ "keywords": [
64
+ "react",
65
+ "mui",
66
+ "component-library",
67
+ "typescript",
68
+ "ui"
69
+ ],
70
+
71
+ "author": "gn",
72
+ "license": "MIT",
73
+
74
+ "publishConfig": {
75
+ "access": "public"
76
+ }
77
+ }