react-speakeazii 1.0.2 → 1.0.3
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/README.md +172 -0
- package/dist/components/Blogs.d.ts +45 -0
- package/dist/components/ContactForm.d.ts +7 -2
- package/dist/components/Products.d.ts +39 -0
- package/dist/components/Services.d.ts +36 -0
- package/dist/components/Testimonials.d.ts +33 -0
- package/dist/components/index.d.ts +7 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/helperfunctions.d.ts +3 -0
- package/package.json +11 -3
|
@@ -5,7 +5,10 @@ interface MessagePayload {
|
|
|
5
5
|
subject?: string;
|
|
6
6
|
message: string;
|
|
7
7
|
}
|
|
8
|
+
export declare function cn(...inputs: any[]): string;
|
|
8
9
|
export declare const getReviews: (apikey: string) => Promise<unknown>;
|
|
9
10
|
export declare const getBlogs: (apikey: string) => Promise<unknown>;
|
|
11
|
+
export declare const getServices: (apikey: string) => Promise<unknown>;
|
|
12
|
+
export declare const getProducts: (apikey: string) => Promise<unknown>;
|
|
10
13
|
export declare const sendMessage: (apikey: string, { name, email, phone, subject, message }: MessagePayload) => Promise<unknown>;
|
|
11
14
|
export {};
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-speakeazii",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "Speakeasy is a TypeScript package that provides everything you need for an interactive portfolio. Easily add blogs, reviews, messages, and more directly to your pages. The package offers ready-to-use React components and utility functions for seamless display and management of your content, helping you create a dynamic and engaging portfolio experience.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
10
|
+
"index.js",
|
|
10
11
|
"README.md"
|
|
11
12
|
],
|
|
12
13
|
"scripts": {
|
|
@@ -37,6 +38,9 @@
|
|
|
37
38
|
},
|
|
38
39
|
"dependencies": {
|
|
39
40
|
"axios": "^1.12.2",
|
|
41
|
+
"clsx": "^2.1.1",
|
|
42
|
+
"react-fast-marquee": "^1.6.5",
|
|
43
|
+
"tailwind-merge": "^3.4.0",
|
|
40
44
|
"tslib": "^2.8.1"
|
|
41
45
|
},
|
|
42
46
|
"keywords": [
|
|
@@ -46,6 +50,10 @@
|
|
|
46
50
|
"toast",
|
|
47
51
|
"react-component",
|
|
48
52
|
"blog",
|
|
49
|
-
"messages"
|
|
53
|
+
"messages",
|
|
54
|
+
"services",
|
|
55
|
+
"portfolio",
|
|
56
|
+
"static",
|
|
57
|
+
"website"
|
|
50
58
|
]
|
|
51
59
|
}
|