@catalystsoftware/ui 1.0.2 → 1.0.5

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.
Files changed (157) hide show
  1. package/data/tailwind.config.js +261 -3821
  2. package/dist/components/catalyst-ui/buttons/burger.tsx +207 -0
  3. package/dist/components/catalyst-ui/core/data-display/timeline.tsx +210 -0
  4. package/dist/components/catalyst-ui/core/feedback/alert.tsx +491 -0
  5. package/dist/components/catalyst-ui/core/feedback/spinner-1.tsx +65 -0
  6. package/dist/components/catalyst-ui/core/feedback/toast.tsx +1857 -0
  7. package/dist/components/catalyst-ui/core/navigation/menu.tsx +164 -0
  8. package/dist/components/catalyst-ui/forms/toggle-class.tsx +176 -0
  9. package/dist/components/catalyst-ui/hooks/use-copy-to-clipboard.tsx +419 -0
  10. package/dist/components/catalyst-ui/hooks/use-counter.tsx +13 -0
  11. package/dist/components/catalyst-ui/hooks/use-event-listener.tsx +23 -0
  12. package/dist/components/catalyst-ui/hooks/use-export-markdown.tsx +47 -0
  13. package/dist/components/catalyst-ui/hooks/use-focus.tsx +17 -0
  14. package/dist/components/catalyst-ui/hooks/use-interval.tsx +23 -0
  15. package/dist/components/catalyst-ui/hooks/use-is-client.tsx +16 -0
  16. package/dist/components/catalyst-ui/hooks/use-media-query.tsx +19 -0
  17. package/dist/components/catalyst-ui/hooks/use-mobile.tsx +19 -0
  18. package/dist/components/catalyst-ui/hooks/use-resize-observer.tsx +81 -0
  19. package/dist/components/catalyst-ui/hooks/use-timeout.tsx +21 -0
  20. package/dist/components/catalyst-ui/hooks/use-timer.tsx +209 -0
  21. package/dist/components/catalyst-ui/hooks/use-toggle.tsx +12 -0
  22. package/dist/components/catalyst-ui/media/image.tsx +13 -0
  23. package/dist/components/catalyst-ui/overlays/dual-sidebar.tsx +4142 -0
  24. package/dist/components/catalyst-ui/overlays/sidebar-original.tsx +726 -0
  25. package/dist/components/catalyst-ui/primitives/accordion.tsx +250 -0
  26. package/dist/components/catalyst-ui/primitives/alert-dialog.tsx +126 -0
  27. package/dist/components/catalyst-ui/primitives/aspect-ratio.tsx +9 -0
  28. package/dist/components/catalyst-ui/primitives/avatar.tsx +296 -0
  29. package/dist/components/catalyst-ui/primitives/badge.tsx +57 -0
  30. package/dist/components/catalyst-ui/primitives/breadcrumb.tsx +101 -0
  31. package/dist/components/catalyst-ui/primitives/button.tsx +265 -0
  32. package/dist/components/catalyst-ui/primitives/calendar-v4.tsx +208 -0
  33. package/dist/components/catalyst-ui/primitives/calendar.tsx +295 -0
  34. package/dist/components/catalyst-ui/primitives/card.tsx +618 -0
  35. package/dist/components/catalyst-ui/primitives/carousel.tsx +238 -0
  36. package/dist/components/catalyst-ui/primitives/chart.tsx +347 -0
  37. package/dist/components/catalyst-ui/primitives/checkbox.tsx +225 -0
  38. package/dist/components/catalyst-ui/primitives/collapsible.tsx +212 -0
  39. package/dist/components/catalyst-ui/primitives/command.tsx +393 -0
  40. package/dist/components/catalyst-ui/primitives/context-menu.tsx +236 -0
  41. package/dist/components/catalyst-ui/primitives/dialog.tsx +471 -0
  42. package/dist/components/catalyst-ui/primitives/drawer.tsx +761 -0
  43. package/dist/components/catalyst-ui/primitives/dropdown-menu.tsx +290 -0
  44. package/dist/components/catalyst-ui/primitives/empty.tsx +104 -0
  45. package/dist/components/catalyst-ui/primitives/field.tsx +244 -0
  46. package/dist/components/catalyst-ui/primitives/hover-card.tsx +124 -0
  47. package/dist/components/catalyst-ui/primitives/input-otp.tsx +76 -0
  48. package/dist/components/catalyst-ui/primitives/input.tsx +64 -0
  49. package/dist/components/catalyst-ui/primitives/item.tsx +196 -0
  50. package/dist/components/catalyst-ui/primitives/kbd.tsx +75 -0
  51. package/dist/components/catalyst-ui/primitives/label.tsx +24 -0
  52. package/dist/components/catalyst-ui/primitives/navigation-menu.tsx +150 -0
  53. package/dist/components/catalyst-ui/primitives/pagination.tsx +198 -0
  54. package/dist/components/catalyst-ui/primitives/popover.tsx +232 -0
  55. package/dist/components/catalyst-ui/primitives/progress.tsx +34 -0
  56. package/dist/components/catalyst-ui/primitives/radio-group.tsx +43 -0
  57. package/dist/components/catalyst-ui/primitives/resizable.tsx +56 -0
  58. package/dist/components/catalyst-ui/primitives/select.tsx +155 -0
  59. package/dist/components/catalyst-ui/primitives/separator.tsx +74 -0
  60. package/dist/components/catalyst-ui/primitives/sheet.tsx +126 -0
  61. package/dist/components/catalyst-ui/primitives/skeleton.tsx +15 -0
  62. package/dist/components/catalyst-ui/primitives/slider.tsx +27 -0
  63. package/dist/components/catalyst-ui/primitives/switch.tsx +187 -0
  64. package/dist/components/catalyst-ui/primitives/tabs.tsx +335 -0
  65. package/dist/components/catalyst-ui/primitives/textarea.tsx +24 -0
  66. package/dist/components/catalyst-ui/primitives/toggle-group.tsx +55 -0
  67. package/dist/components/catalyst-ui/primitives/toggle.tsx +42 -0
  68. package/dist/components/catalyst-ui/primitives/tooltip.tsx +116 -0
  69. package/dist/components/catalyst-ui/utils/basic-auth.tsx +40 -0
  70. package/dist/components/catalyst-ui/utils/context-storage.tsx +19 -0
  71. package/dist/components/catalyst-ui/utils/cors-middleware.tsx +71 -0
  72. package/dist/components/catalyst-ui/utils/deferred-content.tsx +595 -0
  73. package/dist/components/catalyst-ui/utils/honeypot-middleware.tsx +38 -0
  74. package/dist/components/catalyst-ui/utils/incId.tsx +75 -0
  75. package/dist/components/catalyst-ui/utils/jwk-auth.tsx +36 -0
  76. package/dist/components/catalyst-ui/utils/request-id.tsx +14 -0
  77. package/dist/components/catalyst-ui/utils/secure-headers.tsx +37 -0
  78. package/dist/components/catalyst-ui/utils/server-timing.tsx +23 -0
  79. package/dist/components/catalyst-ui/utils/utils.ts +43 -0
  80. package/dist/components/catalyst-ui/utils/with-cookie.tsx +43 -0
  81. package/dist/components/catalyst-ui/x/accordian-x.tsx +428 -0
  82. package/dist/components/catalyst-ui/x/alert-x.tsx +413 -0
  83. package/dist/components/catalyst-ui/x/animated-text-x.tsx +2242 -0
  84. package/dist/components/catalyst-ui/x/avatar-x.tsx +515 -0
  85. package/dist/components/catalyst-ui/x/badge-x.tsx +670 -0
  86. package/dist/components/catalyst-ui/x/button-X.tsx +2857 -0
  87. package/dist/components/catalyst-ui/x/button-group-x.tsx +847 -0
  88. package/dist/components/catalyst-ui/x/calendar-x.tsx +1910 -0
  89. package/dist/components/catalyst-ui/x/card-x.tsx +2597 -0
  90. package/dist/components/catalyst-ui/x/checkbox-x.tsx +656 -0
  91. package/dist/components/catalyst-ui/x/collapsible-x.tsx +1360 -0
  92. package/dist/components/catalyst-ui/x/combobox-x.tsx +911 -0
  93. package/dist/components/catalyst-ui/x/data-table-x.tsx +1753 -0
  94. package/dist/components/catalyst-ui/x/date-picker-x.tsx +648 -0
  95. package/dist/components/catalyst-ui/x/dialog-x.tsx +659 -0
  96. package/dist/components/catalyst-ui/x/dropdown-menu-x.tsx +612 -0
  97. package/dist/components/catalyst-ui/x/hover-card-x.tsx +375 -0
  98. package/dist/components/catalyst-ui/x/icon-x.tsx +840 -0
  99. package/dist/components/catalyst-ui/x/input-mask-x.tsx +981 -0
  100. package/dist/components/catalyst-ui/x/input-otp-x.tsx +659 -0
  101. package/dist/components/catalyst-ui/x/loader-x.tsx +1757 -0
  102. package/dist/components/catalyst-ui/x/pagination-x.tsx +622 -0
  103. package/dist/components/catalyst-ui/x/popover-x.tsx +744 -0
  104. package/dist/components/catalyst-ui/x/radio-group-x.tsx +499 -0
  105. package/dist/components/catalyst-ui/x/select-x.tsx +1127 -0
  106. package/dist/components/catalyst-ui/x/sheet-x.tsx +668 -0
  107. package/dist/components/catalyst-ui/x/switch-x.tsx +681 -0
  108. package/dist/components/catalyst-ui/x/table-x.tsx +574 -0
  109. package/dist/components/catalyst-ui/x/tabs-x.tsx +839 -0
  110. package/dist/components/catalyst-ui/x/textarea-x.tsx +1263 -0
  111. package/dist/components/catalyst-ui/x/tooltip-x.tsx +396 -0
  112. package/dist/components/catalyst-ui/x/tracker-x.tsx +560 -0
  113. package/dist/data/bg-data.tsx +901 -0
  114. package/dist/data/buttons-data.tsx +2327 -0
  115. package/dist/data/charts-data.tsx +102 -0
  116. package/dist/data/chat-data.tsx +83 -0
  117. package/dist/data/code-data.tsx +1040 -0
  118. package/dist/data/comboboxes-data.tsx +1843 -0
  119. package/dist/data/command-data.tsx +1381 -0
  120. package/dist/data/core-data.tsx +15953 -0
  121. package/dist/data/crm-data.tsx +47 -0
  122. package/dist/data/data.tsx +159 -0
  123. package/dist/data/date-and-time-data.tsx +554 -0
  124. package/dist/data/dependencies.tsx +7 -0
  125. package/dist/data/ecommerce-data.tsx +1387 -0
  126. package/dist/data/forms-data.tsx +7890 -0
  127. package/dist/data/hooks-data.tsx +5487 -0
  128. package/dist/data/index.ts +34 -0
  129. package/dist/data/inputs-data.tsx +557 -0
  130. package/dist/data/interactive-data.tsx +5394 -0
  131. package/dist/data/lofi-data.tsx +18295 -0
  132. package/dist/data/marketing-data.tsx +2546 -0
  133. package/dist/data/media-data.tsx +1510 -0
  134. package/dist/data/motion-data.tsx +5801 -0
  135. package/dist/data/overlay-data.tsx +4136 -0
  136. package/dist/data/pdf-data.tsx +124 -0
  137. package/dist/data/pos-data.tsx +213 -0
  138. package/dist/data/postcss.config.js +6 -0
  139. package/dist/data/primitive-data.tsx +5170 -0
  140. package/dist/data/prompt-data.tsx +1226 -0
  141. package/dist/data/requiredLibs.ts +4 -0
  142. package/dist/data/sandbox-data.tsx +1 -0
  143. package/dist/data/sidebars-data.tsx +5421 -0
  144. package/dist/data/stacks-data.tsx +32 -0
  145. package/dist/data/table-data.tsx +706 -0
  146. package/dist/data/tailwind.config.js +270 -0
  147. package/dist/data/tailwind.config.ngin.js +3830 -0
  148. package/dist/data/tailwind.css +431 -0
  149. package/dist/data/tools-data.tsx +6910 -0
  150. package/dist/data/typography-data.tsx +2050 -0
  151. package/dist/data/utils-data.tsx +6500 -0
  152. package/dist/data/x-data.tsx +1171 -0
  153. package/dist/data.tsx +159 -0
  154. package/package.json +1 -1
  155. package/dist/index.d.ts +0 -3
  156. package/dist/index.d.ts.map +0 -1
  157. package/dist/index.js.map +0 -362
@@ -0,0 +1,1171 @@
1
+ export const xData = [
2
+ {
3
+ name: "Button X",
4
+ value: "button-x",
5
+ importPath: "~/components/catalyst-uix/button-x",
6
+ path: "/components/catalyst-ui/x/button-X.tsx",
7
+ source: null,
8
+ usagePath: "/components/catalyst-ui/x/button-X.tsx",
9
+ basicusage: `
10
+ <ButtonX variant="default">
11
+ Click Me
12
+ </ButtonX>
13
+
14
+ <ButtonX
15
+ variant="default" // default | destructive | outline | secondary | ghost | link | elevated | filled | tonal | outlined | text | styled | reverted | dashed | gradient | soft | glass | success | warning | info | shine | pulse | violet | blue | green
16
+ size="default" // default | sm | lg | icon
17
+ align="middle" // left | middle | right
18
+ effect="hoverUnderline" // expandIcon | ringHover | shine | shineHover | gooeyRight | gooeyLeft | underline | hoverUnderline | gradientSlideShow
19
+ prefetch="intent" // none | intent | render | viewport
20
+ nav="null" // null | navlink | anchor
21
+ to="/"
22
+ iconPlacement="left" // left | right
23
+ icon={Icon}
24
+ newTab={true}
25
+ onClick={() => {}}
26
+ className=""
27
+ >
28
+ Click Me
29
+ </ButtonX>`,
30
+ usage: `
31
+ <ButtonX
32
+ variant="default" // default | destructive | outline | secondary | ghost | link | elevated | filled | tonal | outlined | text | styled | reverted | dashed | gradient | soft | glass | success | warning | info | shine | pulse | violet | blue | green | Attract | Burger | Command | Copy
33
+ size="default" // default | sm | lg | icon
34
+ align="middle" // left | middle | right
35
+ effect="hoverUnderline" // expandIcon | ringHover | shine | shineHover | gooeyRight | gooeyLeft | underline | hoverUnderline | gradientSlideShow
36
+ prefetch="intent" // none | intent | render | viewport
37
+ nav="null" // null | navlink | anchor
38
+ to="/"
39
+ iconPlacement="left" // left | right
40
+ icon={Icon}
41
+ newTab={true}
42
+ asChild={false}
43
+ type="button" // button | submit | reset
44
+ onClick={() => {}}
45
+ className=""
46
+ particleCount={12} // for Attract variant
47
+ attractRadius={50} // for Attract variant
48
+ attractVariant="default" // default | violet | blue | green - for Attract variant
49
+ activeText="Attracting" // for Attract variant
50
+ inactiveText="Hover me" // for Attract variant
51
+ content="text to copy" // for Copy variant
52
+ delay={3000} // for Copy variant
53
+ onCopy={(content) => {}} // for Copy variant
54
+ isCopied={false} // for Copy variant
55
+ onCopyChange={(isCopied) => {}} // for Copy variant
56
+ >
57
+ Click Me
58
+ </ButtonX>`,
59
+ premium: false,
60
+ category: "X",
61
+ tags: ["ui", "components", "button", "interactive", "navigation", "advanced", "animated"],
62
+ features: ["Responsive", "TypeScript", "Accessible", "Multiple Variants", "Navigation Support", "Loading States", "Advanced Effects", "Animated Variants", "Attract Button", "Command Button", "Copy Button"],
63
+ dependencies: ["react", "class-variance-authority", "@radix-ui/react-slot", "@remix-run/react", "lucide-react", "motion/react", "~/components/catalyst-ui/utils"],
64
+ props: {
65
+ "ButtonX": [
66
+ { name: "className", type: "string", default: "null" },
67
+ { name: "variant", type: "default | destructive | outline | secondary | ghost | link | elevated | filled | tonal | outlined | text | styled | reverted | dashed | gradient | soft | glass | success | warning | info | shine | pulse | violet | blue | green | Attract | Burger | Command | Copy", default: "default" },
68
+ { name: "effect", type: "expandIcon | ringHover | shine | shineHover | gooeyRight | gooeyLeft | underline | hoverUnderline | gradientSlideShow", default: "null" },
69
+ { name: "size", type: "default | sm | lg | icon", default: "default" },
70
+ { name: "align", type: "left | middle | right", default: "middle" },
71
+ { name: "to", type: "string", default: "/" },
72
+ { name: "prefetch", type: "none | intent | render | viewport", default: "intent" },
73
+ { name: "nav", type: "null | navlink | anchor", default: "null" },
74
+ { name: "newTab", type: "boolean", default: "true" },
75
+ { name: "asChild", type: "boolean", default: "false" },
76
+ { name: "icon", type: "icon function", default: "null" },
77
+ { name: "iconPlacement", type: "left | right", default: "left" },
78
+ { name: "onClick", type: "react function", default: "null" },
79
+ { name: "type", type: "button | submit | reset", default: "button for navlink and anchor, submit for effect, defaults to submit" },
80
+ { name: "particleCount", type: "number", default: "12" },
81
+ { name: "attractRadius", type: "number", default: "50" },
82
+ { name: "attractVariant", type: "default | violet | blue | green", default: "default" },
83
+ { name: "activeText", type: "string", default: "Attracting" },
84
+ { name: "inactiveText", type: "string", default: "Hover me" },
85
+ { name: "content", type: "string", default: "null" },
86
+ { name: "delay", type: "number", default: "3000" },
87
+ { name: "onCopy", type: "function", default: "null" },
88
+ { name: "isCopied", type: "boolean", default: "false" },
89
+ { name: "onCopyChange", type: "function", default: "null" },
90
+ ],
91
+ "AttractButton": [
92
+ { name: "particleCount", type: "number", default: "12" },
93
+ { name: "attractRadius", type: "number", default: "50" },
94
+ { name: "attractVariant", type: "default | violet | blue | green", default: "default" },
95
+ { name: "icon", type: "React.ReactNode", default: "null" },
96
+ { name: "activeText", type: "string", default: "Attracting" },
97
+ { name: "inactiveText", type: "string", default: "Hover me" },
98
+ { name: "className", type: "string", default: "null" },
99
+ ],
100
+ "CommandButton": [
101
+ { name: "variant", type: "default | primary | secondary", default: "default" },
102
+ { name: "size", type: "sm | default | lg", default: "default" },
103
+ { name: "className", type: "string", default: "null" },
104
+ { name: "children", type: "React.ReactNode", default: "null" },
105
+ ],
106
+ "CopyButton": [
107
+ { name: "content", type: "string", default: "null" },
108
+ { name: "className", type: "string", default: "null" },
109
+ { name: "size", type: "default | sm | lg | icon", default: "default" },
110
+ { name: "variant", type: "default | destructive | outline | secondary | ghost | link", default: "default" },
111
+ { name: "delay", type: "number", default: "3000" },
112
+ { name: "onClick", type: "function", default: "null" },
113
+ { name: "onCopy", type: "function", default: "null" },
114
+ { name: "isCopied", type: "boolean", default: "false" },
115
+ { name: "onCopyChange", type: "function", default: "null" },
116
+ ],
117
+ "FloatButton": [
118
+ { name: "icon", type: "React.ReactNode", default: "null" },
119
+ { name: "description", type: "string", default: "null" },
120
+ { name: "tooltip", type: "string", default: "null" },
121
+ { name: "type", type: "default | primary", default: "default" },
122
+ { name: "shape", type: "circle | square", default: "circle" },
123
+ { name: "size", type: "small | default | large", default: "default" },
124
+ { name: "className", type: "string", default: "null" },
125
+ { name: "onClick", type: "function", default: "null" },
126
+ { name: "children", type: "React.ReactNode", default: "null" },
127
+ ],
128
+ "FlipButton": [
129
+ { name: "frontText", type: "string", default: "null" },
130
+ { name: "backText", type: "string", default: "null" },
131
+ { name: "transition", type: "Transition", default: "{ type: 'spring', stiffness: 280, damping: 20 }" },
132
+ { name: "className", type: "string", default: "null" },
133
+ { name: "frontClassName", type: "string", default: "null" },
134
+ { name: "backClassName", type: "string", default: "null" },
135
+ { name: "from", type: "top | bottom | left | right", default: "top" },
136
+ ],
137
+ "HoldButton": [
138
+ { name: "holdDuration", type: "number", default: "3000" },
139
+ { name: "onComplete", type: "function", default: "null" },
140
+ { name: "icon", type: "React.ReactNode", default: "null" },
141
+ { name: "holdText", type: "string", default: "Hold me" },
142
+ { name: "releaseText", type: "string", default: "Release" },
143
+ { name: "holdVariant", type: "red | green | blue | orange | grey", default: "red" },
144
+ { name: "className", type: "string", default: "null" },
145
+ { name: "disabled", type: "boolean", default: "false" },
146
+ ],
147
+ "LiquidButton": [
148
+ { name: "className", type: "string", default: "null" },
149
+ { name: "variant", type: "default | destructive | outline | secondary | ghost | link", default: "default" },
150
+ { name: "size", type: "default | sm | lg | icon", default: "default" },
151
+ ],
152
+ "ParticleButton": [
153
+ { name: "children", type: "React.ReactNode", default: "null" },
154
+ { name: "onClick", type: "function", default: "null" },
155
+ { name: "onSuccess", type: "function", default: "null" },
156
+ { name: "successDuration", type: "number", default: "1000" },
157
+ { name: "particleCount", type: "number | low | high", default: "6" },
158
+ { name: "showIcon", type: "boolean", default: "true" },
159
+ { name: "icon", type: "React.ReactNode", default: "null" },
160
+ { name: "variant", type: "default | destructive | outline | secondary | ghost | link", default: "default" },
161
+ { name: "size", type: "default | sm | lg | icon", default: "default" },
162
+ { name: "align", type: "left | middle | right", default: "middle" },
163
+ { name: "className", type: "string", default: "null" },
164
+ { name: "disabled", type: "boolean", default: "false" },
165
+ ],
166
+ "RippleButton": [
167
+ { name: "children", type: "React.ReactNode", default: "null" },
168
+ { name: "onClick", type: "function", default: "null" },
169
+ { name: "className", type: "string", default: "null" },
170
+ { name: "rippleClassName", type: "string", default: "null" },
171
+ { name: "variant", type: "default | destructive | outline | secondary | ghost", default: "default" },
172
+ { name: "size", type: "default | sm | lg | icon", default: "default" },
173
+ { name: "scale", type: "number", default: "10" },
174
+ { name: "transition", type: "Transition", default: "{ duration: 0.6, ease: 'easeOut' }" },
175
+ ],
176
+ "SocialButton": [
177
+ { name: "shareButtons", type: "ShareButton[]", default: "[{ icon: Twitter, label: 'Share on Twitter' }, ...]" },
178
+ { name: "label", type: "string", default: "Hover me" },
179
+ { name: "icon", type: "React.ReactNode", default: "null" },
180
+ { name: "variant", type: "light | dark | outline", default: "light" },
181
+ { name: "className", type: "string", default: "null" },
182
+ ],
183
+ "SplitButton": [
184
+ { name: "label", type: "string", default: "null" },
185
+ { name: "icon", type: "React.ReactNode", default: "null" },
186
+ { name: "items", type: "SplitButtonItem[]", default: "[]" },
187
+ { name: "onClick", type: "function", default: "null" },
188
+ { name: "className", type: "string", default: "null" },
189
+ { name: "containerClassName", type: "string", default: "null" },
190
+ { name: "variant", type: "default | destructive | outline | secondary | ghost", default: "default" },
191
+ { name: "align", type: "left | middle | right", default: "default" },
192
+ { name: "size", type: "default | sm | lg | icon", default: "sm" },
193
+ { name: "children", type: "React.ReactNode", default: "null" },
194
+ ],
195
+ "SwitchButton": [
196
+ { name: "checked", type: "boolean", default: "false" },
197
+ { name: "onCheckedChange", type: "function", default: "null" },
198
+ { name: "className", type: "string", default: "null" },
199
+ { name: "variant", type: "default | primary | secondary | destructive", default: "default" },
200
+ { name: "size", type: "sm | md | lg", default: "md" },
201
+ { name: "disabled", type: "boolean", default: "false" },
202
+ { name: "labels", type: "{ checked: string; unchecked: string }", default: "null" },
203
+ ],
204
+ "ToggleButton": [
205
+ { name: "checked", type: "boolean", default: "false" },
206
+ { name: "onChange", type: "function", default: "null" },
207
+ { name: "disabled", type: "boolean", default: "false" },
208
+ { name: "className", type: "string", default: "null" },
209
+ { name: "variant", type: "default | outline | ghost", default: "default" },
210
+ { name: "size", type: "sm | md | lg | icon", default: "md" },
211
+ { name: "children", type: "React.ReactNode", default: "null" },
212
+ ],
213
+ "SlideButton": [
214
+ { name: "className", type: "string", default: "null" },
215
+ { name: "variant", type: "default | ghost", default: "default" },
216
+ { name: "size", type: "sm | default | lg", default: "default" },
217
+ { name: "text", type: "string", default: "Browse Components" },
218
+ { name: "hoverText", type: "string", default: "null" },
219
+ { name: "to", type: "string", default: "/" },
220
+ { name: "prefetch", type: "none | intent | render | viewport", default: "intent" },
221
+ ],
222
+ "TextRevealButton": [
223
+ { name: "text", type: "string", default: "shadcn.io" },
224
+ { name: "revealColor", type: "string", default: "#37FF8B" },
225
+ { name: "strokeColor", type: "string", default: "rgba(100, 100, 100, 0.7)" },
226
+ { name: "className", type: "string", default: "null" },
227
+ { name: "style", type: "React.CSSProperties", default: "null" },
228
+ ],
229
+ "ShimmerButton": [
230
+ { name: "shimmerColor", type: "string", default: "#ffffff" },
231
+ { name: "shimmerSize", type: "string", default: "0.05em" },
232
+ { name: "shimmerDuration", type: "string", default: "3s" },
233
+ { name: "borderRadius", type: "string", default: "100px" },
234
+ { name: "background", type: "string", default: "rgba(0, 0, 0, 1)" },
235
+ { name: "className", type: "string", default: "null" },
236
+ { name: "children", type: "React.ReactNode", default: "null" },
237
+ ],
238
+ "Rating": [
239
+ { name: "value", type: "number", default: "null" },
240
+ { name: "onValueChange", type: "function", default: "null" },
241
+ { name: "defaultValue", type: "number", default: "0" },
242
+ { name: "onChange", type: "function", default: "null" },
243
+ { name: "readOnly", type: "boolean", default: "false" },
244
+ { name: "className", type: "string", default: "null" },
245
+ { name: "children", type: "React.ReactNode", default: "null" },
246
+ ],
247
+ "RatingButton": [
248
+ { name: "index", type: "number", default: "null" },
249
+ { name: "size", type: "number", default: "20" },
250
+ { name: "className", type: "string", default: "null" },
251
+ { name: "icon", type: "React.ReactNode", default: "<StarIcon />" },
252
+ ],
253
+ "InputButtonProvider": [
254
+ { name: "className", type: "string", default: "null" },
255
+ { name: "transition", type: "Transition", default: "{ type: 'spring', stiffness: 300, damping: 20 }" },
256
+ { name: "showInput", type: "boolean", default: "null" },
257
+ { name: "setShowInput", type: "function", default: "null" },
258
+ { name: "id", type: "string", default: "null" },
259
+ { name: "children", type: "React.ReactNode", default: "null" },
260
+ ],
261
+ "InputButton": [
262
+ { name: "className", type: "string", default: "null" },
263
+ ],
264
+ "InputButtonAction": [
265
+ { name: "className", type: "string", default: "null" },
266
+ ],
267
+ "InputButtonSubmit": [
268
+ { name: "className", type: "string", default: "null" },
269
+ { name: "children", type: "React.ReactNode", default: "null" },
270
+ { name: "icon", type: "React.ElementType", default: "ArrowRight" },
271
+ ],
272
+ "InputButtonInput": [
273
+ { name: "className", type: "string", default: "null" },
274
+ ],
275
+ },
276
+ desc: "An advanced button component collection with 20+ specialized button variants including Attract, Command, Copy, Float, Flip, Hold, Liquid, Particle, Ripple, Social, Split, Switch, Toggle, Slide, TextReveal, Shimmer, Rating, and InputButton variants. Features animations, particle effects, hover states, and complex interactions.",
277
+ status: "Listed",
278
+ lastUpdated: "2024-11-30T00:00:00Z"
279
+ },
280
+ {
281
+ name: "AnimatedTextX",
282
+ value: "animated-text-x",
283
+ path: "/components/catalyst-ui/x/animated-text-x.tsx",
284
+ basicusage: `<AnimateText text="Roll In" type="rollIn" />`,
285
+ usage: `/**
286
+ * ============================ DEFAULT (AnimateText) ============================
287
+ * text: string (default: "Welcome to the Matrix, Neo.!") - any variant that uses text as a prop will default to this
288
+ * type?: "fadeIn" | "fadeInUp" | "popIn" | "shiftInUp" | "rollIn" | "whipIn" | "whipInUp" | "calmInUp" | "blurIn" | "blurInUp" | "blurInDown" | "slideUp" | "slideDown" | "slideLeft" | "slideRight" | "scaleUp" | "scaleDown"
289
+ * className?: string
290
+ * example: <AnimateText text="Roll In" type="rollIn" />
291
+ * note: this being the default, theres no need to call the function with the variant prop in order to use, granting acces to 18 different text animations alone.
292
+ *
293
+ * ============================ AnimatedGlitch ==================================
294
+ * text: string
295
+ * as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "span"
296
+ * textClassName?: string
297
+ * containerClassName?: string
298
+ * colors?: { red: string, green: string, blue: string }
299
+ * example: <AnimateText variant='AnimatedGlitch' text="GLITCH" colors={{ red: "#ff0000", green: "#00ff00", blue: "#0000ff" }} />
300
+ *
301
+ * ============================ Rotate ==========================================
302
+ * words: string[] - Array of words to rotate through
303
+ * duration?: number (default: 2500) - Time in ms between word changes
304
+ * motionProps?: MotionProps - Custom motion properties
305
+ * className?: string
306
+ * example: <AnimateText variant='Rotate' words={["First", "Second", "Third"]} duration={2000} />
307
+ *
308
+ * ============================ ExpandableTypewriter ============================
309
+ * delay: number - Initial delay before animation starts
310
+ * texts: string[] - Array of texts to cycle through
311
+ * baseText?: string - Initial base text to type out
312
+ * example: <AnimateText variant='ExpandableTypewriter' delay={0.5} texts={["Hello", "World"]} baseText="Welcome: " />
313
+ *
314
+ * ============================ TypingAnimation =================================
315
+ * children?: string - Single text to type
316
+ * words?: string[] - Multiple words to cycle through
317
+ * className?: string
318
+ * duration?: number (default: 100) - Speed per character
319
+ * typeSpeed?: number - Override duration for typing
320
+ * deleteSpeed?: number - Speed for deleting (default: typeSpeed/2)
321
+ * delay?: number (default: 0)
322
+ * pauseDelay?: number (default: 1000)
323
+ * loop?: boolean (default: false)
324
+ * as?: React.ElementType (default: "span")
325
+ * startOnView?: boolean (default: true)
326
+ * showCursor?: boolean (default: true)
327
+ * blinkCursor?: boolean (default: true)
328
+ * cursorStyle?: "line" | "block" | "underscore"
329
+ * example: <AnimateText variant='TypingAnimation' words={["TypeScript", "React", "Next.js"]} loop showCursor />
330
+ *
331
+ * ============================ Typewriter ======================================
332
+ * sequences?: TypewriterSequence[] - Array of { text: string, deleteAfter?: boolean, pauseAfter?: number }
333
+ * typingSpeed?: number (default: 50)
334
+ * startDelay?: number (default: 500)
335
+ * autoLoop?: boolean (default: true)
336
+ * loopDelay?: number (default: 2000)
337
+ * size?: "sm" | "md" | "lg"
338
+ * className?: string
339
+ * containerClassName?: string
340
+ * example: <AnimateText variant='Typewriter' sequences={[{ text: "Hello", deleteAfter: true }]} size="md" />
341
+ *
342
+ * ============================ Rewind ==========================================
343
+ * text?: string
344
+ * className?: string
345
+ * shadowColors?: { first?: string, second?: string, third?: string, fourth?: string, glow?: string }
346
+ * example: <AnimateText variant='Rewind' text="HOVER ME" shadowColors={{ first: "#07bccc", glow: "#f40468" }} />
347
+ *
348
+ * ============================ Swoosh ==========================================
349
+ * text?: string
350
+ * shadowColors?: { first?: string, second?: string, third?: string, fourth?: string, glow?: string }
351
+ * size?: "sm" | "md" | "lg" | "xl"
352
+ * className?: string
353
+ * disabled?: boolean
354
+ * example: <AnimateText variant='Swoosh' text="SWOOSH" size="lg" />
355
+ *
356
+ * ============================ Sliced ==========================================
357
+ * text: string
358
+ * splitSpacing?: number (default: 2)
359
+ * size?: "sm" | "md" | "lg" | "xl"
360
+ * className?: string
361
+ * containerClassName?: string
362
+ * disabled?: boolean
363
+ * example: <AnimateText variant='Sliced' text="SLICE" splitSpacing={4} size="lg" />
364
+ *
365
+ * ============================ Shimmer =========================================
366
+ * text: string
367
+ * duration?: number (default: 2.5)
368
+ * variant?: "default" | "primary" | "secondary" | "accent"
369
+ * size?: "sm" | "md" | "lg" | "xl"
370
+ * className?: string
371
+ * containerClassName?: string
372
+ * disabled?: boolean
373
+ * example: <AnimateText variant='Shimmer' text="Shimmer" duration={3} variant="primary" />
374
+ *
375
+ * ============================ Matrix ==========================================
376
+ * text?: string (default: "Welcome to the Matrix, Neo.!")
377
+ * initialDelay?: number (default: 200)
378
+ * letterAnimationDuration?: number (default: 500)
379
+ * letterInterval?: number (default: 100)
380
+ * matrixColor?: string (default: "#00ff00")
381
+ * loop?: boolean (default: false)
382
+ * size?: "sm" | "md" | "lg"
383
+ * alignment?: "left" | "center" | "right"
384
+ * className?: string
385
+ * example: <AnimateText variant='Matrix' text="MATRIX" matrixColor="#00ff00" loop />
386
+ *
387
+ * ============================ Glitch ==========================================
388
+ * text: string
389
+ * className?: string
390
+ * intensity?: "low" | "medium" | "high"
391
+ * duration?: number (default: 2000)
392
+ * enabled?: boolean (default: true)
393
+ * fontSize?: "sm" | "md" | "lg" | "xl" | "2xl"
394
+ * example: <AnimateText variant='Glitch' text="GLITCH" intensity="high" fontSize="xl" />
395
+ *
396
+ * ============================ Encrypted =======================================
397
+ * text: string
398
+ * className?: string
399
+ * revealDelayMs?: number (default: 50) - Time between revealing each character
400
+ * charset?: string - Custom character set for encryption
401
+ * flipDelayMs?: number (default: 50) - Time between gibberish flips
402
+ * encryptedClassName?: string
403
+ * revealedClassName?: string
404
+ * example: <AnimateText variant='Encrypted' text="SECRET" revealDelayMs={100} />
405
+ *
406
+ * ============================ Hyper ===========================================
407
+ * children: string
408
+ * className?: string
409
+ * duration?: number (default: 800)
410
+ * delay?: number (default: 0)
411
+ * as?: React.ElementType (default: "div")
412
+ * startOnView?: boolean (default: false)
413
+ * animateOnHover?: boolean (default: true)
414
+ * characterSet?: string[] (default: A-Z)
415
+ * example: <AnimateText variant='Hyper' duration={1000} animateOnHover>HYPERTEXT</AnimateText>
416
+ *
417
+ * ============================ Comic ===========================================
418
+ * children: string - The text to display in comic style
419
+ * className?: string
420
+ * style?: CSSProperties
421
+ * fontSize?: number (default: 5)
422
+ * example: <AnimateText variant='Comic' fontSize={4}>POW!</AnimateText>
423
+ *
424
+ * ============================ Reveal ==========================================
425
+ * children: string - Text to reveal on scroll
426
+ * className?: string
427
+ * example: <AnimateText variant='Reveal'>This text reveals as you scroll down the page</AnimateText>
428
+ *
429
+ * ============================ Morph ===========================================
430
+ * children: string - Text that morphs between changes
431
+ * as?: React.ElementType (default: "p")
432
+ * className?: string
433
+ * style?: React.CSSProperties
434
+ * variants?: Variants - Custom Framer Motion variants
435
+ * transition?: Transition - Custom Framer Motion transition
436
+ * example: <AnimateText variant='Morph'>Morphing Text</AnimateText>
437
+ *
438
+ */
439
+ `,
440
+ premium: false,
441
+ category: "X",
442
+ tags: ["text", "animation", "encrypted", "effect"],
443
+ features: ["Responsive", "TypeScript", "Accessible", "Animated"],
444
+ dependencies: ["react"],
445
+ props: {
446
+ "TextRewind": [
447
+ { name: "text", type: "string", default: "LINE" },
448
+ { name: "className", type: "string", default: "null" },
449
+ { name: "shadowColors", type: "{ first?: string; second?: string; third?: string; fourth?: string; glow?: string }", default: "{ first: '#07bccc', second: '#e601c0', third: '#e9019a', fourth: '#f40468', glow: '#f40468' }" },
450
+ ],
451
+ },
452
+ desc: "",
453
+ status: "Listed",
454
+ lastUpdated: "2025-12-01"
455
+ },
456
+ {
457
+ name: "LoaderX",
458
+ value: "loader-x",
459
+ importPath: "~/components/catalyst-ui/x/loader-x",
460
+ multiImport: null,
461
+ path: "/components/catalyst-ui/x/loader-x.tsx",
462
+ source: null,
463
+ usagePath: "/components/catalyst-ui/x/loader-x.tsx",
464
+ basicusage: `
465
+ <Loader variant="default" />
466
+
467
+ <Loader
468
+ variant="default" // default | circle | pinwheel | circle-filled | ellipsis | ring | bars | infinite | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21
469
+ size={24} // number | string
470
+ strokeWidth={2} // number
471
+ fill="transparent" // string
472
+ animationDuration="2s" // string
473
+ spinning={true} // boolean
474
+ delay={0} // number
475
+ tip="Loading..." // string
476
+ text="Loading..." // string
477
+ subText="Please wait" // string
478
+ frames={[]} // number[][]
479
+ dotClassName="" // string
480
+ isPlaying={true} // boolean
481
+ duration={100} // number
482
+ repeatCount={-1} // number
483
+ onComplete={() => {}} // function
484
+ outerSize="size-8" // string
485
+ childSize="size-6" // string
486
+ className=""
487
+ wrapperClassName=""
488
+ style={{}}
489
+ >
490
+ {/* children for LoaderNine */}
491
+ </Loader>`,
492
+ usage: `
493
+ <Loader
494
+ variant="default" // default | circle | pinwheel | circle-filled | ellipsis | ring | bars | infinite | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21
495
+ size={24} // number | string
496
+ strokeWidth={2} // number
497
+ fill="transparent" // string
498
+ animationDuration="2s" // string
499
+ spinning={true} // boolean
500
+ delay={0} // number
501
+ tip="Loading..." // string
502
+ indicator={null} // React.ReactNode
503
+ text="Loading..." // string
504
+ subText="Please wait" // string
505
+ frames={[]} // number[][]
506
+ dotClassName="" // string
507
+ isPlaying={true} // boolean
508
+ duration={100} // number
509
+ repeatCount={-1} // number
510
+ onComplete={() => {}} // function
511
+ outerSize="size-8" // string
512
+ childSize="size-6" // string
513
+ className=""
514
+ wrapperClassName=""
515
+ style={{}}
516
+ >
517
+ {/* children for LoaderNine */}
518
+ </Loader>`,
519
+ premium: false,
520
+ category: "X",
521
+ tags: ["ui", "components", "loader", "spinner", "loading", "feedback", "progress"],
522
+ features: ["Responsive", "TypeScript", "Accessible", "Multiple Variants", "Customizable Animations", "SVG Based", "Motion Support"],
523
+ dependencies: ["react", "motion/react", "class-variance-authority", "lucide-react", "~/components/catalyst-ui/utils"],
524
+ props: {
525
+ "Loader": [
526
+ { name: "variant", type: "default | circle | pinwheel | circle-filled | ellipsis | ring | bars | infinite | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21", default: "default" },
527
+ { name: "size", type: "number | string", default: "24" },
528
+ { name: "strokeWidth", type: "number", default: "2" },
529
+ { name: "fill", type: "string", default: "transparent" },
530
+ { name: "animationDuration", type: "string", default: "2s" },
531
+ { name: "style", type: "React.CSSProperties", default: "null" },
532
+ { name: "spinning", type: "boolean", default: "true" },
533
+ { name: "delay", type: "number", default: "0" },
534
+ { name: "tip", type: "string", default: "null" },
535
+ { name: "indicator", type: "React.ReactNode", default: "null" },
536
+ { name: "text", type: "string", default: "null" },
537
+ { name: "subText", type: "string", default: "null" },
538
+ { name: "frames", type: "number[][]", default: "null" },
539
+ { name: "dotClassName", type: "string", default: "null" },
540
+ { name: "isPlaying", type: "boolean", default: "true" },
541
+ { name: "duration", type: "number", default: "100" },
542
+ { name: "repeatCount", type: "number", default: "-1" },
543
+ { name: "onComplete", type: "function", default: "null" },
544
+ { name: "outerSize", type: "string", default: "null" },
545
+ { name: "childSize", type: "string", default: "null" },
546
+ { name: "className", type: "string", default: "null" },
547
+ { name: "wrapperClassName", type: "string", default: "null" },
548
+ { name: "children", type: "React.ReactNode", default: "null" }
549
+ ],
550
+ "loaderVariants": [
551
+ { name: "size", type: "default | sm | md | lg", default: "default" }
552
+ ]
553
+ },
554
+ desc: "A comprehensive loader component with 21+ variants including spinners, animations, and overlay states. Supports customizable sizes, colors, text overlays, and advanced features like frame-based animations and delayed loading states.",
555
+ status: "Listed",
556
+ lastUpdated: "2024-11-29T00:00:00Z"
557
+ },
558
+ {
559
+ name: "IconX",
560
+ value: "icon-x",
561
+ importPath: "~/components/catalyst-ui/x/icon-x",
562
+ multiImport: null,
563
+ path: "/components/catalyst-ui/x/icon-x.tsx",
564
+ source: null,
565
+ usagePath: "/components/catalyst-ui/x/icon-x.tsx",
566
+ basicusage: `
567
+ <IconX icon="Burger" />
568
+
569
+ <IconX
570
+ icon="Heart"
571
+ opened={true}
572
+ size="md"
573
+ color="currentColor"
574
+ className=""
575
+ />`,
576
+ usage: `
577
+ <IconX
578
+ icon="Burger" // Burger | Close | Plus | Chevron | Arrow | Check | Dots | Play | Heart
579
+ opened={false} // boolean
580
+ size="md" // sm | md | lg | xl
581
+ color="currentColor" // string
582
+ className="" // string
583
+ />`,
584
+ premium: false,
585
+ category: "X",
586
+ tags: ["ui", "components", "icons", "animated", "motion", "framer", "interactive", "toggle"],
587
+ features: ["Animated Icons", "TypeScript", "Multiple Icon Types", "Size Variants", "Color Customization", "State Management"],
588
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
589
+ props: {
590
+ "IconX": [
591
+ { name: "icon", type: "Burger | Close | Plus | Chevron | Arrow | Check | Dots | Play | Heart", default: "Burger" },
592
+ { name: "opened", type: "boolean", default: "false" },
593
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
594
+ { name: "color", type: "string", default: "currentColor" },
595
+ { name: "className", type: "string", default: "null" }
596
+ ],
597
+ "Burger": [
598
+ { name: "opened", type: "boolean", default: "false" },
599
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
600
+ { name: "color", type: "string", default: "currentColor" },
601
+ { name: "className", type: "string", default: "null" }
602
+ ],
603
+ "Burger2": [
604
+ { name: "opened", type: "boolean", default: "false" },
605
+ { name: "onToggle", type: "(opened: boolean) => void", default: "null" },
606
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
607
+ { name: "color", type: "string", default: "currentColor" },
608
+ { name: "className", type: "string", default: "null" },
609
+ { name: "aria-label", type: "string", default: "null" },
610
+ { name: "disabled", type: "boolean", default: "false" }
611
+ ],
612
+ "Close": [
613
+ { name: "opened", type: "boolean", default: "false" },
614
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
615
+ { name: "color", type: "string", default: "currentColor" },
616
+ { name: "className", type: "string", default: "null" }
617
+ ],
618
+ "Plus": [
619
+ { name: "opened", type: "boolean", default: "false" },
620
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
621
+ { name: "color", type: "string", default: "currentColor" },
622
+ { name: "className", type: "string", default: "null" }
623
+ ],
624
+ "Chevron": [
625
+ { name: "opened", type: "boolean", default: "false" },
626
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
627
+ { name: "color", type: "string", default: "currentColor" },
628
+ { name: "className", type: "string", default: "null" }
629
+ ],
630
+ "Arrow": [
631
+ { name: "opened", type: "boolean", default: "false" },
632
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
633
+ { name: "color", type: "string", default: "currentColor" },
634
+ { name: "className", type: "string", default: "null" }
635
+ ],
636
+ "Check": [
637
+ { name: "opened", type: "boolean", default: "false" },
638
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
639
+ { name: "color", type: "string", default: "currentColor" },
640
+ { name: "className", type: "string", default: "null" }
641
+ ],
642
+ "Dots": [
643
+ { name: "opened", type: "boolean", default: "false" },
644
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
645
+ { name: "color", type: "string", default: "currentColor" },
646
+ { name: "className", type: "string", default: "null" }
647
+ ],
648
+ "Play": [
649
+ { name: "opened", type: "boolean", default: "false" },
650
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
651
+ { name: "color", type: "string", default: "currentColor" },
652
+ { name: "className", type: "string", default: "null" }
653
+ ],
654
+ "Heart": [
655
+ { name: "opened", type: "boolean", default: "false" },
656
+ { name: "size", type: "sm | md | lg | xl", default: "md" },
657
+ { name: "color", type: "string", default: "currentColor" },
658
+ { name: "className", type: "string", default: "null" }
659
+ ]
660
+ },
661
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
662
+ status: "Listed",
663
+ lastUpdated: "2024-12-15T10:30:00Z"
664
+ },
665
+ {
666
+ name: "AccordianX",
667
+ value: "accordian-x",
668
+ importPath: "~/components/catalyst-ui/x/accordian-x",
669
+ multiImport: null,
670
+ path: "/components/catalyst-ui/x/accordian-x.tsx",
671
+ source: null,
672
+ usagePath: "/components/catalyst-ui/x/accordian-x.tsx",
673
+ basicusage: ``,
674
+ usage: ``,
675
+ premium: false,
676
+ category: "X",
677
+ tags: ["ui", "components", "animated", "motion", "interactive",],
678
+ features: [],
679
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
680
+ props: {},
681
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
682
+ status: "Listed",
683
+ lastUpdated: "2024-12-15T10:30:00Z"
684
+ },
685
+ {
686
+ name: "AlertX",
687
+ value: "alert-x",
688
+ importPath: "~/components/catalyst-ui/x/alert-x",
689
+ path: "/components/catalyst-ui/x/alert-x.tsx",
690
+ usagePath: "/components/catalyst-ui/x/alert-x.tsx",
691
+ basicusage: ``,
692
+ usage: ``,
693
+ premium: false,
694
+ category: "X",
695
+ tags: ["ui", "components", "animated", "motion", "interactive",],
696
+ features: [],
697
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
698
+ props: {},
699
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
700
+ status: "Listed",
701
+ lastUpdated: "2024-12-15T10:30:00Z"
702
+ },
703
+ {
704
+ name: "AvatarX",
705
+ value: "avatar-x",
706
+ importPath: "~/components/catalyst-ui/x/avatar-x",
707
+ path: "/components/catalyst-ui/x/avatar-x.tsx",
708
+ usagePath: "/components/catalyst-ui/x/avatar-x.tsx",
709
+ basicusage: ``,
710
+ usage: ``,
711
+ premium: false,
712
+ category: "X",
713
+ tags: ["ui", "components", "animated", "motion", "interactive",],
714
+ features: [],
715
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
716
+ props: {},
717
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
718
+ status: "Listed",
719
+ lastUpdated: "2024-12-15T10:30:00Z"
720
+ },
721
+ {
722
+ name: "BadgeX",
723
+ value: "badge-x",
724
+ importPath: "~/components/catalyst-ui/x/badge-x",
725
+ path: "/components/catalyst-ui/x/badge-x.tsx",
726
+ usagePath: "/components/catalyst-ui/x/badge-x.tsx",
727
+ basicusage: ``,
728
+ usage: ``,
729
+ premium: false,
730
+ category: "X",
731
+ tags: ["ui", "components", "animated", "motion", "interactive",],
732
+ features: [],
733
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
734
+ props: {},
735
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
736
+ status: "Listed",
737
+ lastUpdated: "2024-12-15T10:30:00Z"
738
+ },
739
+ {
740
+ name: "ButtonGroupX",
741
+ value: "button-group-x",
742
+ importPath: "~/components/catalyst-ui/x/button-group-x",
743
+ path: "/components/catalyst-ui/x/button-group-x.tsx",
744
+ usagePath: "/components/catalyst-ui/x/button-group-x.tsx",
745
+ basicusage: ``,
746
+ usage: ``,
747
+ premium: false,
748
+ category: "X",
749
+ tags: ["ui", "components", "animated", "motion", "interactive",],
750
+ features: [],
751
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
752
+ props: {},
753
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
754
+ status: "Listed",
755
+ lastUpdated: "2024-12-15T10:30:00Z"
756
+ },
757
+ {
758
+ name: "CalendarX",
759
+ value: "calendar-x",
760
+ importPath: "~/components/catalyst-ui/x/calendar-x",
761
+ path: "/components/catalyst-ui/x/calendar-x.tsx",
762
+ usagePath: "/components/catalyst-ui/x/calendar-x.tsx",
763
+ basicusage: ``,
764
+ usage: ``,
765
+ premium: false,
766
+ category: "X",
767
+ tags: ["ui", "components", "animated", "motion", "interactive",],
768
+ features: [],
769
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
770
+ props: {},
771
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
772
+ status: "Listed",
773
+ lastUpdated: "2024-12-15T10:30:00Z"
774
+ },
775
+ {
776
+ name: "CardX",
777
+ value: "card-x",
778
+ importPath: "~/components/catalyst-ui/x/card-x",
779
+ path: "/components/catalyst-ui/x/card-x.tsx",
780
+ usagePath: "/components/catalyst-ui/x/card-x.tsx",
781
+ basicusage: ``,
782
+ usage: ``,
783
+ premium: false,
784
+ category: "X",
785
+ tags: ["ui", "components", "animated", "motion", "interactive",],
786
+ features: [],
787
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
788
+ props: {},
789
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
790
+ status: "Listed",
791
+ lastUpdated: "2024-12-15T10:30:00Z"
792
+ },
793
+ {
794
+ name: "CheckboxX",
795
+ value: "checkbox-x",
796
+ importPath: "~/components/catalyst-ui/x/checkbox-x",
797
+ path: "/components/catalyst-ui/x/checkbox-x.tsx",
798
+ usagePath: "/components/catalyst-ui/x/checkbox-x.tsx",
799
+ basicusage: ``,
800
+ usage: ``,
801
+ premium: false,
802
+ category: "X",
803
+ tags: ["ui", "components", "animated", "motion", "interactive",],
804
+ features: [],
805
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
806
+ props: {},
807
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
808
+ status: "Listed",
809
+ lastUpdated: "2024-12-15T10:30:00Z"
810
+ },
811
+ {
812
+ name: "CollapsibleX",
813
+ value: "collapsible-x",
814
+ importPath: "~/components/catalyst-ui/x/collapsible-x",
815
+ path: "/components/catalyst-ui/x/collapsible-x.tsx",
816
+ usagePath: "/components/catalyst-ui/x/collapsible-x.tsx",
817
+ basicusage: ``,
818
+ usage: ``,
819
+ premium: false,
820
+ category: "X",
821
+ tags: ["ui", "components", "animated", "motion", "interactive",],
822
+ features: [],
823
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
824
+ props: {},
825
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
826
+ status: "Listed",
827
+ lastUpdated: "2024-12-15T10:30:00Z"
828
+ },
829
+ {
830
+ name: "ComboboxX",
831
+ value: "combobox-x",
832
+ importPath: "~/components/catalyst-ui/x/combobox-x",
833
+ path: "/components/catalyst-ui/x/combobox-x.tsx",
834
+ usagePath: "/components/catalyst-ui/x/combobox-x.tsx",
835
+ basicusage: ``,
836
+ usage: ``,
837
+ premium: false,
838
+ category: "X",
839
+ tags: ["ui", "components", "animated", "motion", "interactive",],
840
+ features: [],
841
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
842
+ props: {},
843
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
844
+ status: "Listed",
845
+ lastUpdated: "2024-12-15T10:30:00Z"
846
+ },
847
+ {
848
+ name: "data-tableX",
849
+ value: "data-table-x",
850
+ importPath: "~/components/catalyst-ui/x/data-table-x",
851
+ path: "/components/catalyst-ui/x/data-table-x.tsx",
852
+ usagePath: "/components/catalyst-ui/x/data-table-x.tsx",
853
+ basicusage: ``,
854
+ usage: ``,
855
+ premium: false,
856
+ category: "X",
857
+ tags: ["ui", "components", "animated", "motion", "interactive",],
858
+ features: [],
859
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
860
+ props: {},
861
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
862
+ status: "Listed",
863
+ lastUpdated: "2024-12-15T10:30:00Z"
864
+ },
865
+ {
866
+ name: "date-pickerX",
867
+ value: "date-picker-x",
868
+ importPath: "~/components/catalyst-ui/x/date-picker-x",
869
+ path: "/components/catalyst-ui/x/date-picker-x.tsx",
870
+ usagePath: "/components/catalyst-ui/x/date-picker-x.tsx",
871
+ basicusage: ``,
872
+ usage: ``,
873
+ premium: false,
874
+ category: "X",
875
+ tags: ["ui", "components", "animated", "motion", "interactive",],
876
+ features: [],
877
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
878
+ props: {},
879
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
880
+ status: "Listed",
881
+ lastUpdated: "2024-12-15T10:30:00Z"
882
+ },
883
+ {
884
+ name: "dialogX",
885
+ value: "dialog-x",
886
+ importPath: "~/components/catalyst-ui/x/dialog-x",
887
+ path: "/components/catalyst-ui/x/dialog-x.tsx",
888
+ usagePath: "/components/catalyst-ui/x/dialog-x.tsx",
889
+ basicusage: ``,
890
+ usage: ``,
891
+ premium: false,
892
+ category: "X",
893
+ tags: ["ui", "components", "animated", "motion", "interactive",],
894
+ features: [],
895
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
896
+ props: {},
897
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
898
+ status: "Listed",
899
+ lastUpdated: "2024-12-15T10:30:00Z"
900
+ },
901
+ {
902
+ name: "dropdown-menuX",
903
+ value: "dropdown-menu-x",
904
+ importPath: "~/components/catalyst-ui/x/dropdown-menu-x",
905
+ path: "/components/catalyst-ui/x/dropdown-menu-x.tsx",
906
+ usagePath: "/components/catalyst-ui/x/dropdown-menu-x.tsx",
907
+ basicusage: ``,
908
+ usage: ``,
909
+ premium: false,
910
+ category: "X",
911
+ tags: ["ui", "components", "animated", "motion", "interactive",],
912
+ features: [],
913
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
914
+ props: {},
915
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
916
+ status: "Listed",
917
+ lastUpdated: "2024-12-15T10:30:00Z"
918
+ },
919
+ {
920
+ name: "input-maskX",
921
+ value: "input-mask-x",
922
+ importPath: "~/components/catalyst-ui/x/input-mask-x",
923
+ path: "/components/catalyst-ui/x/input-mask-x.tsx",
924
+ usagePath: "/components/catalyst-ui/x/input-mask-x.tsx",
925
+ basicusage: ``,
926
+ usage: ``,
927
+ premium: false,
928
+ category: "X",
929
+ tags: ["ui", "components", "animated", "motion", "interactive",],
930
+ features: [],
931
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
932
+ props: {},
933
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
934
+ status: "Listed",
935
+ lastUpdated: "2024-12-15T10:30:00Z"
936
+ },
937
+ {
938
+ name: "input-otpX",
939
+ value: "input-otp-x",
940
+ importPath: "~/components/catalyst-ui/x/input-otp-x",
941
+ path: "/components/catalyst-ui/x/input-otp-x.tsx",
942
+ usagePath: "/components/catalyst-ui/x/input-otp-x.tsx",
943
+ basicusage: ``,
944
+ usage: ``,
945
+ premium: false,
946
+ category: "X",
947
+ tags: ["ui", "components", "animated", "motion", "interactive",],
948
+ features: [],
949
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
950
+ props: {},
951
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
952
+ status: "Listed",
953
+ lastUpdated: "2024-12-15T10:30:00Z"
954
+ },
955
+ {
956
+ name: "paginationX",
957
+ value: "pagination-x",
958
+ importPath: "~/components/catalyst-ui/x/pagination-x",
959
+ path: "/components/catalyst-ui/x/pagination-x.tsx",
960
+ usagePath: "/components/catalyst-ui/x/pagination-x.tsx",
961
+ basicusage: ``,
962
+ usage: ``,
963
+ premium: false,
964
+ category: "X",
965
+ tags: ["ui", "components", "animated", "motion", "interactive",],
966
+ features: [],
967
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
968
+ props: {},
969
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
970
+ status: "Listed",
971
+ lastUpdated: "2024-12-15T10:30:00Z"
972
+ },
973
+ {
974
+ name: "popoverX",
975
+ value: "popover-x",
976
+ importPath: "~/components/catalyst-ui/x/popover-x",
977
+ path: "/components/catalyst-ui/x/popover-x.tsx",
978
+ usagePath: "/components/catalyst-ui/x/popover-x.tsx",
979
+ basicusage: ``,
980
+ usage: ``,
981
+ premium: false,
982
+ category: "X",
983
+ tags: ["ui", "components", "animated", "motion", "interactive",],
984
+ features: [],
985
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
986
+ props: {},
987
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
988
+ status: "Listed",
989
+ lastUpdated: "2024-12-15T10:30:00Z"
990
+ },
991
+ {
992
+ name: "radio-groupX",
993
+ value: "radio-group-x",
994
+ importPath: "~/components/catalyst-ui/x/radio-group-x",
995
+ path: "/components/catalyst-ui/x/radio-group-x.tsx",
996
+ usagePath: "/components/catalyst-ui/x/radio-group-x.tsx",
997
+ basicusage: ``,
998
+ usage: ``,
999
+ premium: false,
1000
+ category: "X",
1001
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1002
+ features: [],
1003
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1004
+ props: {},
1005
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1006
+ status: "Listed",
1007
+ lastUpdated: "2024-12-15T10:30:00Z"
1008
+ },
1009
+ {
1010
+ name: "selectX",
1011
+ value: "select-x",
1012
+ importPath: "~/components/catalyst-ui/x/select-x",
1013
+ path: "/components/catalyst-ui/x/select-x.tsx",
1014
+ usagePath: "/components/catalyst-ui/x/select-x.tsx",
1015
+ basicusage: ``,
1016
+ usage: ``,
1017
+ premium: false,
1018
+ category: "X",
1019
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1020
+ features: [],
1021
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1022
+ props: {},
1023
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1024
+ status: "Listed",
1025
+ lastUpdated: "2024-12-15T10:30:00Z"
1026
+ },
1027
+ {
1028
+ name: "sheetX",
1029
+ value: "rasheet-x",
1030
+ importPath: "~/components/catalyst-ui/x/sheet-x",
1031
+ path: "/components/catalyst-ui/x/sheet-x.tsx",
1032
+ usagePath: "/components/catalyst-ui/x/sheet-x.tsx",
1033
+ basicusage: ``,
1034
+ usage: ``,
1035
+ premium: false,
1036
+ category: "X",
1037
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1038
+ features: [],
1039
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1040
+ props: {},
1041
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1042
+ status: "Listed",
1043
+ lastUpdated: "2024-12-15T10:30:00Z"
1044
+ },
1045
+ {
1046
+ name: "switchX",
1047
+ value: "switch-x",
1048
+ importPath: "~/components/catalyst-ui/x/switch-x",
1049
+ path: "/components/catalyst-ui/x/switch-x.tsx",
1050
+ usagePath: "/components/catalyst-ui/x/switch-x.tsx",
1051
+ basicusage: ``,
1052
+ usage: ``,
1053
+ premium: false,
1054
+ category: "X",
1055
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1056
+ features: [],
1057
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1058
+ props: {},
1059
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1060
+ status: "Listed",
1061
+ lastUpdated: "2024-12-15T10:30:00Z"
1062
+ },
1063
+ {
1064
+ name: "tableX",
1065
+ value: "table-x",
1066
+ importPath: "~/components/catalyst-ui/x/table-x",
1067
+ path: "/components/catalyst-ui/x/table-x.tsx",
1068
+ usagePath: "/components/catalyst-ui/x/table-x.tsx",
1069
+ basicusage: ``,
1070
+ usage: ``,
1071
+ premium: false,
1072
+ category: "X",
1073
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1074
+ features: [],
1075
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1076
+ props: {},
1077
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1078
+ status: "Listed",
1079
+ lastUpdated: "2024-12-15T10:30:00Z"
1080
+ },
1081
+ {
1082
+ name: "tabsX",
1083
+ value: "tabs-x",
1084
+ importPath: "~/components/catalyst-ui/x/tabs-x",
1085
+ path: "/components/catalyst-ui/x/tabs-x.tsx",
1086
+ usagePath: "/components/catalyst-ui/x/tabs-x.tsx",
1087
+ basicusage: ``,
1088
+ usage: ``,
1089
+ premium: false,
1090
+ category: "X",
1091
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1092
+ features: [],
1093
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1094
+ props: {},
1095
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1096
+ status: "Listed",
1097
+ lastUpdated: "2024-12-15T10:30:00Z"
1098
+ },
1099
+ {
1100
+ name: "textareaX",
1101
+ value: "textarea-x",
1102
+ importPath: "~/components/catalyst-ui/x/textarea-x",
1103
+ path: "/components/catalyst-ui/x/textarea-x.tsx",
1104
+ usagePath: "/components/catalyst-ui/x/textarea-x.tsx",
1105
+ basicusage: ``,
1106
+ usage: ``,
1107
+ premium: false,
1108
+ category: "X",
1109
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1110
+ features: [],
1111
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1112
+ props: {},
1113
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1114
+ status: "Listed",
1115
+ lastUpdated: "2024-12-15T10:30:00Z"
1116
+ },
1117
+ {
1118
+ name: "tooltipX",
1119
+ value: "tooltip-x",
1120
+ importPath: "~/components/catalyst-ui/x/tooltip-x",
1121
+ path: "/components/catalyst-ui/x/tooltip-x.tsx",
1122
+ usagePath: "/components/catalyst-ui/x/tooltip-x.tsx",
1123
+ basicusage: ``,
1124
+ usage: ``,
1125
+ premium: false,
1126
+ category: "X",
1127
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1128
+ features: [],
1129
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1130
+ props: {},
1131
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1132
+ status: "Listed",
1133
+ lastUpdated: "2024-12-15T10:30:00Z"
1134
+ },
1135
+ {
1136
+ name: "HoverCardX",
1137
+ value: "hover-card-x",
1138
+ importPath: "~/components/catalyst-ui/x/hover-card-x",
1139
+ path: "/components/catalyst-ui/x/hover-card-x.tsx",
1140
+ usagePath: "/components/catalyst-ui/x/hover-card-x.tsx",
1141
+ basicusage: ``,
1142
+ usage: ``,
1143
+ premium: false,
1144
+ category: "X",
1145
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1146
+ features: [],
1147
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1148
+ props: {},
1149
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1150
+ status: "Listed",
1151
+ lastUpdated: "2024-12-15T10:30:00Z"
1152
+ },
1153
+ {
1154
+ name: "TrackerX",
1155
+ value: "tooltip-x",
1156
+ importPath: "~/components/catalyst-ui/x/tracker-x",
1157
+ path: "/components/catalyst-ui/x/tracker-x.tsx",
1158
+ usagePath: "/components/catalyst-ui/x/tracker-x.tsx",
1159
+ basicusage: ``,
1160
+ usage: ``,
1161
+ premium: false,
1162
+ category: "X",
1163
+ tags: ["ui", "components", "animated", "motion", "interactive",],
1164
+ features: [],
1165
+ dependencies: ["react", "motion/react", "class-variance-authority", "~/components/catalyst-ui"],
1166
+ props: {},
1167
+ desc: "A collection of animated icon components built with Framer Motion that can toggle between states. Includes 10 different icon types with smooth animations.",
1168
+ status: "Listed",
1169
+ lastUpdated: "2024-12-15T10:30:00Z"
1170
+ }
1171
+ ];