@almadar/patterns 2.1.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component-mapping.json +61 -1
- package/dist/event-contracts.json +1 -1
- package/dist/index.d.ts +1705 -16
- package/dist/index.js +852 -125
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +681 -14
- package/dist/registry.json +681 -14
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/patterns-registry.json
|
|
2
2
|
var patterns_registry_default = {
|
|
3
3
|
version: "1.0.0",
|
|
4
|
-
exportedAt: "2026-03-
|
|
4
|
+
exportedAt: "2026-03-09T08:08:00.655Z",
|
|
5
5
|
patterns: {
|
|
6
6
|
"entity-table": {
|
|
7
7
|
type: "entity-table",
|
|
@@ -96,7 +96,8 @@ var patterns_registry_default = {
|
|
|
96
96
|
types: [
|
|
97
97
|
"unknown"
|
|
98
98
|
],
|
|
99
|
-
description: "Fields to display - accepts string[] or Column[] for unified interface. Alias for columns"
|
|
99
|
+
description: "Fields to display - accepts string[] or Column[] for unified interface. Alias for columns",
|
|
100
|
+
required: true
|
|
100
101
|
},
|
|
101
102
|
columns: {
|
|
102
103
|
types: [
|
|
@@ -319,7 +320,8 @@ var patterns_registry_default = {
|
|
|
319
320
|
types: [
|
|
320
321
|
"unknown"
|
|
321
322
|
],
|
|
322
|
-
description: "Fields to display - accepts string[] or {key, header}[] for unified interface"
|
|
323
|
+
description: "Fields to display - accepts string[] or {key, header}[] for unified interface",
|
|
324
|
+
required: true
|
|
323
325
|
},
|
|
324
326
|
fieldNames: {
|
|
325
327
|
types: [
|
|
@@ -452,7 +454,8 @@ var patterns_registry_default = {
|
|
|
452
454
|
types: [
|
|
453
455
|
"unknown"
|
|
454
456
|
],
|
|
455
|
-
description: "Fields to display -
|
|
457
|
+
description: "Fields to display - required for schema-driven rendering",
|
|
458
|
+
required: true
|
|
456
459
|
},
|
|
457
460
|
fieldNames: {
|
|
458
461
|
types: [
|
|
@@ -489,6 +492,12 @@ var patterns_registry_default = {
|
|
|
489
492
|
"string"
|
|
490
493
|
],
|
|
491
494
|
description: "Visual variant for the card grid"
|
|
495
|
+
},
|
|
496
|
+
imageField: {
|
|
497
|
+
types: [
|
|
498
|
+
"string"
|
|
499
|
+
],
|
|
500
|
+
description: "Entity field name containing an image URL to display as card thumbnail"
|
|
492
501
|
}
|
|
493
502
|
}
|
|
494
503
|
},
|
|
@@ -633,7 +642,8 @@ var patterns_registry_default = {
|
|
|
633
642
|
types: [
|
|
634
643
|
"unknown"
|
|
635
644
|
],
|
|
636
|
-
description: "Fields to display - accepts string[], {key, header}[], or DetailField[]"
|
|
645
|
+
description: "Fields to display - accepts string[], {key, header}[], or DetailField[]",
|
|
646
|
+
required: true
|
|
637
647
|
},
|
|
638
648
|
fieldNames: {
|
|
639
649
|
types: [
|
|
@@ -843,7 +853,8 @@ var patterns_registry_default = {
|
|
|
843
853
|
entity: {
|
|
844
854
|
types: [
|
|
845
855
|
"string",
|
|
846
|
-
"orbitalentity"
|
|
856
|
+
"orbitalentity",
|
|
857
|
+
"unknown"
|
|
847
858
|
],
|
|
848
859
|
description: "Schema-based props"
|
|
849
860
|
},
|
|
@@ -857,7 +868,8 @@ var patterns_registry_default = {
|
|
|
857
868
|
types: [
|
|
858
869
|
"unknown"
|
|
859
870
|
],
|
|
860
|
-
description: "Fields definition (schema format) - accepts readonly for generated const arrays"
|
|
871
|
+
description: "Fields definition (schema format) - accepts readonly for generated const arrays",
|
|
872
|
+
required: true
|
|
861
873
|
},
|
|
862
874
|
initialData: {
|
|
863
875
|
types: [
|
|
@@ -914,6 +926,12 @@ var patterns_registry_default = {
|
|
|
914
926
|
],
|
|
915
927
|
description: "Event to dispatch on cancel (defaults to 'CANCEL')"
|
|
916
928
|
},
|
|
929
|
+
entityId: {
|
|
930
|
+
types: [
|
|
931
|
+
"string"
|
|
932
|
+
],
|
|
933
|
+
description: "Entity ID binding for edit mode (triggers initialData from selectedEntity in compiled code)"
|
|
934
|
+
},
|
|
917
935
|
relationsData: {
|
|
918
936
|
types: [
|
|
919
937
|
"object"
|
|
@@ -1030,7 +1048,8 @@ var patterns_registry_default = {
|
|
|
1030
1048
|
entity: {
|
|
1031
1049
|
types: [
|
|
1032
1050
|
"string",
|
|
1033
|
-
"orbitalentity"
|
|
1051
|
+
"orbitalentity",
|
|
1052
|
+
"unknown"
|
|
1034
1053
|
],
|
|
1035
1054
|
description: "Schema-based props"
|
|
1036
1055
|
},
|
|
@@ -1044,7 +1063,8 @@ var patterns_registry_default = {
|
|
|
1044
1063
|
types: [
|
|
1045
1064
|
"unknown"
|
|
1046
1065
|
],
|
|
1047
|
-
description: "Fields definition (schema format) - accepts readonly for generated const arrays"
|
|
1066
|
+
description: "Fields definition (schema format) - accepts readonly for generated const arrays",
|
|
1067
|
+
required: true
|
|
1048
1068
|
},
|
|
1049
1069
|
initialData: {
|
|
1050
1070
|
types: [
|
|
@@ -1101,6 +1121,12 @@ var patterns_registry_default = {
|
|
|
1101
1121
|
],
|
|
1102
1122
|
description: "Event to dispatch on cancel (defaults to 'CANCEL')"
|
|
1103
1123
|
},
|
|
1124
|
+
entityId: {
|
|
1125
|
+
types: [
|
|
1126
|
+
"string"
|
|
1127
|
+
],
|
|
1128
|
+
description: "Entity ID binding for edit mode (triggers initialData from selectedEntity in compiled code)"
|
|
1129
|
+
},
|
|
1104
1130
|
relationsData: {
|
|
1105
1131
|
types: [
|
|
1106
1132
|
"object"
|
|
@@ -3429,15 +3455,17 @@ var patterns_registry_default = {
|
|
|
3429
3455
|
},
|
|
3430
3456
|
icon: {
|
|
3431
3457
|
types: [
|
|
3432
|
-
"icon"
|
|
3458
|
+
"icon",
|
|
3459
|
+
"string"
|
|
3433
3460
|
],
|
|
3434
|
-
description:
|
|
3461
|
+
description: 'Left icon as Lucide icon component or string name (e.g. "plus", "trash")'
|
|
3435
3462
|
},
|
|
3436
3463
|
iconRight: {
|
|
3437
3464
|
types: [
|
|
3438
|
-
"icon"
|
|
3465
|
+
"icon",
|
|
3466
|
+
"string"
|
|
3439
3467
|
],
|
|
3440
|
-
description: "Right icon as Lucide icon component
|
|
3468
|
+
description: "Right icon as Lucide icon component or string name"
|
|
3441
3469
|
},
|
|
3442
3470
|
action: {
|
|
3443
3471
|
types: [
|
|
@@ -3487,6 +3515,12 @@ var patterns_registry_default = {
|
|
|
3487
3515
|
"number"
|
|
3488
3516
|
],
|
|
3489
3517
|
description: "Numeric count or amount to display in badge"
|
|
3518
|
+
},
|
|
3519
|
+
label: {
|
|
3520
|
+
types: [
|
|
3521
|
+
"string"
|
|
3522
|
+
],
|
|
3523
|
+
description: "Badge label text (alternative to children for schema-driven rendering)"
|
|
3490
3524
|
}
|
|
3491
3525
|
}
|
|
3492
3526
|
},
|
|
@@ -8085,7 +8119,8 @@ var patterns_registry_default = {
|
|
|
8085
8119
|
types: [
|
|
8086
8120
|
"unknown"
|
|
8087
8121
|
],
|
|
8088
|
-
description: "Fields to display"
|
|
8122
|
+
description: "Fields to display",
|
|
8123
|
+
required: true
|
|
8089
8124
|
},
|
|
8090
8125
|
itemActions: {
|
|
8091
8126
|
types: [
|
|
@@ -13507,213 +13542,845 @@ var patterns_registry_default = {
|
|
|
13507
13542
|
}
|
|
13508
13543
|
}
|
|
13509
13544
|
},
|
|
13510
|
-
|
|
13511
|
-
type: "
|
|
13545
|
+
"day-cell": {
|
|
13546
|
+
type: "day-cell",
|
|
13512
13547
|
category: "component",
|
|
13513
|
-
description: "
|
|
13548
|
+
description: "DayCell component",
|
|
13514
13549
|
suggestedFor: [
|
|
13515
|
-
"
|
|
13550
|
+
"day",
|
|
13551
|
+
"cell",
|
|
13552
|
+
"day cell"
|
|
13516
13553
|
],
|
|
13517
13554
|
typicalSize: "small",
|
|
13518
13555
|
propsSchema: {
|
|
13519
|
-
|
|
13556
|
+
date: {
|
|
13520
13557
|
types: [
|
|
13521
|
-
"
|
|
13558
|
+
"date"
|
|
13522
13559
|
],
|
|
13523
|
-
description: "
|
|
13560
|
+
description: "The date this cell represents",
|
|
13561
|
+
required: true
|
|
13524
13562
|
},
|
|
13525
|
-
|
|
13563
|
+
isToday: {
|
|
13526
13564
|
types: [
|
|
13527
|
-
"
|
|
13565
|
+
"boolean"
|
|
13528
13566
|
],
|
|
13529
|
-
description: "
|
|
13567
|
+
description: "Whether this date is today"
|
|
13530
13568
|
},
|
|
13531
|
-
|
|
13569
|
+
onClick: {
|
|
13532
13570
|
types: [
|
|
13533
|
-
"
|
|
13571
|
+
"function"
|
|
13534
13572
|
],
|
|
13535
|
-
description: "
|
|
13573
|
+
description: "Called when the day is clicked"
|
|
13536
13574
|
},
|
|
13537
|
-
|
|
13575
|
+
className: {
|
|
13538
13576
|
types: [
|
|
13539
13577
|
"string"
|
|
13540
13578
|
],
|
|
13541
|
-
description: "
|
|
13542
|
-
}
|
|
13543
|
-
|
|
13579
|
+
description: "Additional CSS classes"
|
|
13580
|
+
}
|
|
13581
|
+
}
|
|
13582
|
+
},
|
|
13583
|
+
"flip-container": {
|
|
13584
|
+
type: "flip-container",
|
|
13585
|
+
category: "layout",
|
|
13586
|
+
description: "FlipContainer component",
|
|
13587
|
+
suggestedFor: [
|
|
13588
|
+
"flip",
|
|
13589
|
+
"container",
|
|
13590
|
+
"flip container"
|
|
13591
|
+
],
|
|
13592
|
+
typicalSize: "small",
|
|
13593
|
+
propsSchema: {
|
|
13594
|
+
flipped: {
|
|
13544
13595
|
types: [
|
|
13545
|
-
"
|
|
13596
|
+
"boolean"
|
|
13546
13597
|
],
|
|
13547
|
-
description: "
|
|
13598
|
+
description: "Whether the container is flipped (rotateY 180deg)",
|
|
13599
|
+
required: true
|
|
13548
13600
|
},
|
|
13549
|
-
|
|
13601
|
+
className: {
|
|
13550
13602
|
types: [
|
|
13551
|
-
"
|
|
13603
|
+
"string"
|
|
13552
13604
|
],
|
|
13553
|
-
description: "
|
|
13605
|
+
description: "Optional className for the outer wrapper"
|
|
13554
13606
|
},
|
|
13555
|
-
|
|
13607
|
+
children: {
|
|
13556
13608
|
types: [
|
|
13557
|
-
"
|
|
13609
|
+
"node"
|
|
13558
13610
|
],
|
|
13559
|
-
description: "
|
|
13611
|
+
description: "The two face elements (front and back)",
|
|
13612
|
+
required: true
|
|
13560
13613
|
},
|
|
13561
|
-
|
|
13614
|
+
onClick: {
|
|
13562
13615
|
types: [
|
|
13563
|
-
"
|
|
13616
|
+
"function"
|
|
13564
13617
|
],
|
|
13565
|
-
description: "
|
|
13566
|
-
}
|
|
13567
|
-
|
|
13618
|
+
description: "Click handler on the outer wrapper"
|
|
13619
|
+
}
|
|
13620
|
+
}
|
|
13621
|
+
},
|
|
13622
|
+
"time-slot-cell": {
|
|
13623
|
+
type: "time-slot-cell",
|
|
13624
|
+
category: "layout",
|
|
13625
|
+
description: "TimeSlotCell component",
|
|
13626
|
+
suggestedFor: [
|
|
13627
|
+
"time",
|
|
13628
|
+
"slot",
|
|
13629
|
+
"cell",
|
|
13630
|
+
"time slot cell"
|
|
13631
|
+
],
|
|
13632
|
+
typicalSize: "small",
|
|
13633
|
+
propsSchema: {
|
|
13634
|
+
time: {
|
|
13568
13635
|
types: [
|
|
13569
|
-
"
|
|
13636
|
+
"string"
|
|
13570
13637
|
],
|
|
13571
|
-
description:
|
|
13638
|
+
description: 'Time label for this slot (e.g. "09:00")',
|
|
13639
|
+
required: true
|
|
13572
13640
|
},
|
|
13573
|
-
|
|
13641
|
+
onClick: {
|
|
13574
13642
|
types: [
|
|
13575
|
-
"
|
|
13643
|
+
"function"
|
|
13576
13644
|
],
|
|
13577
|
-
description: "
|
|
13645
|
+
description: "Called when the slot is clicked"
|
|
13578
13646
|
},
|
|
13579
13647
|
className: {
|
|
13580
13648
|
types: [
|
|
13581
13649
|
"string"
|
|
13582
13650
|
],
|
|
13583
|
-
description: "Additional
|
|
13584
|
-
},
|
|
13585
|
-
style: {
|
|
13586
|
-
types: [
|
|
13587
|
-
"object"
|
|
13588
|
-
],
|
|
13589
|
-
description: "Inline style"
|
|
13651
|
+
description: "Additional CSS classes"
|
|
13590
13652
|
},
|
|
13591
|
-
|
|
13653
|
+
children: {
|
|
13592
13654
|
types: [
|
|
13593
13655
|
"node"
|
|
13594
13656
|
],
|
|
13595
|
-
description: "
|
|
13657
|
+
description: "Event content placed inside the slot"
|
|
13596
13658
|
},
|
|
13597
|
-
|
|
13659
|
+
isOccupied: {
|
|
13598
13660
|
types: [
|
|
13599
|
-
"
|
|
13661
|
+
"boolean"
|
|
13600
13662
|
],
|
|
13601
|
-
description: "
|
|
13663
|
+
description: "Whether this slot contains an event"
|
|
13602
13664
|
}
|
|
13603
13665
|
}
|
|
13604
13666
|
},
|
|
13605
|
-
|
|
13606
|
-
type: "
|
|
13607
|
-
category: "
|
|
13608
|
-
description: "
|
|
13667
|
+
"calendar-grid": {
|
|
13668
|
+
type: "calendar-grid",
|
|
13669
|
+
category: "display",
|
|
13670
|
+
description: "CalendarGrid component",
|
|
13609
13671
|
suggestedFor: [
|
|
13610
|
-
"
|
|
13672
|
+
"calendar",
|
|
13673
|
+
"grid",
|
|
13674
|
+
"calendar grid"
|
|
13611
13675
|
],
|
|
13612
|
-
typicalSize: "
|
|
13676
|
+
typicalSize: "medium",
|
|
13613
13677
|
propsSchema: {
|
|
13614
|
-
|
|
13678
|
+
weekStart: {
|
|
13615
13679
|
types: [
|
|
13616
|
-
"
|
|
13680
|
+
"date"
|
|
13617
13681
|
],
|
|
13618
|
-
description: "
|
|
13682
|
+
description: "Start of the week (defaults to current week's Monday)"
|
|
13619
13683
|
},
|
|
13620
|
-
|
|
13684
|
+
timeSlots: {
|
|
13621
13685
|
types: [
|
|
13622
|
-
"
|
|
13686
|
+
"array"
|
|
13623
13687
|
],
|
|
13624
|
-
description: "
|
|
13688
|
+
description: "Time slot labels (defaults to 09:00-17:00)"
|
|
13625
13689
|
},
|
|
13626
|
-
|
|
13690
|
+
events: {
|
|
13627
13691
|
types: [
|
|
13628
|
-
"
|
|
13692
|
+
"array"
|
|
13629
13693
|
],
|
|
13630
|
-
description: "
|
|
13694
|
+
description: "Events to display on the grid"
|
|
13631
13695
|
},
|
|
13632
|
-
|
|
13696
|
+
onSlotClick: {
|
|
13633
13697
|
types: [
|
|
13634
|
-
"
|
|
13698
|
+
"function"
|
|
13635
13699
|
],
|
|
13636
|
-
description: "
|
|
13700
|
+
description: "Called when a time slot is clicked"
|
|
13637
13701
|
},
|
|
13638
|
-
|
|
13702
|
+
onDayClick: {
|
|
13639
13703
|
types: [
|
|
13640
|
-
"
|
|
13704
|
+
"function"
|
|
13641
13705
|
],
|
|
13642
|
-
description: "
|
|
13706
|
+
description: "Called when a day header is clicked"
|
|
13643
13707
|
},
|
|
13644
|
-
|
|
13708
|
+
onEventClick: {
|
|
13645
13709
|
types: [
|
|
13646
|
-
"
|
|
13710
|
+
"function"
|
|
13647
13711
|
],
|
|
13648
|
-
description: "
|
|
13712
|
+
description: "Called when an event is clicked"
|
|
13649
13713
|
},
|
|
13650
|
-
|
|
13714
|
+
className: {
|
|
13651
13715
|
types: [
|
|
13652
|
-
"
|
|
13716
|
+
"string"
|
|
13653
13717
|
],
|
|
13654
|
-
description: "
|
|
13718
|
+
description: "Additional CSS classes"
|
|
13719
|
+
}
|
|
13720
|
+
}
|
|
13721
|
+
},
|
|
13722
|
+
"chart-legend": {
|
|
13723
|
+
type: "chart-legend",
|
|
13724
|
+
category: "display",
|
|
13725
|
+
description: "ChartLegend component",
|
|
13726
|
+
suggestedFor: [
|
|
13727
|
+
"chart",
|
|
13728
|
+
"legend",
|
|
13729
|
+
"chart legend"
|
|
13730
|
+
],
|
|
13731
|
+
typicalSize: "medium",
|
|
13732
|
+
propsSchema: {
|
|
13733
|
+
items: {
|
|
13734
|
+
types: [
|
|
13735
|
+
"array"
|
|
13736
|
+
],
|
|
13737
|
+
description: "Legend items with label and color",
|
|
13738
|
+
required: true
|
|
13655
13739
|
},
|
|
13656
|
-
|
|
13740
|
+
className: {
|
|
13657
13741
|
types: [
|
|
13658
13742
|
"string"
|
|
13659
13743
|
],
|
|
13660
|
-
description: "
|
|
13744
|
+
description: "Additional CSS classes"
|
|
13661
13745
|
},
|
|
13662
|
-
|
|
13746
|
+
direction: {
|
|
13663
13747
|
types: [
|
|
13664
|
-
"
|
|
13748
|
+
"string"
|
|
13665
13749
|
],
|
|
13666
|
-
description: "
|
|
13750
|
+
description: "Layout direction"
|
|
13751
|
+
}
|
|
13752
|
+
}
|
|
13753
|
+
},
|
|
13754
|
+
"date-range-selector": {
|
|
13755
|
+
type: "date-range-selector",
|
|
13756
|
+
category: "form",
|
|
13757
|
+
description: "DateRangeSelector component",
|
|
13758
|
+
suggestedFor: [
|
|
13759
|
+
"date",
|
|
13760
|
+
"range",
|
|
13761
|
+
"selector",
|
|
13762
|
+
"date range selector"
|
|
13763
|
+
],
|
|
13764
|
+
typicalSize: "medium",
|
|
13765
|
+
propsSchema: {
|
|
13766
|
+
options: {
|
|
13767
|
+
types: [
|
|
13768
|
+
"array"
|
|
13769
|
+
],
|
|
13770
|
+
description: "Available range options"
|
|
13667
13771
|
},
|
|
13668
|
-
|
|
13772
|
+
selected: {
|
|
13669
13773
|
types: [
|
|
13670
13774
|
"string"
|
|
13671
13775
|
],
|
|
13672
|
-
description: "
|
|
13776
|
+
description: "Currently selected value"
|
|
13777
|
+
},
|
|
13778
|
+
onSelect: {
|
|
13779
|
+
types: [
|
|
13780
|
+
"function"
|
|
13781
|
+
],
|
|
13782
|
+
description: "Callback when a range is selected"
|
|
13673
13783
|
},
|
|
13674
13784
|
className: {
|
|
13675
13785
|
types: [
|
|
13676
13786
|
"string"
|
|
13677
13787
|
],
|
|
13678
|
-
description: "Additional
|
|
13679
|
-
}
|
|
13680
|
-
|
|
13788
|
+
description: "Additional CSS classes"
|
|
13789
|
+
}
|
|
13790
|
+
}
|
|
13791
|
+
},
|
|
13792
|
+
"flip-card": {
|
|
13793
|
+
type: "flip-card",
|
|
13794
|
+
category: "display",
|
|
13795
|
+
description: "FlipCard component",
|
|
13796
|
+
suggestedFor: [
|
|
13797
|
+
"flip",
|
|
13798
|
+
"card",
|
|
13799
|
+
"flip card"
|
|
13800
|
+
],
|
|
13801
|
+
typicalSize: "medium",
|
|
13802
|
+
propsSchema: {
|
|
13803
|
+
front: {
|
|
13681
13804
|
types: [
|
|
13682
|
-
"
|
|
13805
|
+
"node"
|
|
13683
13806
|
],
|
|
13684
|
-
description: "
|
|
13807
|
+
description: "Content rendered on the front face",
|
|
13808
|
+
required: true
|
|
13685
13809
|
},
|
|
13686
|
-
|
|
13810
|
+
back: {
|
|
13687
13811
|
types: [
|
|
13688
13812
|
"node"
|
|
13689
13813
|
],
|
|
13690
|
-
description: "
|
|
13814
|
+
description: "Content rendered on the back face",
|
|
13815
|
+
required: true
|
|
13691
13816
|
},
|
|
13692
|
-
|
|
13817
|
+
flipped: {
|
|
13693
13818
|
types: [
|
|
13694
|
-
"
|
|
13819
|
+
"boolean"
|
|
13695
13820
|
],
|
|
13696
|
-
description: "
|
|
13821
|
+
description: "Controlled flip state"
|
|
13822
|
+
},
|
|
13823
|
+
onFlip: {
|
|
13824
|
+
types: [
|
|
13825
|
+
"function"
|
|
13826
|
+
],
|
|
13827
|
+
description: "Callback when the card is clicked to flip"
|
|
13828
|
+
},
|
|
13829
|
+
className: {
|
|
13830
|
+
types: [
|
|
13831
|
+
"string"
|
|
13832
|
+
],
|
|
13833
|
+
description: "Optional className for the outer container"
|
|
13834
|
+
},
|
|
13835
|
+
height: {
|
|
13836
|
+
types: [
|
|
13837
|
+
"string"
|
|
13838
|
+
],
|
|
13839
|
+
description: "Card height as a Tailwind class (default: 'h-64')"
|
|
13697
13840
|
}
|
|
13698
13841
|
}
|
|
13699
|
-
}
|
|
13700
|
-
|
|
13701
|
-
|
|
13702
|
-
|
|
13703
|
-
|
|
13704
|
-
|
|
13705
|
-
|
|
13706
|
-
|
|
13707
|
-
|
|
13708
|
-
|
|
13709
|
-
|
|
13710
|
-
|
|
13711
|
-
|
|
13712
|
-
|
|
13713
|
-
|
|
13714
|
-
|
|
13715
|
-
|
|
13716
|
-
|
|
13842
|
+
},
|
|
13843
|
+
"graph-view": {
|
|
13844
|
+
type: "graph-view",
|
|
13845
|
+
category: "component",
|
|
13846
|
+
description: "GraphView component",
|
|
13847
|
+
suggestedFor: [
|
|
13848
|
+
"graph",
|
|
13849
|
+
"view",
|
|
13850
|
+
"graph view"
|
|
13851
|
+
],
|
|
13852
|
+
typicalSize: "medium",
|
|
13853
|
+
propsSchema: {
|
|
13854
|
+
nodes: {
|
|
13855
|
+
types: [
|
|
13856
|
+
"array"
|
|
13857
|
+
],
|
|
13858
|
+
description: "Graph nodes",
|
|
13859
|
+
required: true
|
|
13860
|
+
},
|
|
13861
|
+
edges: {
|
|
13862
|
+
types: [
|
|
13863
|
+
"array"
|
|
13864
|
+
],
|
|
13865
|
+
description: "Graph edges",
|
|
13866
|
+
required: true
|
|
13867
|
+
},
|
|
13868
|
+
onNodeClick: {
|
|
13869
|
+
types: [
|
|
13870
|
+
"function"
|
|
13871
|
+
],
|
|
13872
|
+
description: "Callback when a node is clicked"
|
|
13873
|
+
},
|
|
13874
|
+
onNodeHover: {
|
|
13875
|
+
types: [
|
|
13876
|
+
"function"
|
|
13877
|
+
],
|
|
13878
|
+
description: "Callback when a node is hovered (null on leave)"
|
|
13879
|
+
},
|
|
13880
|
+
width: {
|
|
13881
|
+
types: [
|
|
13882
|
+
"number"
|
|
13883
|
+
],
|
|
13884
|
+
description: "Width in pixels"
|
|
13885
|
+
},
|
|
13886
|
+
height: {
|
|
13887
|
+
types: [
|
|
13888
|
+
"number"
|
|
13889
|
+
],
|
|
13890
|
+
description: "Height in pixels"
|
|
13891
|
+
},
|
|
13892
|
+
className: {
|
|
13893
|
+
types: [
|
|
13894
|
+
"string"
|
|
13895
|
+
],
|
|
13896
|
+
description: "Additional CSS classes"
|
|
13897
|
+
},
|
|
13898
|
+
showLabels: {
|
|
13899
|
+
types: [
|
|
13900
|
+
"boolean"
|
|
13901
|
+
],
|
|
13902
|
+
description: "Show node labels (default true)"
|
|
13903
|
+
},
|
|
13904
|
+
zoomToFit: {
|
|
13905
|
+
types: [
|
|
13906
|
+
"boolean"
|
|
13907
|
+
],
|
|
13908
|
+
description: "Auto zoom-to-fit after layout settles (default true)"
|
|
13909
|
+
}
|
|
13910
|
+
}
|
|
13911
|
+
},
|
|
13912
|
+
"line-chart": {
|
|
13913
|
+
type: "line-chart",
|
|
13914
|
+
category: "display",
|
|
13915
|
+
description: "LineChart component",
|
|
13916
|
+
suggestedFor: [
|
|
13917
|
+
"line",
|
|
13918
|
+
"chart",
|
|
13919
|
+
"line chart"
|
|
13920
|
+
],
|
|
13921
|
+
typicalSize: "medium",
|
|
13922
|
+
propsSchema: {
|
|
13923
|
+
data: {
|
|
13924
|
+
types: [
|
|
13925
|
+
"array"
|
|
13926
|
+
],
|
|
13927
|
+
description: "Data points to plot",
|
|
13928
|
+
required: true
|
|
13929
|
+
},
|
|
13930
|
+
width: {
|
|
13931
|
+
types: [
|
|
13932
|
+
"number"
|
|
13933
|
+
],
|
|
13934
|
+
description: "SVG viewBox width"
|
|
13935
|
+
},
|
|
13936
|
+
height: {
|
|
13937
|
+
types: [
|
|
13938
|
+
"number"
|
|
13939
|
+
],
|
|
13940
|
+
description: "SVG viewBox height"
|
|
13941
|
+
},
|
|
13942
|
+
showGrid: {
|
|
13943
|
+
types: [
|
|
13944
|
+
"boolean"
|
|
13945
|
+
],
|
|
13946
|
+
description: "Show horizontal grid lines at 25/50/75%"
|
|
13947
|
+
},
|
|
13948
|
+
showValues: {
|
|
13949
|
+
types: [
|
|
13950
|
+
"boolean"
|
|
13951
|
+
],
|
|
13952
|
+
description: "Show value labels near data points"
|
|
13953
|
+
},
|
|
13954
|
+
showArea: {
|
|
13955
|
+
types: [
|
|
13956
|
+
"boolean"
|
|
13957
|
+
],
|
|
13958
|
+
description: "Fill area under line with gradient"
|
|
13959
|
+
},
|
|
13960
|
+
lineColor: {
|
|
13961
|
+
types: [
|
|
13962
|
+
"string"
|
|
13963
|
+
],
|
|
13964
|
+
description: "Line stroke color"
|
|
13965
|
+
},
|
|
13966
|
+
areaColor: {
|
|
13967
|
+
types: [
|
|
13968
|
+
"string"
|
|
13969
|
+
],
|
|
13970
|
+
description: "Area fill color (used for gradient)"
|
|
13971
|
+
},
|
|
13972
|
+
className: {
|
|
13973
|
+
types: [
|
|
13974
|
+
"string"
|
|
13975
|
+
],
|
|
13976
|
+
description: "Additional CSS classes"
|
|
13977
|
+
}
|
|
13978
|
+
}
|
|
13979
|
+
},
|
|
13980
|
+
"progress-dots": {
|
|
13981
|
+
type: "progress-dots",
|
|
13982
|
+
category: "component",
|
|
13983
|
+
description: "ProgressDots component",
|
|
13984
|
+
suggestedFor: [
|
|
13985
|
+
"progress",
|
|
13986
|
+
"dots",
|
|
13987
|
+
"progress dots"
|
|
13988
|
+
],
|
|
13989
|
+
typicalSize: "medium",
|
|
13990
|
+
propsSchema: {
|
|
13991
|
+
count: {
|
|
13992
|
+
types: [
|
|
13993
|
+
"number"
|
|
13994
|
+
],
|
|
13995
|
+
description: "Total number of dots",
|
|
13996
|
+
required: true
|
|
13997
|
+
},
|
|
13998
|
+
currentIndex: {
|
|
13999
|
+
types: [
|
|
14000
|
+
"number"
|
|
14001
|
+
],
|
|
14002
|
+
description: "Current active index (0-based)",
|
|
14003
|
+
required: true
|
|
14004
|
+
},
|
|
14005
|
+
getState: {
|
|
14006
|
+
types: [
|
|
14007
|
+
"function"
|
|
14008
|
+
],
|
|
14009
|
+
description: "Custom state resolver per dot index"
|
|
14010
|
+
},
|
|
14011
|
+
onDotClick: {
|
|
14012
|
+
types: [
|
|
14013
|
+
"function"
|
|
14014
|
+
],
|
|
14015
|
+
description: "Callback when a dot is clicked"
|
|
14016
|
+
},
|
|
14017
|
+
className: {
|
|
14018
|
+
types: [
|
|
14019
|
+
"string"
|
|
14020
|
+
],
|
|
14021
|
+
description: "Additional CSS classes"
|
|
14022
|
+
},
|
|
14023
|
+
size: {
|
|
14024
|
+
types: [
|
|
14025
|
+
"dotsize"
|
|
14026
|
+
],
|
|
14027
|
+
description: "Dot size"
|
|
14028
|
+
}
|
|
14029
|
+
}
|
|
14030
|
+
},
|
|
14031
|
+
"data-grid": {
|
|
14032
|
+
type: "data-grid",
|
|
14033
|
+
category: "display",
|
|
14034
|
+
description: "DataGrid component",
|
|
14035
|
+
suggestedFor: [
|
|
14036
|
+
"data",
|
|
14037
|
+
"grid",
|
|
14038
|
+
"data grid"
|
|
14039
|
+
],
|
|
14040
|
+
typicalSize: "medium",
|
|
14041
|
+
propsSchema: {
|
|
14042
|
+
entity: {
|
|
14043
|
+
types: [
|
|
14044
|
+
"unknown"
|
|
14045
|
+
],
|
|
14046
|
+
description: "Entity data array"
|
|
14047
|
+
},
|
|
14048
|
+
fields: {
|
|
14049
|
+
types: [
|
|
14050
|
+
"unknown"
|
|
14051
|
+
],
|
|
14052
|
+
description: "Field definitions for rendering each card"
|
|
14053
|
+
},
|
|
14054
|
+
columns: {
|
|
14055
|
+
types: [
|
|
14056
|
+
"unknown"
|
|
14057
|
+
],
|
|
14058
|
+
description: "Alias for fields (compiler generates `columns` for field definitions)"
|
|
14059
|
+
},
|
|
14060
|
+
itemActions: {
|
|
14061
|
+
types: [
|
|
14062
|
+
"unknown"
|
|
14063
|
+
],
|
|
14064
|
+
description: "Per-item action buttons"
|
|
14065
|
+
},
|
|
14066
|
+
cols: {
|
|
14067
|
+
types: [
|
|
14068
|
+
"number"
|
|
14069
|
+
],
|
|
14070
|
+
description: "Number of columns (uses auto-fit if omitted)"
|
|
14071
|
+
},
|
|
14072
|
+
gap: {
|
|
14073
|
+
types: [
|
|
14074
|
+
"string"
|
|
14075
|
+
],
|
|
14076
|
+
description: "Gap between cards"
|
|
14077
|
+
},
|
|
14078
|
+
minCardWidth: {
|
|
14079
|
+
types: [
|
|
14080
|
+
"number"
|
|
14081
|
+
],
|
|
14082
|
+
description: "Minimum card width in pixels (used when cols is not set, default 280)"
|
|
14083
|
+
},
|
|
14084
|
+
className: {
|
|
14085
|
+
types: [
|
|
14086
|
+
"string"
|
|
14087
|
+
],
|
|
14088
|
+
description: "Additional CSS classes"
|
|
14089
|
+
},
|
|
14090
|
+
isLoading: {
|
|
14091
|
+
types: [
|
|
14092
|
+
"boolean"
|
|
14093
|
+
],
|
|
14094
|
+
description: "Loading state"
|
|
14095
|
+
},
|
|
14096
|
+
error: {
|
|
14097
|
+
types: [
|
|
14098
|
+
"error"
|
|
14099
|
+
],
|
|
14100
|
+
description: "Error state"
|
|
14101
|
+
},
|
|
14102
|
+
imageField: {
|
|
14103
|
+
types: [
|
|
14104
|
+
"string"
|
|
14105
|
+
],
|
|
14106
|
+
description: "Entity field name containing an image URL for card thumbnails"
|
|
14107
|
+
}
|
|
14108
|
+
}
|
|
14109
|
+
},
|
|
14110
|
+
"data-list": {
|
|
14111
|
+
type: "data-list",
|
|
14112
|
+
category: "display",
|
|
14113
|
+
description: "DataList component",
|
|
14114
|
+
suggestedFor: [
|
|
14115
|
+
"data",
|
|
14116
|
+
"list",
|
|
14117
|
+
"data list"
|
|
14118
|
+
],
|
|
14119
|
+
typicalSize: "medium",
|
|
14120
|
+
propsSchema: {
|
|
14121
|
+
entity: {
|
|
14122
|
+
types: [
|
|
14123
|
+
"unknown"
|
|
14124
|
+
],
|
|
14125
|
+
description: "Entity data array"
|
|
14126
|
+
},
|
|
14127
|
+
fields: {
|
|
14128
|
+
types: [
|
|
14129
|
+
"unknown"
|
|
14130
|
+
],
|
|
14131
|
+
description: "Field definitions for rendering each row"
|
|
14132
|
+
},
|
|
14133
|
+
columns: {
|
|
14134
|
+
types: [
|
|
14135
|
+
"unknown"
|
|
14136
|
+
],
|
|
14137
|
+
description: "Alias for fields (compiler may generate `columns` for field definitions)"
|
|
14138
|
+
},
|
|
14139
|
+
itemActions: {
|
|
14140
|
+
types: [
|
|
14141
|
+
"unknown"
|
|
14142
|
+
],
|
|
14143
|
+
description: "Per-item action buttons"
|
|
14144
|
+
},
|
|
14145
|
+
gap: {
|
|
14146
|
+
types: [
|
|
14147
|
+
"string"
|
|
14148
|
+
],
|
|
14149
|
+
description: "Gap between rows"
|
|
14150
|
+
},
|
|
14151
|
+
variant: {
|
|
14152
|
+
types: [
|
|
14153
|
+
"string"
|
|
14154
|
+
],
|
|
14155
|
+
description: "Visual variant"
|
|
14156
|
+
},
|
|
14157
|
+
className: {
|
|
14158
|
+
types: [
|
|
14159
|
+
"string"
|
|
14160
|
+
],
|
|
14161
|
+
description: "Additional CSS classes"
|
|
14162
|
+
},
|
|
14163
|
+
isLoading: {
|
|
14164
|
+
types: [
|
|
14165
|
+
"boolean"
|
|
14166
|
+
],
|
|
14167
|
+
description: "Loading state"
|
|
14168
|
+
},
|
|
14169
|
+
error: {
|
|
14170
|
+
types: [
|
|
14171
|
+
"error"
|
|
14172
|
+
],
|
|
14173
|
+
description: "Error state"
|
|
14174
|
+
}
|
|
14175
|
+
}
|
|
14176
|
+
},
|
|
14177
|
+
heading: {
|
|
14178
|
+
type: "heading",
|
|
14179
|
+
category: "component",
|
|
14180
|
+
description: "Alias for typography \u2014 Typography Atom Component Text elements following the KFlow design system with theme-aware styling.",
|
|
14181
|
+
suggestedFor: [
|
|
14182
|
+
"typography"
|
|
14183
|
+
],
|
|
14184
|
+
typicalSize: "small",
|
|
14185
|
+
propsSchema: {
|
|
14186
|
+
variant: {
|
|
14187
|
+
types: [
|
|
14188
|
+
"typographyvariant"
|
|
14189
|
+
],
|
|
14190
|
+
description: "Typography variant"
|
|
14191
|
+
},
|
|
14192
|
+
level: {
|
|
14193
|
+
types: [
|
|
14194
|
+
"number"
|
|
14195
|
+
],
|
|
14196
|
+
description: "Heading level (1-6) - alternative to variant for headings"
|
|
14197
|
+
},
|
|
14198
|
+
color: {
|
|
14199
|
+
types: [
|
|
14200
|
+
"string"
|
|
14201
|
+
],
|
|
14202
|
+
description: "Text color"
|
|
14203
|
+
},
|
|
14204
|
+
align: {
|
|
14205
|
+
types: [
|
|
14206
|
+
"string"
|
|
14207
|
+
],
|
|
14208
|
+
description: "Text alignment"
|
|
14209
|
+
},
|
|
14210
|
+
weight: {
|
|
14211
|
+
types: [
|
|
14212
|
+
"string"
|
|
14213
|
+
],
|
|
14214
|
+
description: "Font weight override"
|
|
14215
|
+
},
|
|
14216
|
+
size: {
|
|
14217
|
+
types: [
|
|
14218
|
+
"typographysize"
|
|
14219
|
+
],
|
|
14220
|
+
description: "Font size override"
|
|
14221
|
+
},
|
|
14222
|
+
truncate: {
|
|
14223
|
+
types: [
|
|
14224
|
+
"boolean"
|
|
14225
|
+
],
|
|
14226
|
+
description: "Truncate with ellipsis (single line)"
|
|
14227
|
+
},
|
|
14228
|
+
overflow: {
|
|
14229
|
+
types: [
|
|
14230
|
+
"string"
|
|
14231
|
+
],
|
|
14232
|
+
description: "Overflow handling mode"
|
|
14233
|
+
},
|
|
14234
|
+
as: {
|
|
14235
|
+
types: [
|
|
14236
|
+
"unknown"
|
|
14237
|
+
],
|
|
14238
|
+
description: "Custom HTML element"
|
|
14239
|
+
},
|
|
14240
|
+
id: {
|
|
14241
|
+
types: [
|
|
14242
|
+
"string"
|
|
14243
|
+
],
|
|
14244
|
+
description: "HTML id attribute"
|
|
14245
|
+
},
|
|
14246
|
+
className: {
|
|
14247
|
+
types: [
|
|
14248
|
+
"string"
|
|
14249
|
+
],
|
|
14250
|
+
description: "Additional class names"
|
|
14251
|
+
},
|
|
14252
|
+
style: {
|
|
14253
|
+
types: [
|
|
14254
|
+
"object"
|
|
14255
|
+
],
|
|
14256
|
+
description: "Inline style"
|
|
14257
|
+
},
|
|
14258
|
+
content: {
|
|
14259
|
+
types: [
|
|
14260
|
+
"node"
|
|
14261
|
+
],
|
|
14262
|
+
description: "Text content (alternative to children)"
|
|
14263
|
+
},
|
|
14264
|
+
children: {
|
|
14265
|
+
types: [
|
|
14266
|
+
"node"
|
|
14267
|
+
],
|
|
14268
|
+
description: "Children elements"
|
|
14269
|
+
}
|
|
14270
|
+
}
|
|
14271
|
+
},
|
|
14272
|
+
text: {
|
|
14273
|
+
type: "text",
|
|
14274
|
+
category: "component",
|
|
14275
|
+
description: "Alias for typography \u2014 Typography Atom Component Text elements following the KFlow design system with theme-aware styling.",
|
|
14276
|
+
suggestedFor: [
|
|
14277
|
+
"typography"
|
|
14278
|
+
],
|
|
14279
|
+
typicalSize: "small",
|
|
14280
|
+
propsSchema: {
|
|
14281
|
+
variant: {
|
|
14282
|
+
types: [
|
|
14283
|
+
"typographyvariant"
|
|
14284
|
+
],
|
|
14285
|
+
description: "Typography variant"
|
|
14286
|
+
},
|
|
14287
|
+
level: {
|
|
14288
|
+
types: [
|
|
14289
|
+
"number"
|
|
14290
|
+
],
|
|
14291
|
+
description: "Heading level (1-6) - alternative to variant for headings"
|
|
14292
|
+
},
|
|
14293
|
+
color: {
|
|
14294
|
+
types: [
|
|
14295
|
+
"string"
|
|
14296
|
+
],
|
|
14297
|
+
description: "Text color"
|
|
14298
|
+
},
|
|
14299
|
+
align: {
|
|
14300
|
+
types: [
|
|
14301
|
+
"string"
|
|
14302
|
+
],
|
|
14303
|
+
description: "Text alignment"
|
|
14304
|
+
},
|
|
14305
|
+
weight: {
|
|
14306
|
+
types: [
|
|
14307
|
+
"string"
|
|
14308
|
+
],
|
|
14309
|
+
description: "Font weight override"
|
|
14310
|
+
},
|
|
14311
|
+
size: {
|
|
14312
|
+
types: [
|
|
14313
|
+
"typographysize"
|
|
14314
|
+
],
|
|
14315
|
+
description: "Font size override"
|
|
14316
|
+
},
|
|
14317
|
+
truncate: {
|
|
14318
|
+
types: [
|
|
14319
|
+
"boolean"
|
|
14320
|
+
],
|
|
14321
|
+
description: "Truncate with ellipsis (single line)"
|
|
14322
|
+
},
|
|
14323
|
+
overflow: {
|
|
14324
|
+
types: [
|
|
14325
|
+
"string"
|
|
14326
|
+
],
|
|
14327
|
+
description: "Overflow handling mode"
|
|
14328
|
+
},
|
|
14329
|
+
as: {
|
|
14330
|
+
types: [
|
|
14331
|
+
"unknown"
|
|
14332
|
+
],
|
|
14333
|
+
description: "Custom HTML element"
|
|
14334
|
+
},
|
|
14335
|
+
id: {
|
|
14336
|
+
types: [
|
|
14337
|
+
"string"
|
|
14338
|
+
],
|
|
14339
|
+
description: "HTML id attribute"
|
|
14340
|
+
},
|
|
14341
|
+
className: {
|
|
14342
|
+
types: [
|
|
14343
|
+
"string"
|
|
14344
|
+
],
|
|
14345
|
+
description: "Additional class names"
|
|
14346
|
+
},
|
|
14347
|
+
style: {
|
|
14348
|
+
types: [
|
|
14349
|
+
"object"
|
|
14350
|
+
],
|
|
14351
|
+
description: "Inline style"
|
|
14352
|
+
},
|
|
14353
|
+
content: {
|
|
14354
|
+
types: [
|
|
14355
|
+
"node"
|
|
14356
|
+
],
|
|
14357
|
+
description: "Text content (alternative to children)"
|
|
14358
|
+
},
|
|
14359
|
+
children: {
|
|
14360
|
+
types: [
|
|
14361
|
+
"node"
|
|
14362
|
+
],
|
|
14363
|
+
description: "Children elements"
|
|
14364
|
+
}
|
|
14365
|
+
}
|
|
14366
|
+
}
|
|
14367
|
+
},
|
|
14368
|
+
categories: [
|
|
14369
|
+
"display",
|
|
14370
|
+
"header",
|
|
14371
|
+
"form",
|
|
14372
|
+
"filter",
|
|
14373
|
+
"navigation",
|
|
14374
|
+
"state",
|
|
14375
|
+
"dashboard",
|
|
14376
|
+
"container",
|
|
14377
|
+
"layout",
|
|
14378
|
+
"game",
|
|
14379
|
+
"debug",
|
|
14380
|
+
"meta",
|
|
14381
|
+
"component",
|
|
14382
|
+
"template",
|
|
14383
|
+
"visualization",
|
|
13717
14384
|
"media"
|
|
13718
14385
|
]
|
|
13719
14386
|
};
|
|
@@ -14323,7 +14990,7 @@ var integrators_registry_default = {
|
|
|
14323
14990
|
// src/component-mapping.json
|
|
14324
14991
|
var component_mapping_default = {
|
|
14325
14992
|
version: "1.0.0",
|
|
14326
|
-
exportedAt: "2026-03-
|
|
14993
|
+
exportedAt: "2026-03-09T08:08:00.655Z",
|
|
14327
14994
|
mappings: {
|
|
14328
14995
|
"page-header": {
|
|
14329
14996
|
component: "PageHeader",
|
|
@@ -15263,6 +15930,66 @@ var component_mapping_default = {
|
|
|
15263
15930
|
importPath: "@/components/organisms/VariablePanel",
|
|
15264
15931
|
category: "display"
|
|
15265
15932
|
},
|
|
15933
|
+
"day-cell": {
|
|
15934
|
+
component: "DayCell",
|
|
15935
|
+
importPath: "@/components/atoms/DayCell",
|
|
15936
|
+
category: "component"
|
|
15937
|
+
},
|
|
15938
|
+
"flip-container": {
|
|
15939
|
+
component: "FlipContainer",
|
|
15940
|
+
importPath: "@/components/atoms/FlipContainer",
|
|
15941
|
+
category: "layout"
|
|
15942
|
+
},
|
|
15943
|
+
"time-slot-cell": {
|
|
15944
|
+
component: "TimeSlotCell",
|
|
15945
|
+
importPath: "@/components/atoms/TimeSlotCell",
|
|
15946
|
+
category: "layout"
|
|
15947
|
+
},
|
|
15948
|
+
"calendar-grid": {
|
|
15949
|
+
component: "CalendarGrid",
|
|
15950
|
+
importPath: "@/components/molecules/CalendarGrid",
|
|
15951
|
+
category: "display"
|
|
15952
|
+
},
|
|
15953
|
+
"chart-legend": {
|
|
15954
|
+
component: "ChartLegend",
|
|
15955
|
+
importPath: "@/components/molecules/ChartLegend",
|
|
15956
|
+
category: "display"
|
|
15957
|
+
},
|
|
15958
|
+
"date-range-selector": {
|
|
15959
|
+
component: "DateRangeSelector",
|
|
15960
|
+
importPath: "@/components/molecules/DateRangeSelector",
|
|
15961
|
+
category: "form"
|
|
15962
|
+
},
|
|
15963
|
+
"flip-card": {
|
|
15964
|
+
component: "FlipCard",
|
|
15965
|
+
importPath: "@/components/molecules/FlipCard",
|
|
15966
|
+
category: "display"
|
|
15967
|
+
},
|
|
15968
|
+
"graph-view": {
|
|
15969
|
+
component: "GraphView",
|
|
15970
|
+
importPath: "@/components/molecules/GraphView",
|
|
15971
|
+
category: "component"
|
|
15972
|
+
},
|
|
15973
|
+
"data-grid": {
|
|
15974
|
+
component: "DataGrid",
|
|
15975
|
+
importPath: "@/components/molecules/DataGrid",
|
|
15976
|
+
category: "display"
|
|
15977
|
+
},
|
|
15978
|
+
"data-list": {
|
|
15979
|
+
component: "DataList",
|
|
15980
|
+
importPath: "@/components/molecules/DataList",
|
|
15981
|
+
category: "display"
|
|
15982
|
+
},
|
|
15983
|
+
"line-chart": {
|
|
15984
|
+
component: "LineChart",
|
|
15985
|
+
importPath: "@/components/molecules/LineChart",
|
|
15986
|
+
category: "display"
|
|
15987
|
+
},
|
|
15988
|
+
"progress-dots": {
|
|
15989
|
+
component: "ProgressDots",
|
|
15990
|
+
importPath: "@/components/molecules/ProgressDots",
|
|
15991
|
+
category: "component"
|
|
15992
|
+
},
|
|
15266
15993
|
heading: {
|
|
15267
15994
|
component: "Typography",
|
|
15268
15995
|
importPath: "@/components/atoms/Typography",
|
|
@@ -15279,7 +16006,7 @@ var component_mapping_default = {
|
|
|
15279
16006
|
// src/event-contracts.json
|
|
15280
16007
|
var event_contracts_default = {
|
|
15281
16008
|
version: "1.0.0",
|
|
15282
|
-
exportedAt: "2026-03-
|
|
16009
|
+
exportedAt: "2026-03-09T08:08:00.655Z",
|
|
15283
16010
|
contracts: {
|
|
15284
16011
|
form: {
|
|
15285
16012
|
emits: [
|