@catalystsoftware/ui 1.0.0

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/README.md +7 -0
  2. package/components/catalyst-ui/buttons/burger.tsx +207 -0
  3. package/components/catalyst-ui/core/data-display/timeline.tsx +210 -0
  4. package/components/catalyst-ui/core/feedback/alert.tsx +491 -0
  5. package/components/catalyst-ui/core/feedback/spinner-1.tsx +65 -0
  6. package/components/catalyst-ui/core/feedback/toast.tsx +1857 -0
  7. package/components/catalyst-ui/core/navigation/menu.tsx +164 -0
  8. package/components/catalyst-ui/forms/toggle-class.tsx +176 -0
  9. package/components/catalyst-ui/hooks/use-copy-to-clipboard.tsx +419 -0
  10. package/components/catalyst-ui/hooks/use-counter.tsx +13 -0
  11. package/components/catalyst-ui/hooks/use-event-listener.tsx +23 -0
  12. package/components/catalyst-ui/hooks/use-export-markdown.tsx +47 -0
  13. package/components/catalyst-ui/hooks/use-focus.tsx +17 -0
  14. package/components/catalyst-ui/hooks/use-interval.tsx +23 -0
  15. package/components/catalyst-ui/hooks/use-is-client.tsx +16 -0
  16. package/components/catalyst-ui/hooks/use-media-query.tsx +19 -0
  17. package/components/catalyst-ui/hooks/use-mobile.tsx +19 -0
  18. package/components/catalyst-ui/hooks/use-resize-observer.tsx +81 -0
  19. package/components/catalyst-ui/hooks/use-timeout.tsx +21 -0
  20. package/components/catalyst-ui/hooks/use-timer.tsx +209 -0
  21. package/components/catalyst-ui/hooks/use-toggle.tsx +12 -0
  22. package/components/catalyst-ui/media/image.tsx +13 -0
  23. package/components/catalyst-ui/overlays/dual-sidebar.tsx +4142 -0
  24. package/components/catalyst-ui/overlays/sidebar-original.tsx +726 -0
  25. package/components/catalyst-ui/primitives/accordion.tsx +250 -0
  26. package/components/catalyst-ui/primitives/alert-dialog.tsx +126 -0
  27. package/components/catalyst-ui/primitives/aspect-ratio.tsx +9 -0
  28. package/components/catalyst-ui/primitives/avatar.tsx +296 -0
  29. package/components/catalyst-ui/primitives/badge.tsx +57 -0
  30. package/components/catalyst-ui/primitives/breadcrumb.tsx +101 -0
  31. package/components/catalyst-ui/primitives/button.tsx +265 -0
  32. package/components/catalyst-ui/primitives/calendar-v4.tsx +208 -0
  33. package/components/catalyst-ui/primitives/calendar.tsx +295 -0
  34. package/components/catalyst-ui/primitives/card.tsx +618 -0
  35. package/components/catalyst-ui/primitives/carousel.tsx +238 -0
  36. package/components/catalyst-ui/primitives/chart.tsx +347 -0
  37. package/components/catalyst-ui/primitives/checkbox.tsx +225 -0
  38. package/components/catalyst-ui/primitives/collapsible.tsx +212 -0
  39. package/components/catalyst-ui/primitives/command.tsx +393 -0
  40. package/components/catalyst-ui/primitives/context-menu.tsx +236 -0
  41. package/components/catalyst-ui/primitives/dialog.tsx +471 -0
  42. package/components/catalyst-ui/primitives/drawer.tsx +761 -0
  43. package/components/catalyst-ui/primitives/dropdown-menu.tsx +290 -0
  44. package/components/catalyst-ui/primitives/empty.tsx +104 -0
  45. package/components/catalyst-ui/primitives/field.tsx +244 -0
  46. package/components/catalyst-ui/primitives/hover-card.tsx +124 -0
  47. package/components/catalyst-ui/primitives/input-otp.tsx +76 -0
  48. package/components/catalyst-ui/primitives/input.tsx +64 -0
  49. package/components/catalyst-ui/primitives/item.tsx +196 -0
  50. package/components/catalyst-ui/primitives/kbd.tsx +75 -0
  51. package/components/catalyst-ui/primitives/label.tsx +24 -0
  52. package/components/catalyst-ui/primitives/navigation-menu.tsx +150 -0
  53. package/components/catalyst-ui/primitives/pagination.tsx +198 -0
  54. package/components/catalyst-ui/primitives/popover.tsx +232 -0
  55. package/components/catalyst-ui/primitives/progress.tsx +34 -0
  56. package/components/catalyst-ui/primitives/radio-group.tsx +43 -0
  57. package/components/catalyst-ui/primitives/resizable.tsx +56 -0
  58. package/components/catalyst-ui/primitives/select.tsx +155 -0
  59. package/components/catalyst-ui/primitives/separator.tsx +74 -0
  60. package/components/catalyst-ui/primitives/sheet.tsx +126 -0
  61. package/components/catalyst-ui/primitives/skeleton.tsx +15 -0
  62. package/components/catalyst-ui/primitives/slider.tsx +27 -0
  63. package/components/catalyst-ui/primitives/switch.tsx +187 -0
  64. package/components/catalyst-ui/primitives/tabs.tsx +335 -0
  65. package/components/catalyst-ui/primitives/textarea.tsx +24 -0
  66. package/components/catalyst-ui/primitives/toggle-group.tsx +55 -0
  67. package/components/catalyst-ui/primitives/toggle.tsx +42 -0
  68. package/components/catalyst-ui/primitives/tooltip.tsx +116 -0
  69. package/components/catalyst-ui/utils/basic-auth.tsx +40 -0
  70. package/components/catalyst-ui/utils/context-storage.tsx +19 -0
  71. package/components/catalyst-ui/utils/cors-middleware.tsx +71 -0
  72. package/components/catalyst-ui/utils/deferred-content.tsx +595 -0
  73. package/components/catalyst-ui/utils/honeypot-middleware.tsx +38 -0
  74. package/components/catalyst-ui/utils/incId.tsx +75 -0
  75. package/components/catalyst-ui/utils/jwk-auth.tsx +36 -0
  76. package/components/catalyst-ui/utils/request-id.tsx +14 -0
  77. package/components/catalyst-ui/utils/secure-headers.tsx +37 -0
  78. package/components/catalyst-ui/utils/server-timing.tsx +23 -0
  79. package/components/catalyst-ui/utils/utils.ts +43 -0
  80. package/components/catalyst-ui/utils/with-cookie.tsx +43 -0
  81. package/components/catalyst-ui/x/accordian-x.tsx +428 -0
  82. package/components/catalyst-ui/x/alert-x.tsx +413 -0
  83. package/components/catalyst-ui/x/animated-text-x.tsx +2242 -0
  84. package/components/catalyst-ui/x/avatar-x.tsx +515 -0
  85. package/components/catalyst-ui/x/badge-x.tsx +670 -0
  86. package/components/catalyst-ui/x/button-X.tsx +2857 -0
  87. package/components/catalyst-ui/x/button-group-x.tsx +847 -0
  88. package/components/catalyst-ui/x/calendar-x.tsx +1910 -0
  89. package/components/catalyst-ui/x/card-x.tsx +2597 -0
  90. package/components/catalyst-ui/x/checkbox-x.tsx +656 -0
  91. package/components/catalyst-ui/x/collapsible-x.tsx +1360 -0
  92. package/components/catalyst-ui/x/combobox-x.tsx +911 -0
  93. package/components/catalyst-ui/x/data-table-x.tsx +1753 -0
  94. package/components/catalyst-ui/x/date-picker-x.tsx +648 -0
  95. package/components/catalyst-ui/x/dialog-x.tsx +659 -0
  96. package/components/catalyst-ui/x/dropdown-menu-x.tsx +612 -0
  97. package/components/catalyst-ui/x/hover-card-x.tsx +375 -0
  98. package/components/catalyst-ui/x/icon-x.tsx +840 -0
  99. package/components/catalyst-ui/x/input-mask-x.tsx +981 -0
  100. package/components/catalyst-ui/x/input-otp-x.tsx +659 -0
  101. package/components/catalyst-ui/x/loader-x.tsx +1757 -0
  102. package/components/catalyst-ui/x/pagination-x.tsx +622 -0
  103. package/components/catalyst-ui/x/popover-x.tsx +744 -0
  104. package/components/catalyst-ui/x/radio-group-x.tsx +499 -0
  105. package/components/catalyst-ui/x/select-x.tsx +1127 -0
  106. package/components/catalyst-ui/x/sheet-x.tsx +668 -0
  107. package/components/catalyst-ui/x/switch-x.tsx +681 -0
  108. package/components/catalyst-ui/x/table-x.tsx +574 -0
  109. package/components/catalyst-ui/x/tabs-x.tsx +839 -0
  110. package/components/catalyst-ui/x/textarea-x.tsx +1263 -0
  111. package/components/catalyst-ui/x/tooltip-x.tsx +396 -0
  112. package/components/catalyst-ui/x/tracker-x.tsx +560 -0
  113. package/data/bg-data.tsx +901 -0
  114. package/data/buttons-data.tsx +2327 -0
  115. package/data/charts-data.tsx +102 -0
  116. package/data/chat-data.tsx +83 -0
  117. package/data/code-data.tsx +1040 -0
  118. package/data/comboboxes-data.tsx +1843 -0
  119. package/data/command-data.tsx +1381 -0
  120. package/data/core-data.tsx +15953 -0
  121. package/data/crm-data.tsx +47 -0
  122. package/data/data.tsx +159 -0
  123. package/data/date-and-time-data.tsx +554 -0
  124. package/data/dependencies.tsx +7 -0
  125. package/data/ecommerce-data.tsx +1387 -0
  126. package/data/forms-data.tsx +7890 -0
  127. package/data/hooks-data.tsx +5487 -0
  128. package/data/index.ts +34 -0
  129. package/data/inputs-data.tsx +557 -0
  130. package/data/interactive-data.tsx +5394 -0
  131. package/data/lofi-data.tsx +18295 -0
  132. package/data/marketing-data.tsx +2546 -0
  133. package/data/media-data.tsx +1510 -0
  134. package/data/motion-data.tsx +5801 -0
  135. package/data/overlay-data.tsx +4136 -0
  136. package/data/pdf-data.tsx +124 -0
  137. package/data/pos-data.tsx +213 -0
  138. package/data/postcss.config.js +6 -0
  139. package/data/primitive-data.tsx +5170 -0
  140. package/data/prompt-data.tsx +1226 -0
  141. package/data/requiredLibs.ts +4 -0
  142. package/data/sandbox-data.tsx +1 -0
  143. package/data/sidebars-data.tsx +5421 -0
  144. package/data/stacks-data.tsx +32 -0
  145. package/data/table-data.tsx +706 -0
  146. package/data/tailwind.config.js +3830 -0
  147. package/data/tailwind.config.ngin.js +3830 -0
  148. package/data/tailwind.css +431 -0
  149. package/data/tools-data.tsx +6910 -0
  150. package/data/typography-data.tsx +2050 -0
  151. package/data/utils-data.tsx +6500 -0
  152. package/data/x-data.tsx +1171 -0
  153. package/dist/index.d.ts +3 -0
  154. package/dist/index.d.ts.map +1 -0
  155. package/dist/index.js +30245 -0
  156. package/dist/index.js.map +362 -0
  157. package/package.json +50 -0
@@ -0,0 +1,901 @@
1
+ export const backgroundData = [
2
+ {
3
+ name: "CanvasFractalGrid",
4
+ value: "canvas-fractal-grid",
5
+ importPath: "~/components/catalyst-ui",
6
+ multiImport: "CanvasFractalGrid, ConfigurableCanvasFractalGrid",
7
+ path: "/components/catalyst-ui/backgrounds/canvas-fractal-grid.tsx",
8
+ source: null,
9
+ usagePath: "/components/catalyst-ui/backgrounds/canvas-fractal-grid.tsx",
10
+ basicusage: `
11
+ <CanvasFractalGrid />
12
+
13
+ <CanvasFractalGrid
14
+ dotSize={4} // number
15
+ dotSpacing={20} // number
16
+ dotOpacity={0.3} // number (0-1)
17
+ gradientAnimationDuration={20} // number
18
+ waveIntensity={30} // number
19
+ waveRadius={200} // number
20
+ dotColor="rgba(100, 100, 255, 1)" // string
21
+ glowColor="rgba(100, 100, 255, 1)" // string
22
+ enableNoise={true} // boolean
23
+ noiseOpacity={0.03} // number (0-1)
24
+ enableMouseGlow={true} // boolean
25
+ initialPerformance="medium" // low | medium | high
26
+ enableGradient={false} // boolean
27
+ gradients={[
28
+ {
29
+ stops: [
30
+ { color: "#FFD6A5", position: 0 },
31
+ { color: "#FFADAD", position: 25 }
32
+ ],
33
+ centerX: 50,
34
+ centerY: 50
35
+ }
36
+ ]} // GradientType[]
37
+ />`,
38
+ usage: `
39
+ <CanvasFractalGrid
40
+ dotSize={4} // number
41
+ dotSpacing={20} // number
42
+ dotOpacity={0.3} // number (0-1)
43
+ gradientAnimationDuration={20} // number
44
+ waveIntensity={30} // number
45
+ waveRadius={200} // number
46
+ dotColor="rgba(100, 100, 255, 1)" // string
47
+ glowColor="rgba(100, 100, 255, 1)" // string
48
+ enableNoise={true} // boolean
49
+ noiseOpacity={0.03} // number (0-1)
50
+ enableMouseGlow={true} // boolean
51
+ initialPerformance="medium" // low | medium | high
52
+ enableGradient={false} // boolean
53
+ gradients={[
54
+ {
55
+ stops: [
56
+ { color: "#FFD6A5", position: 0 },
57
+ { color: "#FFADAD", position: 25 }
58
+ ],
59
+ centerX: 50,
60
+ centerY: 50
61
+ }
62
+ ]} // GradientType[]
63
+ />`,
64
+ premium: true,
65
+ category: "Backgrounds",
66
+ tags: ["ui", "components", "background", "canvas", "fractal", "dots", "grid", "gradient", "interactive", "animation"],
67
+ features: ["Responsive", "TypeScript", "Interactive", "Animated Gradients", "Wave Effects", "Mouse Glow", "Noise Overlay", "Performance Optimization", "Customizable Gradients"],
68
+ dependencies: ["react", "motion/react", "lucide-react", "~/components/catalyst-ui"],
69
+ props: {
70
+ "CanvasFractalGrid": [
71
+ { name: "dotSize", type: "number", default: "4" },
72
+ { name: "dotSpacing", type: "number", default: "20" },
73
+ { name: "dotOpacity", type: "number", default: "0.3" },
74
+ { name: "gradientAnimationDuration", type: "number", default: "20" },
75
+ { name: "waveIntensity", type: "number", default: "30" },
76
+ { name: "waveRadius", type: "number", default: "200" },
77
+ { name: "dotColor", type: "string", default: "rgba(100, 100, 255, 1)" },
78
+ { name: "glowColor", type: "string", default: "rgba(100, 100, 255, 1)" },
79
+ { name: "enableNoise", type: "boolean", default: "true" },
80
+ { name: "noiseOpacity", type: "number", default: "0.03" },
81
+ { name: "enableMouseGlow", type: "boolean", default: "true" },
82
+ { name: "initialPerformance", type: "low | medium | high", default: "medium" },
83
+ { name: "enableGradient", type: "boolean", default: "false" },
84
+ { name: "gradients", type: "GradientType[]", default: "defaultGradients" },
85
+ ],
86
+ },
87
+ desc: null,
88
+ status: "Listed",
89
+ lastUpdated: "2024-12-02 14:30:00"
90
+ },
91
+ {
92
+ name: "FractalDotGrid",
93
+ value: "fractal-dot-grid",
94
+ importPath: "~/components/catalyst-ui",
95
+ multiImport: "FractalDotGrid, ConfigurableFractalDotGridDemo",
96
+ path: "/components/catalyst-ui/background/fractal-dot-grid.tsx",
97
+ source: null,
98
+ usagePath: "/components/catalyst-ui/background/fractal-dot-grid.tsx",
99
+ basicusage: `
100
+ <FractalDotGrid />
101
+
102
+ <FractalDotGrid
103
+ dotSize={4} // number
104
+ dotSpacing={20} // number
105
+ dotOpacity={0.3} // number (0-1)
106
+ waveIntensity={30} // number
107
+ waveRadius={200} // number
108
+ dotColor="rgba(100, 100, 255, 1)" // string
109
+ glowColor="rgba(100, 100, 255, 1)" // string
110
+ enableNoise={true} // boolean
111
+ noiseOpacity={0.03} // number (0-1)
112
+ enableMouseGlow={true} // boolean
113
+ initialPerformance="medium" // low | medium | high
114
+ />`,
115
+ usage: `
116
+ <FractalDotGrid
117
+ dotSize={4} // number
118
+ dotSpacing={20} // number
119
+ dotOpacity={0.3} // number (0-1)
120
+ waveIntensity={30} // number
121
+ waveRadius={200} // number
122
+ dotColor="rgba(100, 100, 255, 1)" // string
123
+ glowColor="rgba(100, 100, 255, 1)" // string
124
+ enableNoise={true} // boolean
125
+ noiseOpacity={0.03} // number (0-1)
126
+ enableMouseGlow={true} // boolean
127
+ initialPerformance="medium" // low | medium | high
128
+ />`,
129
+ premium: true,
130
+ category: "Background",
131
+ tags: ["ui", "components", "background", "canvas", "fractal", "dots", "grid", "interactive", "animation", "performance"],
132
+ features: ["Responsive", "TypeScript", "Interactive", "Wave Effects", "Mouse Glow", "Noise Overlay", "Performance Optimization", "Touch Support", "Customizable"],
133
+ dependencies: ["react", "motion/react", "lucide-react", "~/components/catalyst-ui"],
134
+ props: {
135
+ "FractalDotGrid": [
136
+ { name: "dotSize", type: "number", default: "4" },
137
+ { name: "dotSpacing", type: "number", default: "20" },
138
+ { name: "dotOpacity", type: "number", default: "0.3" },
139
+ { name: "waveIntensity", type: "number", default: "30" },
140
+ { name: "waveRadius", type: "number", default: "200" },
141
+ { name: "dotColor", type: "string", default: "rgba(100, 100, 255, 1)" },
142
+ { name: "glowColor", type: "string", default: "rgba(100, 100, 255, 1)" },
143
+ { name: "enableNoise", type: "boolean", default: "true" },
144
+ { name: "noiseOpacity", type: "number", default: "0.03" },
145
+ { name: "enableMouseGlow", type: "boolean", default: "true" },
146
+ { name: "initialPerformance", type: "low | medium | high", default: "medium" },
147
+ ],
148
+ },
149
+ desc: null,
150
+ status: "Listed",
151
+ lastUpdated: "2024-12-02 14:30:00"
152
+ },
153
+ {
154
+ name: "dynamic-rain",
155
+ value: "dynamic-rain",
156
+ importPath: "~/components/catalyst-ui/background/dynamic-rain",
157
+ multiImport: null,
158
+ basicusage: `
159
+ <DottedGlowBackground />
160
+
161
+ <DottedGlowBackground
162
+ gap={12}
163
+ radius={2}
164
+ opacity={0.6}
165
+ color="rgba(0,0,0,0.7)"
166
+ glowColor="rgba(0,170,255,0.85)"
167
+ speedMin={0.4}
168
+ speedMax={1.3}
169
+ speedScale={1}
170
+ backgroundOpacity={0}
171
+ className="absolute inset-0"
172
+ />`,
173
+ path: "/components/catalyst-ui/background/dynamic-rain.tsx",
174
+ source: null,
175
+ usagePath: "/components/catalyst-ui/background/dynamic-rain.tsx",
176
+ usage: null,
177
+ premium: true,
178
+ category: "Background",
179
+ tags: ["background", "canvas", "animation", "glow"],
180
+ features: ["Canvas-based", "Animated", "Theme-aware", "High Performance"],
181
+ dependencies: ["react"],
182
+ props: {
183
+ "DottedGlowBackground": [
184
+ { name: "className", type: "string", default: "null" },
185
+ { name: "gap", type: "number", default: "12" },
186
+ { name: "radius", type: "number", default: "2" },
187
+ { name: "color", type: "string", default: "rgba(0,0,0,0.7)" },
188
+ { name: "darkColor", type: "string", default: "null" },
189
+ { name: "glowColor", type: "string", default: "rgba(0,170,255,0.85)" },
190
+ { name: "darkGlowColor", type: "string", default: "null" },
191
+ { name: "colorLightVar", type: "string", default: "null" },
192
+ { name: "colorDarkVar", type: "string", default: "null" },
193
+ { name: "glowColorLightVar", type: "string", default: "null" },
194
+ { name: "glowColorDarkVar", type: "string", default: "null" },
195
+ { name: "opacity", type: "number", default: "0.6" },
196
+ { name: "backgroundOpacity", type: "number", default: "0" },
197
+ { name: "speedMin", type: "number", default: "0.4" },
198
+ { name: "speedMax", type: "number", default: "1.3" },
199
+ { name: "speedScale", type: "number", default: "1" },
200
+ ],
201
+ },
202
+ desc: null,
203
+ status: null,
204
+ lastUpdated: null
205
+ },
206
+ {
207
+ name: "Dotted Glow Background",
208
+ value: "dotted-glow-background",
209
+ importPath: "~/components/catalyst-ui/background/dotted-glow-background",
210
+ multiImport: null,
211
+ basicusage: `
212
+ <DottedGlowBackground />
213
+
214
+ <DottedGlowBackground
215
+ gap={12}
216
+ radius={2}
217
+ opacity={0.6}
218
+ color="rgba(0,0,0,0.7)"
219
+ glowColor="rgba(0,170,255,0.85)"
220
+ speedMin={0.4}
221
+ speedMax={1.3}
222
+ speedScale={1}
223
+ backgroundOpacity={0}
224
+ className="absolute inset-0"
225
+ />`,
226
+ path: "/components/catalyst-ui/background/dotted-glow-background.tsx",
227
+ source: null,
228
+ usagePath: "/components/catalyst-ui/background/dotted-glow-background.tsx",
229
+ usage: null,
230
+ premium: true,
231
+ category: "Background",
232
+ tags: ["background", "canvas", "animation", "glow"],
233
+ features: ["Canvas-based", "Animated", "Theme-aware", "High Performance"],
234
+ dependencies: ["react"],
235
+ props: {
236
+ "DottedGlowBackground": [
237
+ { name: "className", type: "string", default: "null" },
238
+ { name: "gap", type: "number", default: "12" },
239
+ { name: "radius", type: "number", default: "2" },
240
+ { name: "color", type: "string", default: "rgba(0,0,0,0.7)" },
241
+ { name: "darkColor", type: "string", default: "null" },
242
+ { name: "glowColor", type: "string", default: "rgba(0,170,255,0.85)" },
243
+ { name: "darkGlowColor", type: "string", default: "null" },
244
+ { name: "colorLightVar", type: "string", default: "null" },
245
+ { name: "colorDarkVar", type: "string", default: "null" },
246
+ { name: "glowColorLightVar", type: "string", default: "null" },
247
+ { name: "glowColorDarkVar", type: "string", default: "null" },
248
+ { name: "opacity", type: "number", default: "0.6" },
249
+ { name: "backgroundOpacity", type: "number", default: "0" },
250
+ { name: "speedMin", type: "number", default: "0.4" },
251
+ { name: "speedMax", type: "number", default: "1.3" },
252
+ { name: "speedScale", type: "number", default: "1" },
253
+ ],
254
+ },
255
+ desc: null,
256
+ status: null,
257
+ lastUpdated: null
258
+ },
259
+ {
260
+ name: "Lamp",
261
+ value: "lamp",
262
+ importPath: "~/components/catalyst-ui/background/lamp",
263
+ multiImport: "LampContainer",
264
+ basicusage: `
265
+ <LampContainer>
266
+ <motion.h1
267
+ initial={{ opacity: 0.5, y: 100 }}
268
+ whileInView={{ opacity: 1, y: 0 }}
269
+ transition={{ delay: 0.3, duration: 0.8, ease: "easeInOut" }}
270
+ className="mt-8 bg-gradient-to-br from-slate-300 to-slate-500 py-4 bg-clip-text text-center text-4xl font-medium tracking-tight text-transparent"
271
+ >
272
+ Your Content
273
+ </motion.h1>
274
+ </LampContainer>`,
275
+ path: "/components/catalyst-ui/background/lamp.tsx",
276
+ source: null,
277
+ usagePath: "/components/catalyst-ui/background/lamp.tsx",
278
+ usage: null,
279
+ premium: true,
280
+ category: "Background",
281
+ tags: ["animation", "background", "visual"],
282
+ features: ["Animated", "Visual Effects", "TypeScript", "Full Screen"],
283
+ dependencies: ["framer-motion", "react"],
284
+ props: {
285
+ "LampContainer": [
286
+ { name: "children", type: "React.ReactNode", default: "required" },
287
+ { name: "className", type: "string", default: "null" },
288
+ ],
289
+ },
290
+ desc: null,
291
+ status: null,
292
+ lastUpdated: null
293
+ },
294
+ {
295
+ name: "Particles",
296
+ value: "particles",
297
+ importPath: "~/components/catalyst-ui/background/particles",
298
+ multiImport: null,
299
+ basicusage: `
300
+ <Particles />
301
+
302
+ <Particles
303
+ className=""
304
+ quantity={100}
305
+ staticity={50}
306
+ ease={50}
307
+ size={0.4}
308
+ refresh={false}
309
+ color="#ffffff"
310
+ vx={0}
311
+ vy={0}
312
+ />`,
313
+ path: "/components/catalyst-ui/background/particles.tsx",
314
+ source: null,
315
+ usagePath: "/components/catalyst-ui/background/particles.tsx",
316
+ usage: null,
317
+ premium: true,
318
+ category: "Background",
319
+ tags: ["backgrounds", "particles", "animated", "canvas", "interactive", "mouse"],
320
+ features: ["Responsive", "TypeScript", "Accessible", "Canvas Rendering", "Mouse Interaction", "Magnetic Effect", "Customizable Colors", "Velocity Control"],
321
+ dependencies: ["react"],
322
+ props: {
323
+ "Particles": [
324
+ { name: "className", type: "string", default: "null" },
325
+ { name: "quantity", type: "number", default: "100" },
326
+ { name: "staticity", type: "number", default: "50" },
327
+ { name: "ease", type: "number", default: "50" },
328
+ { name: "size", type: "number", default: "0.4" },
329
+ { name: "refresh", type: "boolean", default: "false" },
330
+ { name: "color", type: "string", default: "#ffffff" },
331
+ { name: "vx", type: "number", default: "0" },
332
+ { name: "vy", type: "number", default: "0" },
333
+ ],
334
+ },
335
+ desc: null,
336
+ status: null,
337
+ lastUpdated: null
338
+ },
339
+ {
340
+ name: "Vortex",
341
+ value: "vortex",
342
+ importPath: "~/components/catalyst-ui/background/vortex",
343
+ multiImport: null,
344
+ basicusage: `
345
+ <Vortex>
346
+ <div>Your content here</div>
347
+ </Vortex>
348
+
349
+ <Vortex
350
+ particleCount={700}
351
+ rangeY={100}
352
+ baseHue={220}
353
+ baseSpeed={0.0}
354
+ rangeSpeed={1.5}
355
+ baseRadius={1}
356
+ rangeRadius={2}
357
+ backgroundColor="#000000"
358
+ className=""
359
+ containerClassName=""
360
+ >
361
+ <div>Your content here</div>
362
+ </Vortex>`,
363
+ path: "/components/catalyst-ui/background/vortex.tsx",
364
+ source: null,
365
+ usagePath: "/components/catalyst-ui/background/vortex.tsx",
366
+ usage: null,
367
+ premium: true,
368
+ category: "Background",
369
+ tags: ["backgrounds", "vortex", "particles", "animated", "flow", "canvas"],
370
+ features: ["Responsive", "TypeScript", "Accessible", "Canvas Rendering", "Particle Flow", "Customizable Colors", "Glow Effects"],
371
+ dependencies: ["react", "simplex-noise", "framer-motion"],
372
+ props: {
373
+ "Vortex": [
374
+ { name: "children", type: "ReactNode", default: "null" },
375
+ { name: "className", type: "string", default: "null" },
376
+ { name: "containerClassName", type: "string", default: "null" },
377
+ { name: "particleCount", type: "number", default: "700" },
378
+ { name: "rangeY", type: "number", default: "100" },
379
+ { name: "baseHue", type: "number", default: "220" },
380
+ { name: "baseSpeed", type: "number", default: "0.0" },
381
+ { name: "rangeSpeed", type: "number", default: "1.5" },
382
+ { name: "baseRadius", type: "number", default: "1" },
383
+ { name: "rangeRadius", type: "number", default: "2" },
384
+ { name: "backgroundColor", type: "string", default: "#000000" },
385
+ ],
386
+ },
387
+ desc: null,
388
+ status: null,
389
+ lastUpdated: null
390
+ },
391
+ {
392
+ name: "Sparkles Core",
393
+ value: "sparkles-core",
394
+ importPath: "~/components/catalyst-ui/background/sparkles",
395
+ multiImport: null,
396
+ basicusage: `
397
+ <SparklesCore />
398
+
399
+ <SparklesCore
400
+ id=""
401
+ className=""
402
+ background="#0d47a1"
403
+ particleSize={3}
404
+ minSize={1}
405
+ maxSize={3}
406
+ speed={4}
407
+ particleColor="#ffffff"
408
+ particleDensity={120}
409
+ />`,
410
+ path: "/components/catalyst-ui/background/sparkles.tsx",
411
+ source: null,
412
+ usagePath: "/components/catalyst-ui/background/sparkles.tsx",
413
+ usage: null,
414
+ premium: true,
415
+ category: "Background",
416
+ tags: ["backgrounds", "sparkles", "particles", "animated", "interactive", "effects"],
417
+ features: ["Responsive", "TypeScript", "Accessible", "Interactive", "Animated Particles", "Customizable Colors", "Click Effects"],
418
+ dependencies: ["react", "@tsparticles/react", "@tsparticles/engine", "@tsparticles/slim", "framer-motion"],
419
+ props: {
420
+ "SparklesCore": [
421
+ { name: "id", type: "string", default: "null" },
422
+ { name: "className", type: "string", default: "null" },
423
+ { name: "background", type: "string", default: "#0d47a1" },
424
+ { name: "particleSize", type: "number", default: "null" },
425
+ { name: "minSize", type: "number", default: "1" },
426
+ { name: "maxSize", type: "number", default: "3" },
427
+ { name: "speed", type: "number", default: "4" },
428
+ { name: "particleColor", type: "string", default: "#ffffff" },
429
+ { name: "particleDensity", type: "number", default: "120" },
430
+ ],
431
+ },
432
+ desc: null,
433
+ status: null,
434
+ lastUpdated: null
435
+ },
436
+ {
437
+ name: "Smoke",
438
+ value: "smoke",
439
+ importPath: "~/components/catalyst-ui/background/smoke",
440
+ multiImport: null,
441
+ basicusage: `
442
+ <Smoke />
443
+
444
+ <Smoke
445
+ density={50}
446
+ color="#ffffff"
447
+ opacity={0.5}
448
+ enableRotation={true}
449
+ rotation={[0, 0, 0.1]}
450
+ enableWind={false}
451
+ windStrength={[0.01, 0.01, 0.01]}
452
+ enableTurbulence={false}
453
+ turbulenceStrength={[0.01, 0.01, 0.01]}
454
+ useSimpleScene={true}
455
+ className=""
456
+ />`,
457
+ path: "/components/catalyst-ui/background/smoke.tsx",
458
+ source: null,
459
+ usagePath: "/components/catalyst-ui/background/smoke.tsx",
460
+ usage: null,
461
+ premium: true,
462
+ category: "Background",
463
+ tags: ["backgrounds", "smoke", "3d", "animated", "particles", "effect"],
464
+ features: ["Responsive", "TypeScript", "Accessible", "3D Rendering", "Wind Effects", "Turbulence", "Customizable"],
465
+ dependencies: ["react", "react-smoke", "@react-three/fiber", "three"],
466
+ props: {
467
+ "Smoke": [
468
+ { name: "density", type: "number", default: "50" },
469
+ { name: "color", type: "string", default: "#ffffff" },
470
+ { name: "opacity", type: "number", default: "0.5" },
471
+ { name: "enableRotation", type: "boolean", default: "true" },
472
+ { name: "rotation", type: "[number, number, number]", default: "[0, 0, 0.1]" },
473
+ { name: "enableWind", type: "boolean", default: "false" },
474
+ { name: "windStrength", type: "[number, number, number]", default: "[0.01, 0.01, 0.01]" },
475
+ { name: "enableTurbulence", type: "boolean", default: "false" },
476
+ { name: "turbulenceStrength", type: "[number, number, number]", default: "[0.01, 0.01, 0.01]" },
477
+ { name: "useSimpleScene", type: "boolean", default: "true" },
478
+ { name: "className", type: "string", default: "null" },
479
+ ],
480
+ },
481
+ desc: null,
482
+ status: null,
483
+ lastUpdated: null
484
+ },
485
+ {
486
+ name: "Retro Grid",
487
+ value: "retro-grid",
488
+ importPath: "~/components/catalyst-ui/background/retro-grid",
489
+ multiImport: null,
490
+ basicusage: `
491
+ <RetroGrid />
492
+
493
+ <RetroGrid
494
+ angle={65}
495
+ cellSize={60}
496
+ opacity={0.5}
497
+ lightLineColor="gray"
498
+ darkLineColor="gray"
499
+ className=""
500
+ />`,
501
+ path: "/components/catalyst-ui/background/retro-grid.tsx",
502
+ source: null,
503
+ usagePath: "/components/catalyst-ui/background/retro-grid.tsx",
504
+ usage: null,
505
+ premium: true,
506
+ category: "Background",
507
+ tags: ["backgrounds", "grid", "retro", "cyberpunk", "animated", "3d"],
508
+ features: ["Responsive", "TypeScript", "Accessible", "Animated", "3D Perspective", "Customizable Colors"],
509
+ dependencies: ["react"],
510
+ props: {
511
+ "RetroGrid": [
512
+ { name: "angle", type: "number", default: "65" },
513
+ { name: "cellSize", type: "number", default: "60" },
514
+ { name: "opacity", type: "number", default: "0.5" },
515
+ { name: "lightLineColor", type: "string", default: "gray" },
516
+ { name: "darkLineColor", type: "string", default: "gray" },
517
+ { name: "className", type: "string", default: "null" },
518
+ ],
519
+ },
520
+ desc: null,
521
+ status: null,
522
+ lastUpdated: null
523
+ },
524
+ {
525
+ name: "Interactive Grid Pattern",
526
+ value: "interactive-grid-pattern",
527
+ importPath: "~/components/catalyst-ui/background/interactive-grid-pattern",
528
+ multiImport: null,
529
+ basicusage: `
530
+ <InteractiveGridPattern />
531
+
532
+ <InteractiveGridPattern
533
+ width={40}
534
+ height={40}
535
+ squares={[24, 24]}
536
+ className=""
537
+ squaresClassName=""
538
+ />`,
539
+ path: "/components/catalyst-ui/background/interactive-grid-pattern.tsx",
540
+ source: null,
541
+ usagePath: "/components/catalyst-ui/background/interactive-grid-pattern.tsx",
542
+ usage: null,
543
+ premium: true,
544
+ category: "Background",
545
+ tags: ["backgrounds", "grid", "pattern", "interactive", "hover"],
546
+ features: ["Responsive", "TypeScript", "Accessible", "Interactive", "Hover Effects", "Customizable Grid"],
547
+ dependencies: ["react"],
548
+ props: {
549
+ "InteractiveGridPattern": [
550
+ { name: "width", type: "number", default: "40" },
551
+ { name: "height", type: "number", default: "40" },
552
+ { name: "squares", type: "[number, number]", default: "[24, 24]" },
553
+ { name: "className", type: "string", default: "null" },
554
+ { name: "squaresClassName", type: "string", default: "null" },
555
+ ],
556
+ },
557
+ desc: null,
558
+ status: null,
559
+ lastUpdated: null
560
+ },
561
+ {
562
+ name: "Hexagon Background",
563
+ value: "hexagon-background",
564
+ importPath: "~/components/catalyst-ui/background/hexagon-background",
565
+ multiImport: null,
566
+ basicusage: `
567
+ <HexagonBackground>
568
+ <div>Your content here</div>
569
+ </HexagonBackground>
570
+
571
+ <HexagonBackground
572
+ hexagonSize={75}
573
+ hexagonMargin={3}
574
+ className=""
575
+ hexagonProps={{ className: "" }}
576
+ >
577
+ <div>Your content here</div>
578
+ </HexagonBackground>`,
579
+ path: "/components/catalyst-ui/background/hexagon-background.tsx",
580
+ source: null,
581
+ usagePath: "/components/catalyst-ui/background/hexagon-background.tsx",
582
+ usage: null,
583
+ premium: true,
584
+ category: "Background",
585
+ tags: ["backgrounds", "hexagon", "pattern", "geometric", "interactive"],
586
+ features: ["Responsive", "TypeScript", "Accessible", "Hover Effects", "Customizable Size", "Dynamic Grid"],
587
+ dependencies: ["react"],
588
+ props: {
589
+ "HexagonBackground": [
590
+ { name: "hexagonSize", type: "number", default: "75" },
591
+ { name: "hexagonMargin", type: "number", default: "3" },
592
+ { name: "className", type: "string", default: "null" },
593
+ { name: "hexagonProps", type: "React.ComponentProps<'div'>", default: "null" },
594
+ { name: "children", type: "ReactNode", default: "null" },
595
+ ],
596
+ },
597
+ desc: null,
598
+ status: null,
599
+ lastUpdated: null
600
+ },
601
+ {
602
+ name: 'Background Gradient',
603
+ value: 'background-gradient',
604
+ importPath: '~/components/catalyst-ui/background/background-gradient',
605
+ multiImport: null,
606
+ basicusage: `
607
+ <BackgroundGradient>
608
+ <div>Content</div>
609
+ </BackgroundGradient>
610
+
611
+ <BackgroundGradient
612
+ animate={true}
613
+ className=""
614
+ containerClassName=""
615
+ >
616
+ <div>Content</div>
617
+ </BackgroundGradient>`,
618
+ path: '/components/catalyst-ui/background/background-gradient.tsx',
619
+ source: null,
620
+ usagePath: '/components/catalyst-ui/background/background-gradient.tsx',
621
+ usage: null,
622
+ premium: true,
623
+ category: 'Background',
624
+ tags: ['background', 'gradient', 'border', 'animation', 'decorative'],
625
+ features: ['Responsive', 'TypeScript', 'Accessible', 'Animated'],
626
+ dependencies: ['motion/react', 'react'],
627
+ props: {
628
+ BackgroundGradient: [
629
+ { name: 'children', type: 'React.ReactNode', default: 'null' },
630
+ { name: 'animate', type: 'boolean', default: 'true' },
631
+ { name: 'className', type: 'string', default: 'null' },
632
+ { name: 'containerClassName', type: 'string', default: 'null' },
633
+ ],
634
+ },
635
+ desc: null,
636
+ status: null,
637
+ lastUpdated: null
638
+ },
639
+ {
640
+ name: 'Orbiting Circles',
641
+ value: 'orbiting-circles',
642
+ importPath: '~/components/catalyst-ui/background/orbiting-circles',
643
+ multiImport: null,
644
+ basicusage: `
645
+ <OrbitingCircles>
646
+ <Icon1 />
647
+ <Icon2 />
648
+ </OrbitingCircles>
649
+
650
+ <OrbitingCircles
651
+ reverse={false}
652
+ duration={20}
653
+ delay={0}
654
+ radius={160}
655
+ path={true}
656
+ iconSize={30}
657
+ speed={1}
658
+ className=""
659
+ >
660
+ <Icon1 />
661
+ <Icon2 />
662
+ </OrbitingCircles>`,
663
+ path: '/components/catalyst-ui/background/orbiting-circles.tsx',
664
+ source: null,
665
+ usagePath: '/components/catalyst-ui/background/orbiting-circles.tsx',
666
+ usage: null,
667
+ premium: true,
668
+ category: 'Background',
669
+ tags: ['orbiting', 'circles', 'animation', 'background', 'decorative'],
670
+ features: ['Responsive', 'TypeScript', 'Accessible', 'Animated'],
671
+ dependencies: ['react'],
672
+ props: {
673
+ OrbitingCircles: [
674
+ { name: 'children', type: 'React.ReactNode', default: 'null' },
675
+ { name: 'reverse', type: 'boolean', default: 'false' },
676
+ { name: 'duration', type: 'number', default: '20' },
677
+ { name: 'delay', type: 'number', default: '0' },
678
+ { name: 'radius', type: 'number', default: '160' },
679
+ { name: 'path', type: 'boolean', default: 'true' },
680
+ { name: 'iconSize', type: 'number', default: '30' },
681
+ { name: 'speed', type: 'number', default: '1' },
682
+ { name: 'className', type: 'string', default: 'null' },
683
+ ],
684
+ },
685
+ desc: null,
686
+ status: null,
687
+ lastUpdated: null
688
+ },
689
+ {
690
+ name: "Animated Beam",
691
+ value: "animated-beam",
692
+ importPath: "~/components/catalyst-ui/background/animated-beam",
693
+ multiImport: null,
694
+ basicusage: null,
695
+ path: "/components/catalyst-ui/background/animated-beam.tsx",
696
+ source: null,
697
+ usagePath: "/components/catalyst-ui/background/animated-beam.tsx",
698
+ usage: null,
699
+ premium: true,
700
+ category: "Background",
701
+ tags: ["animation", "svg", "gradient", "connection", "interactive"],
702
+ features: ["Dynamic SVG Paths", "Gradient Animations", "Responsive", "Customizable Curvature"],
703
+ dependencies: ["motion/react", "react"],
704
+ props: {
705
+ "AnimatedBeam": [
706
+ { name: "className", type: "string", default: "null" },
707
+ { name: "containerRef", type: "RefObject<HTMLElement | null>", default: "null" },
708
+ { name: "fromRef", type: "RefObject<HTMLElement | null>", default: "null" },
709
+ { name: "toRef", type: "RefObject<HTMLElement | null>", default: "null" },
710
+ { name: "curvature", type: "number", default: "0" },
711
+ { name: "reverse", type: "boolean", default: "false" },
712
+ { name: "pathColor", type: "string", default: "gray" },
713
+ { name: "pathWidth", type: "number", default: "2" },
714
+ { name: "pathOpacity", type: "number", default: "0.2" },
715
+ { name: "gradientStartColor", type: "string", default: "#ffaa40" },
716
+ { name: "gradientStopColor", type: "string", default: "#9c40ff" },
717
+ { name: "delay", type: "number", default: "0" },
718
+ { name: "duration", type: "number", default: "Math.random() * 3 + 4" },
719
+ { name: "startXOffset", type: "number", default: "0" },
720
+ { name: "startYOffset", type: "number", default: "0" },
721
+ { name: "endXOffset", type: "number", default: "0" },
722
+ { name: "endYOffset", type: "number", default: "0" }
723
+ ]
724
+ },
725
+ desc: null,
726
+ status: null,
727
+ lastUpdated: null
728
+ },
729
+ {
730
+ name: "Background Paths",
731
+ value: "background-paths",
732
+ importPath: "~/components/catalyst-ui/background/background-paths",
733
+ multiImport: null,
734
+ basicusage: `
735
+ <BackgroundPaths>
736
+ <div>Content</div>
737
+ </BackgroundPaths>
738
+
739
+ <BackgroundPaths
740
+ pathColor="currentColor"
741
+ pathWidth={2}
742
+ pathOpacity={0.1}
743
+ variant="curved"
744
+ animate={true}
745
+ className=""
746
+ >
747
+ <div>Content</div>
748
+ </BackgroundPaths>`,
749
+ path: "/components/catalyst-ui/background/background-paths.tsx",
750
+ source: null,
751
+ usagePath: "/components/catalyst-ui/background/background-paths.tsx",
752
+ usage: null,
753
+ premium: true,
754
+ category: "Background",
755
+ tags: ["ui", "components", "decorative", "background", "svg", "paths", "animated", "patterns"],
756
+ features: ["Responsive", "TypeScript", "Accessible", "Animated", "Multiple Variants", "SVG Paths"],
757
+ dependencies: ["react"],
758
+ props: {
759
+ "BackgroundPaths": [
760
+ { name: "pathColor", type: "string", default: "currentColor" },
761
+ { name: "pathWidth", type: "number", default: "2" },
762
+ { name: "pathOpacity", type: "number", default: "0.1" },
763
+ { name: "variant", type: "curved | zigzag | wavy | diagonal", default: "curved" },
764
+ { name: "animate", type: "boolean", default: "true" },
765
+ { name: "children", type: "React.ReactNode", default: "null" },
766
+ { name: "className", type: "string", default: "null" },
767
+ ],
768
+ },
769
+ desc: null,
770
+ status: null,
771
+ lastUpdated: null
772
+ },
773
+ {
774
+ name: "Flickering Grid",
775
+ value: "flickering-grid",
776
+ importPath: "~/components/catalyst-ui/background/flickering-grid",
777
+ multiImport: null,
778
+ basicusage: `
779
+ <FlickeringGrid />
780
+
781
+ <FlickeringGrid
782
+ squareSize={4}
783
+ gridGap={6}
784
+ flickerChance={0.3}
785
+ color="#6B7280"
786
+ width={800}
787
+ height={600}
788
+ maxOpacity={0.5}
789
+ className="absolute inset-0"
790
+ />`,
791
+ path: "/components/catalyst-ui/background/flickering-grid.tsx",
792
+ source: null,
793
+ usagePath: "/components/catalyst-ui/background/flickering-grid.tsx",
794
+ usage: null,
795
+ premium: true,
796
+ category: "Background",
797
+ tags: ["animation", "canvas", "grid", "background"],
798
+ features: ["Canvas Animation", "Performance Optimized", "Responsive", "TypeScript"],
799
+ dependencies: ["react"],
800
+ props: {
801
+ "FlickeringGrid": [
802
+ { name: "className", type: "string", default: "null" },
803
+ { name: "squareSize", type: "number", default: "4" },
804
+ { name: "gridGap", type: "number", default: "6" },
805
+ { name: "flickerChance", type: "number", default: "0.3" },
806
+ { name: "color", type: "string", default: "rgb(0, 0, 0)" },
807
+ { name: "width", type: "number", default: "null" },
808
+ { name: "height", type: "number", default: "null" },
809
+ { name: "maxOpacity", type: "number", default: "0.3" }
810
+ ]
811
+ },
812
+ desc: null,
813
+ status: null,
814
+ lastUpdated: null
815
+ },
816
+ {
817
+ name: "Dot Pattern",
818
+ value: "dot-pattern",
819
+ importPath: "~/components/catalyst-ui/background/dot-pattern",
820
+ multiImport: null,
821
+ basicusage: `
822
+ <DotPattern />
823
+
824
+ <DotPattern
825
+ width={20}
826
+ height={20}
827
+ cx={2}
828
+ cy={2}
829
+ cr={1.5}
830
+ glow={true}
831
+ className="opacity-50"
832
+ />`,
833
+ path: "/components/catalyst-ui/background/dot-pattern.tsx",
834
+ source: null,
835
+ usagePath: "/components/catalyst-ui/background/dot-pattern.tsx",
836
+ usage: null,
837
+ premium: true,
838
+ category: "Background",
839
+ tags: ["background", "pattern", "animation", "svg"],
840
+ features: ["Responsive", "Animated", "Customizable", "TypeScript"],
841
+ dependencies: ["motion", "react"],
842
+ props: {
843
+ "DotPattern": [
844
+ { name: "className", type: "string", default: "null" },
845
+ { name: "width", type: "number", default: "16" },
846
+ { name: "height", type: "number", default: "16" },
847
+ { name: "x", type: "number", default: "0" },
848
+ { name: "y", type: "number", default: "0" },
849
+ { name: "cx", type: "number", default: "1" },
850
+ { name: "cy", type: "number", default: "1" },
851
+ { name: "cr", type: "number", default: "1" },
852
+ { name: "glow", type: "boolean", default: "false" }
853
+ ]
854
+ },
855
+ desc: null,
856
+ status: null,
857
+ lastUpdated: null
858
+ },
859
+ {
860
+ name: "Dotted Map",
861
+ value: "dotted-map",
862
+ importPath: "~/components/catalyst-ui/background/dotted-map",
863
+ multiImport: null,
864
+ basicusage: `
865
+ <DottedMap />
866
+
867
+ <DottedMap
868
+ width={200}
869
+ height={100}
870
+ markers={markers}
871
+ markerColor="#FF6900"
872
+ dotRadius={0.3}
873
+ stagger={true}
874
+ className="w-full h-64"
875
+ />`,
876
+ path: "/components/catalyst-ui/background/dotted-map.tsx",
877
+ source: null,
878
+ usagePath: "/components/catalyst-ui/background/dotted-map.tsx",
879
+ usage: null,
880
+ premium: true,
881
+ category: "Background",
882
+ tags: ["map", "locations", "markers", "geography"],
883
+ features: ["Custom Markers", "Responsive", "SVG Based", "TypeScript"],
884
+ dependencies: ["svg-dotted-map", "react"],
885
+ props: {
886
+ "DottedMap": [
887
+ { name: "className", type: "string", default: "null" },
888
+ { name: "width", type: "number", default: "150" },
889
+ { name: "height", type: "number", default: "75" },
890
+ { name: "mapSamples", type: "number", default: "5000" },
891
+ { name: "markers", type: "Marker[]", default: "[]" },
892
+ { name: "markerColor", type: "string", default: "#FF6900" },
893
+ { name: "dotRadius", type: "number", default: "0.2" },
894
+ { name: "stagger", type: "boolean", default: "true" }
895
+ ]
896
+ },
897
+ desc: null,
898
+ status: null,
899
+ lastUpdated: null
900
+ },
901
+ ];