omui-lib 1.0.17 → 1.0.19
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.
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
// src/components/TeamMemberCard/TeamMemberCard.jsx
|
|
2
|
+
import React from "react";
|
|
3
|
+
var TeamMemberCard = ({
|
|
4
|
+
image = "https://i.pravatar.cc/300?img=12",
|
|
5
|
+
name = "Alex Johnson",
|
|
6
|
+
role = "Senior Developer",
|
|
7
|
+
bio = "Passionate about building scalable applications and creating great user experiences.",
|
|
8
|
+
social = {
|
|
9
|
+
github: "#",
|
|
10
|
+
linkedin: "#",
|
|
11
|
+
twitter: "#"
|
|
12
|
+
},
|
|
13
|
+
color = "#6366f1"
|
|
14
|
+
}) => {
|
|
15
|
+
return /* @__PURE__ */ React.createElement(
|
|
16
|
+
"div",
|
|
17
|
+
{
|
|
18
|
+
style: {
|
|
19
|
+
width: "300px",
|
|
20
|
+
padding: "24px",
|
|
21
|
+
textAlign: "center",
|
|
22
|
+
borderRadius: "20px",
|
|
23
|
+
background: "rgba(255,255,255,0.08)",
|
|
24
|
+
border: "1px solid rgba(255,255,255,0.12)",
|
|
25
|
+
backdropFilter: "blur(12px)",
|
|
26
|
+
WebkitBackdropFilter: "blur(12px)",
|
|
27
|
+
color: "#fff",
|
|
28
|
+
boxShadow: "0 10px 30px rgba(0,0,0,0.2)"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
/* @__PURE__ */ React.createElement(
|
|
32
|
+
"img",
|
|
33
|
+
{
|
|
34
|
+
src: image,
|
|
35
|
+
alt: name,
|
|
36
|
+
style: {
|
|
37
|
+
width: "100px",
|
|
38
|
+
height: "100px",
|
|
39
|
+
objectFit: "cover",
|
|
40
|
+
borderRadius: "50%",
|
|
41
|
+
border: `3px solid ${color}`,
|
|
42
|
+
marginBottom: "16px"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
),
|
|
46
|
+
/* @__PURE__ */ React.createElement(
|
|
47
|
+
"h2",
|
|
48
|
+
{
|
|
49
|
+
style: {
|
|
50
|
+
margin: "0 0 6px",
|
|
51
|
+
fontSize: "20px",
|
|
52
|
+
fontWeight: "600"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
name
|
|
56
|
+
),
|
|
57
|
+
/* @__PURE__ */ React.createElement(
|
|
58
|
+
"p",
|
|
59
|
+
{
|
|
60
|
+
style: {
|
|
61
|
+
margin: "0 0 14px",
|
|
62
|
+
color,
|
|
63
|
+
fontSize: "14px",
|
|
64
|
+
fontWeight: "500"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
role
|
|
68
|
+
),
|
|
69
|
+
/* @__PURE__ */ React.createElement(
|
|
70
|
+
"p",
|
|
71
|
+
{
|
|
72
|
+
style: {
|
|
73
|
+
margin: "0 0 20px",
|
|
74
|
+
color: "rgba(255,255,255,0.6)",
|
|
75
|
+
fontSize: "13px",
|
|
76
|
+
lineHeight: "1.6"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
bio
|
|
80
|
+
),
|
|
81
|
+
/* @__PURE__ */ React.createElement(
|
|
82
|
+
"div",
|
|
83
|
+
{
|
|
84
|
+
style: {
|
|
85
|
+
display: "flex",
|
|
86
|
+
justifyContent: "center",
|
|
87
|
+
gap: "10px"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
/* @__PURE__ */ React.createElement(
|
|
91
|
+
"a",
|
|
92
|
+
{
|
|
93
|
+
href: social.github,
|
|
94
|
+
target: "_blank",
|
|
95
|
+
rel: "noopener noreferrer",
|
|
96
|
+
style: {
|
|
97
|
+
width: "36px",
|
|
98
|
+
height: "36px",
|
|
99
|
+
display: "flex",
|
|
100
|
+
justifyContent: "center",
|
|
101
|
+
alignItems: "center",
|
|
102
|
+
borderRadius: "50%",
|
|
103
|
+
background: "rgba(255,255,255,0.08)",
|
|
104
|
+
color: "#fff",
|
|
105
|
+
textDecoration: "none",
|
|
106
|
+
fontSize: "15px"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"Git"
|
|
110
|
+
),
|
|
111
|
+
/* @__PURE__ */ React.createElement(
|
|
112
|
+
"a",
|
|
113
|
+
{
|
|
114
|
+
href: social.linkedin,
|
|
115
|
+
target: "_blank",
|
|
116
|
+
rel: "noopener noreferrer",
|
|
117
|
+
style: {
|
|
118
|
+
width: "36px",
|
|
119
|
+
height: "36px",
|
|
120
|
+
display: "flex",
|
|
121
|
+
justifyContent: "center",
|
|
122
|
+
alignItems: "center",
|
|
123
|
+
borderRadius: "50%",
|
|
124
|
+
background: "rgba(255,255,255,0.08)",
|
|
125
|
+
color: "#fff",
|
|
126
|
+
textDecoration: "none",
|
|
127
|
+
fontSize: "15px"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"In"
|
|
131
|
+
),
|
|
132
|
+
/* @__PURE__ */ React.createElement(
|
|
133
|
+
"a",
|
|
134
|
+
{
|
|
135
|
+
href: social.twitter,
|
|
136
|
+
target: "_blank",
|
|
137
|
+
rel: "noopener noreferrer",
|
|
138
|
+
style: {
|
|
139
|
+
width: "36px",
|
|
140
|
+
height: "36px",
|
|
141
|
+
display: "flex",
|
|
142
|
+
justifyContent: "center",
|
|
143
|
+
alignItems: "center",
|
|
144
|
+
borderRadius: "50%",
|
|
145
|
+
background: "rgba(255,255,255,0.08)",
|
|
146
|
+
color: "#fff",
|
|
147
|
+
textDecoration: "none",
|
|
148
|
+
fontSize: "15px"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"X"
|
|
152
|
+
)
|
|
153
|
+
)
|
|
154
|
+
);
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
export {
|
|
158
|
+
TeamMemberCard
|
|
159
|
+
};
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/components/TeamMemberCard/TeamMemberCard.jsx
|
|
30
|
+
var TeamMemberCard_exports = {};
|
|
31
|
+
__export(TeamMemberCard_exports, {
|
|
32
|
+
TeamMemberCard: () => TeamMemberCard
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(TeamMemberCard_exports);
|
|
35
|
+
var import_react = __toESM(require("react"));
|
|
36
|
+
var TeamMemberCard = ({
|
|
37
|
+
image = "https://i.pravatar.cc/300?img=12",
|
|
38
|
+
name = "Alex Johnson",
|
|
39
|
+
role = "Senior Developer",
|
|
40
|
+
bio = "Passionate about building scalable applications and creating great user experiences.",
|
|
41
|
+
social = {
|
|
42
|
+
github: "#",
|
|
43
|
+
linkedin: "#",
|
|
44
|
+
twitter: "#"
|
|
45
|
+
},
|
|
46
|
+
color = "#6366f1"
|
|
47
|
+
}) => {
|
|
48
|
+
return /* @__PURE__ */ import_react.default.createElement(
|
|
49
|
+
"div",
|
|
50
|
+
{
|
|
51
|
+
style: {
|
|
52
|
+
width: "300px",
|
|
53
|
+
padding: "24px",
|
|
54
|
+
textAlign: "center",
|
|
55
|
+
borderRadius: "20px",
|
|
56
|
+
background: "rgba(255,255,255,0.08)",
|
|
57
|
+
border: "1px solid rgba(255,255,255,0.12)",
|
|
58
|
+
backdropFilter: "blur(12px)",
|
|
59
|
+
WebkitBackdropFilter: "blur(12px)",
|
|
60
|
+
color: "#fff",
|
|
61
|
+
boxShadow: "0 10px 30px rgba(0,0,0,0.2)"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
65
|
+
"img",
|
|
66
|
+
{
|
|
67
|
+
src: image,
|
|
68
|
+
alt: name,
|
|
69
|
+
style: {
|
|
70
|
+
width: "100px",
|
|
71
|
+
height: "100px",
|
|
72
|
+
objectFit: "cover",
|
|
73
|
+
borderRadius: "50%",
|
|
74
|
+
border: `3px solid ${color}`,
|
|
75
|
+
marginBottom: "16px"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
),
|
|
79
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
80
|
+
"h2",
|
|
81
|
+
{
|
|
82
|
+
style: {
|
|
83
|
+
margin: "0 0 6px",
|
|
84
|
+
fontSize: "20px",
|
|
85
|
+
fontWeight: "600"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
name
|
|
89
|
+
),
|
|
90
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
91
|
+
"p",
|
|
92
|
+
{
|
|
93
|
+
style: {
|
|
94
|
+
margin: "0 0 14px",
|
|
95
|
+
color,
|
|
96
|
+
fontSize: "14px",
|
|
97
|
+
fontWeight: "500"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
role
|
|
101
|
+
),
|
|
102
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
103
|
+
"p",
|
|
104
|
+
{
|
|
105
|
+
style: {
|
|
106
|
+
margin: "0 0 20px",
|
|
107
|
+
color: "rgba(255,255,255,0.6)",
|
|
108
|
+
fontSize: "13px",
|
|
109
|
+
lineHeight: "1.6"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
bio
|
|
113
|
+
),
|
|
114
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
115
|
+
"div",
|
|
116
|
+
{
|
|
117
|
+
style: {
|
|
118
|
+
display: "flex",
|
|
119
|
+
justifyContent: "center",
|
|
120
|
+
gap: "10px"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
124
|
+
"a",
|
|
125
|
+
{
|
|
126
|
+
href: social.github,
|
|
127
|
+
target: "_blank",
|
|
128
|
+
rel: "noopener noreferrer",
|
|
129
|
+
style: {
|
|
130
|
+
width: "36px",
|
|
131
|
+
height: "36px",
|
|
132
|
+
display: "flex",
|
|
133
|
+
justifyContent: "center",
|
|
134
|
+
alignItems: "center",
|
|
135
|
+
borderRadius: "50%",
|
|
136
|
+
background: "rgba(255,255,255,0.08)",
|
|
137
|
+
color: "#fff",
|
|
138
|
+
textDecoration: "none",
|
|
139
|
+
fontSize: "15px"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"Git"
|
|
143
|
+
),
|
|
144
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
145
|
+
"a",
|
|
146
|
+
{
|
|
147
|
+
href: social.linkedin,
|
|
148
|
+
target: "_blank",
|
|
149
|
+
rel: "noopener noreferrer",
|
|
150
|
+
style: {
|
|
151
|
+
width: "36px",
|
|
152
|
+
height: "36px",
|
|
153
|
+
display: "flex",
|
|
154
|
+
justifyContent: "center",
|
|
155
|
+
alignItems: "center",
|
|
156
|
+
borderRadius: "50%",
|
|
157
|
+
background: "rgba(255,255,255,0.08)",
|
|
158
|
+
color: "#fff",
|
|
159
|
+
textDecoration: "none",
|
|
160
|
+
fontSize: "15px"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"In"
|
|
164
|
+
),
|
|
165
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
166
|
+
"a",
|
|
167
|
+
{
|
|
168
|
+
href: social.twitter,
|
|
169
|
+
target: "_blank",
|
|
170
|
+
rel: "noopener noreferrer",
|
|
171
|
+
style: {
|
|
172
|
+
width: "36px",
|
|
173
|
+
height: "36px",
|
|
174
|
+
display: "flex",
|
|
175
|
+
justifyContent: "center",
|
|
176
|
+
alignItems: "center",
|
|
177
|
+
borderRadius: "50%",
|
|
178
|
+
background: "rgba(255,255,255,0.08)",
|
|
179
|
+
color: "#fff",
|
|
180
|
+
textDecoration: "none",
|
|
181
|
+
fontSize: "15px"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"X"
|
|
185
|
+
)
|
|
186
|
+
)
|
|
187
|
+
);
|
|
188
|
+
};
|
|
189
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
190
|
+
0 && (module.exports = {
|
|
191
|
+
TeamMemberCard
|
|
192
|
+
});
|
package/dist/index.js
CHANGED
|
@@ -44,6 +44,7 @@ __export(index_exports, {
|
|
|
44
44
|
SliderCard: () => SliderCard,
|
|
45
45
|
StatsCard: () => StatsCard,
|
|
46
46
|
SwipeCard: () => SwipeCard,
|
|
47
|
+
TeamMemberCard: () => TeamMemberCard,
|
|
47
48
|
TestimonialCard: () => TestimonialCard,
|
|
48
49
|
ThumbnailCard: () => ThumbnailCard
|
|
49
50
|
});
|
|
@@ -1680,6 +1681,162 @@ var NotificationCard = ({
|
|
|
1680
1681
|
)
|
|
1681
1682
|
);
|
|
1682
1683
|
};
|
|
1684
|
+
|
|
1685
|
+
// src/components/TeamMemberCard/TeamMemberCard.jsx
|
|
1686
|
+
var import_react18 = __toESM(require("react"));
|
|
1687
|
+
var TeamMemberCard = ({
|
|
1688
|
+
image = "https://i.pravatar.cc/300?img=12",
|
|
1689
|
+
name = "Alex Johnson",
|
|
1690
|
+
role = "Senior Developer",
|
|
1691
|
+
bio = "Passionate about building scalable applications and creating great user experiences.",
|
|
1692
|
+
social = {
|
|
1693
|
+
github: "#",
|
|
1694
|
+
linkedin: "#",
|
|
1695
|
+
twitter: "#"
|
|
1696
|
+
},
|
|
1697
|
+
color = "#6366f1"
|
|
1698
|
+
}) => {
|
|
1699
|
+
return /* @__PURE__ */ import_react18.default.createElement(
|
|
1700
|
+
"div",
|
|
1701
|
+
{
|
|
1702
|
+
style: {
|
|
1703
|
+
width: "300px",
|
|
1704
|
+
padding: "24px",
|
|
1705
|
+
textAlign: "center",
|
|
1706
|
+
borderRadius: "20px",
|
|
1707
|
+
background: "rgba(255,255,255,0.08)",
|
|
1708
|
+
border: "1px solid rgba(255,255,255,0.12)",
|
|
1709
|
+
backdropFilter: "blur(12px)",
|
|
1710
|
+
WebkitBackdropFilter: "blur(12px)",
|
|
1711
|
+
color: "#fff",
|
|
1712
|
+
boxShadow: "0 10px 30px rgba(0,0,0,0.2)"
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
/* @__PURE__ */ import_react18.default.createElement(
|
|
1716
|
+
"img",
|
|
1717
|
+
{
|
|
1718
|
+
src: image,
|
|
1719
|
+
alt: name,
|
|
1720
|
+
style: {
|
|
1721
|
+
width: "100px",
|
|
1722
|
+
height: "100px",
|
|
1723
|
+
objectFit: "cover",
|
|
1724
|
+
borderRadius: "50%",
|
|
1725
|
+
border: `3px solid ${color}`,
|
|
1726
|
+
marginBottom: "16px"
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
),
|
|
1730
|
+
/* @__PURE__ */ import_react18.default.createElement(
|
|
1731
|
+
"h2",
|
|
1732
|
+
{
|
|
1733
|
+
style: {
|
|
1734
|
+
margin: "0 0 6px",
|
|
1735
|
+
fontSize: "20px",
|
|
1736
|
+
fontWeight: "600"
|
|
1737
|
+
}
|
|
1738
|
+
},
|
|
1739
|
+
name
|
|
1740
|
+
),
|
|
1741
|
+
/* @__PURE__ */ import_react18.default.createElement(
|
|
1742
|
+
"p",
|
|
1743
|
+
{
|
|
1744
|
+
style: {
|
|
1745
|
+
margin: "0 0 14px",
|
|
1746
|
+
color,
|
|
1747
|
+
fontSize: "14px",
|
|
1748
|
+
fontWeight: "500"
|
|
1749
|
+
}
|
|
1750
|
+
},
|
|
1751
|
+
role
|
|
1752
|
+
),
|
|
1753
|
+
/* @__PURE__ */ import_react18.default.createElement(
|
|
1754
|
+
"p",
|
|
1755
|
+
{
|
|
1756
|
+
style: {
|
|
1757
|
+
margin: "0 0 20px",
|
|
1758
|
+
color: "rgba(255,255,255,0.6)",
|
|
1759
|
+
fontSize: "13px",
|
|
1760
|
+
lineHeight: "1.6"
|
|
1761
|
+
}
|
|
1762
|
+
},
|
|
1763
|
+
bio
|
|
1764
|
+
),
|
|
1765
|
+
/* @__PURE__ */ import_react18.default.createElement(
|
|
1766
|
+
"div",
|
|
1767
|
+
{
|
|
1768
|
+
style: {
|
|
1769
|
+
display: "flex",
|
|
1770
|
+
justifyContent: "center",
|
|
1771
|
+
gap: "10px"
|
|
1772
|
+
}
|
|
1773
|
+
},
|
|
1774
|
+
/* @__PURE__ */ import_react18.default.createElement(
|
|
1775
|
+
"a",
|
|
1776
|
+
{
|
|
1777
|
+
href: social.github,
|
|
1778
|
+
target: "_blank",
|
|
1779
|
+
rel: "noopener noreferrer",
|
|
1780
|
+
style: {
|
|
1781
|
+
width: "36px",
|
|
1782
|
+
height: "36px",
|
|
1783
|
+
display: "flex",
|
|
1784
|
+
justifyContent: "center",
|
|
1785
|
+
alignItems: "center",
|
|
1786
|
+
borderRadius: "50%",
|
|
1787
|
+
background: "rgba(255,255,255,0.08)",
|
|
1788
|
+
color: "#fff",
|
|
1789
|
+
textDecoration: "none",
|
|
1790
|
+
fontSize: "15px"
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"Git"
|
|
1794
|
+
),
|
|
1795
|
+
/* @__PURE__ */ import_react18.default.createElement(
|
|
1796
|
+
"a",
|
|
1797
|
+
{
|
|
1798
|
+
href: social.linkedin,
|
|
1799
|
+
target: "_blank",
|
|
1800
|
+
rel: "noopener noreferrer",
|
|
1801
|
+
style: {
|
|
1802
|
+
width: "36px",
|
|
1803
|
+
height: "36px",
|
|
1804
|
+
display: "flex",
|
|
1805
|
+
justifyContent: "center",
|
|
1806
|
+
alignItems: "center",
|
|
1807
|
+
borderRadius: "50%",
|
|
1808
|
+
background: "rgba(255,255,255,0.08)",
|
|
1809
|
+
color: "#fff",
|
|
1810
|
+
textDecoration: "none",
|
|
1811
|
+
fontSize: "15px"
|
|
1812
|
+
}
|
|
1813
|
+
},
|
|
1814
|
+
"In"
|
|
1815
|
+
),
|
|
1816
|
+
/* @__PURE__ */ import_react18.default.createElement(
|
|
1817
|
+
"a",
|
|
1818
|
+
{
|
|
1819
|
+
href: social.twitter,
|
|
1820
|
+
target: "_blank",
|
|
1821
|
+
rel: "noopener noreferrer",
|
|
1822
|
+
style: {
|
|
1823
|
+
width: "36px",
|
|
1824
|
+
height: "36px",
|
|
1825
|
+
display: "flex",
|
|
1826
|
+
justifyContent: "center",
|
|
1827
|
+
alignItems: "center",
|
|
1828
|
+
borderRadius: "50%",
|
|
1829
|
+
background: "rgba(255,255,255,0.08)",
|
|
1830
|
+
color: "#fff",
|
|
1831
|
+
textDecoration: "none",
|
|
1832
|
+
fontSize: "15px"
|
|
1833
|
+
}
|
|
1834
|
+
},
|
|
1835
|
+
"X"
|
|
1836
|
+
)
|
|
1837
|
+
)
|
|
1838
|
+
);
|
|
1839
|
+
};
|
|
1683
1840
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1684
1841
|
0 && (module.exports = {
|
|
1685
1842
|
AnimatedProgressBar,
|
|
@@ -1697,6 +1854,7 @@ var NotificationCard = ({
|
|
|
1697
1854
|
SliderCard,
|
|
1698
1855
|
StatsCard,
|
|
1699
1856
|
SwipeCard,
|
|
1857
|
+
TeamMemberCard,
|
|
1700
1858
|
TestimonialCard,
|
|
1701
1859
|
ThumbnailCard
|
|
1702
1860
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ThumbnailCard
|
|
3
|
+
} from "./chunk-57QJO5RD.mjs";
|
|
1
4
|
import {
|
|
2
5
|
TestimonialCard
|
|
3
6
|
} from "./chunk-M2MU6Y4N.mjs";
|
|
4
7
|
import {
|
|
5
|
-
|
|
6
|
-
} from "./chunk-
|
|
8
|
+
TeamMemberCard
|
|
9
|
+
} from "./chunk-J7V2DYUU.mjs";
|
|
7
10
|
import {
|
|
8
11
|
Loader
|
|
9
12
|
} from "./chunk-XGVKPI3O.mjs";
|
|
10
|
-
import {
|
|
11
|
-
PricingCard
|
|
12
|
-
} from "./chunk-FGTNFYFJ.mjs";
|
|
13
13
|
import {
|
|
14
14
|
NotificationCard
|
|
15
15
|
} from "./chunk-QOVSRTLJ.mjs";
|
|
16
|
+
import {
|
|
17
|
+
PricingCard
|
|
18
|
+
} from "./chunk-FGTNFYFJ.mjs";
|
|
16
19
|
import {
|
|
17
20
|
ProductCard
|
|
18
21
|
} from "./chunk-TVYAQSOM.mjs";
|
|
@@ -65,6 +68,7 @@ export {
|
|
|
65
68
|
SliderCard,
|
|
66
69
|
StatsCard,
|
|
67
70
|
SwipeCard,
|
|
71
|
+
TeamMemberCard,
|
|
68
72
|
TestimonialCard,
|
|
69
73
|
ThumbnailCard
|
|
70
74
|
};
|