sevatech-library 1.0.22 → 1.0.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sevatech-library",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "type": "module",
5
5
  "description": "A React component library by SevaTech",
6
6
  "main": "dist/index.cjs.js",
@@ -14,14 +14,28 @@
14
14
  }
15
15
  },
16
16
  "files": [
17
- "dist",
17
+ "dist/index.cjs.js",
18
+ "dist/index.cjs.js.map",
19
+ "dist/index.es.js",
20
+ "dist/index.es.js.map",
21
+ "dist/index.d.ts",
22
+ "dist/index.d.ts.map",
23
+ "dist/components",
24
+ "dist/constants",
25
+ "dist/styles",
26
+ "dist/utils",
27
+ "dist/types",
28
+ "dist/logo",
18
29
  "README.md",
19
30
  "LICENSE",
20
31
  "CHANGELOG.md"
21
32
  ],
22
33
  "scripts": {
23
- "dev": "vite",
24
34
  "build": "vite build && tsc --emitDeclarationOnly --declaration --declarationDir dist",
35
+ "build:rollup": "rollup -c && tsc --emitDeclarationOnly --declaration --declarationDir dist",
36
+ "dev": "vite",
37
+ "dev:rollup": "rollup -c -w",
38
+ "test": "echo \"Error: no test specified\" && exit 1",
25
39
  "prepublishOnly": "npm run build",
26
40
  "storybook": "storybook dev -p 6006",
27
41
  "build-storybook": "storybook build -o docs && touch docs/.nojekyll",
@@ -31,23 +45,37 @@
31
45
  "publish:public": "npm publish --access public",
32
46
  "version:publish": "npm version patch && npm publish --access public"
33
47
  },
48
+ "keywords": [
49
+ "react",
50
+ "components",
51
+ "library",
52
+ "typescript"
53
+ ],
54
+ "author": "SevagoTech",
55
+ "license": "MIT",
56
+ "homepage": "https://core-sevago.github.io/sevatech-library",
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "https://github.com/golden-lotus-core-web/sevatech-library"
60
+ },
34
61
  "peerDependencies": {
35
- "react": ">=18 <20",
36
- "react-dom": ">=18 <20",
37
- "@emotion/react": ">=11",
38
- "@emotion/styled": ">=11",
39
- "@mui/material": ">=5",
40
- "@mui/icons-material": ">=5",
41
- "@mui/x-date-pickers": ">=5",
42
- "formik": ">=2",
43
- "framer-motion": ">=10",
44
- "dayjs": ">=1",
45
- "react-slick": ">=0.29",
46
- "slick-carousel": ">=1.8"
62
+ "@emotion/react": "^11.11.0",
63
+ "@emotion/styled": "^11.11.0",
64
+ "@mui/material": "^5.14.0",
65
+ "react": "^18.0.0 || ^19.0.0",
66
+ "react-dom": "^18.0.0 || ^19.0.0"
47
67
  },
48
68
  "dependencies": {
69
+ "@fontsource/material-symbols-rounded": "^5.2.33",
70
+ "@mui/icons-material": "^5.14.0",
71
+ "@mui/x-date-pickers": "^5.0.0",
49
72
  "ajv": "^8.17.1",
50
- "force": "^0.0.3"
73
+ "dayjs": "^1.11.19",
74
+ "force": "^0.0.3",
75
+ "formik": "^2.4.9",
76
+ "framer-motion": "^12.29.0",
77
+ "react-slick": "^0.31.0",
78
+ "slick-carousel": "^1.8.1"
51
79
  },
52
80
  "devDependencies": {
53
81
  "@babel/core": "^7.28.6",
@@ -56,20 +84,27 @@
56
84
  "@babel/preset-typescript": "^7.28.5",
57
85
  "@emotion/react": "^11.11.0",
58
86
  "@emotion/styled": "^11.11.0",
59
- "@mui/material": "^7.0.0",
60
- "@mui/icons-material": "^7.0.0",
61
- "@mui/x-date-pickers": "^8.0.0",
62
- "formik": "^2.4.9",
63
- "framer-motion": "^12.29.0",
64
- "dayjs": "^1.11.19",
65
- "react-slick": "^0.31.0",
66
- "slick-carousel": "^1.8.1",
67
87
  "@eslint/js": "^9.39.2",
88
+ "@fontsource/material-symbols-rounded": "^5.2.33",
89
+ "@mui/icons-material": "^5.14.0",
90
+ "@mui/material": "^5.14.0",
91
+ "@mui/x-date-pickers": "^5.0.0",
92
+ "@rollup/plugin-commonjs": "^25.0.0",
93
+ "@rollup/plugin-node-resolve": "^15.0.0",
94
+ "@rollup/plugin-typescript": "^11.0.0",
95
+ "@storybook/addon-essentials": "^8.6.15",
96
+ "@storybook/addon-interactions": "^8.6.15",
97
+ "@storybook/addon-links": "^8.6.15",
98
+ "@storybook/blocks": "^8.6.14",
99
+ "@storybook/react": "^8.6.15",
100
+ "@storybook/react-vite": "^8.6.15",
101
+ "@storybook/test": "^8.6.15",
68
102
  "@types/node": "^25.0.10",
69
- "@types/react": "^19.0.0",
70
- "@types/react-dom": "^19.0.0",
103
+ "@types/react": "^18.3.27 || ^19.0.0",
104
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
71
105
  "@types/react-slick": "^0.23.13",
72
106
  "@vitejs/plugin-react": "^5.1.2",
107
+ "babel-loader": "^10.0.0",
73
108
  "eslint": "^9.39.2",
74
109
  "eslint-plugin-prettier": "^5.5.5",
75
110
  "eslint-plugin-react-hooks": "^5.2.0",
@@ -80,30 +115,12 @@
80
115
  "rollup-plugin-dts": "^6.0.0",
81
116
  "rollup-plugin-peer-deps-external": "^2.2.4",
82
117
  "storybook": "^8.6.15",
83
- "@storybook/addon-essentials": "^8.6.15",
84
- "@storybook/addon-interactions": "^8.6.15",
85
- "@storybook/addon-links": "^8.6.15",
86
- "@storybook/blocks": "^8.6.14",
87
- "@storybook/react": "^8.6.15",
88
- "@storybook/react-vite": "^8.6.15",
89
- "@storybook/test": "^8.6.15",
118
+ "ts-loader": "^9.5.4",
90
119
  "tslib": "^2.6.0",
91
120
  "typescript": "^5.9.3",
92
121
  "typescript-eslint": "^8.54.0",
93
122
  "vite": "^7.3.1",
94
- "vite-plugin-dts": "^4.5.4"
95
- },
96
- "keywords": [
97
- "react",
98
- "components",
99
- "library",
100
- "typescript"
101
- ],
102
- "author": "SevagoTech",
103
- "license": "MIT",
104
- "homepage": "https://core-sevago.github.io/sevatech-library",
105
- "repository": {
106
- "type": "git",
107
- "url": "https://github.com/golden-lotus-core-web/sevatech-library"
123
+ "vite-plugin-dts": "^4.5.4",
124
+ "webpack": "^5.104.1"
108
125
  }
109
126
  }
@@ -1,3 +0,0 @@
1
- <svg width="34" height="32" viewBox="0 0 34 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M18.057 0.929057C17.7762 0.360164 17.1968 0 16.5624 0C15.928 0 15.3486 0.360164 15.0679 0.929057L10.8526 9.47008L1.42705 10.8397C0.799241 10.9309 0.277663 11.3707 0.081621 11.974C-0.114421 12.5774 0.0490744 13.2397 0.503362 13.6825L7.32377 20.3308L5.71369 29.7183C5.60645 30.3435 5.86349 30.9755 6.37673 31.3484C6.88997 31.7213 7.57041 31.7704 8.13194 31.4752L16.5624 27.043L24.9929 31.4752C25.5545 31.7704 26.2349 31.7213 26.7481 31.3484C27.2614 30.9755 27.5184 30.3435 27.4112 29.7183L25.8011 20.3308L32.6215 13.6825C33.0758 13.2397 33.2393 12.5774 33.0432 11.974C32.8472 11.3707 32.3256 10.9309 31.6978 10.8397L22.2722 9.47008L18.057 0.929057Z" fill="#DDDDE3"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M10.8342 0.557434C10.6657 0.216099 10.3181 0 9.93746 0C9.55682 0 9.20918 0.216099 9.04072 0.557434L6.51158 5.68205L0.856231 6.50382C0.479545 6.55855 0.166598 6.82239 0.0489726 7.18441C-0.0686523 7.54642 0.0294447 7.94382 0.302017 8.20951L4.39426 12.1985L3.42821 17.831C3.36387 18.2061 3.51809 18.5853 3.82604 18.809C4.13398 19.0328 4.54225 19.0623 4.87916 18.8851L9.93746 16.2258L14.9958 18.8851C15.3327 19.0623 15.7409 19.0328 16.0489 18.809C16.3568 18.5853 16.511 18.2061 16.4467 17.831L15.4807 12.1985L19.5729 8.20951C19.8455 7.94382 19.9436 7.54642 19.8259 7.18441C19.7083 6.82239 19.3954 6.55855 19.0187 6.50382L13.3633 5.68205L10.8342 0.557434Z" fill="#FFC400"/>
3
- </svg>