@xiping/react-components 1.0.39 → 1.0.40
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/cjs/components/image-viewer/ImageViewer.js +1 -9
- package/dist/cjs/components/pinch-content/PinchContent.d.ts +17 -1
- package/dist/cjs/components/pinch-content/PinchContent.js +1 -1
- package/dist/cjs/components/text-type/TextType.d.ts +26 -0
- package/dist/cjs/components/text-type/TextType.js +1 -0
- package/dist/cjs/components/text-type/index.d.ts +3 -0
- package/dist/cjs/index.d.ts +1 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/react-components.css +1 -1
- package/dist/es/components/image-viewer/ImageViewer.js +74 -93
- package/dist/es/components/pinch-content/PinchContent.d.ts +17 -1
- package/dist/es/components/pinch-content/PinchContent.js +120 -79
- package/dist/es/components/text-type/TextType.d.ts +26 -0
- package/dist/es/components/text-type/TextType.js +116 -0
- package/dist/es/components/text-type/index.d.ts +3 -0
- package/dist/es/index.d.ts +1 -0
- package/dist/es/index.js +44 -42
- package/dist/es/react-components.css +1 -1
- package/package.json +33 -33
|
@@ -13,6 +13,22 @@ export interface PinchContentProps {
|
|
|
13
13
|
wheelZoomFactor?: number;
|
|
14
14
|
rubberband?: boolean;
|
|
15
15
|
style?: CSSProperties;
|
|
16
|
+
/** 外部控制的缩放值(受控模式) */
|
|
17
|
+
scale?: number;
|
|
18
|
+
/** 缩放值变化时的回调 */
|
|
19
|
+
onScaleChange?: (scale: number) => void;
|
|
16
20
|
}
|
|
17
|
-
|
|
21
|
+
export interface PinchContentRef {
|
|
22
|
+
/** 放大 */
|
|
23
|
+
zoomIn: (factor?: number) => void;
|
|
24
|
+
/** 缩小 */
|
|
25
|
+
zoomOut: (factor?: number) => void;
|
|
26
|
+
/** 设置缩放值 */
|
|
27
|
+
setScale: (scale: number) => void;
|
|
28
|
+
/** 重置到初始状态 */
|
|
29
|
+
reset: () => void;
|
|
30
|
+
/** 获取当前缩放值 */
|
|
31
|
+
getScale: () => number;
|
|
32
|
+
}
|
|
33
|
+
declare const PinchContent: import('react').ForwardRefExoticComponent<PinchContentProps & import('react').RefAttributes<PinchContentRef>>;
|
|
18
34
|
export default PinchContent;
|
|
@@ -1,86 +1,127 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { useSpring as
|
|
3
|
-
import { createUseGesture as
|
|
4
|
-
import { useRef as
|
|
5
|
-
import { useMount as
|
|
6
|
-
import
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
1
|
+
import { jsx as U } from "react/jsx-runtime";
|
|
2
|
+
import { useSpring as W, animated as j } from "@react-spring/web";
|
|
3
|
+
import { createUseGesture as F, dragAction as H, pinchAction as O, wheelAction as k } from "@use-gesture/react";
|
|
4
|
+
import { forwardRef as q, useRef as J, useEffect as K, useImperativeHandle as Q } from "react";
|
|
5
|
+
import { useMount as T, useUnmount as V } from "ahooks";
|
|
6
|
+
import X from "clsx";
|
|
7
|
+
const Y = F([H, O, k]), i = (u) => u.preventDefault(), _ = q(
|
|
8
|
+
(u, x) => {
|
|
9
|
+
const {
|
|
10
|
+
className: p,
|
|
11
|
+
children: S,
|
|
12
|
+
pinchWithoutMove: v = !1,
|
|
13
|
+
canPinch: h = !0,
|
|
14
|
+
canDrag: y = !0,
|
|
15
|
+
canRotate: M = !0,
|
|
16
|
+
scaleBounds: r = { min: 0.3, max: 10 },
|
|
17
|
+
wheelZoomFactor: E = 1e-3,
|
|
18
|
+
rubberband: w = !0,
|
|
19
|
+
scale: m,
|
|
20
|
+
onScaleChange: d
|
|
21
|
+
} = u, a = J(null);
|
|
22
|
+
T(() => {
|
|
23
|
+
a.current?.addEventListener("gesturestart", i), a.current?.addEventListener("gesturechange", i), a.current?.addEventListener("gestureend", i);
|
|
24
|
+
}), V(() => {
|
|
25
|
+
a.current?.removeEventListener("gesturestart", i), a.current?.removeEventListener("gesturechange", i), a.current?.removeEventListener("gestureend", i);
|
|
26
|
+
});
|
|
27
|
+
const L = m ?? 1, [t, c] = W(() => ({
|
|
28
|
+
x: 0,
|
|
29
|
+
y: 0,
|
|
30
|
+
scale: L,
|
|
31
|
+
rotateZ: 0
|
|
32
|
+
}));
|
|
33
|
+
K(() => {
|
|
34
|
+
if (m !== void 0) {
|
|
35
|
+
const e = Math.min(
|
|
36
|
+
Math.max(m, r.min),
|
|
37
|
+
r.max
|
|
37
38
|
);
|
|
38
|
-
|
|
39
|
+
c.start({ scale: e });
|
|
40
|
+
}
|
|
41
|
+
}, [m, r.min, r.max, c]);
|
|
42
|
+
const g = (e) => {
|
|
43
|
+
const n = Math.min(
|
|
44
|
+
Math.max(e, r.min),
|
|
45
|
+
r.max
|
|
46
|
+
);
|
|
47
|
+
c.start({ scale: n }), d?.(n);
|
|
48
|
+
};
|
|
49
|
+
return Q(x, () => ({
|
|
50
|
+
zoomIn: (e = 1.2) => {
|
|
51
|
+
const n = t.scale.get();
|
|
52
|
+
g(n * e);
|
|
53
|
+
},
|
|
54
|
+
zoomOut: (e = 1.2) => {
|
|
55
|
+
const n = t.scale.get();
|
|
56
|
+
g(n / e);
|
|
39
57
|
},
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
g.start({ x: u, y: n });
|
|
58
|
+
setScale: (e) => {
|
|
59
|
+
g(e);
|
|
43
60
|
},
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
61
|
+
reset: () => {
|
|
62
|
+
c.start({ x: 0, y: 0, scale: 1, rotateZ: 0 }), d?.(1);
|
|
63
|
+
},
|
|
64
|
+
getScale: () => t.scale.get()
|
|
65
|
+
})), Y(
|
|
66
|
+
{
|
|
67
|
+
onWheel: ({ delta: [, e] }) => {
|
|
68
|
+
if (!h) return;
|
|
69
|
+
const l = t.scale.get() * (1 - e * E), s = Math.min(
|
|
70
|
+
Math.max(l, r.min),
|
|
71
|
+
r.max
|
|
72
|
+
);
|
|
73
|
+
c.start({ scale: s }), d?.(s);
|
|
74
|
+
},
|
|
75
|
+
onDrag: ({ pinching: e, cancel: n, offset: [l, s] }) => {
|
|
76
|
+
if (!y || e) return n();
|
|
77
|
+
c.start({ x: l, y: s });
|
|
78
|
+
},
|
|
79
|
+
onPinch: ({
|
|
80
|
+
origin: [e, n],
|
|
81
|
+
first: l,
|
|
82
|
+
movement: [s],
|
|
83
|
+
offset: [R, Z],
|
|
84
|
+
memo: o,
|
|
85
|
+
cancel: b
|
|
86
|
+
}) => {
|
|
87
|
+
if (!h) return b();
|
|
88
|
+
if (l) {
|
|
89
|
+
const { width: D, height: N, x: z, y: B } = a.current.getBoundingClientRect(), G = e - (z + D / 2), I = n - (B + N / 2);
|
|
90
|
+
o = [t.x.get(), t.y.get(), G, I];
|
|
91
|
+
}
|
|
92
|
+
const f = Math.min(
|
|
93
|
+
Math.max(R, r.min),
|
|
94
|
+
r.max
|
|
95
|
+
), C = o[0] - (s - 1) * o[2], P = o[1] - (s - 1) * o[3], A = {
|
|
96
|
+
scale: f,
|
|
97
|
+
rotateZ: M ? Z : t.rotateZ.get(),
|
|
98
|
+
...v ? { x: t.x.get(), y: t.y.get() } : { x: C, y: P }
|
|
99
|
+
};
|
|
100
|
+
return c.start(A), d?.(f), o;
|
|
56
101
|
}
|
|
57
|
-
const w = s[0] - (n - 1) * s[2], S = s[1] - (n - 1) * s[3], b = {
|
|
58
|
-
scale: i,
|
|
59
|
-
rotateZ: v ? E : t.rotateZ.get(),
|
|
60
|
-
...m ? { x: t.x.get(), y: t.y.get() } : { x: w, y: S }
|
|
61
|
-
};
|
|
62
|
-
return g.start(b), s;
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
target: e,
|
|
67
|
-
drag: { from: () => [t.x.get(), t.y.get()] },
|
|
68
|
-
pinch: { scaleBounds: l, rubberband: y },
|
|
69
|
-
wheel: { enabled: !0 }
|
|
70
|
-
}
|
|
71
|
-
), /* @__PURE__ */ B(
|
|
72
|
-
G.div,
|
|
73
|
-
{
|
|
74
|
-
className: z("select-none", f),
|
|
75
|
-
ref: e,
|
|
76
|
-
style: {
|
|
77
|
-
...c.style,
|
|
78
|
-
...t
|
|
79
102
|
},
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}
|
|
103
|
+
{
|
|
104
|
+
target: a,
|
|
105
|
+
drag: { from: () => [t.x.get(), t.y.get()] },
|
|
106
|
+
pinch: { scaleBounds: r, rubberband: w },
|
|
107
|
+
wheel: { enabled: !0 }
|
|
108
|
+
}
|
|
109
|
+
), /* @__PURE__ */ U(
|
|
110
|
+
j.div,
|
|
111
|
+
{
|
|
112
|
+
className: X(p),
|
|
113
|
+
ref: a,
|
|
114
|
+
style: {
|
|
115
|
+
userSelect: "none",
|
|
116
|
+
...u.style,
|
|
117
|
+
...t
|
|
118
|
+
},
|
|
119
|
+
children: S
|
|
120
|
+
}
|
|
121
|
+
);
|
|
122
|
+
}
|
|
123
|
+
);
|
|
124
|
+
_.displayName = "PinchContent";
|
|
84
125
|
export {
|
|
85
|
-
|
|
126
|
+
_ as default
|
|
86
127
|
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ElementType } from 'react';
|
|
2
|
+
interface TextTypeProps {
|
|
3
|
+
className?: string;
|
|
4
|
+
showCursor?: boolean;
|
|
5
|
+
hideCursorWhileTyping?: boolean;
|
|
6
|
+
cursorCharacter?: string | React.ReactNode;
|
|
7
|
+
cursorBlinkDuration?: number;
|
|
8
|
+
cursorClassName?: string;
|
|
9
|
+
text: string | string[];
|
|
10
|
+
as?: ElementType;
|
|
11
|
+
typingSpeed?: number;
|
|
12
|
+
initialDelay?: number;
|
|
13
|
+
pauseDuration?: number;
|
|
14
|
+
deletingSpeed?: number;
|
|
15
|
+
loop?: boolean;
|
|
16
|
+
textColors?: string[];
|
|
17
|
+
variableSpeed?: {
|
|
18
|
+
min: number;
|
|
19
|
+
max: number;
|
|
20
|
+
};
|
|
21
|
+
onSentenceComplete?: (sentence: string, index: number) => void;
|
|
22
|
+
startOnVisible?: boolean;
|
|
23
|
+
reverseMode?: boolean;
|
|
24
|
+
}
|
|
25
|
+
declare const TextType: ({ text, as: Component, typingSpeed, initialDelay, pauseDuration, deletingSpeed, loop, className, showCursor, hideCursorWhileTyping, cursorCharacter, cursorClassName, cursorBlinkDuration, textColors, variableSpeed, onSentenceComplete, startOnVisible, reverseMode, ...props }: TextTypeProps & React.HTMLAttributes<HTMLElement>) => import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>>;
|
|
26
|
+
export default TextType;
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as b } from "react/jsx-runtime";
|
|
3
|
+
import { useState as u, useRef as k, useMemo as U, useCallback as V, useEffect as p, createElement as W } from "react";
|
|
4
|
+
import { gsap as q } from "gsap";
|
|
5
|
+
/* empty css */
|
|
6
|
+
const D = ({
|
|
7
|
+
text: i,
|
|
8
|
+
as: v = "div",
|
|
9
|
+
typingSpeed: f = 50,
|
|
10
|
+
initialDelay: _ = 0,
|
|
11
|
+
pauseDuration: x = 2e3,
|
|
12
|
+
deletingSpeed: A = 30,
|
|
13
|
+
loop: R = !0,
|
|
14
|
+
className: w = "",
|
|
15
|
+
showCursor: T = !0,
|
|
16
|
+
hideCursorWhileTyping: z = !1,
|
|
17
|
+
cursorCharacter: F = "|",
|
|
18
|
+
cursorClassName: G = "",
|
|
19
|
+
cursorBlinkDuration: E = 0.5,
|
|
20
|
+
textColors: d = [],
|
|
21
|
+
variableSpeed: c,
|
|
22
|
+
onSentenceComplete: y,
|
|
23
|
+
startOnVisible: g = !1,
|
|
24
|
+
reverseMode: N = !1,
|
|
25
|
+
...J
|
|
26
|
+
}) => {
|
|
27
|
+
const [l, $] = u(""), [o, j] = u(0), [a, C] = u(!1), [t, K] = u(0), [H, L] = u(!g), m = k(null), I = k(null), r = U(() => Array.isArray(i) ? i : [i], [i]), O = V(() => {
|
|
28
|
+
if (!c) return f;
|
|
29
|
+
const { min: e, max: n } = c;
|
|
30
|
+
return Math.random() * (n - e) + e;
|
|
31
|
+
}, [c, f]), P = () => {
|
|
32
|
+
if (d.length !== 0)
|
|
33
|
+
return d[t % d.length];
|
|
34
|
+
};
|
|
35
|
+
p(() => {
|
|
36
|
+
if (!g || !I.current) return;
|
|
37
|
+
const e = new IntersectionObserver(
|
|
38
|
+
(n) => {
|
|
39
|
+
n.forEach((h) => {
|
|
40
|
+
h.isIntersecting && L(!0);
|
|
41
|
+
});
|
|
42
|
+
},
|
|
43
|
+
{ threshold: 0.1 }
|
|
44
|
+
);
|
|
45
|
+
return e.observe(I.current), () => e.disconnect();
|
|
46
|
+
}, [g]), p(() => {
|
|
47
|
+
T && m.current && (q.set(m.current, { opacity: 1 }), q.to(m.current, {
|
|
48
|
+
opacity: 0,
|
|
49
|
+
duration: E,
|
|
50
|
+
repeat: -1,
|
|
51
|
+
yoyo: !0,
|
|
52
|
+
ease: "power2.inOut"
|
|
53
|
+
}));
|
|
54
|
+
}, [T, E]), p(() => {
|
|
55
|
+
if (!H) return;
|
|
56
|
+
let e;
|
|
57
|
+
const n = r[t], h = N ? n.split("").reverse().join("") : n, M = () => {
|
|
58
|
+
if (a)
|
|
59
|
+
if (l === "") {
|
|
60
|
+
if (C(!1), t === r.length - 1 && !R)
|
|
61
|
+
return;
|
|
62
|
+
y && y(r[t], t), K((s) => (s + 1) % r.length), j(0), e = setTimeout(() => {
|
|
63
|
+
}, x);
|
|
64
|
+
} else
|
|
65
|
+
e = setTimeout(() => {
|
|
66
|
+
$((s) => s.slice(0, -1));
|
|
67
|
+
}, A);
|
|
68
|
+
else
|
|
69
|
+
o < h.length ? e = setTimeout(
|
|
70
|
+
() => {
|
|
71
|
+
$((s) => s + h[o]), j((s) => s + 1);
|
|
72
|
+
},
|
|
73
|
+
c ? O() : f
|
|
74
|
+
) : r.length > 1 && (e = setTimeout(() => {
|
|
75
|
+
C(!0);
|
|
76
|
+
}, x));
|
|
77
|
+
};
|
|
78
|
+
return o === 0 && !a && l === "" ? e = setTimeout(M, _) : M(), () => clearTimeout(e);
|
|
79
|
+
}, [
|
|
80
|
+
o,
|
|
81
|
+
l,
|
|
82
|
+
a,
|
|
83
|
+
f,
|
|
84
|
+
A,
|
|
85
|
+
x,
|
|
86
|
+
r,
|
|
87
|
+
t,
|
|
88
|
+
R,
|
|
89
|
+
_,
|
|
90
|
+
H,
|
|
91
|
+
N,
|
|
92
|
+
c,
|
|
93
|
+
y
|
|
94
|
+
]);
|
|
95
|
+
const Q = z && (o < r[t].length || a);
|
|
96
|
+
return W(
|
|
97
|
+
v,
|
|
98
|
+
{
|
|
99
|
+
ref: I,
|
|
100
|
+
className: `text-type ${w}`,
|
|
101
|
+
...J
|
|
102
|
+
},
|
|
103
|
+
/* @__PURE__ */ b("span", { className: "text-type__content", style: { color: P() || "inherit" }, children: l }),
|
|
104
|
+
T && /* @__PURE__ */ b(
|
|
105
|
+
"span",
|
|
106
|
+
{
|
|
107
|
+
ref: m,
|
|
108
|
+
className: `text-type__cursor ${G} ${Q ? "text-type__cursor--hidden" : ""}`,
|
|
109
|
+
children: F
|
|
110
|
+
}
|
|
111
|
+
)
|
|
112
|
+
);
|
|
113
|
+
};
|
|
114
|
+
export {
|
|
115
|
+
D as default
|
|
116
|
+
};
|
package/dist/es/index.d.ts
CHANGED
|
@@ -24,4 +24,5 @@ export * from './components/shiny-button';
|
|
|
24
24
|
export * from './components/scratch-to-reveal';
|
|
25
25
|
export * from './components/split-text';
|
|
26
26
|
export * from './components/dome-gallery';
|
|
27
|
+
export * from './components/text-type';
|
|
27
28
|
export * from './hooks/useStayTimeReport';
|
package/dist/es/index.js
CHANGED
|
@@ -1,61 +1,63 @@
|
|
|
1
1
|
/* empty css */
|
|
2
|
-
import { Button as
|
|
2
|
+
import { Button as r } from "./components/button/Button.js";
|
|
3
3
|
import { TxtReader as p } from "./components/txt-reader/TxtReader.js";
|
|
4
4
|
import { HyperText as x } from "./components/hyper-text/index.js";
|
|
5
5
|
import { TypingAnimation as i } from "./components/typing-animation/index.js";
|
|
6
6
|
import { QRCode as d } from "./components/qr-code/index.js";
|
|
7
|
-
import { Confetti as
|
|
7
|
+
import { Confetti as T, ConfettiButton as l } from "./components/confetti-button/index.js";
|
|
8
8
|
import { useStayTimeReport as c } from "./hooks/useStayTimeReport.js";
|
|
9
9
|
import { default as S } from "./components/pinch-content/PinchContent.js";
|
|
10
10
|
import { default as h } from "./components/image-viewer/ImageViewer.js";
|
|
11
|
-
import { ShimmerButton as
|
|
11
|
+
import { ShimmerButton as B } from "./components/shimmer-button/ShimmerButton.js";
|
|
12
12
|
import { default as A } from "./components/image-compare/ImageCompare.js";
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import { default as Q } from "
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
13
|
+
import { default as I } from "./components/text-type/TextType.js";
|
|
14
|
+
import { TextAnimate as F } from "./components/text-animate/TextAnimate.js";
|
|
15
|
+
import { Dock as L, DockIcon as P, dockVariants as v } from "./components/dock/Duck.js";
|
|
16
|
+
import { TxtEditor as E } from "./components/txt-editor/TxtEditor.js";
|
|
17
|
+
import { Message as H } from "./components/message/Message.js";
|
|
18
|
+
import { default as Q } from "react-force-graph-3d";
|
|
19
|
+
import { default as j } from "canvas-confetti";
|
|
20
|
+
import { Pointer as z } from "./components/pointer/Pointer.js";
|
|
21
|
+
import { SparklesText as K } from "./components/sparkles-text/SparklesText.js";
|
|
22
|
+
import { BlurFade as O } from "./components/blur-fade/BlurFade.js";
|
|
23
|
+
import { VideoDialog as W } from "./components/video-dialog/VideoDialog.js";
|
|
24
|
+
import { ComicText as Y } from "./components/comic-text/ComicText.js";
|
|
25
|
+
import { FlipText as _ } from "./components/flip-text/FlipText.js";
|
|
26
|
+
import { AnimatedList as oo, AnimatedListItem as to } from "./components/animated-list/AnimatedList.js";
|
|
27
|
+
import { ShinyButton as ro } from "./components/shiny-button/ShinyButton.js";
|
|
28
|
+
import { ScratchToReveal as po } from "./components/scratch-to-reveal/ScratchToReveal.js";
|
|
29
|
+
import { SplitText as xo } from "./components/split-text/SplitText.js";
|
|
29
30
|
export {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
31
|
+
oo as AnimatedList,
|
|
32
|
+
to as AnimatedListItem,
|
|
33
|
+
O as BlurFade,
|
|
34
|
+
r as Button,
|
|
35
|
+
Y as ComicText,
|
|
36
|
+
T as Confetti,
|
|
37
|
+
l as ConfettiButton,
|
|
38
|
+
L as Dock,
|
|
39
|
+
P as DockIcon,
|
|
40
|
+
_ as FlipText,
|
|
41
|
+
Q as ForceGraph3D,
|
|
41
42
|
x as HyperText,
|
|
42
43
|
A as ImageCompare,
|
|
43
44
|
h as ImageViewer,
|
|
44
|
-
|
|
45
|
+
H as Message,
|
|
45
46
|
S as PinchContent,
|
|
46
|
-
|
|
47
|
+
z as Pointer,
|
|
47
48
|
d as QRCode,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
49
|
+
po as ScratchToReveal,
|
|
50
|
+
B as ShimmerButton,
|
|
51
|
+
ro as ShinyButton,
|
|
52
|
+
K as SparklesText,
|
|
53
|
+
xo as SplitText,
|
|
54
|
+
F as TextAnimate,
|
|
55
|
+
I as TextType,
|
|
56
|
+
E as TxtEditor,
|
|
55
57
|
p as TxtReader,
|
|
56
58
|
i as TypingAnimation,
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
59
|
+
W as VideoDialog,
|
|
60
|
+
j as confetti,
|
|
61
|
+
v as dockVariants,
|
|
60
62
|
c as useStayTimeReport
|
|
61
63
|
};
|