pxengine 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +79 -122
- package/dist/index.cjs +35586 -8241
- package/dist/index.d.cts +574 -33
- package/dist/index.d.ts +574 -33
- package/dist/index.js +35525 -8199
- package/dist/registry.json +1776 -113
- package/package.json +1 -1
- package/src/atoms/BadgeAtom.tsx +11 -3
- package/src/atoms/ButtonAtom.tsx +2 -2
- package/src/atoms/CalendarAtom.tsx +1 -1
- package/src/atoms/CardAtom.tsx +1 -1
- package/src/atoms/ChartAtom.tsx +190 -0
- package/src/atoms/CheckboxAtom.tsx +33 -0
- package/src/atoms/ContextMenuAtom.tsx +49 -0
- package/src/atoms/DrawerAtom.tsx +49 -0
- package/src/atoms/DropdownMenuAtom.tsx +49 -0
- package/src/atoms/InputAtom.tsx +49 -23
- package/src/atoms/InputOTPAtom.tsx +49 -0
- package/src/atoms/KbdAtom.tsx +25 -0
- package/src/atoms/LabelAtom.tsx +23 -0
- package/src/atoms/RadioGroupAtom.tsx +31 -0
- package/src/atoms/RatingAtom.tsx +37 -0
- package/src/atoms/ResizableAtom.tsx +51 -0
- package/src/atoms/SliderAtom.tsx +32 -0
- package/src/atoms/SwitchAtom.tsx +32 -0
- package/src/atoms/TextareaAtom.tsx +42 -0
- package/src/atoms/TimelineAtom.tsx +77 -0
- package/src/atoms/ToggleAtom.tsx +36 -0
- package/src/atoms/VideoAtom.tsx +34 -0
- package/src/atoms/index.ts +17 -0
- package/src/components/ui/resizable.tsx +5 -6
- package/src/molecules/creator-discovery/AudienceDemographicsCard/AudienceDemographicsCard.tsx +44 -0
- package/src/molecules/creator-discovery/AudienceDemographicsCard/index.ts +1 -0
- package/src/molecules/creator-discovery/AudienceMetricCard/AudienceMetricCard.tsx +50 -0
- package/src/molecules/creator-discovery/AudienceMetricCard/index.ts +1 -0
- package/src/molecules/creator-discovery/BrandAffinityGroup/BrandAffinityGroup.tsx +36 -0
- package/src/molecules/creator-discovery/BrandAffinityGroup/index.ts +1 -0
- package/src/molecules/creator-discovery/ContentPreviewGallery/ContentPreviewGallery.tsx +41 -0
- package/src/molecules/creator-discovery/ContentPreviewGallery/index.ts +1 -0
- package/src/molecules/creator-discovery/CreatorActionHeader/CreatorActionHeader.tsx +77 -0
- package/src/molecules/creator-discovery/CreatorActionHeader/index.ts +1 -0
- package/src/molecules/creator-discovery/CreatorGridCard/CreatorGridCard.tsx +104 -0
- package/src/molecules/creator-discovery/CreatorGridCard/index.ts +1 -0
- package/src/molecules/creator-discovery/CreatorProfileSummary/CreatorProfileSummary.tsx +65 -0
- package/src/molecules/creator-discovery/CreatorProfileSummary/index.ts +1 -0
- package/src/molecules/creator-discovery/GrowthChartCard/GrowthChartCard.tsx +58 -0
- package/src/molecules/creator-discovery/GrowthChartCard/index.ts +1 -0
- package/src/molecules/creator-discovery/PlatformIconGroup/PlatformIconGroup.tsx +72 -0
- package/src/molecules/creator-discovery/PlatformIconGroup/index.ts +1 -0
- package/src/molecules/creator-discovery/TopPostsGrid/TopPostsGrid.tsx +49 -0
- package/src/molecules/creator-discovery/TopPostsGrid/index.ts +1 -0
- package/src/molecules/creator-discovery/index.ts +10 -0
- package/src/molecules/generic/DataGrid/DataGrid.tsx +102 -0
- package/src/molecules/generic/DataGrid/index.ts +1 -0
- package/src/molecules/generic/EmptyState/EmptyState.tsx +61 -0
- package/src/molecules/generic/EmptyState/index.ts +1 -0
- package/src/molecules/generic/FileUpload/FileUpload.tsx +62 -0
- package/src/molecules/generic/FileUpload/index.ts +1 -0
- package/src/molecules/generic/FilterBar/FilterBar.tsx +54 -0
- package/src/molecules/generic/FilterBar/index.ts +1 -0
- package/src/molecules/generic/LoadingOverlay/LoadingOverlay.tsx +39 -0
- package/src/molecules/generic/LoadingOverlay/index.ts +1 -0
- package/src/molecules/generic/NotificationList/NotificationList.tsx +80 -0
- package/src/molecules/generic/NotificationList/index.ts +1 -0
- package/src/molecules/generic/StatsGrid/StatsGrid.tsx +80 -0
- package/src/molecules/generic/StatsGrid/index.ts +1 -0
- package/src/molecules/generic/StepWizard/StepWizard.tsx +67 -0
- package/src/molecules/generic/StepWizard/index.ts +1 -0
- package/src/molecules/generic/TagCloud/TagCloud.tsx +32 -0
- package/src/molecules/generic/TagCloud/index.ts +1 -0
- package/src/molecules/generic/index.ts +9 -0
- package/src/render/PXEngineRenderer.tsx +1 -1
- package/src/types/atoms.ts +150 -2
- package/src/types/molecules.ts +226 -1
package/dist/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pxengine/ui",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"lastUpdated": "2026-
|
|
4
|
+
"lastUpdated": "2026-02-03T11:03:34.911Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"AccordionAtom": {
|
|
7
7
|
"name": "AccordionAtom",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"required": false,
|
|
34
34
|
"description": ""
|
|
35
35
|
}
|
|
36
|
-
}
|
|
36
|
+
},
|
|
37
|
+
"preview": null
|
|
37
38
|
},
|
|
38
39
|
"AlertAtom": {
|
|
39
40
|
"name": "AlertAtom",
|
|
@@ -71,7 +72,8 @@
|
|
|
71
72
|
"required": false,
|
|
72
73
|
"description": ""
|
|
73
74
|
}
|
|
74
|
-
}
|
|
75
|
+
},
|
|
76
|
+
"preview": null
|
|
75
77
|
},
|
|
76
78
|
"AlertDialogAtom": {
|
|
77
79
|
"name": "AlertDialogAtom",
|
|
@@ -135,7 +137,8 @@
|
|
|
135
137
|
"required": false,
|
|
136
138
|
"description": ""
|
|
137
139
|
}
|
|
138
|
-
}
|
|
140
|
+
},
|
|
141
|
+
"preview": null
|
|
139
142
|
},
|
|
140
143
|
"AspectRatioAtom": {
|
|
141
144
|
"name": "AspectRatioAtom",
|
|
@@ -168,7 +171,8 @@
|
|
|
168
171
|
"required": false,
|
|
169
172
|
"description": ""
|
|
170
173
|
}
|
|
171
|
-
}
|
|
174
|
+
},
|
|
175
|
+
"preview": null
|
|
172
176
|
},
|
|
173
177
|
"AvatarAtom": {
|
|
174
178
|
"name": "AvatarAtom",
|
|
@@ -205,6 +209,15 @@
|
|
|
205
209
|
"required": false,
|
|
206
210
|
"description": ""
|
|
207
211
|
}
|
|
212
|
+
},
|
|
213
|
+
"preview": {
|
|
214
|
+
"name": "Avatar",
|
|
215
|
+
"component": "AvatarAtom",
|
|
216
|
+
"props": {
|
|
217
|
+
"src": "https://github.com/shadcn.png",
|
|
218
|
+
"fallback": "CN",
|
|
219
|
+
"className": "h-14 w-14 ring-4 ring-primary shadow-2xl transition-transform hover:scale-110 border-2 border-white/10"
|
|
220
|
+
}
|
|
208
221
|
}
|
|
209
222
|
},
|
|
210
223
|
"BadgeAtom": {
|
|
@@ -238,6 +251,15 @@
|
|
|
238
251
|
"required": false,
|
|
239
252
|
"description": ""
|
|
240
253
|
}
|
|
254
|
+
},
|
|
255
|
+
"preview": {
|
|
256
|
+
"name": "Badge",
|
|
257
|
+
"component": "BadgeAtom",
|
|
258
|
+
"props": {
|
|
259
|
+
"label": "Verified Agent",
|
|
260
|
+
"variant": "purple",
|
|
261
|
+
"className": "shadow-lg bg-primary text-white px-4 py-1.5 border border-white/20"
|
|
262
|
+
}
|
|
241
263
|
}
|
|
242
264
|
},
|
|
243
265
|
"BreadcrumbAtom": {
|
|
@@ -265,7 +287,8 @@
|
|
|
265
287
|
"required": false,
|
|
266
288
|
"description": ""
|
|
267
289
|
}
|
|
268
|
-
}
|
|
290
|
+
},
|
|
291
|
+
"preview": null
|
|
269
292
|
},
|
|
270
293
|
"ButtonAtom": {
|
|
271
294
|
"name": "ButtonAtom",
|
|
@@ -326,6 +349,16 @@
|
|
|
326
349
|
"required": false,
|
|
327
350
|
"description": ""
|
|
328
351
|
}
|
|
352
|
+
},
|
|
353
|
+
"preview": {
|
|
354
|
+
"name": "Button",
|
|
355
|
+
"component": "ButtonAtom",
|
|
356
|
+
"props": {
|
|
357
|
+
"label": "Get Started",
|
|
358
|
+
"variant": "purple",
|
|
359
|
+
"size": "lg",
|
|
360
|
+
"className": "shadow-lg border border-primary/20 hover:scale-[1.05] transition-all bg-primary font-bold px-8 text-white"
|
|
361
|
+
}
|
|
329
362
|
}
|
|
330
363
|
},
|
|
331
364
|
"CalendarAtom": {
|
|
@@ -363,6 +396,15 @@
|
|
|
363
396
|
"required": false,
|
|
364
397
|
"description": ""
|
|
365
398
|
}
|
|
399
|
+
},
|
|
400
|
+
"preview": {
|
|
401
|
+
"name": "Premium Calendar",
|
|
402
|
+
"component": "CalendarAtom",
|
|
403
|
+
"props": {
|
|
404
|
+
"mode": "single",
|
|
405
|
+
"selectedDate": "2026-02-03T11:03:34.911Z",
|
|
406
|
+
"className": "shadow-2xl border border-border bg-card rounded-[28px] p-6 ring-1 ring-border/5"
|
|
407
|
+
}
|
|
366
408
|
}
|
|
367
409
|
},
|
|
368
410
|
"CardAtom": {
|
|
@@ -405,6 +447,32 @@
|
|
|
405
447
|
"required": false,
|
|
406
448
|
"description": ""
|
|
407
449
|
}
|
|
450
|
+
},
|
|
451
|
+
"preview": {
|
|
452
|
+
"name": "Premium Card",
|
|
453
|
+
"component": "CardAtom",
|
|
454
|
+
"props": {
|
|
455
|
+
"title": "Premium Component",
|
|
456
|
+
"description": "This is a premium component with nested structure.",
|
|
457
|
+
"className": "border-2 border-border rounded-[32px] p-8 bg-card shadow-[0_20px_50px_rgba(0,0,0,0.1)] backdrop-blur-xl"
|
|
458
|
+
},
|
|
459
|
+
"children": [
|
|
460
|
+
{
|
|
461
|
+
"componentName": "TextAtom",
|
|
462
|
+
"props": {
|
|
463
|
+
"content": "Nested Heading",
|
|
464
|
+
"variant": "h3",
|
|
465
|
+
"className": "text-primary mb-2"
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"componentName": "TextAtom",
|
|
470
|
+
"props": {
|
|
471
|
+
"content": "This text is inside the card component to show its layout capabilities.",
|
|
472
|
+
"variant": "p"
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
]
|
|
408
476
|
}
|
|
409
477
|
},
|
|
410
478
|
"CarouselAtom": {
|
|
@@ -437,7 +505,117 @@
|
|
|
437
505
|
"required": false,
|
|
438
506
|
"description": ""
|
|
439
507
|
}
|
|
440
|
-
}
|
|
508
|
+
},
|
|
509
|
+
"preview": null
|
|
510
|
+
},
|
|
511
|
+
"ChartAtom": {
|
|
512
|
+
"name": "ChartAtom",
|
|
513
|
+
"type": "atom",
|
|
514
|
+
"description": "ChartAtom\nA versatile chart component wrapping Shadcn Chart primitives and Recharts.",
|
|
515
|
+
"props": {
|
|
516
|
+
"type": {
|
|
517
|
+
"type": "\"chart\"",
|
|
518
|
+
"required": true,
|
|
519
|
+
"description": ""
|
|
520
|
+
},
|
|
521
|
+
"chartType": {
|
|
522
|
+
"type": "enum",
|
|
523
|
+
"required": true,
|
|
524
|
+
"description": ""
|
|
525
|
+
},
|
|
526
|
+
"data": {
|
|
527
|
+
"type": "any[]",
|
|
528
|
+
"required": true,
|
|
529
|
+
"description": ""
|
|
530
|
+
},
|
|
531
|
+
"config": {
|
|
532
|
+
"type": "Record<string, { label: string; color: string; }>",
|
|
533
|
+
"required": true,
|
|
534
|
+
"description": ""
|
|
535
|
+
},
|
|
536
|
+
"XAxisKey": {
|
|
537
|
+
"type": "string",
|
|
538
|
+
"required": false,
|
|
539
|
+
"description": ""
|
|
540
|
+
},
|
|
541
|
+
"YAxisKey": {
|
|
542
|
+
"type": "string",
|
|
543
|
+
"required": false,
|
|
544
|
+
"description": ""
|
|
545
|
+
},
|
|
546
|
+
"showTooltip": {
|
|
547
|
+
"type": "boolean",
|
|
548
|
+
"required": false,
|
|
549
|
+
"defaultValue": "true",
|
|
550
|
+
"description": ""
|
|
551
|
+
},
|
|
552
|
+
"showLegend": {
|
|
553
|
+
"type": "boolean",
|
|
554
|
+
"required": false,
|
|
555
|
+
"defaultValue": "true",
|
|
556
|
+
"description": ""
|
|
557
|
+
},
|
|
558
|
+
"stacked": {
|
|
559
|
+
"type": "boolean",
|
|
560
|
+
"required": false,
|
|
561
|
+
"defaultValue": "false",
|
|
562
|
+
"description": ""
|
|
563
|
+
},
|
|
564
|
+
"id": {
|
|
565
|
+
"type": "string",
|
|
566
|
+
"required": true,
|
|
567
|
+
"description": ""
|
|
568
|
+
},
|
|
569
|
+
"className": {
|
|
570
|
+
"type": "string",
|
|
571
|
+
"required": false,
|
|
572
|
+
"description": ""
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"preview": null
|
|
576
|
+
},
|
|
577
|
+
"CheckboxAtom": {
|
|
578
|
+
"name": "CheckboxAtom",
|
|
579
|
+
"type": "atom",
|
|
580
|
+
"description": "CheckboxAtom\nWraps shadcn Checkbox with label support",
|
|
581
|
+
"props": {
|
|
582
|
+
"type": {
|
|
583
|
+
"type": "\"checkbox\"",
|
|
584
|
+
"required": true,
|
|
585
|
+
"description": ""
|
|
586
|
+
},
|
|
587
|
+
"label": {
|
|
588
|
+
"type": "string",
|
|
589
|
+
"required": false,
|
|
590
|
+
"description": ""
|
|
591
|
+
},
|
|
592
|
+
"checked": {
|
|
593
|
+
"type": "boolean",
|
|
594
|
+
"required": false,
|
|
595
|
+
"description": ""
|
|
596
|
+
},
|
|
597
|
+
"disabled": {
|
|
598
|
+
"type": "boolean",
|
|
599
|
+
"required": false,
|
|
600
|
+
"description": ""
|
|
601
|
+
},
|
|
602
|
+
"id": {
|
|
603
|
+
"type": "string",
|
|
604
|
+
"required": true,
|
|
605
|
+
"description": ""
|
|
606
|
+
},
|
|
607
|
+
"className": {
|
|
608
|
+
"type": "string",
|
|
609
|
+
"required": false,
|
|
610
|
+
"description": ""
|
|
611
|
+
},
|
|
612
|
+
"onCheckedChange": {
|
|
613
|
+
"type": "(checked: boolean) => void",
|
|
614
|
+
"required": false,
|
|
615
|
+
"description": ""
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
"preview": null
|
|
441
619
|
},
|
|
442
620
|
"CollapsibleAtom": {
|
|
443
621
|
"name": "CollapsibleAtom",
|
|
@@ -480,7 +658,8 @@
|
|
|
480
658
|
"required": false,
|
|
481
659
|
"description": ""
|
|
482
660
|
}
|
|
483
|
-
}
|
|
661
|
+
},
|
|
662
|
+
"preview": null
|
|
484
663
|
},
|
|
485
664
|
"CommandAtom": {
|
|
486
665
|
"name": "CommandAtom",
|
|
@@ -513,7 +692,46 @@
|
|
|
513
692
|
"required": false,
|
|
514
693
|
"description": ""
|
|
515
694
|
}
|
|
516
|
-
}
|
|
695
|
+
},
|
|
696
|
+
"preview": null
|
|
697
|
+
},
|
|
698
|
+
"ContextMenuAtom": {
|
|
699
|
+
"name": "ContextMenuAtom",
|
|
700
|
+
"type": "atom",
|
|
701
|
+
"description": "ContextMenuAtom\nWraps shadcn ContextMenu",
|
|
702
|
+
"props": {
|
|
703
|
+
"type": {
|
|
704
|
+
"type": "\"context-menu\"",
|
|
705
|
+
"required": true,
|
|
706
|
+
"description": ""
|
|
707
|
+
},
|
|
708
|
+
"trigger": {
|
|
709
|
+
"type": "any[]",
|
|
710
|
+
"required": true,
|
|
711
|
+
"description": ""
|
|
712
|
+
},
|
|
713
|
+
"items": {
|
|
714
|
+
"type": "{ label: string; value: string; icon?: string; action?: string; disabled?: boolean; isDestructive?: boolean; }[]",
|
|
715
|
+
"required": true,
|
|
716
|
+
"description": ""
|
|
717
|
+
},
|
|
718
|
+
"id": {
|
|
719
|
+
"type": "string",
|
|
720
|
+
"required": true,
|
|
721
|
+
"description": ""
|
|
722
|
+
},
|
|
723
|
+
"className": {
|
|
724
|
+
"type": "string",
|
|
725
|
+
"required": false,
|
|
726
|
+
"description": ""
|
|
727
|
+
},
|
|
728
|
+
"onAction": {
|
|
729
|
+
"type": "(action: string) => void",
|
|
730
|
+
"required": false,
|
|
731
|
+
"description": ""
|
|
732
|
+
}
|
|
733
|
+
},
|
|
734
|
+
"preview": null
|
|
517
735
|
},
|
|
518
736
|
"DialogAtom": {
|
|
519
737
|
"name": "DialogAtom",
|
|
@@ -560,29 +778,25 @@
|
|
|
560
778
|
"required": false,
|
|
561
779
|
"description": ""
|
|
562
780
|
}
|
|
563
|
-
}
|
|
781
|
+
},
|
|
782
|
+
"preview": null
|
|
564
783
|
},
|
|
565
|
-
"
|
|
566
|
-
"name": "
|
|
784
|
+
"DrawerAtom": {
|
|
785
|
+
"name": "DrawerAtom",
|
|
567
786
|
"type": "atom",
|
|
568
|
-
"description": "
|
|
787
|
+
"description": "DrawerAtom\nWraps shadcn Drawer for mobile-first views",
|
|
569
788
|
"props": {
|
|
570
|
-
"
|
|
571
|
-
"type": "
|
|
572
|
-
"required": false,
|
|
573
|
-
"description": ""
|
|
574
|
-
},
|
|
575
|
-
"name": {
|
|
576
|
-
"type": "string",
|
|
789
|
+
"type": {
|
|
790
|
+
"type": "\"drawer\"",
|
|
577
791
|
"required": true,
|
|
578
792
|
"description": ""
|
|
579
793
|
},
|
|
580
|
-
"
|
|
581
|
-
"type": "
|
|
794
|
+
"side": {
|
|
795
|
+
"type": "enum",
|
|
582
796
|
"required": false,
|
|
583
797
|
"description": ""
|
|
584
798
|
},
|
|
585
|
-
"
|
|
799
|
+
"title": {
|
|
586
800
|
"type": "string",
|
|
587
801
|
"required": false,
|
|
588
802
|
"description": ""
|
|
@@ -592,22 +806,47 @@
|
|
|
592
806
|
"required": false,
|
|
593
807
|
"description": ""
|
|
594
808
|
},
|
|
595
|
-
"
|
|
809
|
+
"trigger": {
|
|
810
|
+
"type": "any[]",
|
|
811
|
+
"required": true,
|
|
812
|
+
"description": ""
|
|
813
|
+
},
|
|
814
|
+
"id": {
|
|
596
815
|
"type": "string",
|
|
597
|
-
"required":
|
|
598
|
-
"defaultValue": "",
|
|
816
|
+
"required": true,
|
|
599
817
|
"description": ""
|
|
600
818
|
},
|
|
601
|
-
"
|
|
602
|
-
"type": "
|
|
819
|
+
"className": {
|
|
820
|
+
"type": "string",
|
|
603
821
|
"required": false,
|
|
604
|
-
"
|
|
822
|
+
"description": ""
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
"preview": null
|
|
826
|
+
},
|
|
827
|
+
"DropdownMenuAtom": {
|
|
828
|
+
"name": "DropdownMenuAtom",
|
|
829
|
+
"type": "atom",
|
|
830
|
+
"description": "DropdownMenuAtom\nWraps shadcn DropdownMenu",
|
|
831
|
+
"props": {
|
|
832
|
+
"type": {
|
|
833
|
+
"type": "\"dropdown-menu\"",
|
|
834
|
+
"required": true,
|
|
605
835
|
"description": ""
|
|
606
836
|
},
|
|
607
|
-
"
|
|
608
|
-
"type": "
|
|
609
|
-
"required":
|
|
610
|
-
"
|
|
837
|
+
"trigger": {
|
|
838
|
+
"type": "any",
|
|
839
|
+
"required": true,
|
|
840
|
+
"description": ""
|
|
841
|
+
},
|
|
842
|
+
"items": {
|
|
843
|
+
"type": "{ label: string; value: string; icon?: string; action?: string; disabled?: boolean; isDestructive?: boolean; }[]",
|
|
844
|
+
"required": true,
|
|
845
|
+
"description": ""
|
|
846
|
+
},
|
|
847
|
+
"id": {
|
|
848
|
+
"type": "string",
|
|
849
|
+
"required": true,
|
|
611
850
|
"description": ""
|
|
612
851
|
},
|
|
613
852
|
"className": {
|
|
@@ -615,37 +854,47 @@
|
|
|
615
854
|
"required": false,
|
|
616
855
|
"description": ""
|
|
617
856
|
},
|
|
618
|
-
"
|
|
619
|
-
"type": "string",
|
|
857
|
+
"onAction": {
|
|
858
|
+
"type": "(action: string) => void",
|
|
620
859
|
"required": false,
|
|
621
860
|
"description": ""
|
|
622
861
|
}
|
|
623
|
-
}
|
|
862
|
+
},
|
|
863
|
+
"preview": null
|
|
624
864
|
},
|
|
625
|
-
"
|
|
626
|
-
"name": "
|
|
865
|
+
"FormInputAtom": {
|
|
866
|
+
"name": "FormInputAtom",
|
|
627
867
|
"type": "atom",
|
|
628
|
-
"description": "
|
|
868
|
+
"description": "FormInputAtom\n\nSelf-contained form input component that properly wraps FormField, FormItem, FormLabel, and FormControl.\nThis component provides the necessary React Context for form components to work correctly.\n\nFeatures:\n- Handles all form context requirements internally\n- Supports various input types (text, email, password, etc.)\n- Includes validation support through react-hook-form\n- Schema-safe for dynamic rendering via PXEngineRenderer",
|
|
629
869
|
"props": {
|
|
630
870
|
"renderComponent": {
|
|
631
871
|
"type": "any",
|
|
632
872
|
"required": false,
|
|
633
873
|
"description": ""
|
|
634
874
|
},
|
|
635
|
-
"
|
|
875
|
+
"label": {
|
|
636
876
|
"type": "string",
|
|
637
|
-
"required":
|
|
877
|
+
"required": false,
|
|
638
878
|
"description": ""
|
|
639
879
|
},
|
|
640
|
-
"
|
|
880
|
+
"id": {
|
|
881
|
+
"type": "string",
|
|
882
|
+
"required": false,
|
|
883
|
+
"description": ""
|
|
884
|
+
},
|
|
885
|
+
"className": {
|
|
641
886
|
"type": "string",
|
|
642
887
|
"required": false,
|
|
643
888
|
"description": ""
|
|
644
889
|
},
|
|
890
|
+
"name": {
|
|
891
|
+
"type": "string",
|
|
892
|
+
"required": true,
|
|
893
|
+
"description": ""
|
|
894
|
+
},
|
|
645
895
|
"placeholder": {
|
|
646
896
|
"type": "string",
|
|
647
897
|
"required": false,
|
|
648
|
-
"defaultValue": "Select an option",
|
|
649
898
|
"description": ""
|
|
650
899
|
},
|
|
651
900
|
"description": {
|
|
@@ -665,47 +914,49 @@
|
|
|
665
914
|
"defaultValue": "false",
|
|
666
915
|
"description": ""
|
|
667
916
|
},
|
|
668
|
-
"
|
|
669
|
-
"type": "
|
|
670
|
-
"required": false,
|
|
671
|
-
"description": ""
|
|
672
|
-
},
|
|
673
|
-
"id": {
|
|
674
|
-
"type": "string",
|
|
675
|
-
"required": false,
|
|
676
|
-
"description": ""
|
|
677
|
-
},
|
|
678
|
-
"options": {
|
|
679
|
-
"type": "SelectOption[]",
|
|
917
|
+
"inputType": {
|
|
918
|
+
"type": "enum",
|
|
680
919
|
"required": false,
|
|
681
|
-
"defaultValue": "
|
|
920
|
+
"defaultValue": "text",
|
|
682
921
|
"description": ""
|
|
683
922
|
}
|
|
684
|
-
}
|
|
923
|
+
},
|
|
924
|
+
"preview": null
|
|
685
925
|
},
|
|
686
|
-
"
|
|
687
|
-
"name": "
|
|
926
|
+
"FormSelectAtom": {
|
|
927
|
+
"name": "FormSelectAtom",
|
|
688
928
|
"type": "atom",
|
|
689
|
-
"description": "
|
|
929
|
+
"description": "FormSelectAtom\n\nSelf-contained form select component that properly wraps FormField, FormItem, FormLabel, FormControl, and Select.\nThis component provides the necessary React Context for both form and select components to work correctly.\n\nFeatures:\n- Handles all form and select context requirements internally\n- Supports dynamic options list\n- Includes validation support through react-hook-form\n- Schema-safe for dynamic rendering via PXEngineRenderer",
|
|
690
930
|
"props": {
|
|
691
931
|
"renderComponent": {
|
|
692
932
|
"type": "any",
|
|
693
933
|
"required": false,
|
|
694
934
|
"description": ""
|
|
695
935
|
},
|
|
696
|
-
"
|
|
936
|
+
"label": {
|
|
697
937
|
"type": "string",
|
|
698
|
-
"required":
|
|
938
|
+
"required": false,
|
|
699
939
|
"description": ""
|
|
700
940
|
},
|
|
701
|
-
"
|
|
941
|
+
"id": {
|
|
942
|
+
"type": "string",
|
|
943
|
+
"required": false,
|
|
944
|
+
"description": ""
|
|
945
|
+
},
|
|
946
|
+
"className": {
|
|
702
947
|
"type": "string",
|
|
703
948
|
"required": false,
|
|
704
949
|
"description": ""
|
|
705
950
|
},
|
|
951
|
+
"name": {
|
|
952
|
+
"type": "string",
|
|
953
|
+
"required": true,
|
|
954
|
+
"description": ""
|
|
955
|
+
},
|
|
706
956
|
"placeholder": {
|
|
707
957
|
"type": "string",
|
|
708
958
|
"required": false,
|
|
959
|
+
"defaultValue": "Select an option",
|
|
709
960
|
"description": ""
|
|
710
961
|
},
|
|
711
962
|
"description": {
|
|
@@ -725,8 +976,27 @@
|
|
|
725
976
|
"defaultValue": "false",
|
|
726
977
|
"description": ""
|
|
727
978
|
},
|
|
728
|
-
"
|
|
729
|
-
"type": "
|
|
979
|
+
"options": {
|
|
980
|
+
"type": "SelectOption[]",
|
|
981
|
+
"required": false,
|
|
982
|
+
"defaultValue": "[]",
|
|
983
|
+
"description": ""
|
|
984
|
+
}
|
|
985
|
+
},
|
|
986
|
+
"preview": null
|
|
987
|
+
},
|
|
988
|
+
"FormTextareaAtom": {
|
|
989
|
+
"name": "FormTextareaAtom",
|
|
990
|
+
"type": "atom",
|
|
991
|
+
"description": "FormTextareaAtom\n\nSelf-contained form textarea component that properly wraps FormField, FormItem, FormLabel, and FormControl.\nThis component provides the necessary React Context for form components to work correctly.\n\nFeatures:\n- Handles all form context requirements internally\n- Supports configurable rows\n- Includes validation support through react-hook-form\n- Schema-safe for dynamic rendering via PXEngineRenderer",
|
|
992
|
+
"props": {
|
|
993
|
+
"renderComponent": {
|
|
994
|
+
"type": "any",
|
|
995
|
+
"required": false,
|
|
996
|
+
"description": ""
|
|
997
|
+
},
|
|
998
|
+
"label": {
|
|
999
|
+
"type": "string",
|
|
730
1000
|
"required": false,
|
|
731
1001
|
"description": ""
|
|
732
1002
|
},
|
|
@@ -735,13 +1005,46 @@
|
|
|
735
1005
|
"required": false,
|
|
736
1006
|
"description": ""
|
|
737
1007
|
},
|
|
1008
|
+
"className": {
|
|
1009
|
+
"type": "string",
|
|
1010
|
+
"required": false,
|
|
1011
|
+
"description": ""
|
|
1012
|
+
},
|
|
1013
|
+
"name": {
|
|
1014
|
+
"type": "string",
|
|
1015
|
+
"required": true,
|
|
1016
|
+
"description": ""
|
|
1017
|
+
},
|
|
1018
|
+
"placeholder": {
|
|
1019
|
+
"type": "string",
|
|
1020
|
+
"required": false,
|
|
1021
|
+
"description": ""
|
|
1022
|
+
},
|
|
1023
|
+
"description": {
|
|
1024
|
+
"type": "string",
|
|
1025
|
+
"required": false,
|
|
1026
|
+
"description": ""
|
|
1027
|
+
},
|
|
1028
|
+
"defaultValue": {
|
|
1029
|
+
"type": "string",
|
|
1030
|
+
"required": false,
|
|
1031
|
+
"defaultValue": "",
|
|
1032
|
+
"description": ""
|
|
1033
|
+
},
|
|
1034
|
+
"required": {
|
|
1035
|
+
"type": "boolean",
|
|
1036
|
+
"required": false,
|
|
1037
|
+
"defaultValue": "false",
|
|
1038
|
+
"description": ""
|
|
1039
|
+
},
|
|
738
1040
|
"rows": {
|
|
739
1041
|
"type": "number",
|
|
740
1042
|
"required": false,
|
|
741
1043
|
"defaultValue": "3",
|
|
742
1044
|
"description": ""
|
|
743
1045
|
}
|
|
744
|
-
}
|
|
1046
|
+
},
|
|
1047
|
+
"preview": null
|
|
745
1048
|
},
|
|
746
1049
|
"InputAtom": {
|
|
747
1050
|
"name": "InputAtom",
|
|
@@ -803,8 +1106,117 @@
|
|
|
803
1106
|
"required": false,
|
|
804
1107
|
"description": ""
|
|
805
1108
|
}
|
|
1109
|
+
},
|
|
1110
|
+
"preview": {
|
|
1111
|
+
"name": "Input Field",
|
|
1112
|
+
"component": "InputAtom",
|
|
1113
|
+
"props": {
|
|
1114
|
+
"inputType": "text",
|
|
1115
|
+
"placeholder": "Enter your work email...",
|
|
1116
|
+
"label": "Business Email",
|
|
1117
|
+
"className": "rounded-2xl border border-border bg-card p-4 focus:ring-2 focus:ring-primary transition-all shadow-sm"
|
|
1118
|
+
}
|
|
806
1119
|
}
|
|
807
1120
|
},
|
|
1121
|
+
"InputOTPAtom": {
|
|
1122
|
+
"name": "InputOTPAtom",
|
|
1123
|
+
"type": "atom",
|
|
1124
|
+
"description": "InputOTPAtom\nWraps shadcn InputOTP for code verification",
|
|
1125
|
+
"props": {
|
|
1126
|
+
"type": {
|
|
1127
|
+
"type": "\"input-otp\"",
|
|
1128
|
+
"required": true,
|
|
1129
|
+
"description": ""
|
|
1130
|
+
},
|
|
1131
|
+
"length": {
|
|
1132
|
+
"type": "number",
|
|
1133
|
+
"required": true,
|
|
1134
|
+
"description": ""
|
|
1135
|
+
},
|
|
1136
|
+
"placeholder": {
|
|
1137
|
+
"type": "string",
|
|
1138
|
+
"required": false,
|
|
1139
|
+
"description": ""
|
|
1140
|
+
},
|
|
1141
|
+
"id": {
|
|
1142
|
+
"type": "string",
|
|
1143
|
+
"required": true,
|
|
1144
|
+
"description": ""
|
|
1145
|
+
},
|
|
1146
|
+
"className": {
|
|
1147
|
+
"type": "string",
|
|
1148
|
+
"required": false,
|
|
1149
|
+
"description": ""
|
|
1150
|
+
},
|
|
1151
|
+
"onChange": {
|
|
1152
|
+
"type": "(val: string) => void",
|
|
1153
|
+
"required": false,
|
|
1154
|
+
"description": ""
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
"preview": null
|
|
1158
|
+
},
|
|
1159
|
+
"KbdAtom": {
|
|
1160
|
+
"name": "KbdAtom",
|
|
1161
|
+
"type": "atom",
|
|
1162
|
+
"description": "KbdAtom\nVisual representation of a keyboard shortcut",
|
|
1163
|
+
"props": {
|
|
1164
|
+
"type": {
|
|
1165
|
+
"type": "\"kbd\"",
|
|
1166
|
+
"required": true,
|
|
1167
|
+
"description": ""
|
|
1168
|
+
},
|
|
1169
|
+
"keys": {
|
|
1170
|
+
"type": "string[]",
|
|
1171
|
+
"required": true,
|
|
1172
|
+
"description": ""
|
|
1173
|
+
},
|
|
1174
|
+
"id": {
|
|
1175
|
+
"type": "string",
|
|
1176
|
+
"required": true,
|
|
1177
|
+
"description": ""
|
|
1178
|
+
},
|
|
1179
|
+
"className": {
|
|
1180
|
+
"type": "string",
|
|
1181
|
+
"required": false,
|
|
1182
|
+
"description": ""
|
|
1183
|
+
}
|
|
1184
|
+
},
|
|
1185
|
+
"preview": null
|
|
1186
|
+
},
|
|
1187
|
+
"LabelAtom": {
|
|
1188
|
+
"name": "LabelAtom",
|
|
1189
|
+
"type": "atom",
|
|
1190
|
+
"description": "LabelAtom\nWraps shadcn Label",
|
|
1191
|
+
"props": {
|
|
1192
|
+
"type": {
|
|
1193
|
+
"type": "\"label\"",
|
|
1194
|
+
"required": true,
|
|
1195
|
+
"description": ""
|
|
1196
|
+
},
|
|
1197
|
+
"content": {
|
|
1198
|
+
"type": "string",
|
|
1199
|
+
"required": true,
|
|
1200
|
+
"description": ""
|
|
1201
|
+
},
|
|
1202
|
+
"htmlFor": {
|
|
1203
|
+
"type": "string",
|
|
1204
|
+
"required": false,
|
|
1205
|
+
"description": ""
|
|
1206
|
+
},
|
|
1207
|
+
"id": {
|
|
1208
|
+
"type": "string",
|
|
1209
|
+
"required": true,
|
|
1210
|
+
"description": ""
|
|
1211
|
+
},
|
|
1212
|
+
"className": {
|
|
1213
|
+
"type": "string",
|
|
1214
|
+
"required": false,
|
|
1215
|
+
"description": ""
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"preview": null
|
|
1219
|
+
},
|
|
808
1220
|
"LayoutAtom": {
|
|
809
1221
|
"name": "LayoutAtom",
|
|
810
1222
|
"type": "atom",
|
|
@@ -841,7 +1253,8 @@
|
|
|
841
1253
|
"required": false,
|
|
842
1254
|
"description": ""
|
|
843
1255
|
}
|
|
844
|
-
}
|
|
1256
|
+
},
|
|
1257
|
+
"preview": null
|
|
845
1258
|
},
|
|
846
1259
|
"PaginationAtom": {
|
|
847
1260
|
"name": "PaginationAtom",
|
|
@@ -885,7 +1298,8 @@
|
|
|
885
1298
|
"required": false,
|
|
886
1299
|
"description": ""
|
|
887
1300
|
}
|
|
888
|
-
}
|
|
1301
|
+
},
|
|
1302
|
+
"preview": null
|
|
889
1303
|
},
|
|
890
1304
|
"PopoverAtom": {
|
|
891
1305
|
"name": "PopoverAtom",
|
|
@@ -922,7 +1336,8 @@
|
|
|
922
1336
|
"required": false,
|
|
923
1337
|
"description": ""
|
|
924
1338
|
}
|
|
925
|
-
}
|
|
1339
|
+
},
|
|
1340
|
+
"preview": null
|
|
926
1341
|
},
|
|
927
1342
|
"ProgressAtom": {
|
|
928
1343
|
"name": "ProgressAtom",
|
|
@@ -949,7 +1364,134 @@
|
|
|
949
1364
|
"required": false,
|
|
950
1365
|
"description": ""
|
|
951
1366
|
}
|
|
952
|
-
}
|
|
1367
|
+
},
|
|
1368
|
+
"preview": null
|
|
1369
|
+
},
|
|
1370
|
+
"RadioGroupAtom": {
|
|
1371
|
+
"name": "RadioGroupAtom",
|
|
1372
|
+
"type": "atom",
|
|
1373
|
+
"description": "RadioGroupAtom\nWraps shadcn RadioGroup",
|
|
1374
|
+
"props": {
|
|
1375
|
+
"type": {
|
|
1376
|
+
"type": "\"radio-group\"",
|
|
1377
|
+
"required": true,
|
|
1378
|
+
"description": ""
|
|
1379
|
+
},
|
|
1380
|
+
"options": {
|
|
1381
|
+
"type": "{ label: string; value: string; }[]",
|
|
1382
|
+
"required": true,
|
|
1383
|
+
"description": ""
|
|
1384
|
+
},
|
|
1385
|
+
"defaultValue": {
|
|
1386
|
+
"type": "string",
|
|
1387
|
+
"required": false,
|
|
1388
|
+
"description": ""
|
|
1389
|
+
},
|
|
1390
|
+
"disabled": {
|
|
1391
|
+
"type": "boolean",
|
|
1392
|
+
"required": false,
|
|
1393
|
+
"description": ""
|
|
1394
|
+
},
|
|
1395
|
+
"id": {
|
|
1396
|
+
"type": "string",
|
|
1397
|
+
"required": true,
|
|
1398
|
+
"description": ""
|
|
1399
|
+
},
|
|
1400
|
+
"className": {
|
|
1401
|
+
"type": "string",
|
|
1402
|
+
"required": false,
|
|
1403
|
+
"description": ""
|
|
1404
|
+
},
|
|
1405
|
+
"onValueChange": {
|
|
1406
|
+
"type": "(value: string) => void",
|
|
1407
|
+
"required": false,
|
|
1408
|
+
"description": ""
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
"preview": null
|
|
1412
|
+
},
|
|
1413
|
+
"RatingAtom": {
|
|
1414
|
+
"name": "RatingAtom",
|
|
1415
|
+
"type": "atom",
|
|
1416
|
+
"description": "RatingAtom\nA star rating component for display or user input.",
|
|
1417
|
+
"props": {
|
|
1418
|
+
"type": {
|
|
1419
|
+
"type": "\"rating\"",
|
|
1420
|
+
"required": true,
|
|
1421
|
+
"description": ""
|
|
1422
|
+
},
|
|
1423
|
+
"value": {
|
|
1424
|
+
"type": "number",
|
|
1425
|
+
"required": true,
|
|
1426
|
+
"description": ""
|
|
1427
|
+
},
|
|
1428
|
+
"max": {
|
|
1429
|
+
"type": "number",
|
|
1430
|
+
"required": false,
|
|
1431
|
+
"defaultValue": "5",
|
|
1432
|
+
"description": ""
|
|
1433
|
+
},
|
|
1434
|
+
"readonly": {
|
|
1435
|
+
"type": "boolean",
|
|
1436
|
+
"required": false,
|
|
1437
|
+
"defaultValue": "false",
|
|
1438
|
+
"description": ""
|
|
1439
|
+
},
|
|
1440
|
+
"id": {
|
|
1441
|
+
"type": "string",
|
|
1442
|
+
"required": true,
|
|
1443
|
+
"description": ""
|
|
1444
|
+
},
|
|
1445
|
+
"className": {
|
|
1446
|
+
"type": "string",
|
|
1447
|
+
"required": false,
|
|
1448
|
+
"description": ""
|
|
1449
|
+
},
|
|
1450
|
+
"onChange": {
|
|
1451
|
+
"type": "(val: number) => void",
|
|
1452
|
+
"required": false,
|
|
1453
|
+
"description": ""
|
|
1454
|
+
}
|
|
1455
|
+
},
|
|
1456
|
+
"preview": null
|
|
1457
|
+
},
|
|
1458
|
+
"ResizableAtom": {
|
|
1459
|
+
"name": "ResizableAtom",
|
|
1460
|
+
"type": "atom",
|
|
1461
|
+
"description": "ResizableAtom\nWraps shadcn Resizable panels for complex layouts",
|
|
1462
|
+
"props": {
|
|
1463
|
+
"renderComponent": {
|
|
1464
|
+
"type": "(component: UIComponent, index?: number) => ReactNode",
|
|
1465
|
+
"required": true,
|
|
1466
|
+
"description": ""
|
|
1467
|
+
},
|
|
1468
|
+
"type": {
|
|
1469
|
+
"type": "\"resizable\"",
|
|
1470
|
+
"required": true,
|
|
1471
|
+
"description": ""
|
|
1472
|
+
},
|
|
1473
|
+
"direction": {
|
|
1474
|
+
"type": "enum",
|
|
1475
|
+
"required": true,
|
|
1476
|
+
"description": ""
|
|
1477
|
+
},
|
|
1478
|
+
"panels": {
|
|
1479
|
+
"type": "{ defaultSize: number; children: any[]; }[]",
|
|
1480
|
+
"required": true,
|
|
1481
|
+
"description": ""
|
|
1482
|
+
},
|
|
1483
|
+
"id": {
|
|
1484
|
+
"type": "string",
|
|
1485
|
+
"required": true,
|
|
1486
|
+
"description": ""
|
|
1487
|
+
},
|
|
1488
|
+
"className": {
|
|
1489
|
+
"type": "string",
|
|
1490
|
+
"required": false,
|
|
1491
|
+
"description": ""
|
|
1492
|
+
}
|
|
1493
|
+
},
|
|
1494
|
+
"preview": null
|
|
953
1495
|
},
|
|
954
1496
|
"ScrollAreaAtom": {
|
|
955
1497
|
"name": "ScrollAreaAtom",
|
|
@@ -982,7 +1524,8 @@
|
|
|
982
1524
|
"required": false,
|
|
983
1525
|
"description": ""
|
|
984
1526
|
}
|
|
985
|
-
}
|
|
1527
|
+
},
|
|
1528
|
+
"preview": null
|
|
986
1529
|
},
|
|
987
1530
|
"SeparatorAtom": {
|
|
988
1531
|
"name": "SeparatorAtom",
|
|
@@ -1010,7 +1553,8 @@
|
|
|
1010
1553
|
"required": false,
|
|
1011
1554
|
"description": ""
|
|
1012
1555
|
}
|
|
1013
|
-
}
|
|
1556
|
+
},
|
|
1557
|
+
"preview": null
|
|
1014
1558
|
},
|
|
1015
1559
|
"SheetAtom": {
|
|
1016
1560
|
"name": "SheetAtom",
|
|
@@ -1063,7 +1607,8 @@
|
|
|
1063
1607
|
"required": false,
|
|
1064
1608
|
"description": ""
|
|
1065
1609
|
}
|
|
1066
|
-
}
|
|
1610
|
+
},
|
|
1611
|
+
"preview": null
|
|
1067
1612
|
},
|
|
1068
1613
|
"SkeletonAtom": {
|
|
1069
1614
|
"name": "SkeletonAtom",
|
|
@@ -1109,35 +1654,137 @@
|
|
|
1109
1654
|
"required": false,
|
|
1110
1655
|
"description": ""
|
|
1111
1656
|
}
|
|
1112
|
-
}
|
|
1657
|
+
},
|
|
1658
|
+
"preview": null
|
|
1113
1659
|
},
|
|
1114
|
-
"
|
|
1115
|
-
"name": "
|
|
1660
|
+
"SliderAtom": {
|
|
1661
|
+
"name": "SliderAtom",
|
|
1116
1662
|
"type": "atom",
|
|
1117
|
-
"description": "",
|
|
1663
|
+
"description": "SliderAtom\nWraps shadcn Slider",
|
|
1118
1664
|
"props": {
|
|
1119
1665
|
"type": {
|
|
1120
|
-
"type": "\"
|
|
1666
|
+
"type": "\"slider\"",
|
|
1121
1667
|
"required": true,
|
|
1122
1668
|
"description": ""
|
|
1123
1669
|
},
|
|
1124
|
-
"
|
|
1125
|
-
"type": "
|
|
1670
|
+
"defaultValue": {
|
|
1671
|
+
"type": "number[]",
|
|
1126
1672
|
"required": false,
|
|
1127
|
-
"defaultValue": "
|
|
1673
|
+
"defaultValue": "[50]",
|
|
1128
1674
|
"description": ""
|
|
1129
1675
|
},
|
|
1130
|
-
"
|
|
1131
|
-
"type": "
|
|
1132
|
-
"required":
|
|
1676
|
+
"max": {
|
|
1677
|
+
"type": "number",
|
|
1678
|
+
"required": false,
|
|
1679
|
+
"defaultValue": "100",
|
|
1133
1680
|
"description": ""
|
|
1134
1681
|
},
|
|
1135
|
-
"
|
|
1136
|
-
"type": "
|
|
1682
|
+
"min": {
|
|
1683
|
+
"type": "number",
|
|
1137
1684
|
"required": false,
|
|
1685
|
+
"defaultValue": "0",
|
|
1138
1686
|
"description": ""
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1687
|
+
},
|
|
1688
|
+
"step": {
|
|
1689
|
+
"type": "number",
|
|
1690
|
+
"required": false,
|
|
1691
|
+
"defaultValue": "1",
|
|
1692
|
+
"description": ""
|
|
1693
|
+
},
|
|
1694
|
+
"disabled": {
|
|
1695
|
+
"type": "boolean",
|
|
1696
|
+
"required": false,
|
|
1697
|
+
"description": ""
|
|
1698
|
+
},
|
|
1699
|
+
"id": {
|
|
1700
|
+
"type": "string",
|
|
1701
|
+
"required": true,
|
|
1702
|
+
"description": ""
|
|
1703
|
+
},
|
|
1704
|
+
"className": {
|
|
1705
|
+
"type": "string",
|
|
1706
|
+
"required": false,
|
|
1707
|
+
"description": ""
|
|
1708
|
+
},
|
|
1709
|
+
"onValueChange": {
|
|
1710
|
+
"type": "(value: number[]) => void",
|
|
1711
|
+
"required": false,
|
|
1712
|
+
"description": ""
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
"preview": null
|
|
1716
|
+
},
|
|
1717
|
+
"SpinnerAtom": {
|
|
1718
|
+
"name": "SpinnerAtom",
|
|
1719
|
+
"type": "atom",
|
|
1720
|
+
"description": "",
|
|
1721
|
+
"props": {
|
|
1722
|
+
"type": {
|
|
1723
|
+
"type": "\"spinner\"",
|
|
1724
|
+
"required": true,
|
|
1725
|
+
"description": ""
|
|
1726
|
+
},
|
|
1727
|
+
"size": {
|
|
1728
|
+
"type": "enum",
|
|
1729
|
+
"required": false,
|
|
1730
|
+
"defaultValue": "md",
|
|
1731
|
+
"description": ""
|
|
1732
|
+
},
|
|
1733
|
+
"id": {
|
|
1734
|
+
"type": "string",
|
|
1735
|
+
"required": true,
|
|
1736
|
+
"description": ""
|
|
1737
|
+
},
|
|
1738
|
+
"className": {
|
|
1739
|
+
"type": "string",
|
|
1740
|
+
"required": false,
|
|
1741
|
+
"description": ""
|
|
1742
|
+
}
|
|
1743
|
+
},
|
|
1744
|
+
"preview": null
|
|
1745
|
+
},
|
|
1746
|
+
"SwitchAtom": {
|
|
1747
|
+
"name": "SwitchAtom",
|
|
1748
|
+
"type": "atom",
|
|
1749
|
+
"description": "SwitchAtom\nWraps shadcn Switch with label support",
|
|
1750
|
+
"props": {
|
|
1751
|
+
"type": {
|
|
1752
|
+
"type": "\"switch\"",
|
|
1753
|
+
"required": true,
|
|
1754
|
+
"description": ""
|
|
1755
|
+
},
|
|
1756
|
+
"label": {
|
|
1757
|
+
"type": "string",
|
|
1758
|
+
"required": false,
|
|
1759
|
+
"description": ""
|
|
1760
|
+
},
|
|
1761
|
+
"checked": {
|
|
1762
|
+
"type": "boolean",
|
|
1763
|
+
"required": false,
|
|
1764
|
+
"description": ""
|
|
1765
|
+
},
|
|
1766
|
+
"disabled": {
|
|
1767
|
+
"type": "boolean",
|
|
1768
|
+
"required": false,
|
|
1769
|
+
"description": ""
|
|
1770
|
+
},
|
|
1771
|
+
"id": {
|
|
1772
|
+
"type": "string",
|
|
1773
|
+
"required": true,
|
|
1774
|
+
"description": ""
|
|
1775
|
+
},
|
|
1776
|
+
"className": {
|
|
1777
|
+
"type": "string",
|
|
1778
|
+
"required": false,
|
|
1779
|
+
"description": ""
|
|
1780
|
+
},
|
|
1781
|
+
"onCheckedChange": {
|
|
1782
|
+
"type": "(checked: boolean) => void",
|
|
1783
|
+
"required": false,
|
|
1784
|
+
"description": ""
|
|
1785
|
+
}
|
|
1786
|
+
},
|
|
1787
|
+
"preview": null
|
|
1141
1788
|
},
|
|
1142
1789
|
"TableAtom": {
|
|
1143
1790
|
"name": "TableAtom",
|
|
@@ -1169,7 +1816,8 @@
|
|
|
1169
1816
|
"required": false,
|
|
1170
1817
|
"description": ""
|
|
1171
1818
|
}
|
|
1172
|
-
}
|
|
1819
|
+
},
|
|
1820
|
+
"preview": null
|
|
1173
1821
|
},
|
|
1174
1822
|
"TabsAtom": {
|
|
1175
1823
|
"name": "TabsAtom",
|
|
@@ -1206,8 +1854,101 @@
|
|
|
1206
1854
|
"required": false,
|
|
1207
1855
|
"description": ""
|
|
1208
1856
|
}
|
|
1857
|
+
},
|
|
1858
|
+
"preview": {
|
|
1859
|
+
"name": "Tabs",
|
|
1860
|
+
"component": "TabsAtom",
|
|
1861
|
+
"props": {
|
|
1862
|
+
"defaultValue": "overview",
|
|
1863
|
+
"tabs": [
|
|
1864
|
+
{
|
|
1865
|
+
"label": "Overview",
|
|
1866
|
+
"value": "overview",
|
|
1867
|
+
"content": []
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"label": "Analytics",
|
|
1871
|
+
"value": "analytics",
|
|
1872
|
+
"content": []
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"label": "Settings",
|
|
1876
|
+
"value": "settings",
|
|
1877
|
+
"content": []
|
|
1878
|
+
}
|
|
1879
|
+
],
|
|
1880
|
+
"className": "w-full border border-border p-1 rounded-2xl bg-muted/20"
|
|
1881
|
+
}
|
|
1209
1882
|
}
|
|
1210
1883
|
},
|
|
1884
|
+
"TextareaAtom": {
|
|
1885
|
+
"name": "TextareaAtom",
|
|
1886
|
+
"type": "atom",
|
|
1887
|
+
"description": "TextareaAtom\nStandalone textarea atom",
|
|
1888
|
+
"props": {
|
|
1889
|
+
"type": {
|
|
1890
|
+
"type": "\"input\"",
|
|
1891
|
+
"required": true,
|
|
1892
|
+
"description": ""
|
|
1893
|
+
},
|
|
1894
|
+
"inputType": {
|
|
1895
|
+
"type": "enum",
|
|
1896
|
+
"required": true,
|
|
1897
|
+
"description": ""
|
|
1898
|
+
},
|
|
1899
|
+
"label": {
|
|
1900
|
+
"type": "string",
|
|
1901
|
+
"required": false,
|
|
1902
|
+
"description": ""
|
|
1903
|
+
},
|
|
1904
|
+
"placeholder": {
|
|
1905
|
+
"type": "string",
|
|
1906
|
+
"required": false,
|
|
1907
|
+
"description": ""
|
|
1908
|
+
},
|
|
1909
|
+
"defaultValue": {
|
|
1910
|
+
"type": "any",
|
|
1911
|
+
"required": false,
|
|
1912
|
+
"description": ""
|
|
1913
|
+
},
|
|
1914
|
+
"required": {
|
|
1915
|
+
"type": "boolean",
|
|
1916
|
+
"required": false,
|
|
1917
|
+
"description": ""
|
|
1918
|
+
},
|
|
1919
|
+
"disabled": {
|
|
1920
|
+
"type": "boolean",
|
|
1921
|
+
"required": false,
|
|
1922
|
+
"description": ""
|
|
1923
|
+
},
|
|
1924
|
+
"options": {
|
|
1925
|
+
"type": "{ label: string; value: string; }[]",
|
|
1926
|
+
"required": false,
|
|
1927
|
+
"description": ""
|
|
1928
|
+
},
|
|
1929
|
+
"config": {
|
|
1930
|
+
"type": "Record<string, any>",
|
|
1931
|
+
"required": false,
|
|
1932
|
+
"description": ""
|
|
1933
|
+
},
|
|
1934
|
+
"id": {
|
|
1935
|
+
"type": "string",
|
|
1936
|
+
"required": true,
|
|
1937
|
+
"description": ""
|
|
1938
|
+
},
|
|
1939
|
+
"className": {
|
|
1940
|
+
"type": "string",
|
|
1941
|
+
"required": false,
|
|
1942
|
+
"description": ""
|
|
1943
|
+
},
|
|
1944
|
+
"onChange": {
|
|
1945
|
+
"type": "(val: string) => void",
|
|
1946
|
+
"required": false,
|
|
1947
|
+
"description": ""
|
|
1948
|
+
}
|
|
1949
|
+
},
|
|
1950
|
+
"preview": null
|
|
1951
|
+
},
|
|
1211
1952
|
"TextAtom": {
|
|
1212
1953
|
"name": "TextAtom",
|
|
1213
1954
|
"type": "atom",
|
|
@@ -1239,8 +1980,105 @@
|
|
|
1239
1980
|
"required": false,
|
|
1240
1981
|
"description": ""
|
|
1241
1982
|
}
|
|
1983
|
+
},
|
|
1984
|
+
"preview": {
|
|
1985
|
+
"name": "Gradient Heading",
|
|
1986
|
+
"component": "TextAtom",
|
|
1987
|
+
"props": {
|
|
1988
|
+
"content": "Built for Creators",
|
|
1989
|
+
"variant": "h1",
|
|
1990
|
+
"className": "bg-gradient-to-r from-primary via-purple-500 to-indigo-600 bg-clip-text text-transparent font-black tracking-tighter py-4 text-6xl"
|
|
1991
|
+
}
|
|
1242
1992
|
}
|
|
1243
1993
|
},
|
|
1994
|
+
"TimelineAtom": {
|
|
1995
|
+
"name": "TimelineAtom",
|
|
1996
|
+
"type": "atom",
|
|
1997
|
+
"description": "TimelineAtom\nA vertical timeline primitive for processes and steps.",
|
|
1998
|
+
"props": {
|
|
1999
|
+
"type": {
|
|
2000
|
+
"type": "\"timeline\"",
|
|
2001
|
+
"required": true,
|
|
2002
|
+
"description": ""
|
|
2003
|
+
},
|
|
2004
|
+
"items": {
|
|
2005
|
+
"type": "{ title: string; description?: string; timestamp?: string; status?: \"completed\" | \"active\" | \"upcoming\"; icon?: string; }[]",
|
|
2006
|
+
"required": true,
|
|
2007
|
+
"description": "",
|
|
2008
|
+
"enums": [
|
|
2009
|
+
"{ title: string; description?: string; timestamp?: string; status?: completed",
|
|
2010
|
+
"active",
|
|
2011
|
+
"upcoming; icon?: string; }[]"
|
|
2012
|
+
]
|
|
2013
|
+
},
|
|
2014
|
+
"id": {
|
|
2015
|
+
"type": "string",
|
|
2016
|
+
"required": true,
|
|
2017
|
+
"description": ""
|
|
2018
|
+
},
|
|
2019
|
+
"className": {
|
|
2020
|
+
"type": "string",
|
|
2021
|
+
"required": false,
|
|
2022
|
+
"description": ""
|
|
2023
|
+
}
|
|
2024
|
+
},
|
|
2025
|
+
"preview": null
|
|
2026
|
+
},
|
|
2027
|
+
"ToggleAtom": {
|
|
2028
|
+
"name": "ToggleAtom",
|
|
2029
|
+
"type": "atom",
|
|
2030
|
+
"description": "ToggleAtom\nWraps shadcn Toggle",
|
|
2031
|
+
"props": {
|
|
2032
|
+
"type": {
|
|
2033
|
+
"type": "\"toggle\"",
|
|
2034
|
+
"required": true,
|
|
2035
|
+
"description": ""
|
|
2036
|
+
},
|
|
2037
|
+
"label": {
|
|
2038
|
+
"type": "string",
|
|
2039
|
+
"required": true,
|
|
2040
|
+
"description": ""
|
|
2041
|
+
},
|
|
2042
|
+
"pressed": {
|
|
2043
|
+
"type": "boolean",
|
|
2044
|
+
"required": false,
|
|
2045
|
+
"description": ""
|
|
2046
|
+
},
|
|
2047
|
+
"disabled": {
|
|
2048
|
+
"type": "boolean",
|
|
2049
|
+
"required": false,
|
|
2050
|
+
"description": ""
|
|
2051
|
+
},
|
|
2052
|
+
"size": {
|
|
2053
|
+
"type": "enum",
|
|
2054
|
+
"required": false,
|
|
2055
|
+
"defaultValue": "md",
|
|
2056
|
+
"description": ""
|
|
2057
|
+
},
|
|
2058
|
+
"variant": {
|
|
2059
|
+
"type": "enum",
|
|
2060
|
+
"required": false,
|
|
2061
|
+
"defaultValue": "default",
|
|
2062
|
+
"description": ""
|
|
2063
|
+
},
|
|
2064
|
+
"id": {
|
|
2065
|
+
"type": "string",
|
|
2066
|
+
"required": true,
|
|
2067
|
+
"description": ""
|
|
2068
|
+
},
|
|
2069
|
+
"className": {
|
|
2070
|
+
"type": "string",
|
|
2071
|
+
"required": false,
|
|
2072
|
+
"description": ""
|
|
2073
|
+
},
|
|
2074
|
+
"onPressedChange": {
|
|
2075
|
+
"type": "(pressed: boolean) => void",
|
|
2076
|
+
"required": false,
|
|
2077
|
+
"description": ""
|
|
2078
|
+
}
|
|
2079
|
+
},
|
|
2080
|
+
"preview": null
|
|
2081
|
+
},
|
|
1244
2082
|
"TooltipAtom": {
|
|
1245
2083
|
"name": "TooltipAtom",
|
|
1246
2084
|
"type": "atom",
|
|
@@ -1252,12 +2090,177 @@
|
|
|
1252
2090
|
"description": ""
|
|
1253
2091
|
},
|
|
1254
2092
|
"type": {
|
|
1255
|
-
"type": "\"tooltip\"",
|
|
2093
|
+
"type": "\"tooltip\"",
|
|
2094
|
+
"required": true,
|
|
2095
|
+
"description": ""
|
|
2096
|
+
},
|
|
2097
|
+
"content": {
|
|
2098
|
+
"type": "string",
|
|
2099
|
+
"required": true,
|
|
2100
|
+
"description": ""
|
|
2101
|
+
},
|
|
2102
|
+
"id": {
|
|
2103
|
+
"type": "string",
|
|
2104
|
+
"required": true,
|
|
2105
|
+
"description": ""
|
|
2106
|
+
},
|
|
2107
|
+
"className": {
|
|
2108
|
+
"type": "string",
|
|
2109
|
+
"required": false,
|
|
2110
|
+
"description": ""
|
|
2111
|
+
}
|
|
2112
|
+
},
|
|
2113
|
+
"preview": null
|
|
2114
|
+
},
|
|
2115
|
+
"VideoAtom": {
|
|
2116
|
+
"name": "VideoAtom",
|
|
2117
|
+
"type": "atom",
|
|
2118
|
+
"description": "VideoAtom\nA simple, styled video player for content previews.",
|
|
2119
|
+
"props": {
|
|
2120
|
+
"type": {
|
|
2121
|
+
"type": "\"video\"",
|
|
2122
|
+
"required": true,
|
|
2123
|
+
"description": ""
|
|
2124
|
+
},
|
|
2125
|
+
"src": {
|
|
2126
|
+
"type": "string",
|
|
2127
|
+
"required": true,
|
|
2128
|
+
"description": ""
|
|
2129
|
+
},
|
|
2130
|
+
"poster": {
|
|
2131
|
+
"type": "string",
|
|
2132
|
+
"required": false,
|
|
2133
|
+
"description": ""
|
|
2134
|
+
},
|
|
2135
|
+
"autoplay": {
|
|
2136
|
+
"type": "boolean",
|
|
2137
|
+
"required": false,
|
|
2138
|
+
"defaultValue": "false",
|
|
2139
|
+
"description": ""
|
|
2140
|
+
},
|
|
2141
|
+
"controls": {
|
|
2142
|
+
"type": "boolean",
|
|
2143
|
+
"required": false,
|
|
2144
|
+
"defaultValue": "true",
|
|
2145
|
+
"description": ""
|
|
2146
|
+
},
|
|
2147
|
+
"muted": {
|
|
2148
|
+
"type": "boolean",
|
|
2149
|
+
"required": false,
|
|
2150
|
+
"defaultValue": "false",
|
|
2151
|
+
"description": ""
|
|
2152
|
+
},
|
|
2153
|
+
"loop": {
|
|
2154
|
+
"type": "boolean",
|
|
2155
|
+
"required": false,
|
|
2156
|
+
"defaultValue": "false",
|
|
2157
|
+
"description": ""
|
|
2158
|
+
},
|
|
2159
|
+
"id": {
|
|
2160
|
+
"type": "string",
|
|
2161
|
+
"required": true,
|
|
2162
|
+
"description": ""
|
|
2163
|
+
},
|
|
2164
|
+
"className": {
|
|
2165
|
+
"type": "string",
|
|
2166
|
+
"required": false,
|
|
2167
|
+
"description": ""
|
|
2168
|
+
}
|
|
2169
|
+
},
|
|
2170
|
+
"preview": null
|
|
2171
|
+
},
|
|
2172
|
+
"AudienceDemographicsCard": {
|
|
2173
|
+
"name": "AudienceDemographicsCard",
|
|
2174
|
+
"type": "atom",
|
|
2175
|
+
"description": "AudienceDemographicsCard\nVisualizes audience data using appropriate chart types.",
|
|
2176
|
+
"props": {
|
|
2177
|
+
"type": {
|
|
2178
|
+
"type": "\"audience-demographics-card\"",
|
|
2179
|
+
"required": true,
|
|
2180
|
+
"description": ""
|
|
2181
|
+
},
|
|
2182
|
+
"title": {
|
|
2183
|
+
"type": "string",
|
|
2184
|
+
"required": true,
|
|
2185
|
+
"description": ""
|
|
2186
|
+
},
|
|
2187
|
+
"data": {
|
|
2188
|
+
"type": "any[]",
|
|
2189
|
+
"required": true,
|
|
2190
|
+
"description": ""
|
|
2191
|
+
},
|
|
2192
|
+
"config": {
|
|
2193
|
+
"type": "Record<string, { label: string; color: string; }>",
|
|
2194
|
+
"required": true,
|
|
2195
|
+
"description": ""
|
|
2196
|
+
},
|
|
2197
|
+
"demographicType": {
|
|
2198
|
+
"type": "enum",
|
|
2199
|
+
"required": true,
|
|
2200
|
+
"description": ""
|
|
2201
|
+
},
|
|
2202
|
+
"id": {
|
|
2203
|
+
"type": "string",
|
|
2204
|
+
"required": true,
|
|
2205
|
+
"description": ""
|
|
2206
|
+
},
|
|
2207
|
+
"className": {
|
|
2208
|
+
"type": "string",
|
|
2209
|
+
"required": false,
|
|
2210
|
+
"description": ""
|
|
2211
|
+
}
|
|
2212
|
+
},
|
|
2213
|
+
"preview": null
|
|
2214
|
+
},
|
|
2215
|
+
"AudienceMetricCard": {
|
|
2216
|
+
"name": "AudienceMetricCard",
|
|
2217
|
+
"type": "atom",
|
|
2218
|
+
"description": "AudienceMetricCard\nA card displaying specific audience metrics with progress bars.",
|
|
2219
|
+
"props": {
|
|
2220
|
+
"type": {
|
|
2221
|
+
"type": "\"audience-metric-card\"",
|
|
2222
|
+
"required": true,
|
|
2223
|
+
"description": ""
|
|
2224
|
+
},
|
|
2225
|
+
"title": {
|
|
2226
|
+
"type": "string",
|
|
2227
|
+
"required": true,
|
|
2228
|
+
"description": ""
|
|
2229
|
+
},
|
|
2230
|
+
"metrics": {
|
|
2231
|
+
"type": "{ label: string; value: string | number; percentage?: number; }[]",
|
|
2232
|
+
"required": true,
|
|
2233
|
+
"description": "",
|
|
2234
|
+
"enums": [
|
|
2235
|
+
"{ label: string; value: string",
|
|
2236
|
+
"number; percentage?: number; }[]"
|
|
2237
|
+
]
|
|
2238
|
+
},
|
|
2239
|
+
"id": {
|
|
2240
|
+
"type": "string",
|
|
2241
|
+
"required": true,
|
|
2242
|
+
"description": ""
|
|
2243
|
+
},
|
|
2244
|
+
"className": {
|
|
2245
|
+
"type": "string",
|
|
2246
|
+
"required": false,
|
|
2247
|
+
"description": ""
|
|
2248
|
+
}
|
|
2249
|
+
},
|
|
2250
|
+
"preview": null
|
|
2251
|
+
},
|
|
2252
|
+
"BrandAffinityGroup": {
|
|
2253
|
+
"name": "BrandAffinityGroup",
|
|
2254
|
+
"type": "atom",
|
|
2255
|
+
"description": "BrandAffinityGroup\nVisual group of associated brand logos.",
|
|
2256
|
+
"props": {
|
|
2257
|
+
"type": {
|
|
2258
|
+
"type": "\"brand-affinity-group\"",
|
|
1256
2259
|
"required": true,
|
|
1257
2260
|
"description": ""
|
|
1258
2261
|
},
|
|
1259
|
-
"
|
|
1260
|
-
"type": "string",
|
|
2262
|
+
"brands": {
|
|
2263
|
+
"type": "{ name: string; logoSrc: string; }[]",
|
|
1261
2264
|
"required": true,
|
|
1262
2265
|
"description": ""
|
|
1263
2266
|
},
|
|
@@ -1271,13 +2274,15 @@
|
|
|
1271
2274
|
"required": false,
|
|
1272
2275
|
"description": ""
|
|
1273
2276
|
}
|
|
1274
|
-
}
|
|
2277
|
+
},
|
|
2278
|
+
"preview": null
|
|
1275
2279
|
},
|
|
1276
2280
|
"CAMPAIGN_SEED_FIELDS": {
|
|
1277
2281
|
"name": "CAMPAIGN_SEED_FIELDS",
|
|
1278
2282
|
"type": "atom",
|
|
1279
2283
|
"description": "Default field configuration for Campaign Seed",
|
|
1280
|
-
"props": {}
|
|
2284
|
+
"props": {},
|
|
2285
|
+
"preview": null
|
|
1281
2286
|
},
|
|
1282
2287
|
"CampaignSeedCard": {
|
|
1283
2288
|
"name": "CampaignSeedCard",
|
|
@@ -1294,15 +2299,15 @@
|
|
|
1294
2299
|
"required": false,
|
|
1295
2300
|
"description": "Whether the message is the latest (to show countdown/actions)"
|
|
1296
2301
|
},
|
|
1297
|
-
"
|
|
2302
|
+
"id": {
|
|
1298
2303
|
"type": "string",
|
|
1299
2304
|
"required": false,
|
|
1300
|
-
"description": "
|
|
2305
|
+
"description": "Unique identifier"
|
|
1301
2306
|
},
|
|
1302
|
-
"
|
|
2307
|
+
"className": {
|
|
1303
2308
|
"type": "string",
|
|
1304
2309
|
"required": false,
|
|
1305
|
-
"description": "
|
|
2310
|
+
"description": "Custom className"
|
|
1306
2311
|
},
|
|
1307
2312
|
"title": {
|
|
1308
2313
|
"type": "string",
|
|
@@ -1379,7 +2384,244 @@
|
|
|
1379
2384
|
"required": false,
|
|
1380
2385
|
"description": "Footer content (optional)"
|
|
1381
2386
|
}
|
|
1382
|
-
}
|
|
2387
|
+
},
|
|
2388
|
+
"preview": null
|
|
2389
|
+
},
|
|
2390
|
+
"ContentPreviewGallery": {
|
|
2391
|
+
"name": "ContentPreviewGallery",
|
|
2392
|
+
"type": "atom",
|
|
2393
|
+
"description": "ContentPreviewGallery\nGrid/Gallery of thumbnail previews.",
|
|
2394
|
+
"props": {
|
|
2395
|
+
"type": {
|
|
2396
|
+
"type": "\"content-preview-gallery\"",
|
|
2397
|
+
"required": true,
|
|
2398
|
+
"description": ""
|
|
2399
|
+
},
|
|
2400
|
+
"items": {
|
|
2401
|
+
"type": "{ thumbnail: string; type: \"video\" | \"image\"; url?: string; }[]",
|
|
2402
|
+
"required": true,
|
|
2403
|
+
"description": "",
|
|
2404
|
+
"enums": [
|
|
2405
|
+
"{ thumbnail: string; type: video",
|
|
2406
|
+
"image; url?: string; }[]"
|
|
2407
|
+
]
|
|
2408
|
+
},
|
|
2409
|
+
"id": {
|
|
2410
|
+
"type": "string",
|
|
2411
|
+
"required": true,
|
|
2412
|
+
"description": ""
|
|
2413
|
+
},
|
|
2414
|
+
"className": {
|
|
2415
|
+
"type": "string",
|
|
2416
|
+
"required": false,
|
|
2417
|
+
"description": ""
|
|
2418
|
+
}
|
|
2419
|
+
},
|
|
2420
|
+
"preview": null
|
|
2421
|
+
},
|
|
2422
|
+
"CreatorActionHeader": {
|
|
2423
|
+
"name": "CreatorActionHeader",
|
|
2424
|
+
"type": "atom",
|
|
2425
|
+
"description": "CreatorActionHeader\nA premium header for profile views with banner and sticky actions.",
|
|
2426
|
+
"props": {
|
|
2427
|
+
"type": {
|
|
2428
|
+
"type": "\"creator-action-header\"",
|
|
2429
|
+
"required": true,
|
|
2430
|
+
"description": ""
|
|
2431
|
+
},
|
|
2432
|
+
"bannerSrc": {
|
|
2433
|
+
"type": "string",
|
|
2434
|
+
"required": false,
|
|
2435
|
+
"description": ""
|
|
2436
|
+
},
|
|
2437
|
+
"avatarSrc": {
|
|
2438
|
+
"type": "string",
|
|
2439
|
+
"required": false,
|
|
2440
|
+
"description": ""
|
|
2441
|
+
},
|
|
2442
|
+
"name": {
|
|
2443
|
+
"type": "string",
|
|
2444
|
+
"required": true,
|
|
2445
|
+
"description": ""
|
|
2446
|
+
},
|
|
2447
|
+
"handle": {
|
|
2448
|
+
"type": "string",
|
|
2449
|
+
"required": true,
|
|
2450
|
+
"description": ""
|
|
2451
|
+
},
|
|
2452
|
+
"actions": {
|
|
2453
|
+
"type": "{ label: string; variant?: string; action?: string; }[]",
|
|
2454
|
+
"required": true,
|
|
2455
|
+
"description": ""
|
|
2456
|
+
},
|
|
2457
|
+
"id": {
|
|
2458
|
+
"type": "string",
|
|
2459
|
+
"required": true,
|
|
2460
|
+
"description": ""
|
|
2461
|
+
},
|
|
2462
|
+
"className": {
|
|
2463
|
+
"type": "string",
|
|
2464
|
+
"required": false,
|
|
2465
|
+
"description": ""
|
|
2466
|
+
}
|
|
2467
|
+
},
|
|
2468
|
+
"preview": null
|
|
2469
|
+
},
|
|
2470
|
+
"CreatorGridCard": {
|
|
2471
|
+
"name": "CreatorGridCard",
|
|
2472
|
+
"type": "atom",
|
|
2473
|
+
"description": "CreatorGridCard\nA visually rich card for discovery grids.",
|
|
2474
|
+
"props": {
|
|
2475
|
+
"type": {
|
|
2476
|
+
"type": "\"creator-grid-card\"",
|
|
2477
|
+
"required": true,
|
|
2478
|
+
"description": ""
|
|
2479
|
+
},
|
|
2480
|
+
"bannerSrc": {
|
|
2481
|
+
"type": "string",
|
|
2482
|
+
"required": false,
|
|
2483
|
+
"description": ""
|
|
2484
|
+
},
|
|
2485
|
+
"avatarSrc": {
|
|
2486
|
+
"type": "string",
|
|
2487
|
+
"required": false,
|
|
2488
|
+
"description": ""
|
|
2489
|
+
},
|
|
2490
|
+
"name": {
|
|
2491
|
+
"type": "string",
|
|
2492
|
+
"required": true,
|
|
2493
|
+
"description": ""
|
|
2494
|
+
},
|
|
2495
|
+
"handle": {
|
|
2496
|
+
"type": "string",
|
|
2497
|
+
"required": true,
|
|
2498
|
+
"description": ""
|
|
2499
|
+
},
|
|
2500
|
+
"metrics": {
|
|
2501
|
+
"type": "{ label: string; value: string | number; }[]",
|
|
2502
|
+
"required": true,
|
|
2503
|
+
"description": "",
|
|
2504
|
+
"enums": [
|
|
2505
|
+
"{ label: string; value: string",
|
|
2506
|
+
"number; }[]"
|
|
2507
|
+
]
|
|
2508
|
+
},
|
|
2509
|
+
"platforms": {
|
|
2510
|
+
"type": "string[]",
|
|
2511
|
+
"required": true,
|
|
2512
|
+
"description": ""
|
|
2513
|
+
},
|
|
2514
|
+
"id": {
|
|
2515
|
+
"type": "string",
|
|
2516
|
+
"required": true,
|
|
2517
|
+
"description": ""
|
|
2518
|
+
},
|
|
2519
|
+
"className": {
|
|
2520
|
+
"type": "string",
|
|
2521
|
+
"required": false,
|
|
2522
|
+
"description": ""
|
|
2523
|
+
}
|
|
2524
|
+
},
|
|
2525
|
+
"preview": null
|
|
2526
|
+
},
|
|
2527
|
+
"CreatorProfileSummary": {
|
|
2528
|
+
"name": "CreatorProfileSummary",
|
|
2529
|
+
"type": "atom",
|
|
2530
|
+
"description": "CreatorProfileSummary\nA compact row showing avatar, name, and key metrics.",
|
|
2531
|
+
"props": {
|
|
2532
|
+
"type": {
|
|
2533
|
+
"type": "\"creator-profile-summary\"",
|
|
2534
|
+
"required": true,
|
|
2535
|
+
"description": ""
|
|
2536
|
+
},
|
|
2537
|
+
"avatarSrc": {
|
|
2538
|
+
"type": "string",
|
|
2539
|
+
"required": false,
|
|
2540
|
+
"description": ""
|
|
2541
|
+
},
|
|
2542
|
+
"name": {
|
|
2543
|
+
"type": "string",
|
|
2544
|
+
"required": true,
|
|
2545
|
+
"description": ""
|
|
2546
|
+
},
|
|
2547
|
+
"followerCount": {
|
|
2548
|
+
"type": "string | number",
|
|
2549
|
+
"required": false,
|
|
2550
|
+
"description": "",
|
|
2551
|
+
"enums": [
|
|
2552
|
+
"string",
|
|
2553
|
+
"number"
|
|
2554
|
+
]
|
|
2555
|
+
},
|
|
2556
|
+
"engagementRate": {
|
|
2557
|
+
"type": "string | number",
|
|
2558
|
+
"required": false,
|
|
2559
|
+
"description": "",
|
|
2560
|
+
"enums": [
|
|
2561
|
+
"string",
|
|
2562
|
+
"number"
|
|
2563
|
+
]
|
|
2564
|
+
},
|
|
2565
|
+
"id": {
|
|
2566
|
+
"type": "string",
|
|
2567
|
+
"required": true,
|
|
2568
|
+
"description": ""
|
|
2569
|
+
},
|
|
2570
|
+
"className": {
|
|
2571
|
+
"type": "string",
|
|
2572
|
+
"required": false,
|
|
2573
|
+
"description": ""
|
|
2574
|
+
}
|
|
2575
|
+
},
|
|
2576
|
+
"preview": null
|
|
2577
|
+
},
|
|
2578
|
+
"GrowthChartCard": {
|
|
2579
|
+
"name": "GrowthChartCard",
|
|
2580
|
+
"type": "atom",
|
|
2581
|
+
"description": "GrowthChartCard\nVisualizes time-series growth data for follower and engagement metrics.",
|
|
2582
|
+
"props": {
|
|
2583
|
+
"type": {
|
|
2584
|
+
"type": "\"growth-chart-card\"",
|
|
2585
|
+
"required": true,
|
|
2586
|
+
"description": ""
|
|
2587
|
+
},
|
|
2588
|
+
"title": {
|
|
2589
|
+
"type": "string",
|
|
2590
|
+
"required": true,
|
|
2591
|
+
"description": ""
|
|
2592
|
+
},
|
|
2593
|
+
"data": {
|
|
2594
|
+
"type": "any[]",
|
|
2595
|
+
"required": true,
|
|
2596
|
+
"description": ""
|
|
2597
|
+
},
|
|
2598
|
+
"config": {
|
|
2599
|
+
"type": "Record<string, { label: string; color: string; }>",
|
|
2600
|
+
"required": true,
|
|
2601
|
+
"description": ""
|
|
2602
|
+
},
|
|
2603
|
+
"metric": {
|
|
2604
|
+
"type": "string",
|
|
2605
|
+
"required": true,
|
|
2606
|
+
"description": ""
|
|
2607
|
+
},
|
|
2608
|
+
"period": {
|
|
2609
|
+
"type": "string",
|
|
2610
|
+
"required": true,
|
|
2611
|
+
"description": ""
|
|
2612
|
+
},
|
|
2613
|
+
"id": {
|
|
2614
|
+
"type": "string",
|
|
2615
|
+
"required": true,
|
|
2616
|
+
"description": ""
|
|
2617
|
+
},
|
|
2618
|
+
"className": {
|
|
2619
|
+
"type": "string",
|
|
2620
|
+
"required": false,
|
|
2621
|
+
"description": ""
|
|
2622
|
+
}
|
|
2623
|
+
},
|
|
2624
|
+
"preview": null
|
|
1383
2625
|
},
|
|
1384
2626
|
"MCQCard": {
|
|
1385
2627
|
"name": "MCQCard",
|
|
@@ -1451,7 +2693,42 @@
|
|
|
1451
2693
|
"required": false,
|
|
1452
2694
|
"description": "Who made the final selection (for historical view)"
|
|
1453
2695
|
}
|
|
1454
|
-
}
|
|
2696
|
+
},
|
|
2697
|
+
"preview": null
|
|
2698
|
+
},
|
|
2699
|
+
"PlatformIconGroup": {
|
|
2700
|
+
"name": "PlatformIconGroup",
|
|
2701
|
+
"type": "atom",
|
|
2702
|
+
"description": "PlatformIconGroup\nDisplays a horizontal list of active social platform icons.",
|
|
2703
|
+
"props": {
|
|
2704
|
+
"type": {
|
|
2705
|
+
"type": "\"platform-icon-group\"",
|
|
2706
|
+
"required": true,
|
|
2707
|
+
"description": ""
|
|
2708
|
+
},
|
|
2709
|
+
"platforms": {
|
|
2710
|
+
"type": "{ platform: \"instagram\" | \"tiktok\" | \"youtube\" | \"twitter\"; url?: string; handle?: string; }[]",
|
|
2711
|
+
"required": true,
|
|
2712
|
+
"description": "",
|
|
2713
|
+
"enums": [
|
|
2714
|
+
"{ platform: instagram",
|
|
2715
|
+
"tiktok",
|
|
2716
|
+
"youtube",
|
|
2717
|
+
"twitter; url?: string; handle?: string; }[]"
|
|
2718
|
+
]
|
|
2719
|
+
},
|
|
2720
|
+
"id": {
|
|
2721
|
+
"type": "string",
|
|
2722
|
+
"required": true,
|
|
2723
|
+
"description": ""
|
|
2724
|
+
},
|
|
2725
|
+
"className": {
|
|
2726
|
+
"type": "string",
|
|
2727
|
+
"required": false,
|
|
2728
|
+
"description": ""
|
|
2729
|
+
}
|
|
2730
|
+
},
|
|
2731
|
+
"preview": null
|
|
1455
2732
|
},
|
|
1456
2733
|
"CountrySelectEdit": {
|
|
1457
2734
|
"name": "CountrySelectEdit",
|
|
@@ -1468,7 +2745,8 @@
|
|
|
1468
2745
|
"required": true,
|
|
1469
2746
|
"description": ""
|
|
1470
2747
|
}
|
|
1471
|
-
}
|
|
2748
|
+
},
|
|
2749
|
+
"preview": null
|
|
1472
2750
|
},
|
|
1473
2751
|
"CountrySelectDisplay": {
|
|
1474
2752
|
"name": "CountrySelectDisplay",
|
|
@@ -1480,7 +2758,8 @@
|
|
|
1480
2758
|
"required": true,
|
|
1481
2759
|
"description": ""
|
|
1482
2760
|
}
|
|
1483
|
-
}
|
|
2761
|
+
},
|
|
2762
|
+
"preview": null
|
|
1484
2763
|
},
|
|
1485
2764
|
"KeywordBundlesEdit": {
|
|
1486
2765
|
"name": "KeywordBundlesEdit",
|
|
@@ -1497,7 +2776,8 @@
|
|
|
1497
2776
|
"required": true,
|
|
1498
2777
|
"description": ""
|
|
1499
2778
|
}
|
|
1500
|
-
}
|
|
2779
|
+
},
|
|
2780
|
+
"preview": null
|
|
1501
2781
|
},
|
|
1502
2782
|
"KeywordBundlesDisplay": {
|
|
1503
2783
|
"name": "KeywordBundlesDisplay",
|
|
@@ -1509,13 +2789,15 @@
|
|
|
1509
2789
|
"required": true,
|
|
1510
2790
|
"description": ""
|
|
1511
2791
|
}
|
|
1512
|
-
}
|
|
2792
|
+
},
|
|
2793
|
+
"preview": null
|
|
1513
2794
|
},
|
|
1514
2795
|
"SEARCH_SPEC_FIELDS": {
|
|
1515
2796
|
"name": "SEARCH_SPEC_FIELDS",
|
|
1516
2797
|
"type": "atom",
|
|
1517
2798
|
"description": "Default field configuration for Search Specification",
|
|
1518
|
-
"props": {}
|
|
2799
|
+
"props": {},
|
|
2800
|
+
"preview": null
|
|
1519
2801
|
},
|
|
1520
2802
|
"SearchSpecCard": {
|
|
1521
2803
|
"name": "SearchSpecCard",
|
|
@@ -1537,15 +2819,15 @@
|
|
|
1537
2819
|
"required": false,
|
|
1538
2820
|
"description": "Whether the message is the latest"
|
|
1539
2821
|
},
|
|
1540
|
-
"
|
|
2822
|
+
"id": {
|
|
1541
2823
|
"type": "string",
|
|
1542
2824
|
"required": false,
|
|
1543
|
-
"description": "
|
|
2825
|
+
"description": "Unique identifier"
|
|
1544
2826
|
},
|
|
1545
|
-
"
|
|
2827
|
+
"className": {
|
|
1546
2828
|
"type": "string",
|
|
1547
2829
|
"required": false,
|
|
1548
|
-
"description": "
|
|
2830
|
+
"description": "Custom className"
|
|
1549
2831
|
},
|
|
1550
2832
|
"title": {
|
|
1551
2833
|
"type": "string",
|
|
@@ -1622,7 +2904,36 @@
|
|
|
1622
2904
|
"required": false,
|
|
1623
2905
|
"description": "Footer content (optional)"
|
|
1624
2906
|
}
|
|
1625
|
-
}
|
|
2907
|
+
},
|
|
2908
|
+
"preview": null
|
|
2909
|
+
},
|
|
2910
|
+
"TopPostsGrid": {
|
|
2911
|
+
"name": "TopPostsGrid",
|
|
2912
|
+
"type": "atom",
|
|
2913
|
+
"description": "TopPostsGrid\nDisplays a grid of the creator's best-performing content pieces.",
|
|
2914
|
+
"props": {
|
|
2915
|
+
"type": {
|
|
2916
|
+
"type": "\"top-posts-grid\"",
|
|
2917
|
+
"required": true,
|
|
2918
|
+
"description": ""
|
|
2919
|
+
},
|
|
2920
|
+
"posts": {
|
|
2921
|
+
"type": "{ thumbnail: string; url: string; engagement: string; likes: string; comments: string; date: string; }[]",
|
|
2922
|
+
"required": true,
|
|
2923
|
+
"description": ""
|
|
2924
|
+
},
|
|
2925
|
+
"id": {
|
|
2926
|
+
"type": "string",
|
|
2927
|
+
"required": true,
|
|
2928
|
+
"description": ""
|
|
2929
|
+
},
|
|
2930
|
+
"className": {
|
|
2931
|
+
"type": "string",
|
|
2932
|
+
"required": false,
|
|
2933
|
+
"description": ""
|
|
2934
|
+
}
|
|
2935
|
+
},
|
|
2936
|
+
"preview": null
|
|
1626
2937
|
},
|
|
1627
2938
|
"ActionButton": {
|
|
1628
2939
|
"name": "ActionButton",
|
|
@@ -1694,7 +3005,54 @@
|
|
|
1694
3005
|
"required": false,
|
|
1695
3006
|
"description": "Whether to show the countdown visually"
|
|
1696
3007
|
}
|
|
1697
|
-
}
|
|
3008
|
+
},
|
|
3009
|
+
"preview": null
|
|
3010
|
+
},
|
|
3011
|
+
"DataGrid": {
|
|
3012
|
+
"name": "DataGrid",
|
|
3013
|
+
"type": "atom",
|
|
3014
|
+
"description": "DataGrid\nA premium table component with typed cells and responsive design.",
|
|
3015
|
+
"props": {
|
|
3016
|
+
"type": {
|
|
3017
|
+
"type": "\"data-grid\"",
|
|
3018
|
+
"required": true,
|
|
3019
|
+
"description": ""
|
|
3020
|
+
},
|
|
3021
|
+
"columns": {
|
|
3022
|
+
"type": "{ header: string; accessorKey: string; type?: \"number\" | \"avatar\" | \"badge\" | \"text\" | \"date\"; }[]",
|
|
3023
|
+
"required": true,
|
|
3024
|
+
"description": "",
|
|
3025
|
+
"enums": [
|
|
3026
|
+
"{ header: string; accessorKey: string; type?: number",
|
|
3027
|
+
"avatar",
|
|
3028
|
+
"badge",
|
|
3029
|
+
"text",
|
|
3030
|
+
"date; }[]"
|
|
3031
|
+
]
|
|
3032
|
+
},
|
|
3033
|
+
"data": {
|
|
3034
|
+
"type": "any[]",
|
|
3035
|
+
"required": true,
|
|
3036
|
+
"description": ""
|
|
3037
|
+
},
|
|
3038
|
+
"pageSize": {
|
|
3039
|
+
"type": "number",
|
|
3040
|
+
"required": false,
|
|
3041
|
+
"defaultValue": "10",
|
|
3042
|
+
"description": ""
|
|
3043
|
+
},
|
|
3044
|
+
"id": {
|
|
3045
|
+
"type": "string",
|
|
3046
|
+
"required": true,
|
|
3047
|
+
"description": ""
|
|
3048
|
+
},
|
|
3049
|
+
"className": {
|
|
3050
|
+
"type": "string",
|
|
3051
|
+
"required": false,
|
|
3052
|
+
"description": ""
|
|
3053
|
+
}
|
|
3054
|
+
},
|
|
3055
|
+
"preview": null
|
|
1698
3056
|
},
|
|
1699
3057
|
"EditableField": {
|
|
1700
3058
|
"name": "EditableField",
|
|
@@ -1771,7 +3129,148 @@
|
|
|
1771
3129
|
"required": false,
|
|
1772
3130
|
"description": "Custom renderer for the edit state"
|
|
1773
3131
|
}
|
|
1774
|
-
}
|
|
3132
|
+
},
|
|
3133
|
+
"preview": null
|
|
3134
|
+
},
|
|
3135
|
+
"EmptyState": {
|
|
3136
|
+
"name": "EmptyState",
|
|
3137
|
+
"type": "atom",
|
|
3138
|
+
"description": "EmptyState\nA placeholder for empty lists or results.",
|
|
3139
|
+
"props": {
|
|
3140
|
+
"type": {
|
|
3141
|
+
"type": "\"empty-state\"",
|
|
3142
|
+
"required": true,
|
|
3143
|
+
"description": ""
|
|
3144
|
+
},
|
|
3145
|
+
"title": {
|
|
3146
|
+
"type": "string",
|
|
3147
|
+
"required": true,
|
|
3148
|
+
"description": ""
|
|
3149
|
+
},
|
|
3150
|
+
"description": {
|
|
3151
|
+
"type": "string",
|
|
3152
|
+
"required": true,
|
|
3153
|
+
"description": ""
|
|
3154
|
+
},
|
|
3155
|
+
"icon": {
|
|
3156
|
+
"type": "string",
|
|
3157
|
+
"required": false,
|
|
3158
|
+
"description": ""
|
|
3159
|
+
},
|
|
3160
|
+
"actionLabel": {
|
|
3161
|
+
"type": "string",
|
|
3162
|
+
"required": false,
|
|
3163
|
+
"description": ""
|
|
3164
|
+
},
|
|
3165
|
+
"action": {
|
|
3166
|
+
"type": "string",
|
|
3167
|
+
"required": false,
|
|
3168
|
+
"description": ""
|
|
3169
|
+
},
|
|
3170
|
+
"id": {
|
|
3171
|
+
"type": "string",
|
|
3172
|
+
"required": true,
|
|
3173
|
+
"description": ""
|
|
3174
|
+
},
|
|
3175
|
+
"className": {
|
|
3176
|
+
"type": "string",
|
|
3177
|
+
"required": false,
|
|
3178
|
+
"description": ""
|
|
3179
|
+
},
|
|
3180
|
+
"onAction": {
|
|
3181
|
+
"type": "(action: string) => void",
|
|
3182
|
+
"required": false,
|
|
3183
|
+
"description": ""
|
|
3184
|
+
}
|
|
3185
|
+
},
|
|
3186
|
+
"preview": null
|
|
3187
|
+
},
|
|
3188
|
+
"FileUpload": {
|
|
3189
|
+
"name": "FileUpload",
|
|
3190
|
+
"type": "atom",
|
|
3191
|
+
"description": "FileUpload\nDrag-and-drop file upload zone.",
|
|
3192
|
+
"props": {
|
|
3193
|
+
"type": {
|
|
3194
|
+
"type": "\"file-upload\"",
|
|
3195
|
+
"required": true,
|
|
3196
|
+
"description": ""
|
|
3197
|
+
},
|
|
3198
|
+
"title": {
|
|
3199
|
+
"type": "string",
|
|
3200
|
+
"required": true,
|
|
3201
|
+
"description": ""
|
|
3202
|
+
},
|
|
3203
|
+
"accept": {
|
|
3204
|
+
"type": "string",
|
|
3205
|
+
"required": false,
|
|
3206
|
+
"description": ""
|
|
3207
|
+
},
|
|
3208
|
+
"multiple": {
|
|
3209
|
+
"type": "boolean",
|
|
3210
|
+
"required": false,
|
|
3211
|
+
"description": ""
|
|
3212
|
+
},
|
|
3213
|
+
"id": {
|
|
3214
|
+
"type": "string",
|
|
3215
|
+
"required": true,
|
|
3216
|
+
"description": ""
|
|
3217
|
+
},
|
|
3218
|
+
"className": {
|
|
3219
|
+
"type": "string",
|
|
3220
|
+
"required": false,
|
|
3221
|
+
"description": ""
|
|
3222
|
+
},
|
|
3223
|
+
"onFilesSelected": {
|
|
3224
|
+
"type": "(files: File[]) => void",
|
|
3225
|
+
"required": false,
|
|
3226
|
+
"description": ""
|
|
3227
|
+
}
|
|
3228
|
+
},
|
|
3229
|
+
"preview": null
|
|
3230
|
+
},
|
|
3231
|
+
"FilterBar": {
|
|
3232
|
+
"name": "FilterBar",
|
|
3233
|
+
"type": "atom",
|
|
3234
|
+
"description": "FilterBar\nA horizontal bar with active filter chips and search.",
|
|
3235
|
+
"props": {
|
|
3236
|
+
"type": {
|
|
3237
|
+
"type": "\"filter-bar\"",
|
|
3238
|
+
"required": true,
|
|
3239
|
+
"description": ""
|
|
3240
|
+
},
|
|
3241
|
+
"filters": {
|
|
3242
|
+
"type": "{ label: string; value: string; active?: boolean; }[]",
|
|
3243
|
+
"required": true,
|
|
3244
|
+
"description": ""
|
|
3245
|
+
},
|
|
3246
|
+
"showSearch": {
|
|
3247
|
+
"type": "boolean",
|
|
3248
|
+
"required": false,
|
|
3249
|
+
"defaultValue": "true",
|
|
3250
|
+
"description": ""
|
|
3251
|
+
},
|
|
3252
|
+
"id": {
|
|
3253
|
+
"type": "string",
|
|
3254
|
+
"required": true,
|
|
3255
|
+
"description": ""
|
|
3256
|
+
},
|
|
3257
|
+
"className": {
|
|
3258
|
+
"type": "string",
|
|
3259
|
+
"required": false,
|
|
3260
|
+
"description": ""
|
|
3261
|
+
},
|
|
3262
|
+
"onFilterToggle": {
|
|
3263
|
+
"type": "(val: string) => void",
|
|
3264
|
+
"required": false,
|
|
3265
|
+
"description": ""
|
|
3266
|
+
},
|
|
3267
|
+
"onSearch": {
|
|
3268
|
+
"type": "(val: string) => void",
|
|
3269
|
+
"required": false,
|
|
3270
|
+
"description": ""
|
|
3271
|
+
}
|
|
3272
|
+
},
|
|
3273
|
+
"preview": null
|
|
1775
3274
|
},
|
|
1776
3275
|
"FormCard": {
|
|
1777
3276
|
"name": "FormCard",
|
|
@@ -1868,7 +3367,171 @@
|
|
|
1868
3367
|
"required": false,
|
|
1869
3368
|
"description": "Footer content (optional)"
|
|
1870
3369
|
}
|
|
1871
|
-
}
|
|
3370
|
+
},
|
|
3371
|
+
"preview": null
|
|
3372
|
+
},
|
|
3373
|
+
"LoadingOverlay": {
|
|
3374
|
+
"name": "LoadingOverlay",
|
|
3375
|
+
"type": "atom",
|
|
3376
|
+
"description": "LoadingOverlay\nA full-container overlay with a spinner and message.",
|
|
3377
|
+
"props": {
|
|
3378
|
+
"type": {
|
|
3379
|
+
"type": "\"loading-overlay\"",
|
|
3380
|
+
"required": true,
|
|
3381
|
+
"description": ""
|
|
3382
|
+
},
|
|
3383
|
+
"message": {
|
|
3384
|
+
"type": "string",
|
|
3385
|
+
"required": false,
|
|
3386
|
+
"defaultValue": "Loading...",
|
|
3387
|
+
"description": ""
|
|
3388
|
+
},
|
|
3389
|
+
"id": {
|
|
3390
|
+
"type": "string",
|
|
3391
|
+
"required": true,
|
|
3392
|
+
"description": ""
|
|
3393
|
+
},
|
|
3394
|
+
"className": {
|
|
3395
|
+
"type": "string",
|
|
3396
|
+
"required": false,
|
|
3397
|
+
"description": ""
|
|
3398
|
+
}
|
|
3399
|
+
},
|
|
3400
|
+
"preview": null
|
|
3401
|
+
},
|
|
3402
|
+
"NotificationList": {
|
|
3403
|
+
"name": "NotificationList",
|
|
3404
|
+
"type": "atom",
|
|
3405
|
+
"description": "NotificationList\nA list of actionable notifications and activity logs.",
|
|
3406
|
+
"props": {
|
|
3407
|
+
"type": {
|
|
3408
|
+
"type": "\"notification-list\"",
|
|
3409
|
+
"required": true,
|
|
3410
|
+
"description": ""
|
|
3411
|
+
},
|
|
3412
|
+
"notifications": {
|
|
3413
|
+
"type": "{ id: string; title: string; description?: string; timestamp: string; type: \"warning\" | \"info\" | \"success\" | \"error\"; read?: boolean; }[]",
|
|
3414
|
+
"required": true,
|
|
3415
|
+
"description": "",
|
|
3416
|
+
"enums": [
|
|
3417
|
+
"{ id: string; title: string; description?: string; timestamp: string; type: warning",
|
|
3418
|
+
"info",
|
|
3419
|
+
"success",
|
|
3420
|
+
"error; read?: boolean; }[]"
|
|
3421
|
+
]
|
|
3422
|
+
},
|
|
3423
|
+
"id": {
|
|
3424
|
+
"type": "string",
|
|
3425
|
+
"required": true,
|
|
3426
|
+
"description": ""
|
|
3427
|
+
},
|
|
3428
|
+
"className": {
|
|
3429
|
+
"type": "string",
|
|
3430
|
+
"required": false,
|
|
3431
|
+
"description": ""
|
|
3432
|
+
}
|
|
3433
|
+
},
|
|
3434
|
+
"preview": null
|
|
3435
|
+
},
|
|
3436
|
+
"StatsGrid": {
|
|
3437
|
+
"name": "StatsGrid",
|
|
3438
|
+
"type": "atom",
|
|
3439
|
+
"description": "StatsGrid\nA grid of statistical cards with icons and trends.",
|
|
3440
|
+
"props": {
|
|
3441
|
+
"type": {
|
|
3442
|
+
"type": "\"stats-grid\"",
|
|
3443
|
+
"required": true,
|
|
3444
|
+
"description": ""
|
|
3445
|
+
},
|
|
3446
|
+
"items": {
|
|
3447
|
+
"type": "{ label: string; value: string | number; trend?: string; trendDirection?: \"up\" | \"down\" | \"neutral\"; icon?: string; }[]",
|
|
3448
|
+
"required": true,
|
|
3449
|
+
"description": "",
|
|
3450
|
+
"enums": [
|
|
3451
|
+
"{ label: string; value: string",
|
|
3452
|
+
"number; trend?: string; trendDirection?: up",
|
|
3453
|
+
"down",
|
|
3454
|
+
"neutral; icon?: string; }[]"
|
|
3455
|
+
]
|
|
3456
|
+
},
|
|
3457
|
+
"id": {
|
|
3458
|
+
"type": "string",
|
|
3459
|
+
"required": true,
|
|
3460
|
+
"description": ""
|
|
3461
|
+
},
|
|
3462
|
+
"className": {
|
|
3463
|
+
"type": "string",
|
|
3464
|
+
"required": false,
|
|
3465
|
+
"description": ""
|
|
3466
|
+
}
|
|
3467
|
+
},
|
|
3468
|
+
"preview": null
|
|
3469
|
+
},
|
|
3470
|
+
"StepWizard": {
|
|
3471
|
+
"name": "StepWizard",
|
|
3472
|
+
"type": "atom",
|
|
3473
|
+
"description": "StepWizard\nHorizontal step indicator for multi-part workflows.",
|
|
3474
|
+
"props": {
|
|
3475
|
+
"type": {
|
|
3476
|
+
"type": "\"step-wizard\"",
|
|
3477
|
+
"required": true,
|
|
3478
|
+
"description": ""
|
|
3479
|
+
},
|
|
3480
|
+
"steps": {
|
|
3481
|
+
"type": "{ title: string; description?: string; }[]",
|
|
3482
|
+
"required": true,
|
|
3483
|
+
"description": ""
|
|
3484
|
+
},
|
|
3485
|
+
"currentStep": {
|
|
3486
|
+
"type": "number",
|
|
3487
|
+
"required": true,
|
|
3488
|
+
"description": ""
|
|
3489
|
+
},
|
|
3490
|
+
"id": {
|
|
3491
|
+
"type": "string",
|
|
3492
|
+
"required": true,
|
|
3493
|
+
"description": ""
|
|
3494
|
+
},
|
|
3495
|
+
"className": {
|
|
3496
|
+
"type": "string",
|
|
3497
|
+
"required": false,
|
|
3498
|
+
"description": ""
|
|
3499
|
+
}
|
|
3500
|
+
},
|
|
3501
|
+
"preview": null
|
|
3502
|
+
},
|
|
3503
|
+
"TagCloud": {
|
|
3504
|
+
"name": "TagCloud",
|
|
3505
|
+
"type": "atom",
|
|
3506
|
+
"description": "TagCloud\nA cluster of clickable tags.",
|
|
3507
|
+
"props": {
|
|
3508
|
+
"type": {
|
|
3509
|
+
"type": "\"tag-cloud\"",
|
|
3510
|
+
"required": true,
|
|
3511
|
+
"description": ""
|
|
3512
|
+
},
|
|
3513
|
+
"tags": {
|
|
3514
|
+
"type": "{ label: string; value: string; count?: number; }[]",
|
|
3515
|
+
"required": true,
|
|
3516
|
+
"description": ""
|
|
3517
|
+
},
|
|
3518
|
+
"id": {
|
|
3519
|
+
"type": "string",
|
|
3520
|
+
"required": true,
|
|
3521
|
+
"description": ""
|
|
3522
|
+
},
|
|
3523
|
+
"className": {
|
|
3524
|
+
"type": "string",
|
|
3525
|
+
"required": false,
|
|
3526
|
+
"description": ""
|
|
3527
|
+
},
|
|
3528
|
+
"onTagClick": {
|
|
3529
|
+
"type": "(val: string) => void",
|
|
3530
|
+
"required": false,
|
|
3531
|
+
"description": ""
|
|
3532
|
+
}
|
|
3533
|
+
},
|
|
3534
|
+
"preview": null
|
|
1872
3535
|
}
|
|
1873
3536
|
}
|
|
1874
3537
|
}
|