meticulous-ui 3.0.7 → 3.1.1
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 +1 -0
- package/components/Carousel/Carousel.js +189 -0
- package/components/Carousel/index.js +4 -0
- package/components/Carousel/styles.js +166 -0
- package/index.js +28 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,6 +78,7 @@ import blue from 'meticulous-ui/colors/blue';
|
|
|
78
78
|
| `PageLoader` | Renders a loader with line at the top of page |
|
|
79
79
|
| `Button` | Renders a button to click & take an action |
|
|
80
80
|
| `Shimmer` | Animated skeleton loading placeholder |
|
|
81
|
+
| `Carousel` | Carousel providing slider between components displaying slides |
|
|
81
82
|
| `RootComponent` | This is the required wrapper for any app that uses meticulous-ui |
|
|
82
83
|
|
|
83
84
|
## 📦 Icon Components
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import { jsxs as X, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { useState as a, useRef as T, useEffect as E } from "react";
|
|
3
|
+
import le from "../Icons/ChevronLeft/ChevronLeft.js";
|
|
4
|
+
import de from "../Icons/ChevronRight/ChevronRight.js";
|
|
5
|
+
import { Wrapper as he, SlideArea as fe, NavButton as N, SlideViewport as me, SlideTrack as pe, PauseButton as ve, ProgressBar as we, DotsWrapper as ge, Dot as Me } from "./styles.js";
|
|
6
|
+
const I = 50, R = 2e3, be = () => /* @__PURE__ */ X("svg", { width: 12, height: 12, viewBox: "0 0 12 12", fill: "currentColor", "aria-hidden": "true", children: [
|
|
7
|
+
/* @__PURE__ */ r("rect", { x: "2", y: "1", width: "3", height: "10", rx: "1" }),
|
|
8
|
+
/* @__PURE__ */ r("rect", { x: "7", y: "1", width: "3", height: "10", rx: "1" })
|
|
9
|
+
] }), $e = () => /* @__PURE__ */ r("svg", { width: 12, height: 12, viewBox: "0 0 12 12", fill: "currentColor", "aria-hidden": "true", children: /* @__PURE__ */ r("path", { d: "M2 1.5l9 4.5-9 4.5V1.5z" }) }), ke = ({
|
|
10
|
+
data: P,
|
|
11
|
+
renderCarousel: q,
|
|
12
|
+
visibleSlides: k = 1,
|
|
13
|
+
overlayArrows: o = !1,
|
|
14
|
+
arrowTop: v,
|
|
15
|
+
areDotsHidden: Y = !1,
|
|
16
|
+
autoSlide: w = !1,
|
|
17
|
+
autoSlideSec: C = 3,
|
|
18
|
+
loop: l = !1,
|
|
19
|
+
dragToSlide: g = !1,
|
|
20
|
+
liveDrag: M = !1,
|
|
21
|
+
liveDragMobile: L = !0,
|
|
22
|
+
showProgress: G = !1,
|
|
23
|
+
defaultIndex: J = 0,
|
|
24
|
+
onSlideChange: y
|
|
25
|
+
}) => {
|
|
26
|
+
var K;
|
|
27
|
+
const [n, b] = a(J), [B, d] = a(!0), [V, W] = a(!1), [h, f] = a(!1), [Q, m] = a(0), [F, p] = a(!1), [D, _] = a(!1), c = T(null), i = T(null), u = T(null), z = T(null);
|
|
28
|
+
E(() => {
|
|
29
|
+
const e = window.matchMedia("(max-width: 1024px)");
|
|
30
|
+
_(e.matches);
|
|
31
|
+
const t = (ue) => _(ue.matches);
|
|
32
|
+
return e.addEventListener("change", t), () => e.removeEventListener("change", t);
|
|
33
|
+
}, []);
|
|
34
|
+
const s = P.length - k, $ = () => b((e) => l && e === 0 ? s : Math.max(e - 1, 0)), x = () => b((e) => l && e >= s ? 0 : Math.min(e + 1, s));
|
|
35
|
+
E(() => {
|
|
36
|
+
y == null || y(n);
|
|
37
|
+
}, [n]);
|
|
38
|
+
const H = () => {
|
|
39
|
+
o && (clearTimeout(u.current), d(!0), u.current = setTimeout(() => d(!1), R));
|
|
40
|
+
}, Z = () => {
|
|
41
|
+
f(!0), o && (clearTimeout(u.current), d(!0));
|
|
42
|
+
}, S = () => {
|
|
43
|
+
f(!1), o && (u.current = setTimeout(() => d(!1), R));
|
|
44
|
+
};
|
|
45
|
+
E(() => {
|
|
46
|
+
if (o)
|
|
47
|
+
return u.current = setTimeout(() => d(!1), R), () => clearTimeout(u.current);
|
|
48
|
+
}, [o]), E(() => {
|
|
49
|
+
if (!w || h) return;
|
|
50
|
+
const e = setInterval(() => {
|
|
51
|
+
b((t) => t >= s ? 0 : t + 1);
|
|
52
|
+
}, C * 1e3);
|
|
53
|
+
return () => clearInterval(e);
|
|
54
|
+
}, [w, C, h, s]);
|
|
55
|
+
const U = (e) => l ? e : n === 0 && e > 0 || n === s && e < 0 ? e * 0.3 : e, ee = (e) => {
|
|
56
|
+
c.current = e.touches[0].clientX, L && D && p(!0), H();
|
|
57
|
+
}, te = (e) => {
|
|
58
|
+
!L || !D || c.current === null || m(U(e.touches[0].clientX - c.current));
|
|
59
|
+
}, re = (e) => {
|
|
60
|
+
if (L && D && (p(!1), m(0)), c.current === null) return;
|
|
61
|
+
const t = c.current - e.changedTouches[0].clientX;
|
|
62
|
+
t > I ? x() : t < -I && $(), c.current = null;
|
|
63
|
+
}, ne = (e) => {
|
|
64
|
+
g && (i.current = e.clientX, M && p(!0));
|
|
65
|
+
}, se = (e) => {
|
|
66
|
+
!g || !M || i.current === null || m(U(e.clientX - i.current));
|
|
67
|
+
}, oe = (e) => {
|
|
68
|
+
if (!g || i.current === null) return;
|
|
69
|
+
M && (p(!1), m(0));
|
|
70
|
+
const t = i.current - e.clientX;
|
|
71
|
+
t > I ? x() : t < -I && $(), i.current = null;
|
|
72
|
+
}, ie = (e) => {
|
|
73
|
+
e.key === "ArrowLeft" ? (e.preventDefault(), $()) : e.key === "ArrowRight" && (e.preventDefault(), x());
|
|
74
|
+
}, j = ((K = z.current) == null ? void 0 : K.clientWidth) ?? 0, ae = j > 0 ? Q / j * 100 : 0, ce = -(n * (100 / k)) + ae, A = v !== void 0 ? typeof v == "number" ? `${v}px` : v : void 0, O = s + 1;
|
|
75
|
+
return /* @__PURE__ */ X(
|
|
76
|
+
he,
|
|
77
|
+
{
|
|
78
|
+
onClick: H,
|
|
79
|
+
onMouseEnter: Z,
|
|
80
|
+
onMouseLeave: S,
|
|
81
|
+
onMouseMove: se,
|
|
82
|
+
onMouseUp: oe,
|
|
83
|
+
onKeyDown: ie,
|
|
84
|
+
role: "region",
|
|
85
|
+
"aria-label": "Carousel",
|
|
86
|
+
children: [
|
|
87
|
+
/* @__PURE__ */ X(
|
|
88
|
+
fe,
|
|
89
|
+
{
|
|
90
|
+
onTouchStart: ee,
|
|
91
|
+
onTouchMove: te,
|
|
92
|
+
onTouchEnd: re,
|
|
93
|
+
children: [
|
|
94
|
+
/* @__PURE__ */ r(
|
|
95
|
+
N,
|
|
96
|
+
{
|
|
97
|
+
onClick: $,
|
|
98
|
+
disabled: !l && n === 0,
|
|
99
|
+
"aria-label": "Previous slide",
|
|
100
|
+
$overlay: o,
|
|
101
|
+
$visible: B,
|
|
102
|
+
$arrowTop: A,
|
|
103
|
+
$viewportFocused: V,
|
|
104
|
+
children: /* @__PURE__ */ r(le, { size: 20, "aria-hidden": "true" })
|
|
105
|
+
}
|
|
106
|
+
),
|
|
107
|
+
/* @__PURE__ */ r(
|
|
108
|
+
me,
|
|
109
|
+
{
|
|
110
|
+
ref: z,
|
|
111
|
+
tabIndex: 0,
|
|
112
|
+
"aria-label": "Carousel slides. Use arrow keys to navigate.",
|
|
113
|
+
$draggable: g,
|
|
114
|
+
onFocus: () => {
|
|
115
|
+
W(!0), f(!0);
|
|
116
|
+
},
|
|
117
|
+
onBlur: () => {
|
|
118
|
+
W(!1), f(!1);
|
|
119
|
+
},
|
|
120
|
+
onMouseDown: ne,
|
|
121
|
+
onMouseLeave: (e) => {
|
|
122
|
+
e.buttons !== 1 && (M && F && (p(!1), m(0)), i.current = null);
|
|
123
|
+
},
|
|
124
|
+
children: /* @__PURE__ */ r(pe, { $translateX: ce, $visibleSlides: k, $dragging: F, children: P.map(q) })
|
|
125
|
+
}
|
|
126
|
+
),
|
|
127
|
+
/* @__PURE__ */ r(
|
|
128
|
+
N,
|
|
129
|
+
{
|
|
130
|
+
onClick: x,
|
|
131
|
+
disabled: !l && n === s,
|
|
132
|
+
"aria-label": "Next slide",
|
|
133
|
+
$overlay: o,
|
|
134
|
+
$visible: B,
|
|
135
|
+
$arrowTop: A,
|
|
136
|
+
$viewportFocused: V,
|
|
137
|
+
children: /* @__PURE__ */ r(de, { size: 20, "aria-hidden": "true" })
|
|
138
|
+
}
|
|
139
|
+
),
|
|
140
|
+
w && /* @__PURE__ */ r(
|
|
141
|
+
ve,
|
|
142
|
+
{
|
|
143
|
+
onClick: () => f((e) => !e),
|
|
144
|
+
"aria-label": h ? "Play slideshow" : "Pause slideshow",
|
|
145
|
+
children: h ? /* @__PURE__ */ r($e, {}) : /* @__PURE__ */ r(be, {})
|
|
146
|
+
}
|
|
147
|
+
)
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
),
|
|
151
|
+
/* @__PURE__ */ X(
|
|
152
|
+
"div",
|
|
153
|
+
{
|
|
154
|
+
"aria-live": "polite",
|
|
155
|
+
"aria-atomic": "true",
|
|
156
|
+
style: {
|
|
157
|
+
position: "absolute",
|
|
158
|
+
width: 1,
|
|
159
|
+
height: 1,
|
|
160
|
+
overflow: "hidden",
|
|
161
|
+
clip: "rect(0,0,0,0)",
|
|
162
|
+
whiteSpace: "nowrap"
|
|
163
|
+
},
|
|
164
|
+
children: [
|
|
165
|
+
"Slide ",
|
|
166
|
+
n + 1,
|
|
167
|
+
" of ",
|
|
168
|
+
O
|
|
169
|
+
]
|
|
170
|
+
}
|
|
171
|
+
),
|
|
172
|
+
w && G && /* @__PURE__ */ r(we, { $duration: C, $paused: h }, n),
|
|
173
|
+
!Y && /* @__PURE__ */ r(ge, { children: Array.from({ length: O }).map((e, t) => /* @__PURE__ */ r(
|
|
174
|
+
Me,
|
|
175
|
+
{
|
|
176
|
+
$active: t === n,
|
|
177
|
+
onClick: () => b(t),
|
|
178
|
+
"aria-label": `Slide ${t + 1} of ${O}`,
|
|
179
|
+
"aria-current": t === n ? "true" : void 0
|
|
180
|
+
},
|
|
181
|
+
t
|
|
182
|
+
)) })
|
|
183
|
+
]
|
|
184
|
+
}
|
|
185
|
+
);
|
|
186
|
+
};
|
|
187
|
+
export {
|
|
188
|
+
ke as default
|
|
189
|
+
};
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import o, { keyframes as i } from "styled-components";
|
|
2
|
+
const d = o.div`
|
|
3
|
+
position: relative;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
align-items: center;
|
|
7
|
+
width: 100%;
|
|
8
|
+
gap: 12px;
|
|
9
|
+
outline: none;
|
|
10
|
+
`, a = o.div`
|
|
11
|
+
position: relative;
|
|
12
|
+
width: 100%;
|
|
13
|
+
`, s = o.div`
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
width: 100%;
|
|
16
|
+
outline: none;
|
|
17
|
+
cursor: ${({ $draggable: e }) => e ? "grab" : "default"};
|
|
18
|
+
|
|
19
|
+
&:active {
|
|
20
|
+
cursor: ${({ $draggable: e }) => e ? "grabbing" : "default"};
|
|
21
|
+
}
|
|
22
|
+
`, p = o.div`
|
|
23
|
+
display: flex;
|
|
24
|
+
width: 100%;
|
|
25
|
+
transform: translateX(${({ $translateX: e }) => e}%);
|
|
26
|
+
transition: ${({ $dragging: e }) => e ? "none" : "transform 0.35s ease"};
|
|
27
|
+
|
|
28
|
+
@media (prefers-reduced-motion: reduce) {
|
|
29
|
+
transition: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
& > * {
|
|
33
|
+
flex: 0 0 ${({ $visibleSlides: e }) => 100 / e}%;
|
|
34
|
+
min-width: 0;
|
|
35
|
+
box-sizing: border-box;
|
|
36
|
+
}
|
|
37
|
+
`, c = o.button`
|
|
38
|
+
position: absolute;
|
|
39
|
+
top: ${({ $arrowTop: e }) => e ?? "50%"};
|
|
40
|
+
transform: translateY(-50%);
|
|
41
|
+
z-index: 1;
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
width: 32px;
|
|
46
|
+
height: 32px;
|
|
47
|
+
border-radius: 50%;
|
|
48
|
+
border: 1px solid #e0e0e0;
|
|
49
|
+
background: #fff;
|
|
50
|
+
cursor: pointer;
|
|
51
|
+
color: #333;
|
|
52
|
+
transition:
|
|
53
|
+
background 0.15s,
|
|
54
|
+
opacity 0.3s;
|
|
55
|
+
padding: 0;
|
|
56
|
+
|
|
57
|
+
&:first-of-type {
|
|
58
|
+
left: ${({ $overlay: e }) => e ? "12px" : "-16px"};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&:last-of-type {
|
|
62
|
+
right: ${({ $overlay: e }) => e ? "12px" : "-16px"};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&:hover:not(:disabled) {
|
|
66
|
+
background: #f5f5f5;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&:disabled {
|
|
70
|
+
opacity: 0.3;
|
|
71
|
+
cursor: default;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&:focus-visible {
|
|
75
|
+
outline: none;
|
|
76
|
+
background: #ffe4ec;
|
|
77
|
+
border-color: #f9a8c0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
${({ $viewportFocused: e }) => e && `
|
|
81
|
+
border-color: #bdbdbd;
|
|
82
|
+
`}
|
|
83
|
+
|
|
84
|
+
${({ $overlay: e, $visible: t }) => e && !t && `
|
|
85
|
+
opacity: 0;
|
|
86
|
+
pointer-events: none;
|
|
87
|
+
`}
|
|
88
|
+
`, l = o.div`
|
|
89
|
+
display: flex;
|
|
90
|
+
gap: 6px;
|
|
91
|
+
align-items: center;
|
|
92
|
+
`, u = o.button`
|
|
93
|
+
width: ${({ $active: e }) => e ? "20px" : "8px"};
|
|
94
|
+
height: 8px;
|
|
95
|
+
border-radius: 4px;
|
|
96
|
+
border: none;
|
|
97
|
+
background: ${({ $active: e }) => e ? "#333" : "#ccc"};
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
padding: 0;
|
|
100
|
+
transition:
|
|
101
|
+
width 0.2s ease,
|
|
102
|
+
background 0.2s ease;
|
|
103
|
+
`, r = i`
|
|
104
|
+
from { width: 0%; }
|
|
105
|
+
to { width: 100%; }
|
|
106
|
+
`, f = o.div`
|
|
107
|
+
width: 100%;
|
|
108
|
+
height: 3px;
|
|
109
|
+
background: #e0e0e0;
|
|
110
|
+
border-radius: 2px;
|
|
111
|
+
overflow: hidden;
|
|
112
|
+
position: relative;
|
|
113
|
+
|
|
114
|
+
&::after {
|
|
115
|
+
content: '';
|
|
116
|
+
position: absolute;
|
|
117
|
+
inset: 0;
|
|
118
|
+
width: 0%;
|
|
119
|
+
background: #333;
|
|
120
|
+
animation: ${r} ${({ $duration: e }) => e}s linear forwards;
|
|
121
|
+
animation-play-state: ${({ $paused: e }) => e ? "paused" : "running"};
|
|
122
|
+
|
|
123
|
+
@media (prefers-reduced-motion: reduce) {
|
|
124
|
+
animation: none;
|
|
125
|
+
width: 100%;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
`, b = o.button`
|
|
129
|
+
position: absolute;
|
|
130
|
+
bottom: 8px;
|
|
131
|
+
right: 8px;
|
|
132
|
+
z-index: 2;
|
|
133
|
+
display: flex;
|
|
134
|
+
align-items: center;
|
|
135
|
+
justify-content: center;
|
|
136
|
+
width: 24px;
|
|
137
|
+
height: 24px;
|
|
138
|
+
border-radius: 50%;
|
|
139
|
+
border: 1px solid rgba(255, 255, 255, 0.6);
|
|
140
|
+
background: rgba(0, 0, 0, 0.35);
|
|
141
|
+
color: #fff;
|
|
142
|
+
cursor: pointer;
|
|
143
|
+
padding: 0;
|
|
144
|
+
backdrop-filter: blur(2px);
|
|
145
|
+
transition: background 0.15s;
|
|
146
|
+
|
|
147
|
+
&:hover {
|
|
148
|
+
background: rgba(0, 0, 0, 0.55);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
&:focus-visible {
|
|
152
|
+
outline: 2px solid #fff;
|
|
153
|
+
outline-offset: 2px;
|
|
154
|
+
}
|
|
155
|
+
`;
|
|
156
|
+
export {
|
|
157
|
+
u as Dot,
|
|
158
|
+
l as DotsWrapper,
|
|
159
|
+
c as NavButton,
|
|
160
|
+
b as PauseButton,
|
|
161
|
+
f as ProgressBar,
|
|
162
|
+
a as SlideArea,
|
|
163
|
+
p as SlideTrack,
|
|
164
|
+
s as SlideViewport,
|
|
165
|
+
d as Wrapper
|
|
166
|
+
};
|
package/index.js
CHANGED
|
@@ -2,50 +2,52 @@ import { default as a } from "./components/Pagination/Pagination.js";
|
|
|
2
2
|
import { default as r, ToastContainer as f } from "./components/Toast/Toast.js";
|
|
3
3
|
import { default as d } from "./components/Spinner/Spinner.js";
|
|
4
4
|
import { default as s } from "./components/Loader/Loader.js";
|
|
5
|
-
import { default as
|
|
5
|
+
import { default as m } from "./components/PageLoader/PageLoader.js";
|
|
6
6
|
import { default as n } from "./components/OtpInput/OtpInput.js";
|
|
7
7
|
import { default as c } from "./components/Dropdown/Dropdown.js";
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
8
|
+
import { default as C } from "./components/RootComponent/RootComponent.js";
|
|
9
|
+
import { default as T } from "./components/Selectbox/Selectbox.js";
|
|
10
10
|
import { default as S } from "./components/Button/Button.js";
|
|
11
11
|
import { default as h } from "./components/Timer/Timer.js";
|
|
12
12
|
import { default as R } from "./components/Shimmer/Shimmer.js";
|
|
13
13
|
import { default as w } from "./components/VideoPlayer/VideoPlayer.js";
|
|
14
14
|
import { default as B } from "./components/Image/Image.js";
|
|
15
|
-
import { default as F } from "./components/
|
|
16
|
-
import { default as H } from "./components/Typography/
|
|
17
|
-
import { default as U } from "./components/
|
|
18
|
-
import { default as j } from "./components/Input/
|
|
19
|
-
import { default as v } from "./components/Input/
|
|
20
|
-
import { default as A } from "./components/Input/
|
|
21
|
-
import { default as J } from "./components/Input/
|
|
22
|
-
import { default as M } from "./
|
|
23
|
-
import { default as Q } from "./
|
|
24
|
-
import { default as X } from "./
|
|
15
|
+
import { default as F } from "./components/Carousel/Carousel.js";
|
|
16
|
+
import { default as H } from "./components/Typography/Headings/index.js";
|
|
17
|
+
import { default as U } from "./components/Typography/P/P.js";
|
|
18
|
+
import { default as j } from "./components/Input/Input/Input.js";
|
|
19
|
+
import { default as v } from "./components/Input/Textarea/Textarea.js";
|
|
20
|
+
import { default as A } from "./components/Input/Checkbox/Checkbox.js";
|
|
21
|
+
import { default as J } from "./components/Input/RadioGroup/RadioGroup.js";
|
|
22
|
+
import { default as M } from "./components/Input/FileUploader/FileUploader.js";
|
|
23
|
+
import { default as Q } from "./colors/index.js";
|
|
24
|
+
import { default as X } from "./utils/index.js";
|
|
25
|
+
import { default as Z } from "./components/Icons/index.js";
|
|
25
26
|
export {
|
|
26
27
|
S as Button,
|
|
27
|
-
|
|
28
|
+
F as Carousel,
|
|
29
|
+
A as Checkbox,
|
|
28
30
|
c as Dropdown,
|
|
29
|
-
|
|
30
|
-
|
|
31
|
+
M as FileUploader,
|
|
32
|
+
H as Headings,
|
|
31
33
|
B as Image,
|
|
32
|
-
|
|
34
|
+
j as Input,
|
|
33
35
|
s as Loader,
|
|
34
36
|
n as OtpInput,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
U as P,
|
|
38
|
+
m as PageLoader,
|
|
37
39
|
a as Pagination,
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
40
|
+
J as RadioGroup,
|
|
41
|
+
C as RootComponent,
|
|
42
|
+
T as Selectbox,
|
|
41
43
|
R as Shimmer,
|
|
42
44
|
d as Spinner,
|
|
43
|
-
|
|
45
|
+
v as Textarea,
|
|
44
46
|
h as Timer,
|
|
45
47
|
r as Toast,
|
|
46
48
|
f as ToastContainer,
|
|
47
49
|
w as VideoPlayer,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
50
|
+
Q as colors,
|
|
51
|
+
Z as icons,
|
|
52
|
+
X as utils
|
|
51
53
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meticulous-ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "A comprehensive React UI component library with a wide range of customizable components, icons, colors, and utilities for building modern web applications.",
|
|
6
6
|
"main": "./index.js",
|