@pinerohit11/testwidget 0.1.57 → 0.1.59
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/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +463 -34
- package/dist/index.mjs +456 -30
- package/global.d.ts +2 -8
- package/next.config.ts +7 -12
- package/package.json +10 -8
package/global.d.ts
CHANGED
@@ -1,9 +1,3 @@
|
|
1
1
|
interface Window {
|
2
|
-
|
3
|
-
}
|
4
|
-
|
5
|
-
declare module 'bootstrap/dist/js/bootstrap.bundle.min.js' {
|
6
|
-
// eslint-disable-next-line @typescript-eslint/ban-types
|
7
|
-
const content: unknown; // Safest way to type it as any value
|
8
|
-
export default content;
|
9
|
-
}
|
2
|
+
DatacapWebToken: any; // Replace with the actual type of DatacapWebToken if it's not a string
|
3
|
+
}
|
package/next.config.ts
CHANGED
@@ -1,12 +1,7 @@
|
|
1
|
-
import type { NextConfig } from "next";
|
2
|
-
|
3
|
-
const nextConfig: NextConfig = {
|
4
|
-
/* config options here */
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
// ignoreDuringBuilds: true,
|
9
|
-
// },
|
10
|
-
};
|
11
|
-
|
12
|
-
export default nextConfig;
|
1
|
+
import type { NextConfig } from "next";
|
2
|
+
|
3
|
+
const nextConfig: NextConfig = {
|
4
|
+
/* config options here */
|
5
|
+
};
|
6
|
+
|
7
|
+
export default nextConfig;
|
package/package.json
CHANGED
@@ -1,16 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pinerohit11/testwidget",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.59",
|
4
4
|
"private": false,
|
5
5
|
"scripts": {
|
6
|
-
"dev": "next dev
|
6
|
+
"dev": "next dev",
|
7
7
|
"build": "next build",
|
8
8
|
"start": "next start",
|
9
9
|
"lint": "next lint",
|
10
10
|
"bundle": "tsup src/app/index.ts"
|
11
11
|
},
|
12
12
|
"dependencies": {
|
13
|
-
"axios": "^1.8.0",
|
14
13
|
"bootstrap": "^5.3.3",
|
15
14
|
"credit-card-type": "^10.0.1",
|
16
15
|
"next": "15.0.3",
|
@@ -18,9 +17,9 @@
|
|
18
17
|
"react": "18.3.1",
|
19
18
|
"react-bootstrap": "^2.10.5",
|
20
19
|
"react-bs-datatable": "^3.15.0",
|
21
|
-
"react-datepicker": "^7.
|
22
|
-
"react-
|
23
|
-
"react-
|
20
|
+
"react-datepicker": "^7.5.0",
|
21
|
+
"react-toastify": "^10.0.6",
|
22
|
+
"react-dom": "18.3.1"
|
24
23
|
},
|
25
24
|
"peerdependencies": {
|
26
25
|
"next": "15.0.3",
|
@@ -28,17 +27,20 @@
|
|
28
27
|
"react-dom": "18.3.1"
|
29
28
|
},
|
30
29
|
"devDependencies": {
|
31
|
-
"@types/bootstrap": "^5.2.10",
|
32
30
|
"@types/node": "^20",
|
33
31
|
"@types/node-forge": "^1.3.11",
|
34
32
|
"@types/react": "^18",
|
35
33
|
"@types/react-dom": "^18",
|
34
|
+
"credit-card-type": "^10.0.1",
|
36
35
|
"eslint": "^8",
|
37
36
|
"eslint-config-next": "15.0.3",
|
37
|
+
"react-bs-datatable": "^3.15.0",
|
38
|
+
"react-datepicker": "^7.5.0",
|
39
|
+
"react-toastify": "^10.0.6",
|
38
40
|
"tsup": "^8.3.5",
|
39
41
|
"typescript": "^5"
|
40
42
|
},
|
41
|
-
"author": "
|
43
|
+
"author": "your_name",
|
42
44
|
"license": "MIT",
|
43
45
|
"keywords": [
|
44
46
|
"nextjs",
|