omui-lib 1.0.14 → 1.0.16
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,87 @@
|
|
|
1
|
+
// src/components/FeatureCard/FeatureCard.jsx
|
|
2
|
+
import React from "react";
|
|
3
|
+
var FeatureCard = ({
|
|
4
|
+
icon = "\u26A1",
|
|
5
|
+
title = "Lightning Fast",
|
|
6
|
+
description = "Experience blazing-fast performance with optimized architecture and modern technologies.",
|
|
7
|
+
color = "#6366f1",
|
|
8
|
+
buttonText = "Learn More"
|
|
9
|
+
}) => {
|
|
10
|
+
return /* @__PURE__ */ React.createElement(
|
|
11
|
+
"div",
|
|
12
|
+
{
|
|
13
|
+
style: {
|
|
14
|
+
width: "300px",
|
|
15
|
+
padding: "26px",
|
|
16
|
+
borderRadius: "20px",
|
|
17
|
+
background: "rgba(255,255,255,0.08)",
|
|
18
|
+
border: "1px solid rgba(255,255,255,0.12)",
|
|
19
|
+
backdropFilter: "blur(12px)",
|
|
20
|
+
WebkitBackdropFilter: "blur(12px)",
|
|
21
|
+
color: "#fff",
|
|
22
|
+
boxShadow: "0 10px 30px rgba(0,0,0,0.2)"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
/* @__PURE__ */ React.createElement(
|
|
26
|
+
"div",
|
|
27
|
+
{
|
|
28
|
+
style: {
|
|
29
|
+
width: "52px",
|
|
30
|
+
height: "52px",
|
|
31
|
+
display: "flex",
|
|
32
|
+
justifyContent: "center",
|
|
33
|
+
alignItems: "center",
|
|
34
|
+
borderRadius: "14px",
|
|
35
|
+
background: `${color}20`,
|
|
36
|
+
color,
|
|
37
|
+
fontSize: "25px",
|
|
38
|
+
marginBottom: "20px"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
icon
|
|
42
|
+
),
|
|
43
|
+
/* @__PURE__ */ React.createElement(
|
|
44
|
+
"h2",
|
|
45
|
+
{
|
|
46
|
+
style: {
|
|
47
|
+
margin: "0 0 10px",
|
|
48
|
+
fontSize: "20px",
|
|
49
|
+
fontWeight: "600"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
title
|
|
53
|
+
),
|
|
54
|
+
/* @__PURE__ */ React.createElement(
|
|
55
|
+
"p",
|
|
56
|
+
{
|
|
57
|
+
style: {
|
|
58
|
+
margin: "0 0 20px",
|
|
59
|
+
color: "rgba(255,255,255,0.6)",
|
|
60
|
+
fontSize: "14px",
|
|
61
|
+
lineHeight: "1.7"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
description
|
|
65
|
+
),
|
|
66
|
+
/* @__PURE__ */ React.createElement(
|
|
67
|
+
"button",
|
|
68
|
+
{
|
|
69
|
+
style: {
|
|
70
|
+
padding: "9px 0",
|
|
71
|
+
border: "none",
|
|
72
|
+
background: "transparent",
|
|
73
|
+
color,
|
|
74
|
+
fontSize: "14px",
|
|
75
|
+
fontWeight: "600",
|
|
76
|
+
cursor: "pointer"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
buttonText,
|
|
80
|
+
" \u2192"
|
|
81
|
+
)
|
|
82
|
+
);
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export {
|
|
86
|
+
FeatureCard
|
|
87
|
+
};
|
|
@@ -0,0 +1,120 @@
|
|
|
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/FeatureCard/FeatureCard.jsx
|
|
30
|
+
var FeatureCard_exports = {};
|
|
31
|
+
__export(FeatureCard_exports, {
|
|
32
|
+
FeatureCard: () => FeatureCard
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(FeatureCard_exports);
|
|
35
|
+
var import_react = __toESM(require("react"));
|
|
36
|
+
var FeatureCard = ({
|
|
37
|
+
icon = "\u26A1",
|
|
38
|
+
title = "Lightning Fast",
|
|
39
|
+
description = "Experience blazing-fast performance with optimized architecture and modern technologies.",
|
|
40
|
+
color = "#6366f1",
|
|
41
|
+
buttonText = "Learn More"
|
|
42
|
+
}) => {
|
|
43
|
+
return /* @__PURE__ */ import_react.default.createElement(
|
|
44
|
+
"div",
|
|
45
|
+
{
|
|
46
|
+
style: {
|
|
47
|
+
width: "300px",
|
|
48
|
+
padding: "26px",
|
|
49
|
+
borderRadius: "20px",
|
|
50
|
+
background: "rgba(255,255,255,0.08)",
|
|
51
|
+
border: "1px solid rgba(255,255,255,0.12)",
|
|
52
|
+
backdropFilter: "blur(12px)",
|
|
53
|
+
WebkitBackdropFilter: "blur(12px)",
|
|
54
|
+
color: "#fff",
|
|
55
|
+
boxShadow: "0 10px 30px rgba(0,0,0,0.2)"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
59
|
+
"div",
|
|
60
|
+
{
|
|
61
|
+
style: {
|
|
62
|
+
width: "52px",
|
|
63
|
+
height: "52px",
|
|
64
|
+
display: "flex",
|
|
65
|
+
justifyContent: "center",
|
|
66
|
+
alignItems: "center",
|
|
67
|
+
borderRadius: "14px",
|
|
68
|
+
background: `${color}20`,
|
|
69
|
+
color,
|
|
70
|
+
fontSize: "25px",
|
|
71
|
+
marginBottom: "20px"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
icon
|
|
75
|
+
),
|
|
76
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
77
|
+
"h2",
|
|
78
|
+
{
|
|
79
|
+
style: {
|
|
80
|
+
margin: "0 0 10px",
|
|
81
|
+
fontSize: "20px",
|
|
82
|
+
fontWeight: "600"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
title
|
|
86
|
+
),
|
|
87
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
88
|
+
"p",
|
|
89
|
+
{
|
|
90
|
+
style: {
|
|
91
|
+
margin: "0 0 20px",
|
|
92
|
+
color: "rgba(255,255,255,0.6)",
|
|
93
|
+
fontSize: "14px",
|
|
94
|
+
lineHeight: "1.7"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
description
|
|
98
|
+
),
|
|
99
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
100
|
+
"button",
|
|
101
|
+
{
|
|
102
|
+
style: {
|
|
103
|
+
padding: "9px 0",
|
|
104
|
+
border: "none",
|
|
105
|
+
background: "transparent",
|
|
106
|
+
color,
|
|
107
|
+
fontSize: "14px",
|
|
108
|
+
fontWeight: "600",
|
|
109
|
+
cursor: "pointer"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
buttonText,
|
|
113
|
+
" \u2192"
|
|
114
|
+
)
|
|
115
|
+
);
|
|
116
|
+
};
|
|
117
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
118
|
+
0 && (module.exports = {
|
|
119
|
+
FeatureCard
|
|
120
|
+
});
|
package/dist/index.js
CHANGED
|
@@ -33,6 +33,7 @@ __export(index_exports, {
|
|
|
33
33
|
BlogCard: () => BlogCard,
|
|
34
34
|
Button: () => Button,
|
|
35
35
|
CommentCard: () => CommentCard,
|
|
36
|
+
FeatureCard: () => FeatureCard,
|
|
36
37
|
Graph: () => Graph,
|
|
37
38
|
HoverCard: () => HoverCard,
|
|
38
39
|
Loader: () => Loader,
|
|
@@ -1481,12 +1482,97 @@ var StatsCard = ({
|
|
|
1481
1482
|
)
|
|
1482
1483
|
);
|
|
1483
1484
|
};
|
|
1485
|
+
|
|
1486
|
+
// src/components/FeatureCard/FeatureCard.jsx
|
|
1487
|
+
var import_react16 = __toESM(require("react"));
|
|
1488
|
+
var FeatureCard = ({
|
|
1489
|
+
icon = "\u26A1",
|
|
1490
|
+
title = "Lightning Fast",
|
|
1491
|
+
description = "Experience blazing-fast performance with optimized architecture and modern technologies.",
|
|
1492
|
+
color = "#6366f1",
|
|
1493
|
+
buttonText = "Learn More"
|
|
1494
|
+
}) => {
|
|
1495
|
+
return /* @__PURE__ */ import_react16.default.createElement(
|
|
1496
|
+
"div",
|
|
1497
|
+
{
|
|
1498
|
+
style: {
|
|
1499
|
+
width: "300px",
|
|
1500
|
+
padding: "26px",
|
|
1501
|
+
borderRadius: "20px",
|
|
1502
|
+
background: "rgba(255,255,255,0.08)",
|
|
1503
|
+
border: "1px solid rgba(255,255,255,0.12)",
|
|
1504
|
+
backdropFilter: "blur(12px)",
|
|
1505
|
+
WebkitBackdropFilter: "blur(12px)",
|
|
1506
|
+
color: "#fff",
|
|
1507
|
+
boxShadow: "0 10px 30px rgba(0,0,0,0.2)"
|
|
1508
|
+
}
|
|
1509
|
+
},
|
|
1510
|
+
/* @__PURE__ */ import_react16.default.createElement(
|
|
1511
|
+
"div",
|
|
1512
|
+
{
|
|
1513
|
+
style: {
|
|
1514
|
+
width: "52px",
|
|
1515
|
+
height: "52px",
|
|
1516
|
+
display: "flex",
|
|
1517
|
+
justifyContent: "center",
|
|
1518
|
+
alignItems: "center",
|
|
1519
|
+
borderRadius: "14px",
|
|
1520
|
+
background: `${color}20`,
|
|
1521
|
+
color,
|
|
1522
|
+
fontSize: "25px",
|
|
1523
|
+
marginBottom: "20px"
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
1526
|
+
icon
|
|
1527
|
+
),
|
|
1528
|
+
/* @__PURE__ */ import_react16.default.createElement(
|
|
1529
|
+
"h2",
|
|
1530
|
+
{
|
|
1531
|
+
style: {
|
|
1532
|
+
margin: "0 0 10px",
|
|
1533
|
+
fontSize: "20px",
|
|
1534
|
+
fontWeight: "600"
|
|
1535
|
+
}
|
|
1536
|
+
},
|
|
1537
|
+
title
|
|
1538
|
+
),
|
|
1539
|
+
/* @__PURE__ */ import_react16.default.createElement(
|
|
1540
|
+
"p",
|
|
1541
|
+
{
|
|
1542
|
+
style: {
|
|
1543
|
+
margin: "0 0 20px",
|
|
1544
|
+
color: "rgba(255,255,255,0.6)",
|
|
1545
|
+
fontSize: "14px",
|
|
1546
|
+
lineHeight: "1.7"
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
description
|
|
1550
|
+
),
|
|
1551
|
+
/* @__PURE__ */ import_react16.default.createElement(
|
|
1552
|
+
"button",
|
|
1553
|
+
{
|
|
1554
|
+
style: {
|
|
1555
|
+
padding: "9px 0",
|
|
1556
|
+
border: "none",
|
|
1557
|
+
background: "transparent",
|
|
1558
|
+
color,
|
|
1559
|
+
fontSize: "14px",
|
|
1560
|
+
fontWeight: "600",
|
|
1561
|
+
cursor: "pointer"
|
|
1562
|
+
}
|
|
1563
|
+
},
|
|
1564
|
+
buttonText,
|
|
1565
|
+
" \u2192"
|
|
1566
|
+
)
|
|
1567
|
+
);
|
|
1568
|
+
};
|
|
1484
1569
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1485
1570
|
0 && (module.exports = {
|
|
1486
1571
|
AnimatedProgressBar,
|
|
1487
1572
|
BlogCard,
|
|
1488
1573
|
Button,
|
|
1489
1574
|
CommentCard,
|
|
1575
|
+
FeatureCard,
|
|
1490
1576
|
Graph,
|
|
1491
1577
|
HoverCard,
|
|
1492
1578
|
Loader,
|
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ThumbnailCard
|
|
3
|
+
} from "./chunk-57QJO5RD.mjs";
|
|
4
|
+
import {
|
|
5
|
+
Loader
|
|
6
|
+
} from "./chunk-XGVKPI3O.mjs";
|
|
1
7
|
import {
|
|
2
8
|
PricingCard
|
|
3
9
|
} from "./chunk-FGTNFYFJ.mjs";
|
|
@@ -19,35 +25,33 @@ import {
|
|
|
19
25
|
import {
|
|
20
26
|
TestimonialCard
|
|
21
27
|
} from "./chunk-M2MU6Y4N.mjs";
|
|
22
|
-
import {
|
|
23
|
-
ThumbnailCard
|
|
24
|
-
} from "./chunk-57QJO5RD.mjs";
|
|
25
28
|
import {
|
|
26
29
|
AnimatedProgressBar
|
|
27
30
|
} from "./chunk-VA6HDMVP.mjs";
|
|
28
|
-
import {
|
|
29
|
-
Button
|
|
30
|
-
} from "./chunk-5LA6VVEY.mjs";
|
|
31
31
|
import {
|
|
32
32
|
BlogCard
|
|
33
33
|
} from "./chunk-KIF4X4NE.mjs";
|
|
34
|
+
import {
|
|
35
|
+
Button
|
|
36
|
+
} from "./chunk-5LA6VVEY.mjs";
|
|
34
37
|
import {
|
|
35
38
|
CommentCard
|
|
36
39
|
} from "./chunk-EWRW432G.mjs";
|
|
40
|
+
import {
|
|
41
|
+
FeatureCard
|
|
42
|
+
} from "./chunk-FQO2D4M6.mjs";
|
|
37
43
|
import {
|
|
38
44
|
Graph
|
|
39
45
|
} from "./chunk-SJ4MEFAG.mjs";
|
|
40
46
|
import {
|
|
41
47
|
HoverCard
|
|
42
48
|
} from "./chunk-MQOZXOBV.mjs";
|
|
43
|
-
import {
|
|
44
|
-
Loader
|
|
45
|
-
} from "./chunk-XGVKPI3O.mjs";
|
|
46
49
|
export {
|
|
47
50
|
AnimatedProgressBar,
|
|
48
51
|
BlogCard,
|
|
49
52
|
Button,
|
|
50
53
|
CommentCard,
|
|
54
|
+
FeatureCard,
|
|
51
55
|
Graph,
|
|
52
56
|
HoverCard,
|
|
53
57
|
Loader,
|