@n3wth/ui 0.2.4 → 0.3.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/dist/atoms/CodeBlock/CodeBlock.d.ts +16 -0
- package/dist/atoms/CodeBlock/CodeBlock.d.ts.map +1 -0
- package/dist/atoms/CodeBlock/index.d.ts +3 -0
- package/dist/atoms/CodeBlock/index.d.ts.map +1 -0
- package/dist/atoms/Icon/Icon.d.ts +61 -4
- package/dist/atoms/Icon/Icon.d.ts.map +1 -1
- package/dist/atoms/Skeleton/Skeleton.d.ts +29 -0
- package/dist/atoms/Skeleton/Skeleton.d.ts.map +1 -0
- package/dist/atoms/Skeleton/index.d.ts +3 -0
- package/dist/atoms/Skeleton/index.d.ts.map +1 -0
- package/dist/hooks/index.d.ts +12 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/useButtonPulse.d.ts +14 -0
- package/dist/hooks/useButtonPulse.d.ts.map +1 -0
- package/dist/hooks/useCountUp.d.ts +25 -0
- package/dist/hooks/useCountUp.d.ts.map +1 -0
- package/dist/hooks/usePageTransition.d.ts +12 -0
- package/dist/hooks/usePageTransition.d.ts.map +1 -0
- package/dist/hooks/useScrollReveal.d.ts +18 -0
- package/dist/hooks/useScrollReveal.d.ts.map +1 -0
- package/dist/hooks/useStaggerList.d.ts +24 -0
- package/dist/hooks/useStaggerList.d.ts.map +1 -0
- package/dist/hooks/useTextReveal.d.ts +18 -0
- package/dist/hooks/useTextReveal.d.ts.map +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5060 -882
- package/dist/molecules/ErrorBoundary/ErrorBoundary.d.ts +44 -0
- package/dist/molecules/ErrorBoundary/ErrorBoundary.d.ts.map +1 -0
- package/dist/molecules/ErrorBoundary/index.d.ts +3 -0
- package/dist/molecules/ErrorBoundary/index.d.ts.map +1 -0
- package/dist/organisms/Footer/Footer.d.ts.map +1 -1
- package/dist/organisms/Hero/Hero.d.ts +1 -1
- package/dist/organisms/Hero/Hero.d.ts.map +1 -1
- package/package.json +9 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface CodeBlockProps {
|
|
2
|
+
/** Code string to display */
|
|
3
|
+
code: string;
|
|
4
|
+
/** Programming language for syntax highlighting */
|
|
5
|
+
language?: 'javascript' | 'typescript' | 'json' | 'bash' | 'css';
|
|
6
|
+
/** Show line numbers */
|
|
7
|
+
showLineNumbers?: boolean;
|
|
8
|
+
/** Additional class names */
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Lightweight syntax highlighting code block
|
|
13
|
+
* No external dependencies, uses CSS custom properties for theming
|
|
14
|
+
*/
|
|
15
|
+
export declare function CodeBlock({ code, language: _language, showLineNumbers, className, }: CodeBlockProps): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
//# sourceMappingURL=CodeBlock.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CodeBlock.d.ts","sourceRoot":"","sources":["../../../src/atoms/CodeBlock/CodeBlock.tsx"],"names":[],"mappings":"AAGA,MAAM,WAAW,cAAc;IAC7B,6BAA6B;IAC7B,IAAI,EAAE,MAAM,CAAA;IACZ,mDAAmD;IACnD,QAAQ,CAAC,EAAE,YAAY,GAAG,YAAY,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,CAAA;IAChE,wBAAwB;IACxB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAoED;;;GAGG;AACH,wBAAgB,SAAS,CAAC,EACxB,IAAI,EACJ,QAAQ,EAAE,SAAwB,EAClC,eAAuB,EACvB,SAAS,GACV,EAAE,cAAc,2CAkChB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/atoms/CodeBlock/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA"}
|
|
@@ -1,8 +1,65 @@
|
|
|
1
1
|
import { SVGProps } from 'react';
|
|
2
|
-
|
|
2
|
+
declare const iconComponents: {
|
|
3
|
+
readonly 'arrow-right': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
4
|
+
readonly 'arrow-left': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
5
|
+
readonly 'arrow-up': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
6
|
+
readonly 'arrow-down': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
7
|
+
readonly 'chevron-right': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
8
|
+
readonly 'chevron-left': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
9
|
+
readonly 'chevron-down': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
10
|
+
readonly 'chevron-up': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
11
|
+
readonly check: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
12
|
+
readonly x: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
13
|
+
readonly copy: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
14
|
+
readonly search: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
15
|
+
readonly menu: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
16
|
+
readonly sun: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
17
|
+
readonly moon: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
18
|
+
readonly external: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
19
|
+
readonly github: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
20
|
+
readonly terminal: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
21
|
+
readonly code: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
22
|
+
readonly sparkles: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
23
|
+
readonly plus: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
24
|
+
readonly minus: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
25
|
+
readonly settings: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
26
|
+
readonly user: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
27
|
+
readonly heart: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
28
|
+
readonly star: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
29
|
+
readonly mail: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
30
|
+
readonly calendar: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
31
|
+
readonly clock: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
32
|
+
readonly bell: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
33
|
+
readonly home: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
34
|
+
readonly folder: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
35
|
+
readonly file: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
36
|
+
readonly trash: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
37
|
+
readonly edit: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
38
|
+
readonly eye: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
39
|
+
readonly 'eye-off': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
40
|
+
readonly lock: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
41
|
+
readonly unlock: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
42
|
+
readonly link: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
43
|
+
readonly 'external-link': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
44
|
+
readonly download: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
45
|
+
readonly upload: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
46
|
+
readonly refresh: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
47
|
+
readonly filter: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
48
|
+
readonly sort: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
49
|
+
readonly grid: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
50
|
+
readonly list: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
51
|
+
readonly 'more-horizontal': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
52
|
+
readonly 'more-vertical': import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
53
|
+
readonly info: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
54
|
+
readonly warning: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
55
|
+
readonly success: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
56
|
+
readonly error: import('react').ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
57
|
+
};
|
|
58
|
+
export type IconName = keyof typeof iconComponents;
|
|
59
|
+
export interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {
|
|
3
60
|
name: IconName;
|
|
4
|
-
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
61
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | number;
|
|
5
62
|
}
|
|
6
|
-
export
|
|
7
|
-
export
|
|
63
|
+
export declare function Icon({ name, size, className, ...props }: IconProps): import("react/jsx-runtime").JSX.Element | null;
|
|
64
|
+
export * from 'iconoir-react';
|
|
8
65
|
//# sourceMappingURL=Icon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../src/atoms/Icon/Icon.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../src/atoms/Icon/Icon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAsB,KAAK,QAAQ,EAAE,MAAM,OAAO,CAAA;AA4DzD,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuDV,CAAA;AAEV,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,cAAc,CAAA;AAElD,MAAM,WAAW,SAAU,SAAQ,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,KAAK,CAAC;IACrE,IAAI,EAAE,QAAQ,CAAA;IACd,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,MAAM,CAAA;CACjD;AAkBD,wBAAgB,IAAI,CAAC,EAAE,IAAI,EAAE,IAAW,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,SAAS,kDAqBzE;AAGD,cAAc,eAAe,CAAA"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
export interface SkeletonProps extends HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
/** Skeleton variant */
|
|
4
|
+
variant?: 'text' | 'circular' | 'rectangular';
|
|
5
|
+
/** Width of the skeleton */
|
|
6
|
+
width?: string | number;
|
|
7
|
+
/** Height of the skeleton */
|
|
8
|
+
height?: string | number;
|
|
9
|
+
/** Enable shimmer animation */
|
|
10
|
+
animate?: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Skeleton loading placeholder
|
|
14
|
+
* Uses CSS custom properties for consistent theming
|
|
15
|
+
*/
|
|
16
|
+
export declare function Skeleton({ variant, width, height, animate, className, style, ...props }: SkeletonProps): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export interface CardSkeletonProps extends HTMLAttributes<HTMLDivElement> {
|
|
18
|
+
/** Number of text lines to show */
|
|
19
|
+
lines?: number;
|
|
20
|
+
/** Show header indicator */
|
|
21
|
+
showHeader?: boolean;
|
|
22
|
+
/** Show tags row */
|
|
23
|
+
showTags?: boolean;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Pre-composed card skeleton for common use cases
|
|
27
|
+
*/
|
|
28
|
+
export declare function CardSkeleton({ lines, showHeader, showTags, className, ...props }: CardSkeletonProps): import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
//# sourceMappingURL=Skeleton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["../../../src/atoms/Skeleton/Skeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,OAAO,CAAA;AAG3C,MAAM,WAAW,aAAc,SAAQ,cAAc,CAAC,cAAc,CAAC;IACnE,uBAAuB;IACvB,OAAO,CAAC,EAAE,MAAM,GAAG,UAAU,GAAG,aAAa,CAAA;IAC7C,4BAA4B;IAC5B,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,6BAA6B;IAC7B,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,+BAA+B;IAC/B,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED;;;GAGG;AACH,wBAAgB,QAAQ,CAAC,EACvB,OAAgB,EAChB,KAAK,EACL,MAAM,EACN,OAAc,EACd,SAAS,EACT,KAAK,EACL,GAAG,KAAK,EACT,EAAE,aAAa,2CAuBf;AAED,MAAM,WAAW,iBAAkB,SAAQ,cAAc,CAAC,cAAc,CAAC;IACvE,mCAAmC;IACnC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,4BAA4B;IAC5B,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,oBAAoB;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,EAC3B,KAAS,EACT,UAAiB,EACjB,QAAe,EACf,SAAS,EACT,GAAG,KAAK,EACT,EAAE,iBAAiB,2CA2CnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/atoms/Skeleton/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AACnD,YAAY,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA"}
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -4,4 +4,16 @@ export { useKeyboardShortcuts, getModifierKey, formatShortcut, } from './useKeyb
|
|
|
4
4
|
export type { KeyboardShortcut, UseKeyboardShortcutsOptions } from './useKeyboardShortcuts';
|
|
5
5
|
export { useReducedMotion } from './useReducedMotion';
|
|
6
6
|
export { useMediaQuery, useIsMobile, useIsTablet, useIsDesktop, } from './useMediaQuery';
|
|
7
|
+
export { useCountUp } from './useCountUp';
|
|
8
|
+
export type { UseCountUpOptions, UseCountUpReturn } from './useCountUp';
|
|
9
|
+
export { useScrollReveal } from './useScrollReveal';
|
|
10
|
+
export type { UseScrollRevealOptions } from './useScrollReveal';
|
|
11
|
+
export { useStaggerList } from './useStaggerList';
|
|
12
|
+
export type { UseStaggerListOptions } from './useStaggerList';
|
|
13
|
+
export { usePageTransition } from './usePageTransition';
|
|
14
|
+
export type { UsePageTransitionOptions } from './usePageTransition';
|
|
15
|
+
export { useTextReveal } from './useTextReveal';
|
|
16
|
+
export type { UseTextRevealOptions } from './useTextReveal';
|
|
17
|
+
export { useButtonPulse } from './useButtonPulse';
|
|
18
|
+
export type { UseButtonPulseOptions } from './useButtonPulse';
|
|
7
19
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,YAAY,EAAE,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AAExE,OAAO,EACL,oBAAoB,EACpB,cAAc,EACd,cAAc,GACf,MAAM,wBAAwB,CAAA;AAC/B,YAAY,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,MAAM,wBAAwB,CAAA;AAE3F,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD,OAAO,EACL,aAAa,EACb,WAAW,EACX,WAAW,EACX,YAAY,GACb,MAAM,iBAAiB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,YAAY,EAAE,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AAExE,OAAO,EACL,oBAAoB,EACpB,cAAc,EACd,cAAc,GACf,MAAM,wBAAwB,CAAA;AAC/B,YAAY,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,MAAM,wBAAwB,CAAA;AAE3F,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD,OAAO,EACL,aAAa,EACb,WAAW,EACX,WAAW,EACX,YAAY,GACb,MAAM,iBAAiB,CAAA;AAGxB,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,YAAY,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAEvE,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AACnD,YAAY,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAA;AAE/D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,YAAY,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAA;AAE7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,YAAY,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAA;AAEnE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,YAAY,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAA;AAE3D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,YAAY,EAAE,qBAAqB,EAAE,MAAM,kBAAkB,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface UseButtonPulseOptions {
|
|
2
|
+
/** Scale on hover */
|
|
3
|
+
hoverScale?: number;
|
|
4
|
+
/** Scale on press */
|
|
5
|
+
pressScale?: number;
|
|
6
|
+
/** Animation duration in seconds */
|
|
7
|
+
duration?: number;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Hook for subtle button interaction animations
|
|
11
|
+
* Creates depth-aware scale interactions on hover and press
|
|
12
|
+
*/
|
|
13
|
+
export declare function useButtonPulse(options?: UseButtonPulseOptions): import('react').RefObject<HTMLButtonElement | null>;
|
|
14
|
+
//# sourceMappingURL=useButtonPulse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useButtonPulse.d.ts","sourceRoot":"","sources":["../../src/hooks/useButtonPulse.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,qBAAqB;IACpC,qBAAqB;IACrB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,qBAAqB;IACrB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,OAAO,GAAE,qBAA0B,uDA6DjE"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface UseCountUpOptions {
|
|
2
|
+
/** Animation duration in seconds */
|
|
3
|
+
duration?: number;
|
|
4
|
+
/** Delay before animation starts */
|
|
5
|
+
delay?: number;
|
|
6
|
+
/** Trigger animation on scroll into view */
|
|
7
|
+
onScroll?: boolean;
|
|
8
|
+
/** Suffix to append to value (e.g., '%', '+') */
|
|
9
|
+
suffix?: string;
|
|
10
|
+
/** Prefix to prepend to value (e.g., '$') */
|
|
11
|
+
prefix?: string;
|
|
12
|
+
/** Callback when animation completes */
|
|
13
|
+
onComplete?: () => void;
|
|
14
|
+
}
|
|
15
|
+
export interface UseCountUpReturn {
|
|
16
|
+
ref: React.RefObject<HTMLElement | null>;
|
|
17
|
+
value: number;
|
|
18
|
+
displayValue: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Hook for animated number counting
|
|
22
|
+
* Creates smooth counter animations with scroll trigger support
|
|
23
|
+
*/
|
|
24
|
+
export declare function useCountUp(target: number, options?: UseCountUpOptions): UseCountUpReturn;
|
|
25
|
+
//# sourceMappingURL=useCountUp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useCountUp.d.ts","sourceRoot":"","sources":["../../src/hooks/useCountUp.ts"],"names":[],"mappings":"AAMA,MAAM,WAAW,iBAAiB;IAChC,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,4CAA4C;IAC5C,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,iDAAiD;IACjD,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,6CAA6C;IAC7C,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,wCAAwC;IACxC,UAAU,CAAC,EAAE,MAAM,IAAI,CAAA;CACxB;AAED,MAAM,WAAW,gBAAgB;IAC/B,GAAG,EAAE,KAAK,CAAC,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;IACxC,KAAK,EAAE,MAAM,CAAA;IACb,YAAY,EAAE,MAAM,CAAA;CACrB;AAED;;;GAGG;AACH,wBAAgB,UAAU,CACxB,MAAM,EAAE,MAAM,EACd,OAAO,GAAE,iBAAsB,GAC9B,gBAAgB,CAmElB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface UsePageTransitionOptions {
|
|
2
|
+
/** Entrance animation duration in seconds */
|
|
3
|
+
duration?: number;
|
|
4
|
+
/** Exit animation duration in seconds */
|
|
5
|
+
exitDuration?: number;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Hook for page entrance/exit animations
|
|
9
|
+
* Creates smooth transitions when navigating between pages
|
|
10
|
+
*/
|
|
11
|
+
export declare function usePageTransition(options?: UsePageTransitionOptions): import('react').RefObject<HTMLDivElement | null>;
|
|
12
|
+
//# sourceMappingURL=usePageTransition.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usePageTransition.d.ts","sourceRoot":"","sources":["../../src/hooks/usePageTransition.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,wBAAwB;IACvC,6CAA6C;IAC7C,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,yCAAyC;IACzC,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,GAAE,wBAA6B,oDA8CvE"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface UseScrollRevealOptions {
|
|
2
|
+
/** Animation duration in seconds */
|
|
3
|
+
duration?: number;
|
|
4
|
+
/** Delay before animation starts */
|
|
5
|
+
delay?: number;
|
|
6
|
+
/** Stagger delay between children (false to disable, number for custom) */
|
|
7
|
+
stagger?: boolean | number;
|
|
8
|
+
/** Direction elements animate from */
|
|
9
|
+
direction?: 'up' | 'down' | 'left' | 'right';
|
|
10
|
+
/** Distance in pixels to animate from */
|
|
11
|
+
distance?: number;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Hook that creates scroll-triggered entrance animations
|
|
15
|
+
* Uses GSAP ScrollTrigger for performant viewport-based reveals
|
|
16
|
+
*/
|
|
17
|
+
export declare function useScrollReveal(options?: UseScrollRevealOptions): import('react').RefObject<HTMLDivElement | null>;
|
|
18
|
+
//# sourceMappingURL=useScrollReveal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useScrollReveal.d.ts","sourceRoot":"","sources":["../../src/hooks/useScrollReveal.ts"],"names":[],"mappings":"AAMA,MAAM,WAAW,sBAAsB;IACrC,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,2EAA2E;IAC3E,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;IAC1B,sCAAsC;IACtC,SAAS,CAAC,EAAE,IAAI,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;IAC5C,yCAAyC;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,OAAO,GAAE,sBAA2B,oDAoEnE"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface UseStaggerListOptions {
|
|
2
|
+
/** Animation duration in seconds */
|
|
3
|
+
duration?: number;
|
|
4
|
+
/** Stagger delay between items */
|
|
5
|
+
stagger?: number;
|
|
6
|
+
/** Delay before animation starts */
|
|
7
|
+
delay?: number;
|
|
8
|
+
/** Direction items animate from */
|
|
9
|
+
direction?: 'up' | 'down' | 'left' | 'right' | 'scale';
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Hook for staggered list item animations
|
|
13
|
+
* Creates cascade effects as items appear
|
|
14
|
+
*
|
|
15
|
+
* Items should have data-stagger-item attribute:
|
|
16
|
+
* ```tsx
|
|
17
|
+
* <ul ref={ref}>
|
|
18
|
+
* <li data-stagger-item>Item 1</li>
|
|
19
|
+
* <li data-stagger-item>Item 2</li>
|
|
20
|
+
* </ul>
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare function useStaggerList(options?: UseStaggerListOptions): import('react').RefObject<HTMLElement | null>;
|
|
24
|
+
//# sourceMappingURL=useStaggerList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useStaggerList.d.ts","sourceRoot":"","sources":["../../src/hooks/useStaggerList.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,qBAAqB;IACpC,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,kCAAkC;IAClC,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,mCAAmC;IACnC,SAAS,CAAC,EAAE,IAAI,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;CACvD;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,cAAc,CAAC,OAAO,GAAE,qBAA0B,iDAmEjE"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface UseTextRevealOptions {
|
|
2
|
+
/** Animation duration in seconds */
|
|
3
|
+
duration?: number;
|
|
4
|
+
/** Delay before animation starts */
|
|
5
|
+
delay?: number;
|
|
6
|
+
/** Stagger amount between characters */
|
|
7
|
+
staggerAmount?: number;
|
|
8
|
+
/** Trigger animation on scroll into view */
|
|
9
|
+
onScroll?: boolean;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Hook for revealing text character by character
|
|
13
|
+
* Creates staggered entrance animations for text content
|
|
14
|
+
*
|
|
15
|
+
* Note: This will replace the element's text content with spans
|
|
16
|
+
*/
|
|
17
|
+
export declare function useTextReveal(options?: UseTextRevealOptions): import('react').RefObject<HTMLElement | null>;
|
|
18
|
+
//# sourceMappingURL=useTextReveal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useTextReveal.d.ts","sourceRoot":"","sources":["../../src/hooks/useTextReveal.ts"],"names":[],"mappings":"AAMA,MAAM,WAAW,oBAAoB;IACnC,oCAAoC;IACpC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,wCAAwC;IACxC,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,4CAA4C;IAC5C,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,OAAO,GAAE,oBAAyB,iDA0E/D"}
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,10 @@ export { HamburgerIcon } from './atoms/HamburgerIcon';
|
|
|
16
16
|
export type { HamburgerIconProps } from './atoms/HamburgerIcon';
|
|
17
17
|
export { AnimatedText } from './atoms/AnimatedText';
|
|
18
18
|
export type { AnimatedTextProps } from './atoms/AnimatedText';
|
|
19
|
+
export { CodeBlock } from './atoms/CodeBlock';
|
|
20
|
+
export type { CodeBlockProps } from './atoms/CodeBlock';
|
|
21
|
+
export { Skeleton, CardSkeleton } from './atoms/Skeleton';
|
|
22
|
+
export type { SkeletonProps, CardSkeletonProps } from './atoms/Skeleton';
|
|
19
23
|
export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter, } from './molecules/Card';
|
|
20
24
|
export type { CardProps, CardHeaderProps, CardTitleProps, CardDescriptionProps, CardContentProps, CardFooterProps, } from './molecules/Card';
|
|
21
25
|
export { NavLink } from './molecules/NavLink';
|
|
@@ -26,6 +30,8 @@ export { ThemeToggle } from './molecules/ThemeToggle';
|
|
|
26
30
|
export type { ThemeToggleProps } from './molecules/ThemeToggle';
|
|
27
31
|
export { MobileDrawer } from './molecules/MobileDrawer';
|
|
28
32
|
export type { MobileDrawerProps } from './molecules/MobileDrawer';
|
|
33
|
+
export { ErrorBoundary, ErrorFallback } from './molecules/ErrorBoundary';
|
|
34
|
+
export type { ErrorBoundaryProps, ErrorFallbackProps } from './molecules/ErrorBoundary';
|
|
29
35
|
export { Nav } from './organisms/Nav';
|
|
30
36
|
export type { NavProps, NavItem } from './organisms/Nav';
|
|
31
37
|
export { Footer } from './organisms/Footer';
|
|
@@ -40,4 +46,16 @@ export { useKeyboardShortcuts, getModifierKey, formatShortcut, } from './hooks/u
|
|
|
40
46
|
export type { KeyboardShortcut, UseKeyboardShortcutsOptions } from './hooks/useKeyboardShortcuts';
|
|
41
47
|
export { useReducedMotion } from './hooks/useReducedMotion';
|
|
42
48
|
export { useMediaQuery, useIsMobile, useIsTablet, useIsDesktop, } from './hooks/useMediaQuery';
|
|
49
|
+
export { useCountUp } from './hooks/useCountUp';
|
|
50
|
+
export type { UseCountUpOptions, UseCountUpReturn } from './hooks/useCountUp';
|
|
51
|
+
export { useScrollReveal } from './hooks/useScrollReveal';
|
|
52
|
+
export type { UseScrollRevealOptions } from './hooks/useScrollReveal';
|
|
53
|
+
export { useStaggerList } from './hooks/useStaggerList';
|
|
54
|
+
export type { UseStaggerListOptions } from './hooks/useStaggerList';
|
|
55
|
+
export { usePageTransition } from './hooks/usePageTransition';
|
|
56
|
+
export type { UsePageTransitionOptions } from './hooks/usePageTransition';
|
|
57
|
+
export { useTextReveal } from './hooks/useTextReveal';
|
|
58
|
+
export type { UseTextRevealOptions } from './hooks/useTextReveal';
|
|
59
|
+
export { useButtonPulse } from './hooks/useButtonPulse';
|
|
60
|
+
export type { UseButtonPulseOptions } from './hooks/useButtonPulse';
|
|
43
61
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,UAAU,CAAA;AAGxB,OAAO,EAAE,EAAE,EAAE,MAAM,YAAY,CAAA;AAG/B,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAA;AACvC,YAAY,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAEjD,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AACrC,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAE/C,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AACrC,YAAY,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAE/C,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AACnC,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AAEvD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,YAAY,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAA;AAE7D,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAA;AACzD,YAAY,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAA;AAEnE,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAA;AACrD,YAAY,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAE/D,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AACnD,YAAY,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|