pxengine 0.1.70 → 0.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2565 -843
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +693 -2
- package/dist/index.d.ts +693 -2
- package/dist/index.mjs +2471 -774
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +1161 -54
- package/package.json +1 -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-05-
|
|
4
|
+
"lastUpdated": "2026-05-07T13:21:58.863Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"AccordionAtom": {
|
|
7
7
|
"name": "AccordionAtom",
|
|
@@ -15536,103 +15536,701 @@
|
|
|
15536
15536
|
"preview": null,
|
|
15537
15537
|
"layoutHints": null
|
|
15538
15538
|
},
|
|
15539
|
+
"ActionPriorityCard": {
|
|
15540
|
+
"name": "ActionPriorityCard",
|
|
15541
|
+
"type": "molecule",
|
|
15542
|
+
"isBuilderComponent": true,
|
|
15543
|
+
"description": "",
|
|
15544
|
+
"props": {
|
|
15545
|
+
"title": {
|
|
15546
|
+
"type": "string",
|
|
15547
|
+
"required": true,
|
|
15548
|
+
"description": ""
|
|
15549
|
+
},
|
|
15550
|
+
"actions": {
|
|
15551
|
+
"type": "actionpriorityitem[]",
|
|
15552
|
+
"required": true,
|
|
15553
|
+
"description": ""
|
|
15554
|
+
},
|
|
15555
|
+
"theme": {
|
|
15556
|
+
"type": "widgettheme",
|
|
15557
|
+
"required": false,
|
|
15558
|
+
"description": ""
|
|
15559
|
+
},
|
|
15560
|
+
"className": {
|
|
15561
|
+
"type": "string",
|
|
15562
|
+
"required": false,
|
|
15563
|
+
"description": ""
|
|
15564
|
+
}
|
|
15565
|
+
},
|
|
15566
|
+
"preview": null,
|
|
15567
|
+
"layoutHints": null
|
|
15568
|
+
},
|
|
15569
|
+
"ApprovalCard": {
|
|
15570
|
+
"name": "ApprovalCard",
|
|
15571
|
+
"type": "molecule",
|
|
15572
|
+
"isBuilderComponent": true,
|
|
15573
|
+
"description": "",
|
|
15574
|
+
"props": {
|
|
15575
|
+
"title": {
|
|
15576
|
+
"type": "string",
|
|
15577
|
+
"required": true,
|
|
15578
|
+
"description": ""
|
|
15579
|
+
},
|
|
15580
|
+
"description": {
|
|
15581
|
+
"type": "string",
|
|
15582
|
+
"required": false,
|
|
15583
|
+
"description": ""
|
|
15584
|
+
},
|
|
15585
|
+
"details": {
|
|
15586
|
+
"type": "approvaldetail[]",
|
|
15587
|
+
"required": false,
|
|
15588
|
+
"description": ""
|
|
15589
|
+
},
|
|
15590
|
+
"status": {
|
|
15591
|
+
"type": "enum",
|
|
15592
|
+
"required": false,
|
|
15593
|
+
"description": "",
|
|
15594
|
+
"enums": [
|
|
15595
|
+
"pending",
|
|
15596
|
+
"approved",
|
|
15597
|
+
"rejected",
|
|
15598
|
+
"changes_requested"
|
|
15599
|
+
]
|
|
15600
|
+
},
|
|
15601
|
+
"approve_label": {
|
|
15602
|
+
"type": "string",
|
|
15603
|
+
"required": false,
|
|
15604
|
+
"description": ""
|
|
15605
|
+
},
|
|
15606
|
+
"reject_label": {
|
|
15607
|
+
"type": "string",
|
|
15608
|
+
"required": false,
|
|
15609
|
+
"description": ""
|
|
15610
|
+
},
|
|
15611
|
+
"changes_label": {
|
|
15612
|
+
"type": "string",
|
|
15613
|
+
"required": false,
|
|
15614
|
+
"description": ""
|
|
15615
|
+
},
|
|
15616
|
+
"show_changes_button": {
|
|
15617
|
+
"type": "boolean",
|
|
15618
|
+
"required": false,
|
|
15619
|
+
"description": ""
|
|
15620
|
+
},
|
|
15621
|
+
"isLatestMessage": {
|
|
15622
|
+
"type": "boolean",
|
|
15623
|
+
"required": false,
|
|
15624
|
+
"description": ""
|
|
15625
|
+
},
|
|
15626
|
+
"disabled": {
|
|
15627
|
+
"type": "boolean",
|
|
15628
|
+
"required": false,
|
|
15629
|
+
"description": ""
|
|
15630
|
+
},
|
|
15631
|
+
"theme": {
|
|
15632
|
+
"type": "widgettheme",
|
|
15633
|
+
"required": false,
|
|
15634
|
+
"description": ""
|
|
15635
|
+
},
|
|
15636
|
+
"className": {
|
|
15637
|
+
"type": "string",
|
|
15638
|
+
"required": false,
|
|
15639
|
+
"description": ""
|
|
15640
|
+
},
|
|
15641
|
+
"sendMessage": {
|
|
15642
|
+
"type": "(text: string) => void",
|
|
15643
|
+
"required": false,
|
|
15644
|
+
"description": ""
|
|
15645
|
+
},
|
|
15646
|
+
"onAction": {
|
|
15647
|
+
"type": "(action: any) => void",
|
|
15648
|
+
"required": false,
|
|
15649
|
+
"description": ""
|
|
15650
|
+
}
|
|
15651
|
+
},
|
|
15652
|
+
"preview": null,
|
|
15653
|
+
"layoutHints": null
|
|
15654
|
+
},
|
|
15655
|
+
"AudiencePersonaCard": {
|
|
15656
|
+
"name": "AudiencePersonaCard",
|
|
15657
|
+
"type": "molecule",
|
|
15658
|
+
"isBuilderComponent": true,
|
|
15659
|
+
"description": "",
|
|
15660
|
+
"props": {
|
|
15661
|
+
"title": {
|
|
15662
|
+
"type": "string",
|
|
15663
|
+
"required": true,
|
|
15664
|
+
"description": ""
|
|
15665
|
+
},
|
|
15666
|
+
"segments": {
|
|
15667
|
+
"type": "personasegment[]",
|
|
15668
|
+
"required": true,
|
|
15669
|
+
"description": ""
|
|
15670
|
+
},
|
|
15671
|
+
"theme": {
|
|
15672
|
+
"type": "widgettheme",
|
|
15673
|
+
"required": false,
|
|
15674
|
+
"description": ""
|
|
15675
|
+
},
|
|
15676
|
+
"className": {
|
|
15677
|
+
"type": "string",
|
|
15678
|
+
"required": false,
|
|
15679
|
+
"description": ""
|
|
15680
|
+
}
|
|
15681
|
+
},
|
|
15682
|
+
"preview": null,
|
|
15683
|
+
"layoutHints": null
|
|
15684
|
+
},
|
|
15685
|
+
"BudgetAllocCard": {
|
|
15686
|
+
"name": "BudgetAllocCard",
|
|
15687
|
+
"type": "molecule",
|
|
15688
|
+
"isBuilderComponent": true,
|
|
15689
|
+
"description": "",
|
|
15690
|
+
"props": {
|
|
15691
|
+
"title": {
|
|
15692
|
+
"type": "string",
|
|
15693
|
+
"required": false,
|
|
15694
|
+
"description": ""
|
|
15695
|
+
},
|
|
15696
|
+
"currency": {
|
|
15697
|
+
"type": "string",
|
|
15698
|
+
"required": false,
|
|
15699
|
+
"description": ""
|
|
15700
|
+
},
|
|
15701
|
+
"total": {
|
|
15702
|
+
"type": "number",
|
|
15703
|
+
"required": false,
|
|
15704
|
+
"description": ""
|
|
15705
|
+
},
|
|
15706
|
+
"items": {
|
|
15707
|
+
"type": "budgetallocitem[]",
|
|
15708
|
+
"required": false,
|
|
15709
|
+
"description": ""
|
|
15710
|
+
},
|
|
15711
|
+
"allocations": {
|
|
15712
|
+
"type": "budgetallocitem[]",
|
|
15713
|
+
"required": false,
|
|
15714
|
+
"description": ""
|
|
15715
|
+
},
|
|
15716
|
+
"show_total": {
|
|
15717
|
+
"type": "boolean",
|
|
15718
|
+
"required": false,
|
|
15719
|
+
"description": ""
|
|
15720
|
+
},
|
|
15721
|
+
"theme": {
|
|
15722
|
+
"type": "widgettheme",
|
|
15723
|
+
"required": false,
|
|
15724
|
+
"description": ""
|
|
15725
|
+
},
|
|
15726
|
+
"className": {
|
|
15727
|
+
"type": "string",
|
|
15728
|
+
"required": false,
|
|
15729
|
+
"description": ""
|
|
15730
|
+
},
|
|
15731
|
+
"onAction": {
|
|
15732
|
+
"type": "(action: any) => void",
|
|
15733
|
+
"required": false,
|
|
15734
|
+
"description": ""
|
|
15735
|
+
}
|
|
15736
|
+
},
|
|
15737
|
+
"preview": null,
|
|
15738
|
+
"layoutHints": null
|
|
15739
|
+
},
|
|
15740
|
+
"CalendarEventCard": {
|
|
15741
|
+
"name": "CalendarEventCard",
|
|
15742
|
+
"type": "molecule",
|
|
15743
|
+
"isBuilderComponent": true,
|
|
15744
|
+
"description": "",
|
|
15745
|
+
"props": {
|
|
15746
|
+
"title": {
|
|
15747
|
+
"type": "string",
|
|
15748
|
+
"required": true,
|
|
15749
|
+
"description": ""
|
|
15750
|
+
},
|
|
15751
|
+
"date": {
|
|
15752
|
+
"type": "string",
|
|
15753
|
+
"required": true,
|
|
15754
|
+
"description": ""
|
|
15755
|
+
},
|
|
15756
|
+
"time": {
|
|
15757
|
+
"type": "string",
|
|
15758
|
+
"required": false,
|
|
15759
|
+
"description": ""
|
|
15760
|
+
},
|
|
15761
|
+
"duration": {
|
|
15762
|
+
"type": "string",
|
|
15763
|
+
"required": false,
|
|
15764
|
+
"description": ""
|
|
15765
|
+
},
|
|
15766
|
+
"location": {
|
|
15767
|
+
"type": "string",
|
|
15768
|
+
"required": false,
|
|
15769
|
+
"description": ""
|
|
15770
|
+
},
|
|
15771
|
+
"description": {
|
|
15772
|
+
"type": "string",
|
|
15773
|
+
"required": false,
|
|
15774
|
+
"description": ""
|
|
15775
|
+
},
|
|
15776
|
+
"attendees": {
|
|
15777
|
+
"type": "calendareventattendee[]",
|
|
15778
|
+
"required": false,
|
|
15779
|
+
"description": ""
|
|
15780
|
+
},
|
|
15781
|
+
"status": {
|
|
15782
|
+
"type": "enum",
|
|
15783
|
+
"required": false,
|
|
15784
|
+
"description": "",
|
|
15785
|
+
"enums": [
|
|
15786
|
+
"upcoming",
|
|
15787
|
+
"live",
|
|
15788
|
+
"ended",
|
|
15789
|
+
"cancelled"
|
|
15790
|
+
]
|
|
15791
|
+
},
|
|
15792
|
+
"join_label": {
|
|
15793
|
+
"type": "string",
|
|
15794
|
+
"required": false,
|
|
15795
|
+
"description": ""
|
|
15796
|
+
},
|
|
15797
|
+
"theme": {
|
|
15798
|
+
"type": "widgettheme",
|
|
15799
|
+
"required": false,
|
|
15800
|
+
"description": ""
|
|
15801
|
+
},
|
|
15802
|
+
"className": {
|
|
15803
|
+
"type": "string",
|
|
15804
|
+
"required": false,
|
|
15805
|
+
"description": ""
|
|
15806
|
+
},
|
|
15807
|
+
"onAction": {
|
|
15808
|
+
"type": "(action: any) => void",
|
|
15809
|
+
"required": false,
|
|
15810
|
+
"description": ""
|
|
15811
|
+
}
|
|
15812
|
+
},
|
|
15813
|
+
"preview": null,
|
|
15814
|
+
"layoutHints": null
|
|
15815
|
+
},
|
|
15816
|
+
"CampaignBriefCard": {
|
|
15817
|
+
"name": "CampaignBriefCard",
|
|
15818
|
+
"type": "molecule",
|
|
15819
|
+
"isBuilderComponent": true,
|
|
15820
|
+
"description": "",
|
|
15821
|
+
"props": {
|
|
15822
|
+
"title": {
|
|
15823
|
+
"type": "string",
|
|
15824
|
+
"required": true,
|
|
15825
|
+
"description": ""
|
|
15826
|
+
},
|
|
15827
|
+
"objective": {
|
|
15828
|
+
"type": "string",
|
|
15829
|
+
"required": true,
|
|
15830
|
+
"description": ""
|
|
15831
|
+
},
|
|
15832
|
+
"audience": {
|
|
15833
|
+
"type": "string",
|
|
15834
|
+
"required": false,
|
|
15835
|
+
"description": ""
|
|
15836
|
+
},
|
|
15837
|
+
"budget": {
|
|
15838
|
+
"type": "string",
|
|
15839
|
+
"required": false,
|
|
15840
|
+
"description": ""
|
|
15841
|
+
},
|
|
15842
|
+
"timeline": {
|
|
15843
|
+
"type": "string",
|
|
15844
|
+
"required": false,
|
|
15845
|
+
"description": ""
|
|
15846
|
+
},
|
|
15847
|
+
"constraints": {
|
|
15848
|
+
"type": "string[]",
|
|
15849
|
+
"required": false,
|
|
15850
|
+
"defaultValue": "[]",
|
|
15851
|
+
"description": ""
|
|
15852
|
+
},
|
|
15853
|
+
"theme": {
|
|
15854
|
+
"type": "widgettheme",
|
|
15855
|
+
"required": false,
|
|
15856
|
+
"description": ""
|
|
15857
|
+
},
|
|
15858
|
+
"className": {
|
|
15859
|
+
"type": "string",
|
|
15860
|
+
"required": false,
|
|
15861
|
+
"description": ""
|
|
15862
|
+
}
|
|
15863
|
+
},
|
|
15864
|
+
"preview": null,
|
|
15865
|
+
"layoutHints": null
|
|
15866
|
+
},
|
|
15867
|
+
"ChannelPlanCard": {
|
|
15868
|
+
"name": "ChannelPlanCard",
|
|
15869
|
+
"type": "molecule",
|
|
15870
|
+
"isBuilderComponent": true,
|
|
15871
|
+
"description": "",
|
|
15872
|
+
"props": {
|
|
15873
|
+
"title": {
|
|
15874
|
+
"type": "string",
|
|
15875
|
+
"required": true,
|
|
15876
|
+
"description": ""
|
|
15877
|
+
},
|
|
15878
|
+
"plans": {
|
|
15879
|
+
"type": "channelplanitem[]",
|
|
15880
|
+
"required": true,
|
|
15881
|
+
"description": ""
|
|
15882
|
+
},
|
|
15883
|
+
"theme": {
|
|
15884
|
+
"type": "widgettheme",
|
|
15885
|
+
"required": false,
|
|
15886
|
+
"description": ""
|
|
15887
|
+
},
|
|
15888
|
+
"className": {
|
|
15889
|
+
"type": "string",
|
|
15890
|
+
"required": false,
|
|
15891
|
+
"description": ""
|
|
15892
|
+
}
|
|
15893
|
+
},
|
|
15894
|
+
"preview": null,
|
|
15895
|
+
"layoutHints": null
|
|
15896
|
+
},
|
|
15897
|
+
"ChecklistCard": {
|
|
15898
|
+
"name": "ChecklistCard",
|
|
15899
|
+
"type": "molecule",
|
|
15900
|
+
"isBuilderComponent": true,
|
|
15901
|
+
"description": "",
|
|
15902
|
+
"props": {
|
|
15903
|
+
"title": {
|
|
15904
|
+
"type": "string",
|
|
15905
|
+
"required": false,
|
|
15906
|
+
"description": ""
|
|
15907
|
+
},
|
|
15908
|
+
"description": {
|
|
15909
|
+
"type": "string",
|
|
15910
|
+
"required": false,
|
|
15911
|
+
"description": ""
|
|
15912
|
+
},
|
|
15913
|
+
"items": {
|
|
15914
|
+
"type": "checklistitem[]",
|
|
15915
|
+
"required": false,
|
|
15916
|
+
"description": ""
|
|
15917
|
+
},
|
|
15918
|
+
"tasks": {
|
|
15919
|
+
"type": "checklistitem[]",
|
|
15920
|
+
"required": false,
|
|
15921
|
+
"description": ""
|
|
15922
|
+
},
|
|
15923
|
+
"submit_label": {
|
|
15924
|
+
"type": "string",
|
|
15925
|
+
"required": false,
|
|
15926
|
+
"description": ""
|
|
15927
|
+
},
|
|
15928
|
+
"require_all": {
|
|
15929
|
+
"type": "boolean",
|
|
15930
|
+
"required": false,
|
|
15931
|
+
"description": ""
|
|
15932
|
+
},
|
|
15933
|
+
"isLatestMessage": {
|
|
15934
|
+
"type": "boolean",
|
|
15935
|
+
"required": false,
|
|
15936
|
+
"description": ""
|
|
15937
|
+
},
|
|
15938
|
+
"disabled": {
|
|
15939
|
+
"type": "boolean",
|
|
15940
|
+
"required": false,
|
|
15941
|
+
"description": ""
|
|
15942
|
+
},
|
|
15943
|
+
"theme": {
|
|
15944
|
+
"type": "widgettheme",
|
|
15945
|
+
"required": false,
|
|
15946
|
+
"description": ""
|
|
15947
|
+
},
|
|
15948
|
+
"className": {
|
|
15949
|
+
"type": "string",
|
|
15950
|
+
"required": false,
|
|
15951
|
+
"description": ""
|
|
15952
|
+
},
|
|
15953
|
+
"sendMessage": {
|
|
15954
|
+
"type": "(text: string) => void",
|
|
15955
|
+
"required": false,
|
|
15956
|
+
"description": ""
|
|
15957
|
+
},
|
|
15958
|
+
"onAction": {
|
|
15959
|
+
"type": "(action: any) => void",
|
|
15960
|
+
"required": false,
|
|
15961
|
+
"description": ""
|
|
15962
|
+
}
|
|
15963
|
+
},
|
|
15964
|
+
"preview": null,
|
|
15965
|
+
"layoutHints": null
|
|
15966
|
+
},
|
|
15967
|
+
"ComparisonCard": {
|
|
15968
|
+
"name": "ComparisonCard",
|
|
15969
|
+
"type": "molecule",
|
|
15970
|
+
"isBuilderComponent": true,
|
|
15971
|
+
"description": "",
|
|
15972
|
+
"props": {
|
|
15973
|
+
"title": {
|
|
15974
|
+
"type": "string",
|
|
15975
|
+
"required": false,
|
|
15976
|
+
"description": ""
|
|
15977
|
+
},
|
|
15978
|
+
"description": {
|
|
15979
|
+
"type": "string",
|
|
15980
|
+
"required": false,
|
|
15981
|
+
"description": ""
|
|
15982
|
+
},
|
|
15983
|
+
"attribute_labels": {
|
|
15984
|
+
"type": "string[]",
|
|
15985
|
+
"required": true,
|
|
15986
|
+
"description": ""
|
|
15987
|
+
},
|
|
15988
|
+
"options": {
|
|
15989
|
+
"type": "comparisonoption[]",
|
|
15990
|
+
"required": true,
|
|
15991
|
+
"description": ""
|
|
15992
|
+
},
|
|
15993
|
+
"select_label": {
|
|
15994
|
+
"type": "string",
|
|
15995
|
+
"required": false,
|
|
15996
|
+
"description": ""
|
|
15997
|
+
},
|
|
15998
|
+
"isLatestMessage": {
|
|
15999
|
+
"type": "boolean",
|
|
16000
|
+
"required": false,
|
|
16001
|
+
"description": ""
|
|
16002
|
+
},
|
|
16003
|
+
"disabled": {
|
|
16004
|
+
"type": "boolean",
|
|
16005
|
+
"required": false,
|
|
16006
|
+
"description": ""
|
|
16007
|
+
},
|
|
16008
|
+
"theme": {
|
|
16009
|
+
"type": "widgettheme",
|
|
16010
|
+
"required": false,
|
|
16011
|
+
"description": ""
|
|
16012
|
+
},
|
|
16013
|
+
"className": {
|
|
16014
|
+
"type": "string",
|
|
16015
|
+
"required": false,
|
|
16016
|
+
"description": ""
|
|
16017
|
+
},
|
|
16018
|
+
"sendMessage": {
|
|
16019
|
+
"type": "(text: string) => void",
|
|
16020
|
+
"required": false,
|
|
16021
|
+
"description": ""
|
|
16022
|
+
},
|
|
16023
|
+
"onAction": {
|
|
16024
|
+
"type": "(action: any) => void",
|
|
16025
|
+
"required": false,
|
|
16026
|
+
"description": ""
|
|
16027
|
+
}
|
|
16028
|
+
},
|
|
16029
|
+
"preview": null,
|
|
16030
|
+
"layoutHints": null
|
|
16031
|
+
},
|
|
15539
16032
|
"ConfirmationCard": {
|
|
15540
16033
|
"name": "ConfirmationCard",
|
|
15541
16034
|
"type": "molecule",
|
|
15542
16035
|
"isBuilderComponent": true,
|
|
15543
|
-
"description": "ConfirmationCard\n\nA molecule for yes/no confirmation prompts.\nShows a title, description, optional question, and Cancel / Confirm buttons.",
|
|
16036
|
+
"description": "ConfirmationCard\n\nA molecule for yes/no confirmation prompts.\nShows a title, description, optional question, and Cancel / Confirm buttons.",
|
|
16037
|
+
"props": {
|
|
16038
|
+
"title": {
|
|
16039
|
+
"type": "string",
|
|
16040
|
+
"required": true,
|
|
16041
|
+
"description": "Bold title at the top of the card (e.g. \"Brand Summary\")"
|
|
16042
|
+
},
|
|
16043
|
+
"description": {
|
|
16044
|
+
"type": "string",
|
|
16045
|
+
"required": true,
|
|
16046
|
+
"description": "Description / body text explaining what will happen"
|
|
16047
|
+
},
|
|
16048
|
+
"question": {
|
|
16049
|
+
"type": "string",
|
|
16050
|
+
"required": false,
|
|
16051
|
+
"description": "The confirmation question (e.g. \"Shall I proceed to the research?\")"
|
|
16052
|
+
},
|
|
16053
|
+
"confirm_label": {
|
|
16054
|
+
"type": "string",
|
|
16055
|
+
"required": false,
|
|
16056
|
+
"description": "Label for the confirm button (default: \"Yes, go ahead\")"
|
|
16057
|
+
},
|
|
16058
|
+
"cancel_label": {
|
|
16059
|
+
"type": "string",
|
|
16060
|
+
"required": false,
|
|
16061
|
+
"description": "Label for the cancel button (default: \"Cancel\")"
|
|
16062
|
+
},
|
|
16063
|
+
"sendMessage": {
|
|
16064
|
+
"type": "(text: string) => void",
|
|
16065
|
+
"required": false,
|
|
16066
|
+
"description": "Callback to send a message to the agent.\nCalled when user clicks Confirm or Cancel."
|
|
16067
|
+
},
|
|
16068
|
+
"isLatestMessage": {
|
|
16069
|
+
"type": "boolean",
|
|
16070
|
+
"required": false,
|
|
16071
|
+
"description": "Whether this message is the latest (controls interactivity)"
|
|
16072
|
+
},
|
|
16073
|
+
"disabled": {
|
|
16074
|
+
"type": "boolean",
|
|
16075
|
+
"required": false,
|
|
16076
|
+
"description": "Whether the interaction is disabled externally"
|
|
16077
|
+
},
|
|
16078
|
+
"className": {
|
|
16079
|
+
"type": "string",
|
|
16080
|
+
"required": false,
|
|
16081
|
+
"description": "Custom wrapper class name"
|
|
16082
|
+
},
|
|
16083
|
+
"onAction": {
|
|
16084
|
+
"type": "(action: any) => void",
|
|
16085
|
+
"required": false,
|
|
16086
|
+
"description": "Optional action callback for external state management"
|
|
16087
|
+
}
|
|
16088
|
+
},
|
|
16089
|
+
"preview": null,
|
|
16090
|
+
"layoutHints": null
|
|
16091
|
+
},
|
|
16092
|
+
"DataGrid": {
|
|
16093
|
+
"name": "DataGrid",
|
|
16094
|
+
"type": "molecule",
|
|
16095
|
+
"isBuilderComponent": true,
|
|
16096
|
+
"description": "DataGrid\nA premium table component with typed cells and responsive design.",
|
|
16097
|
+
"props": {
|
|
16098
|
+
"type": {
|
|
16099
|
+
"type": "\"data-grid\"",
|
|
16100
|
+
"required": true,
|
|
16101
|
+
"description": ""
|
|
16102
|
+
},
|
|
16103
|
+
"columns": {
|
|
16104
|
+
"type": "enum",
|
|
16105
|
+
"required": true,
|
|
16106
|
+
"description": "",
|
|
16107
|
+
"enums": [
|
|
16108
|
+
"{ header: string; accessorKey: string; type?: number",
|
|
16109
|
+
"avatar",
|
|
16110
|
+
"badge",
|
|
16111
|
+
"date",
|
|
16112
|
+
"text; }[]"
|
|
16113
|
+
]
|
|
16114
|
+
},
|
|
16115
|
+
"data": {
|
|
16116
|
+
"type": "any[]",
|
|
16117
|
+
"required": true,
|
|
16118
|
+
"description": ""
|
|
16119
|
+
},
|
|
16120
|
+
"pageSize": {
|
|
16121
|
+
"type": "number",
|
|
16122
|
+
"required": false,
|
|
16123
|
+
"defaultValue": "10",
|
|
16124
|
+
"description": ""
|
|
16125
|
+
},
|
|
16126
|
+
"id": {
|
|
16127
|
+
"type": "string",
|
|
16128
|
+
"required": true,
|
|
16129
|
+
"description": ""
|
|
16130
|
+
},
|
|
16131
|
+
"className": {
|
|
16132
|
+
"type": "string",
|
|
16133
|
+
"required": false,
|
|
16134
|
+
"description": ""
|
|
16135
|
+
},
|
|
16136
|
+
"style": {
|
|
16137
|
+
"type": "cssproperties",
|
|
16138
|
+
"required": false,
|
|
16139
|
+
"description": ""
|
|
16140
|
+
}
|
|
16141
|
+
},
|
|
16142
|
+
"preview": null,
|
|
16143
|
+
"layoutHints": null
|
|
16144
|
+
},
|
|
16145
|
+
"DataSourceChecklistCard": {
|
|
16146
|
+
"name": "DataSourceChecklistCard",
|
|
16147
|
+
"type": "molecule",
|
|
16148
|
+
"isBuilderComponent": true,
|
|
16149
|
+
"description": "",
|
|
15544
16150
|
"props": {
|
|
15545
16151
|
"title": {
|
|
15546
16152
|
"type": "string",
|
|
15547
16153
|
"required": true,
|
|
15548
|
-
"description": "
|
|
16154
|
+
"description": ""
|
|
15549
16155
|
},
|
|
15550
|
-
"
|
|
15551
|
-
"type": "
|
|
16156
|
+
"items": {
|
|
16157
|
+
"type": "datasourceitem[]",
|
|
15552
16158
|
"required": true,
|
|
15553
|
-
"description": "
|
|
15554
|
-
},
|
|
15555
|
-
"question": {
|
|
15556
|
-
"type": "string",
|
|
15557
|
-
"required": false,
|
|
15558
|
-
"description": "The confirmation question (e.g. \"Shall I proceed to the research?\")"
|
|
15559
|
-
},
|
|
15560
|
-
"confirm_label": {
|
|
15561
|
-
"type": "string",
|
|
15562
|
-
"required": false,
|
|
15563
|
-
"description": "Label for the confirm button (default: \"Yes, go ahead\")"
|
|
16159
|
+
"description": ""
|
|
15564
16160
|
},
|
|
15565
|
-
"
|
|
16161
|
+
"submit_label": {
|
|
15566
16162
|
"type": "string",
|
|
15567
16163
|
"required": false,
|
|
15568
|
-
"
|
|
15569
|
-
|
|
15570
|
-
"sendMessage": {
|
|
15571
|
-
"type": "(text: string) => void",
|
|
15572
|
-
"required": false,
|
|
15573
|
-
"description": "Callback to send a message to the agent.\nCalled when user clicks Confirm or Cancel."
|
|
16164
|
+
"defaultValue": "Confirm Sources",
|
|
16165
|
+
"description": ""
|
|
15574
16166
|
},
|
|
15575
16167
|
"isLatestMessage": {
|
|
15576
16168
|
"type": "boolean",
|
|
15577
16169
|
"required": false,
|
|
15578
|
-
"description": "
|
|
16170
|
+
"description": ""
|
|
15579
16171
|
},
|
|
15580
16172
|
"disabled": {
|
|
15581
16173
|
"type": "boolean",
|
|
15582
16174
|
"required": false,
|
|
15583
|
-
"description": "
|
|
16175
|
+
"description": ""
|
|
16176
|
+
},
|
|
16177
|
+
"theme": {
|
|
16178
|
+
"type": "widgettheme",
|
|
16179
|
+
"required": false,
|
|
16180
|
+
"description": ""
|
|
15584
16181
|
},
|
|
15585
16182
|
"className": {
|
|
15586
16183
|
"type": "string",
|
|
15587
16184
|
"required": false,
|
|
15588
|
-
"description": "
|
|
16185
|
+
"description": ""
|
|
15589
16186
|
},
|
|
15590
16187
|
"onAction": {
|
|
15591
16188
|
"type": "(action: any) => void",
|
|
15592
16189
|
"required": false,
|
|
15593
|
-
"description": "
|
|
16190
|
+
"description": ""
|
|
15594
16191
|
}
|
|
15595
16192
|
},
|
|
15596
16193
|
"preview": null,
|
|
15597
16194
|
"layoutHints": null
|
|
15598
16195
|
},
|
|
15599
|
-
"
|
|
15600
|
-
"name": "
|
|
16196
|
+
"DataTableCard": {
|
|
16197
|
+
"name": "DataTableCard",
|
|
15601
16198
|
"type": "molecule",
|
|
15602
16199
|
"isBuilderComponent": true,
|
|
15603
|
-
"description": "
|
|
16200
|
+
"description": "",
|
|
15604
16201
|
"props": {
|
|
15605
|
-
"
|
|
15606
|
-
"type": "
|
|
15607
|
-
"required":
|
|
16202
|
+
"title": {
|
|
16203
|
+
"type": "string",
|
|
16204
|
+
"required": false,
|
|
16205
|
+
"description": ""
|
|
16206
|
+
},
|
|
16207
|
+
"caption": {
|
|
16208
|
+
"type": "string",
|
|
16209
|
+
"required": false,
|
|
15608
16210
|
"description": ""
|
|
15609
16211
|
},
|
|
15610
16212
|
"columns": {
|
|
16213
|
+
"type": "string[]",
|
|
16214
|
+
"required": true,
|
|
16215
|
+
"description": ""
|
|
16216
|
+
},
|
|
16217
|
+
"rows": {
|
|
15611
16218
|
"type": "enum",
|
|
15612
16219
|
"required": true,
|
|
15613
16220
|
"description": "",
|
|
15614
16221
|
"enums": [
|
|
15615
|
-
"
|
|
15616
|
-
"
|
|
15617
|
-
"badge",
|
|
15618
|
-
"date",
|
|
15619
|
-
"text; }[]"
|
|
16222
|
+
"Record<string, string",
|
|
16223
|
+
"number>[]"
|
|
15620
16224
|
]
|
|
15621
16225
|
},
|
|
15622
|
-
"
|
|
15623
|
-
"type": "
|
|
15624
|
-
"required": true,
|
|
15625
|
-
"description": ""
|
|
15626
|
-
},
|
|
15627
|
-
"pageSize": {
|
|
15628
|
-
"type": "number",
|
|
16226
|
+
"highlight_column": {
|
|
16227
|
+
"type": "string",
|
|
15629
16228
|
"required": false,
|
|
15630
|
-
"defaultValue": "10",
|
|
15631
16229
|
"description": ""
|
|
15632
16230
|
},
|
|
15633
|
-
"
|
|
15634
|
-
"type": "
|
|
15635
|
-
"required":
|
|
16231
|
+
"theme": {
|
|
16232
|
+
"type": "widgettheme",
|
|
16233
|
+
"required": false,
|
|
15636
16234
|
"description": ""
|
|
15637
16235
|
},
|
|
15638
16236
|
"className": {
|
|
@@ -15640,8 +16238,8 @@
|
|
|
15640
16238
|
"required": false,
|
|
15641
16239
|
"description": ""
|
|
15642
16240
|
},
|
|
15643
|
-
"
|
|
15644
|
-
"type": "
|
|
16241
|
+
"onAction": {
|
|
16242
|
+
"type": "(action: any) => void",
|
|
15645
16243
|
"required": false,
|
|
15646
16244
|
"description": ""
|
|
15647
16245
|
}
|
|
@@ -15814,6 +16412,76 @@
|
|
|
15814
16412
|
"preview": null,
|
|
15815
16413
|
"layoutHints": null
|
|
15816
16414
|
},
|
|
16415
|
+
"FeedbackRatingCard": {
|
|
16416
|
+
"name": "FeedbackRatingCard",
|
|
16417
|
+
"type": "molecule",
|
|
16418
|
+
"isBuilderComponent": true,
|
|
16419
|
+
"description": "",
|
|
16420
|
+
"props": {
|
|
16421
|
+
"question": {
|
|
16422
|
+
"type": "string",
|
|
16423
|
+
"required": true,
|
|
16424
|
+
"description": ""
|
|
16425
|
+
},
|
|
16426
|
+
"max_rating": {
|
|
16427
|
+
"type": "number",
|
|
16428
|
+
"required": false,
|
|
16429
|
+
"description": ""
|
|
16430
|
+
},
|
|
16431
|
+
"rating_label": {
|
|
16432
|
+
"type": "string",
|
|
16433
|
+
"required": false,
|
|
16434
|
+
"description": ""
|
|
16435
|
+
},
|
|
16436
|
+
"comment_placeholder": {
|
|
16437
|
+
"type": "string",
|
|
16438
|
+
"required": false,
|
|
16439
|
+
"description": ""
|
|
16440
|
+
},
|
|
16441
|
+
"show_comment": {
|
|
16442
|
+
"type": "boolean",
|
|
16443
|
+
"required": false,
|
|
16444
|
+
"description": ""
|
|
16445
|
+
},
|
|
16446
|
+
"submit_label": {
|
|
16447
|
+
"type": "string",
|
|
16448
|
+
"required": false,
|
|
16449
|
+
"description": ""
|
|
16450
|
+
},
|
|
16451
|
+
"isLatestMessage": {
|
|
16452
|
+
"type": "boolean",
|
|
16453
|
+
"required": false,
|
|
16454
|
+
"description": ""
|
|
16455
|
+
},
|
|
16456
|
+
"disabled": {
|
|
16457
|
+
"type": "boolean",
|
|
16458
|
+
"required": false,
|
|
16459
|
+
"description": ""
|
|
16460
|
+
},
|
|
16461
|
+
"theme": {
|
|
16462
|
+
"type": "widgettheme",
|
|
16463
|
+
"required": false,
|
|
16464
|
+
"description": ""
|
|
16465
|
+
},
|
|
16466
|
+
"className": {
|
|
16467
|
+
"type": "string",
|
|
16468
|
+
"required": false,
|
|
16469
|
+
"description": ""
|
|
16470
|
+
},
|
|
16471
|
+
"sendMessage": {
|
|
16472
|
+
"type": "(text: string) => void",
|
|
16473
|
+
"required": false,
|
|
16474
|
+
"description": ""
|
|
16475
|
+
},
|
|
16476
|
+
"onAction": {
|
|
16477
|
+
"type": "(action: any) => void",
|
|
16478
|
+
"required": false,
|
|
16479
|
+
"description": ""
|
|
16480
|
+
}
|
|
16481
|
+
},
|
|
16482
|
+
"preview": null,
|
|
16483
|
+
"layoutHints": null
|
|
16484
|
+
},
|
|
15817
16485
|
"FileUpload": {
|
|
15818
16486
|
"name": "FileUpload",
|
|
15819
16487
|
"type": "molecule",
|
|
@@ -16225,6 +16893,36 @@
|
|
|
16225
16893
|
"preview": null,
|
|
16226
16894
|
"layoutHints": null
|
|
16227
16895
|
},
|
|
16896
|
+
"GoalAlignmentCard": {
|
|
16897
|
+
"name": "GoalAlignmentCard",
|
|
16898
|
+
"type": "molecule",
|
|
16899
|
+
"isBuilderComponent": true,
|
|
16900
|
+
"description": "",
|
|
16901
|
+
"props": {
|
|
16902
|
+
"title": {
|
|
16903
|
+
"type": "string",
|
|
16904
|
+
"required": true,
|
|
16905
|
+
"description": ""
|
|
16906
|
+
},
|
|
16907
|
+
"goals": {
|
|
16908
|
+
"type": "goalalignmentitem[]",
|
|
16909
|
+
"required": true,
|
|
16910
|
+
"description": ""
|
|
16911
|
+
},
|
|
16912
|
+
"theme": {
|
|
16913
|
+
"type": "widgettheme",
|
|
16914
|
+
"required": false,
|
|
16915
|
+
"description": ""
|
|
16916
|
+
},
|
|
16917
|
+
"className": {
|
|
16918
|
+
"type": "string",
|
|
16919
|
+
"required": false,
|
|
16920
|
+
"description": ""
|
|
16921
|
+
}
|
|
16922
|
+
},
|
|
16923
|
+
"preview": null,
|
|
16924
|
+
"layoutHints": null
|
|
16925
|
+
},
|
|
16228
16926
|
"AutoChart": {
|
|
16229
16927
|
"name": "AutoChart",
|
|
16230
16928
|
"type": "molecule",
|
|
@@ -16486,15 +17184,125 @@
|
|
|
16486
17184
|
"secondaryButton": {
|
|
16487
17185
|
"type": "{ label?: string; action: string; }",
|
|
16488
17186
|
"required": false,
|
|
16489
|
-
"description": "Optional secondary button (cancel/reset/back)."
|
|
17187
|
+
"description": "Optional secondary button (cancel/reset/back)."
|
|
17188
|
+
},
|
|
17189
|
+
"className": {
|
|
17190
|
+
"type": "string",
|
|
17191
|
+
"required": false,
|
|
17192
|
+
"description": ""
|
|
17193
|
+
},
|
|
17194
|
+
"style": {
|
|
17195
|
+
"type": "cssproperties",
|
|
17196
|
+
"required": false,
|
|
17197
|
+
"description": ""
|
|
17198
|
+
}
|
|
17199
|
+
},
|
|
17200
|
+
"preview": null,
|
|
17201
|
+
"layoutHints": null
|
|
17202
|
+
},
|
|
17203
|
+
"InsightDigestCard": {
|
|
17204
|
+
"name": "InsightDigestCard",
|
|
17205
|
+
"type": "molecule",
|
|
17206
|
+
"isBuilderComponent": true,
|
|
17207
|
+
"description": "",
|
|
17208
|
+
"props": {
|
|
17209
|
+
"title": {
|
|
17210
|
+
"type": "string",
|
|
17211
|
+
"required": true,
|
|
17212
|
+
"description": ""
|
|
17213
|
+
},
|
|
17214
|
+
"summary": {
|
|
17215
|
+
"type": "string",
|
|
17216
|
+
"required": false,
|
|
17217
|
+
"description": ""
|
|
17218
|
+
},
|
|
17219
|
+
"insights": {
|
|
17220
|
+
"type": "insightdigestitem[]",
|
|
17221
|
+
"required": true,
|
|
17222
|
+
"description": ""
|
|
17223
|
+
},
|
|
17224
|
+
"theme": {
|
|
17225
|
+
"type": "widgettheme",
|
|
17226
|
+
"required": false,
|
|
17227
|
+
"description": ""
|
|
17228
|
+
},
|
|
17229
|
+
"className": {
|
|
17230
|
+
"type": "string",
|
|
17231
|
+
"required": false,
|
|
17232
|
+
"description": ""
|
|
17233
|
+
}
|
|
17234
|
+
},
|
|
17235
|
+
"preview": null,
|
|
17236
|
+
"layoutHints": null
|
|
17237
|
+
},
|
|
17238
|
+
"InsightSummaryCard": {
|
|
17239
|
+
"name": "InsightSummaryCard",
|
|
17240
|
+
"type": "molecule",
|
|
17241
|
+
"isBuilderComponent": true,
|
|
17242
|
+
"description": "InsightSummaryCard\nCompact result widget for summary + key insights.",
|
|
17243
|
+
"props": {
|
|
17244
|
+
"title": {
|
|
17245
|
+
"type": "string",
|
|
17246
|
+
"required": true,
|
|
17247
|
+
"description": ""
|
|
17248
|
+
},
|
|
17249
|
+
"summary": {
|
|
17250
|
+
"type": "string",
|
|
17251
|
+
"required": false,
|
|
17252
|
+
"description": ""
|
|
17253
|
+
},
|
|
17254
|
+
"insights": {
|
|
17255
|
+
"type": "insightsummaryitem[]",
|
|
17256
|
+
"required": true,
|
|
17257
|
+
"description": ""
|
|
17258
|
+
},
|
|
17259
|
+
"className": {
|
|
17260
|
+
"type": "string",
|
|
17261
|
+
"required": false,
|
|
17262
|
+
"description": ""
|
|
17263
|
+
}
|
|
17264
|
+
},
|
|
17265
|
+
"preview": null,
|
|
17266
|
+
"layoutHints": null
|
|
17267
|
+
},
|
|
17268
|
+
"KPIStatsCard": {
|
|
17269
|
+
"name": "KPIStatsCard",
|
|
17270
|
+
"type": "molecule",
|
|
17271
|
+
"isBuilderComponent": true,
|
|
17272
|
+
"description": "",
|
|
17273
|
+
"props": {
|
|
17274
|
+
"title": {
|
|
17275
|
+
"type": "string",
|
|
17276
|
+
"required": false,
|
|
17277
|
+
"description": ""
|
|
17278
|
+
},
|
|
17279
|
+
"subtitle": {
|
|
17280
|
+
"type": "string",
|
|
17281
|
+
"required": false,
|
|
17282
|
+
"description": ""
|
|
17283
|
+
},
|
|
17284
|
+
"stats": {
|
|
17285
|
+
"type": "kpistatitem[]",
|
|
17286
|
+
"required": false,
|
|
17287
|
+
"description": ""
|
|
17288
|
+
},
|
|
17289
|
+
"items": {
|
|
17290
|
+
"type": "kpistatitem[]",
|
|
17291
|
+
"required": false,
|
|
17292
|
+
"description": ""
|
|
17293
|
+
},
|
|
17294
|
+
"theme": {
|
|
17295
|
+
"type": "widgettheme",
|
|
17296
|
+
"required": false,
|
|
17297
|
+
"description": ""
|
|
16490
17298
|
},
|
|
16491
17299
|
"className": {
|
|
16492
17300
|
"type": "string",
|
|
16493
17301
|
"required": false,
|
|
16494
17302
|
"description": ""
|
|
16495
17303
|
},
|
|
16496
|
-
"
|
|
16497
|
-
"type": "
|
|
17304
|
+
"onAction": {
|
|
17305
|
+
"type": "(action: any) => void",
|
|
16498
17306
|
"required": false,
|
|
16499
17307
|
"description": ""
|
|
16500
17308
|
}
|
|
@@ -16538,6 +17346,47 @@
|
|
|
16538
17346
|
"preview": null,
|
|
16539
17347
|
"layoutHints": null
|
|
16540
17348
|
},
|
|
17349
|
+
"NextStepCard": {
|
|
17350
|
+
"name": "NextStepCard",
|
|
17351
|
+
"type": "molecule",
|
|
17352
|
+
"isBuilderComponent": true,
|
|
17353
|
+
"description": "",
|
|
17354
|
+
"props": {
|
|
17355
|
+
"title": {
|
|
17356
|
+
"type": "string",
|
|
17357
|
+
"required": true,
|
|
17358
|
+
"description": ""
|
|
17359
|
+
},
|
|
17360
|
+
"steps": {
|
|
17361
|
+
"type": "nextstepitem[]",
|
|
17362
|
+
"required": true,
|
|
17363
|
+
"description": ""
|
|
17364
|
+
},
|
|
17365
|
+
"ctaLabel": {
|
|
17366
|
+
"type": "string",
|
|
17367
|
+
"required": false,
|
|
17368
|
+
"defaultValue": "Proceed",
|
|
17369
|
+
"description": ""
|
|
17370
|
+
},
|
|
17371
|
+
"theme": {
|
|
17372
|
+
"type": "widgettheme",
|
|
17373
|
+
"required": false,
|
|
17374
|
+
"description": ""
|
|
17375
|
+
},
|
|
17376
|
+
"className": {
|
|
17377
|
+
"type": "string",
|
|
17378
|
+
"required": false,
|
|
17379
|
+
"description": ""
|
|
17380
|
+
},
|
|
17381
|
+
"onAction": {
|
|
17382
|
+
"type": "(action: any) => void",
|
|
17383
|
+
"required": false,
|
|
17384
|
+
"description": ""
|
|
17385
|
+
}
|
|
17386
|
+
},
|
|
17387
|
+
"preview": null,
|
|
17388
|
+
"layoutHints": null
|
|
17389
|
+
},
|
|
16541
17390
|
"NotificationList": {
|
|
16542
17391
|
"name": "NotificationList",
|
|
16543
17392
|
"type": "molecule",
|
|
@@ -16579,6 +17428,106 @@
|
|
|
16579
17428
|
"preview": null,
|
|
16580
17429
|
"layoutHints": null
|
|
16581
17430
|
},
|
|
17431
|
+
"PollCard": {
|
|
17432
|
+
"name": "PollCard",
|
|
17433
|
+
"type": "molecule",
|
|
17434
|
+
"isBuilderComponent": true,
|
|
17435
|
+
"description": "",
|
|
17436
|
+
"props": {
|
|
17437
|
+
"question": {
|
|
17438
|
+
"type": "string",
|
|
17439
|
+
"required": true,
|
|
17440
|
+
"description": ""
|
|
17441
|
+
},
|
|
17442
|
+
"options": {
|
|
17443
|
+
"type": "polloption[]",
|
|
17444
|
+
"required": false,
|
|
17445
|
+
"description": ""
|
|
17446
|
+
},
|
|
17447
|
+
"choices": {
|
|
17448
|
+
"type": "polloption[]",
|
|
17449
|
+
"required": false,
|
|
17450
|
+
"description": ""
|
|
17451
|
+
},
|
|
17452
|
+
"total_votes": {
|
|
17453
|
+
"type": "number",
|
|
17454
|
+
"required": false,
|
|
17455
|
+
"description": ""
|
|
17456
|
+
},
|
|
17457
|
+
"allow_multiple": {
|
|
17458
|
+
"type": "boolean",
|
|
17459
|
+
"required": false,
|
|
17460
|
+
"description": ""
|
|
17461
|
+
},
|
|
17462
|
+
"vote_label": {
|
|
17463
|
+
"type": "string",
|
|
17464
|
+
"required": false,
|
|
17465
|
+
"description": ""
|
|
17466
|
+
},
|
|
17467
|
+
"isLatestMessage": {
|
|
17468
|
+
"type": "boolean",
|
|
17469
|
+
"required": false,
|
|
17470
|
+
"description": ""
|
|
17471
|
+
},
|
|
17472
|
+
"disabled": {
|
|
17473
|
+
"type": "boolean",
|
|
17474
|
+
"required": false,
|
|
17475
|
+
"description": ""
|
|
17476
|
+
},
|
|
17477
|
+
"theme": {
|
|
17478
|
+
"type": "widgettheme",
|
|
17479
|
+
"required": false,
|
|
17480
|
+
"description": ""
|
|
17481
|
+
},
|
|
17482
|
+
"className": {
|
|
17483
|
+
"type": "string",
|
|
17484
|
+
"required": false,
|
|
17485
|
+
"description": ""
|
|
17486
|
+
},
|
|
17487
|
+
"sendMessage": {
|
|
17488
|
+
"type": "(text: string) => void",
|
|
17489
|
+
"required": false,
|
|
17490
|
+
"description": ""
|
|
17491
|
+
},
|
|
17492
|
+
"onAction": {
|
|
17493
|
+
"type": "(action: any) => void",
|
|
17494
|
+
"required": false,
|
|
17495
|
+
"description": ""
|
|
17496
|
+
}
|
|
17497
|
+
},
|
|
17498
|
+
"preview": null,
|
|
17499
|
+
"layoutHints": null
|
|
17500
|
+
},
|
|
17501
|
+
"PriorityActionsCard": {
|
|
17502
|
+
"name": "PriorityActionsCard",
|
|
17503
|
+
"type": "molecule",
|
|
17504
|
+
"isBuilderComponent": true,
|
|
17505
|
+
"description": "PriorityActionsCard\nOutput widget that presents ranked next actions.",
|
|
17506
|
+
"props": {
|
|
17507
|
+
"title": {
|
|
17508
|
+
"type": "string",
|
|
17509
|
+
"required": true,
|
|
17510
|
+
"description": ""
|
|
17511
|
+
},
|
|
17512
|
+
"summary": {
|
|
17513
|
+
"type": "string",
|
|
17514
|
+
"required": false,
|
|
17515
|
+
"description": ""
|
|
17516
|
+
},
|
|
17517
|
+
"actions": {
|
|
17518
|
+
"type": "priorityactionitem[]",
|
|
17519
|
+
"required": true,
|
|
17520
|
+
"description": ""
|
|
17521
|
+
},
|
|
17522
|
+
"className": {
|
|
17523
|
+
"type": "string",
|
|
17524
|
+
"required": false,
|
|
17525
|
+
"description": ""
|
|
17526
|
+
}
|
|
17527
|
+
},
|
|
17528
|
+
"preview": null,
|
|
17529
|
+
"layoutHints": null
|
|
17530
|
+
},
|
|
16582
17531
|
"RecommendationCard": {
|
|
16583
17532
|
"name": "RecommendationCard",
|
|
16584
17533
|
"type": "molecule",
|
|
@@ -16634,6 +17583,124 @@
|
|
|
16634
17583
|
"preview": null,
|
|
16635
17584
|
"layoutHints": null
|
|
16636
17585
|
},
|
|
17586
|
+
"ResearchBriefCard": {
|
|
17587
|
+
"name": "ResearchBriefCard",
|
|
17588
|
+
"type": "molecule",
|
|
17589
|
+
"isBuilderComponent": true,
|
|
17590
|
+
"description": "ResearchBriefCard\nIntake widget for capturing research scope and required inputs.",
|
|
17591
|
+
"props": {
|
|
17592
|
+
"title": {
|
|
17593
|
+
"type": "string",
|
|
17594
|
+
"required": true,
|
|
17595
|
+
"description": ""
|
|
17596
|
+
},
|
|
17597
|
+
"objective": {
|
|
17598
|
+
"type": "string",
|
|
17599
|
+
"required": true,
|
|
17600
|
+
"description": ""
|
|
17601
|
+
},
|
|
17602
|
+
"constraints": {
|
|
17603
|
+
"type": "string[]",
|
|
17604
|
+
"required": false,
|
|
17605
|
+
"defaultValue": "[]",
|
|
17606
|
+
"description": ""
|
|
17607
|
+
},
|
|
17608
|
+
"requiredData": {
|
|
17609
|
+
"type": "researchbriefitem[]",
|
|
17610
|
+
"required": false,
|
|
17611
|
+
"defaultValue": "[]",
|
|
17612
|
+
"description": ""
|
|
17613
|
+
},
|
|
17614
|
+
"owner": {
|
|
17615
|
+
"type": "string",
|
|
17616
|
+
"required": false,
|
|
17617
|
+
"description": ""
|
|
17618
|
+
},
|
|
17619
|
+
"dueDate": {
|
|
17620
|
+
"type": "string",
|
|
17621
|
+
"required": false,
|
|
17622
|
+
"description": ""
|
|
17623
|
+
},
|
|
17624
|
+
"className": {
|
|
17625
|
+
"type": "string",
|
|
17626
|
+
"required": false,
|
|
17627
|
+
"description": ""
|
|
17628
|
+
}
|
|
17629
|
+
},
|
|
17630
|
+
"preview": null,
|
|
17631
|
+
"layoutHints": null
|
|
17632
|
+
},
|
|
17633
|
+
"RiskSignalCard": {
|
|
17634
|
+
"name": "RiskSignalCard",
|
|
17635
|
+
"type": "molecule",
|
|
17636
|
+
"isBuilderComponent": true,
|
|
17637
|
+
"description": "",
|
|
17638
|
+
"props": {
|
|
17639
|
+
"title": {
|
|
17640
|
+
"type": "string",
|
|
17641
|
+
"required": true,
|
|
17642
|
+
"description": ""
|
|
17643
|
+
},
|
|
17644
|
+
"risks": {
|
|
17645
|
+
"type": "risksignalitem[]",
|
|
17646
|
+
"required": true,
|
|
17647
|
+
"description": ""
|
|
17648
|
+
},
|
|
17649
|
+
"theme": {
|
|
17650
|
+
"type": "widgettheme",
|
|
17651
|
+
"required": false,
|
|
17652
|
+
"description": ""
|
|
17653
|
+
},
|
|
17654
|
+
"className": {
|
|
17655
|
+
"type": "string",
|
|
17656
|
+
"required": false,
|
|
17657
|
+
"description": ""
|
|
17658
|
+
}
|
|
17659
|
+
},
|
|
17660
|
+
"preview": null,
|
|
17661
|
+
"layoutHints": null
|
|
17662
|
+
},
|
|
17663
|
+
"ScoreBreakdownCard": {
|
|
17664
|
+
"name": "ScoreBreakdownCard",
|
|
17665
|
+
"type": "molecule",
|
|
17666
|
+
"isBuilderComponent": true,
|
|
17667
|
+
"description": "",
|
|
17668
|
+
"props": {
|
|
17669
|
+
"title": {
|
|
17670
|
+
"type": "string",
|
|
17671
|
+
"required": true,
|
|
17672
|
+
"description": ""
|
|
17673
|
+
},
|
|
17674
|
+
"totalScore": {
|
|
17675
|
+
"type": "number",
|
|
17676
|
+
"required": false,
|
|
17677
|
+
"description": ""
|
|
17678
|
+
},
|
|
17679
|
+
"outOf": {
|
|
17680
|
+
"type": "number",
|
|
17681
|
+
"required": false,
|
|
17682
|
+
"defaultValue": "100",
|
|
17683
|
+
"description": ""
|
|
17684
|
+
},
|
|
17685
|
+
"items": {
|
|
17686
|
+
"type": "scorebreakdownitem[]",
|
|
17687
|
+
"required": true,
|
|
17688
|
+
"description": ""
|
|
17689
|
+
},
|
|
17690
|
+
"theme": {
|
|
17691
|
+
"type": "widgettheme",
|
|
17692
|
+
"required": false,
|
|
17693
|
+
"description": ""
|
|
17694
|
+
},
|
|
17695
|
+
"className": {
|
|
17696
|
+
"type": "string",
|
|
17697
|
+
"required": false,
|
|
17698
|
+
"description": ""
|
|
17699
|
+
}
|
|
17700
|
+
},
|
|
17701
|
+
"preview": null,
|
|
17702
|
+
"layoutHints": null
|
|
17703
|
+
},
|
|
16637
17704
|
"PlatformPost": {
|
|
16638
17705
|
"name": "PlatformPost",
|
|
16639
17706
|
"type": "molecule",
|
|
@@ -16825,6 +17892,46 @@
|
|
|
16825
17892
|
},
|
|
16826
17893
|
"preview": null,
|
|
16827
17894
|
"layoutHints": null
|
|
17895
|
+
},
|
|
17896
|
+
"TimelineCard": {
|
|
17897
|
+
"name": "TimelineCard",
|
|
17898
|
+
"type": "molecule",
|
|
17899
|
+
"isBuilderComponent": true,
|
|
17900
|
+
"description": "",
|
|
17901
|
+
"props": {
|
|
17902
|
+
"title": {
|
|
17903
|
+
"type": "string",
|
|
17904
|
+
"required": false,
|
|
17905
|
+
"description": ""
|
|
17906
|
+
},
|
|
17907
|
+
"steps": {
|
|
17908
|
+
"type": "timelinestep[]",
|
|
17909
|
+
"required": false,
|
|
17910
|
+
"description": ""
|
|
17911
|
+
},
|
|
17912
|
+
"milestones": {
|
|
17913
|
+
"type": "timelinestep[]",
|
|
17914
|
+
"required": false,
|
|
17915
|
+
"description": ""
|
|
17916
|
+
},
|
|
17917
|
+
"theme": {
|
|
17918
|
+
"type": "widgettheme",
|
|
17919
|
+
"required": false,
|
|
17920
|
+
"description": ""
|
|
17921
|
+
},
|
|
17922
|
+
"className": {
|
|
17923
|
+
"type": "string",
|
|
17924
|
+
"required": false,
|
|
17925
|
+
"description": ""
|
|
17926
|
+
},
|
|
17927
|
+
"onAction": {
|
|
17928
|
+
"type": "(action: any) => void",
|
|
17929
|
+
"required": false,
|
|
17930
|
+
"description": ""
|
|
17931
|
+
}
|
|
17932
|
+
},
|
|
17933
|
+
"preview": null,
|
|
17934
|
+
"layoutHints": null
|
|
16828
17935
|
}
|
|
16829
17936
|
}
|
|
16830
17937
|
}
|