@almadar/patterns 2.1.0 → 2.2.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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  var version$3 = "1.0.0";
2
- var exportedAt$3 = "2026-03-06T07:07:47.853Z";
2
+ var exportedAt$3 = "2026-03-08T11:32:49.899Z";
3
3
  var patterns = {
4
4
  "entity-table": {
5
5
  type: "entity-table",
@@ -94,7 +94,8 @@ var patterns = {
94
94
  types: [
95
95
  "unknown"
96
96
  ],
97
- description: "Fields to display - accepts string[] or Column[] for unified interface. Alias for columns"
97
+ description: "Fields to display - accepts string[] or Column[] for unified interface. Alias for columns",
98
+ required: true
98
99
  },
99
100
  columns: {
100
101
  types: [
@@ -317,7 +318,8 @@ var patterns = {
317
318
  types: [
318
319
  "unknown"
319
320
  ],
320
- description: "Fields to display - accepts string[] or {key, header}[] for unified interface"
321
+ description: "Fields to display - accepts string[] or {key, header}[] for unified interface",
322
+ required: true
321
323
  },
322
324
  fieldNames: {
323
325
  types: [
@@ -450,7 +452,8 @@ var patterns = {
450
452
  types: [
451
453
  "unknown"
452
454
  ],
453
- description: "Fields to display - accepts string[] or {key, header}[] for unified interface"
455
+ description: "Fields to display - required for schema-driven rendering",
456
+ required: true
454
457
  },
455
458
  fieldNames: {
456
459
  types: [
@@ -487,6 +490,12 @@ var patterns = {
487
490
  "string"
488
491
  ],
489
492
  description: "Visual variant for the card grid"
493
+ },
494
+ imageField: {
495
+ types: [
496
+ "string"
497
+ ],
498
+ description: "Entity field name containing an image URL to display as card thumbnail"
490
499
  }
491
500
  }
492
501
  },
@@ -631,7 +640,8 @@ var patterns = {
631
640
  types: [
632
641
  "unknown"
633
642
  ],
634
- description: "Fields to display - accepts string[], {key, header}[], or DetailField[]"
643
+ description: "Fields to display - accepts string[], {key, header}[], or DetailField[]",
644
+ required: true
635
645
  },
636
646
  fieldNames: {
637
647
  types: [
@@ -841,7 +851,8 @@ var patterns = {
841
851
  entity: {
842
852
  types: [
843
853
  "string",
844
- "orbitalentity"
854
+ "orbitalentity",
855
+ "unknown"
845
856
  ],
846
857
  description: "Schema-based props"
847
858
  },
@@ -855,7 +866,8 @@ var patterns = {
855
866
  types: [
856
867
  "unknown"
857
868
  ],
858
- description: "Fields definition (schema format) - accepts readonly for generated const arrays"
869
+ description: "Fields definition (schema format) - accepts readonly for generated const arrays",
870
+ required: true
859
871
  },
860
872
  initialData: {
861
873
  types: [
@@ -912,6 +924,12 @@ var patterns = {
912
924
  ],
913
925
  description: "Event to dispatch on cancel (defaults to 'CANCEL')"
914
926
  },
927
+ entityId: {
928
+ types: [
929
+ "string"
930
+ ],
931
+ description: "Entity ID binding for edit mode (triggers initialData from selectedEntity in compiled code)"
932
+ },
915
933
  relationsData: {
916
934
  types: [
917
935
  "object"
@@ -1028,7 +1046,8 @@ var patterns = {
1028
1046
  entity: {
1029
1047
  types: [
1030
1048
  "string",
1031
- "orbitalentity"
1049
+ "orbitalentity",
1050
+ "unknown"
1032
1051
  ],
1033
1052
  description: "Schema-based props"
1034
1053
  },
@@ -1042,7 +1061,8 @@ var patterns = {
1042
1061
  types: [
1043
1062
  "unknown"
1044
1063
  ],
1045
- description: "Fields definition (schema format) - accepts readonly for generated const arrays"
1064
+ description: "Fields definition (schema format) - accepts readonly for generated const arrays",
1065
+ required: true
1046
1066
  },
1047
1067
  initialData: {
1048
1068
  types: [
@@ -1099,6 +1119,12 @@ var patterns = {
1099
1119
  ],
1100
1120
  description: "Event to dispatch on cancel (defaults to 'CANCEL')"
1101
1121
  },
1122
+ entityId: {
1123
+ types: [
1124
+ "string"
1125
+ ],
1126
+ description: "Entity ID binding for edit mode (triggers initialData from selectedEntity in compiled code)"
1127
+ },
1102
1128
  relationsData: {
1103
1129
  types: [
1104
1130
  "object"
@@ -8083,7 +8109,8 @@ var patterns = {
8083
8109
  types: [
8084
8110
  "unknown"
8085
8111
  ],
8086
- description: "Fields to display"
8112
+ description: "Fields to display",
8113
+ required: true
8087
8114
  },
8088
8115
  itemActions: {
8089
8116
  types: [
@@ -13505,6 +13532,492 @@ var patterns = {
13505
13532
  }
13506
13533
  }
13507
13534
  },
13535
+ "day-cell": {
13536
+ type: "day-cell",
13537
+ category: "component",
13538
+ description: "DayCell component",
13539
+ suggestedFor: [
13540
+ "day",
13541
+ "cell",
13542
+ "day cell"
13543
+ ],
13544
+ typicalSize: "small",
13545
+ propsSchema: {
13546
+ date: {
13547
+ types: [
13548
+ "date"
13549
+ ],
13550
+ description: "The date this cell represents",
13551
+ required: true
13552
+ },
13553
+ isToday: {
13554
+ types: [
13555
+ "boolean"
13556
+ ],
13557
+ description: "Whether this date is today"
13558
+ },
13559
+ onClick: {
13560
+ types: [
13561
+ "function"
13562
+ ],
13563
+ description: "Called when the day is clicked"
13564
+ },
13565
+ className: {
13566
+ types: [
13567
+ "string"
13568
+ ],
13569
+ description: "Additional CSS classes"
13570
+ }
13571
+ }
13572
+ },
13573
+ "flip-container": {
13574
+ type: "flip-container",
13575
+ category: "layout",
13576
+ description: "FlipContainer component",
13577
+ suggestedFor: [
13578
+ "flip",
13579
+ "container",
13580
+ "flip container"
13581
+ ],
13582
+ typicalSize: "small",
13583
+ propsSchema: {
13584
+ flipped: {
13585
+ types: [
13586
+ "boolean"
13587
+ ],
13588
+ description: "Whether the container is flipped (rotateY 180deg)",
13589
+ required: true
13590
+ },
13591
+ className: {
13592
+ types: [
13593
+ "string"
13594
+ ],
13595
+ description: "Optional className for the outer wrapper"
13596
+ },
13597
+ children: {
13598
+ types: [
13599
+ "node"
13600
+ ],
13601
+ description: "The two face elements (front and back)",
13602
+ required: true
13603
+ },
13604
+ onClick: {
13605
+ types: [
13606
+ "function"
13607
+ ],
13608
+ description: "Click handler on the outer wrapper"
13609
+ }
13610
+ }
13611
+ },
13612
+ "time-slot-cell": {
13613
+ type: "time-slot-cell",
13614
+ category: "layout",
13615
+ description: "TimeSlotCell component",
13616
+ suggestedFor: [
13617
+ "time",
13618
+ "slot",
13619
+ "cell",
13620
+ "time slot cell"
13621
+ ],
13622
+ typicalSize: "small",
13623
+ propsSchema: {
13624
+ time: {
13625
+ types: [
13626
+ "string"
13627
+ ],
13628
+ description: "Time label for this slot (e.g. \"09:00\")",
13629
+ required: true
13630
+ },
13631
+ onClick: {
13632
+ types: [
13633
+ "function"
13634
+ ],
13635
+ description: "Called when the slot is clicked"
13636
+ },
13637
+ className: {
13638
+ types: [
13639
+ "string"
13640
+ ],
13641
+ description: "Additional CSS classes"
13642
+ },
13643
+ children: {
13644
+ types: [
13645
+ "node"
13646
+ ],
13647
+ description: "Event content placed inside the slot"
13648
+ },
13649
+ isOccupied: {
13650
+ types: [
13651
+ "boolean"
13652
+ ],
13653
+ description: "Whether this slot contains an event"
13654
+ }
13655
+ }
13656
+ },
13657
+ "calendar-grid": {
13658
+ type: "calendar-grid",
13659
+ category: "display",
13660
+ description: "CalendarGrid component",
13661
+ suggestedFor: [
13662
+ "calendar",
13663
+ "grid",
13664
+ "calendar grid"
13665
+ ],
13666
+ typicalSize: "medium",
13667
+ propsSchema: {
13668
+ weekStart: {
13669
+ types: [
13670
+ "date"
13671
+ ],
13672
+ description: "Start of the week (defaults to current week's Monday)"
13673
+ },
13674
+ timeSlots: {
13675
+ types: [
13676
+ "array"
13677
+ ],
13678
+ description: "Time slot labels (defaults to 09:00-17:00)"
13679
+ },
13680
+ events: {
13681
+ types: [
13682
+ "array"
13683
+ ],
13684
+ description: "Events to display on the grid"
13685
+ },
13686
+ onSlotClick: {
13687
+ types: [
13688
+ "function"
13689
+ ],
13690
+ description: "Called when a time slot is clicked"
13691
+ },
13692
+ onDayClick: {
13693
+ types: [
13694
+ "function"
13695
+ ],
13696
+ description: "Called when a day header is clicked"
13697
+ },
13698
+ onEventClick: {
13699
+ types: [
13700
+ "function"
13701
+ ],
13702
+ description: "Called when an event is clicked"
13703
+ },
13704
+ className: {
13705
+ types: [
13706
+ "string"
13707
+ ],
13708
+ description: "Additional CSS classes"
13709
+ }
13710
+ }
13711
+ },
13712
+ "chart-legend": {
13713
+ type: "chart-legend",
13714
+ category: "display",
13715
+ description: "ChartLegend component",
13716
+ suggestedFor: [
13717
+ "chart",
13718
+ "legend",
13719
+ "chart legend"
13720
+ ],
13721
+ typicalSize: "medium",
13722
+ propsSchema: {
13723
+ items: {
13724
+ types: [
13725
+ "array"
13726
+ ],
13727
+ description: "Legend items with label and color",
13728
+ required: true
13729
+ },
13730
+ className: {
13731
+ types: [
13732
+ "string"
13733
+ ],
13734
+ description: "Additional CSS classes"
13735
+ },
13736
+ direction: {
13737
+ types: [
13738
+ "string"
13739
+ ],
13740
+ description: "Layout direction"
13741
+ }
13742
+ }
13743
+ },
13744
+ "date-range-selector": {
13745
+ type: "date-range-selector",
13746
+ category: "form",
13747
+ description: "DateRangeSelector component",
13748
+ suggestedFor: [
13749
+ "date",
13750
+ "range",
13751
+ "selector",
13752
+ "date range selector"
13753
+ ],
13754
+ typicalSize: "medium",
13755
+ propsSchema: {
13756
+ options: {
13757
+ types: [
13758
+ "array"
13759
+ ],
13760
+ description: "Available range options"
13761
+ },
13762
+ selected: {
13763
+ types: [
13764
+ "string"
13765
+ ],
13766
+ description: "Currently selected value"
13767
+ },
13768
+ onSelect: {
13769
+ types: [
13770
+ "function"
13771
+ ],
13772
+ description: "Callback when a range is selected"
13773
+ },
13774
+ className: {
13775
+ types: [
13776
+ "string"
13777
+ ],
13778
+ description: "Additional CSS classes"
13779
+ }
13780
+ }
13781
+ },
13782
+ "flip-card": {
13783
+ type: "flip-card",
13784
+ category: "display",
13785
+ description: "FlipCard component",
13786
+ suggestedFor: [
13787
+ "flip",
13788
+ "card",
13789
+ "flip card"
13790
+ ],
13791
+ typicalSize: "medium",
13792
+ propsSchema: {
13793
+ front: {
13794
+ types: [
13795
+ "node"
13796
+ ],
13797
+ description: "Content rendered on the front face",
13798
+ required: true
13799
+ },
13800
+ back: {
13801
+ types: [
13802
+ "node"
13803
+ ],
13804
+ description: "Content rendered on the back face",
13805
+ required: true
13806
+ },
13807
+ flipped: {
13808
+ types: [
13809
+ "boolean"
13810
+ ],
13811
+ description: "Controlled flip state"
13812
+ },
13813
+ onFlip: {
13814
+ types: [
13815
+ "function"
13816
+ ],
13817
+ description: "Callback when the card is clicked to flip"
13818
+ },
13819
+ className: {
13820
+ types: [
13821
+ "string"
13822
+ ],
13823
+ description: "Optional className for the outer container"
13824
+ },
13825
+ height: {
13826
+ types: [
13827
+ "string"
13828
+ ],
13829
+ description: "Card height as a Tailwind class (default: 'h-64')"
13830
+ }
13831
+ }
13832
+ },
13833
+ "graph-view": {
13834
+ type: "graph-view",
13835
+ category: "component",
13836
+ description: "GraphView component",
13837
+ suggestedFor: [
13838
+ "graph",
13839
+ "view",
13840
+ "graph view"
13841
+ ],
13842
+ typicalSize: "medium",
13843
+ propsSchema: {
13844
+ nodes: {
13845
+ types: [
13846
+ "array"
13847
+ ],
13848
+ description: "Graph nodes",
13849
+ required: true
13850
+ },
13851
+ edges: {
13852
+ types: [
13853
+ "array"
13854
+ ],
13855
+ description: "Graph edges",
13856
+ required: true
13857
+ },
13858
+ onNodeClick: {
13859
+ types: [
13860
+ "function"
13861
+ ],
13862
+ description: "Callback when a node is clicked"
13863
+ },
13864
+ onNodeHover: {
13865
+ types: [
13866
+ "function"
13867
+ ],
13868
+ description: "Callback when a node is hovered (null on leave)"
13869
+ },
13870
+ width: {
13871
+ types: [
13872
+ "number"
13873
+ ],
13874
+ description: "Width in pixels"
13875
+ },
13876
+ height: {
13877
+ types: [
13878
+ "number"
13879
+ ],
13880
+ description: "Height in pixels"
13881
+ },
13882
+ className: {
13883
+ types: [
13884
+ "string"
13885
+ ],
13886
+ description: "Additional CSS classes"
13887
+ },
13888
+ showLabels: {
13889
+ types: [
13890
+ "boolean"
13891
+ ],
13892
+ description: "Show node labels (default true)"
13893
+ },
13894
+ zoomToFit: {
13895
+ types: [
13896
+ "boolean"
13897
+ ],
13898
+ description: "Auto zoom-to-fit after layout settles (default true)"
13899
+ }
13900
+ }
13901
+ },
13902
+ "line-chart": {
13903
+ type: "line-chart",
13904
+ category: "display",
13905
+ description: "LineChart component",
13906
+ suggestedFor: [
13907
+ "line",
13908
+ "chart",
13909
+ "line chart"
13910
+ ],
13911
+ typicalSize: "medium",
13912
+ propsSchema: {
13913
+ data: {
13914
+ types: [
13915
+ "array"
13916
+ ],
13917
+ description: "Data points to plot",
13918
+ required: true
13919
+ },
13920
+ width: {
13921
+ types: [
13922
+ "number"
13923
+ ],
13924
+ description: "SVG viewBox width"
13925
+ },
13926
+ height: {
13927
+ types: [
13928
+ "number"
13929
+ ],
13930
+ description: "SVG viewBox height"
13931
+ },
13932
+ showGrid: {
13933
+ types: [
13934
+ "boolean"
13935
+ ],
13936
+ description: "Show horizontal grid lines at 25/50/75%"
13937
+ },
13938
+ showValues: {
13939
+ types: [
13940
+ "boolean"
13941
+ ],
13942
+ description: "Show value labels near data points"
13943
+ },
13944
+ showArea: {
13945
+ types: [
13946
+ "boolean"
13947
+ ],
13948
+ description: "Fill area under line with gradient"
13949
+ },
13950
+ lineColor: {
13951
+ types: [
13952
+ "string"
13953
+ ],
13954
+ description: "Line stroke color"
13955
+ },
13956
+ areaColor: {
13957
+ types: [
13958
+ "string"
13959
+ ],
13960
+ description: "Area fill color (used for gradient)"
13961
+ },
13962
+ className: {
13963
+ types: [
13964
+ "string"
13965
+ ],
13966
+ description: "Additional CSS classes"
13967
+ }
13968
+ }
13969
+ },
13970
+ "progress-dots": {
13971
+ type: "progress-dots",
13972
+ category: "component",
13973
+ description: "ProgressDots component",
13974
+ suggestedFor: [
13975
+ "progress",
13976
+ "dots",
13977
+ "progress dots"
13978
+ ],
13979
+ typicalSize: "medium",
13980
+ propsSchema: {
13981
+ count: {
13982
+ types: [
13983
+ "number"
13984
+ ],
13985
+ description: "Total number of dots",
13986
+ required: true
13987
+ },
13988
+ currentIndex: {
13989
+ types: [
13990
+ "number"
13991
+ ],
13992
+ description: "Current active index (0-based)",
13993
+ required: true
13994
+ },
13995
+ getState: {
13996
+ types: [
13997
+ "function"
13998
+ ],
13999
+ description: "Custom state resolver per dot index"
14000
+ },
14001
+ onDotClick: {
14002
+ types: [
14003
+ "function"
14004
+ ],
14005
+ description: "Callback when a dot is clicked"
14006
+ },
14007
+ className: {
14008
+ types: [
14009
+ "string"
14010
+ ],
14011
+ description: "Additional CSS classes"
14012
+ },
14013
+ size: {
14014
+ types: [
14015
+ "dotsize"
14016
+ ],
14017
+ description: "Dot size"
14018
+ }
14019
+ }
14020
+ },
13508
14021
  heading: {
13509
14022
  type: "heading",
13510
14023
  category: "component",
@@ -14444,7 +14957,7 @@ var integratorsRegistry = {
14444
14957
  };
14445
14958
 
14446
14959
  var version$1 = "1.0.0";
14447
- var exportedAt$1 = "2026-03-06T07:07:47.853Z";
14960
+ var exportedAt$1 = "2026-03-08T11:32:49.899Z";
14448
14961
  var mappings = {
14449
14962
  "page-header": {
14450
14963
  component: "PageHeader",
@@ -15384,6 +15897,56 @@ var mappings = {
15384
15897
  importPath: "@/components/organisms/VariablePanel",
15385
15898
  category: "display"
15386
15899
  },
15900
+ "day-cell": {
15901
+ component: "DayCell",
15902
+ importPath: "@/components/atoms/DayCell",
15903
+ category: "component"
15904
+ },
15905
+ "flip-container": {
15906
+ component: "FlipContainer",
15907
+ importPath: "@/components/atoms/FlipContainer",
15908
+ category: "layout"
15909
+ },
15910
+ "time-slot-cell": {
15911
+ component: "TimeSlotCell",
15912
+ importPath: "@/components/atoms/TimeSlotCell",
15913
+ category: "layout"
15914
+ },
15915
+ "calendar-grid": {
15916
+ component: "CalendarGrid",
15917
+ importPath: "@/components/molecules/CalendarGrid",
15918
+ category: "display"
15919
+ },
15920
+ "chart-legend": {
15921
+ component: "ChartLegend",
15922
+ importPath: "@/components/molecules/ChartLegend",
15923
+ category: "display"
15924
+ },
15925
+ "date-range-selector": {
15926
+ component: "DateRangeSelector",
15927
+ importPath: "@/components/molecules/DateRangeSelector",
15928
+ category: "form"
15929
+ },
15930
+ "flip-card": {
15931
+ component: "FlipCard",
15932
+ importPath: "@/components/molecules/FlipCard",
15933
+ category: "display"
15934
+ },
15935
+ "graph-view": {
15936
+ component: "GraphView",
15937
+ importPath: "@/components/molecules/GraphView",
15938
+ category: "component"
15939
+ },
15940
+ "line-chart": {
15941
+ component: "LineChart",
15942
+ importPath: "@/components/molecules/LineChart",
15943
+ category: "display"
15944
+ },
15945
+ "progress-dots": {
15946
+ component: "ProgressDots",
15947
+ importPath: "@/components/molecules/ProgressDots",
15948
+ category: "component"
15949
+ },
15387
15950
  heading: {
15388
15951
  component: "Typography",
15389
15952
  importPath: "@/components/atoms/Typography",
@@ -15402,7 +15965,7 @@ var componentMapping = {
15402
15965
  };
15403
15966
 
15404
15967
  var version = "1.0.0";
15405
- var exportedAt = "2026-03-06T07:07:47.853Z";
15968
+ var exportedAt = "2026-03-08T11:32:49.899Z";
15406
15969
  var contracts = {
15407
15970
  form: {
15408
15971
  emits: [
@@ -19701,6 +20264,7 @@ declare const registry: {
19701
20264
  fields: {
19702
20265
  types: string[];
19703
20266
  description: string;
20267
+ required: boolean;
19704
20268
  };
19705
20269
  columns: {
19706
20270
  types: string[];
@@ -19850,6 +20414,7 @@ declare const registry: {
19850
20414
  fields: {
19851
20415
  types: string[];
19852
20416
  description: string;
20417
+ required: boolean;
19853
20418
  };
19854
20419
  fieldNames: {
19855
20420
  types: string[];
@@ -19939,6 +20504,7 @@ declare const registry: {
19939
20504
  fields: {
19940
20505
  types: string[];
19941
20506
  description: string;
20507
+ required: boolean;
19942
20508
  };
19943
20509
  fieldNames: {
19944
20510
  types: string[];
@@ -19964,6 +20530,10 @@ declare const registry: {
19964
20530
  types: string[];
19965
20531
  description: string;
19966
20532
  };
20533
+ imageField: {
20534
+ types: string[];
20535
+ description: string;
20536
+ };
19967
20537
  };
19968
20538
  };
19969
20539
  "detail-panel": {
@@ -20060,6 +20630,7 @@ declare const registry: {
20060
20630
  fields: {
20061
20631
  types: string[];
20062
20632
  description: string;
20633
+ required: boolean;
20063
20634
  };
20064
20635
  fieldNames: {
20065
20636
  types: string[];
@@ -20206,6 +20777,7 @@ declare const registry: {
20206
20777
  fields: {
20207
20778
  types: string[];
20208
20779
  description: string;
20780
+ required: boolean;
20209
20781
  };
20210
20782
  initialData: {
20211
20783
  types: string[];
@@ -20243,6 +20815,10 @@ declare const registry: {
20243
20815
  types: string[];
20244
20816
  description: string;
20245
20817
  };
20818
+ entityId: {
20819
+ types: string[];
20820
+ description: string;
20821
+ };
20246
20822
  relationsData: {
20247
20823
  types: string[];
20248
20824
  description: string;
@@ -20327,6 +20903,7 @@ declare const registry: {
20327
20903
  fields: {
20328
20904
  types: string[];
20329
20905
  description: string;
20906
+ required: boolean;
20330
20907
  };
20331
20908
  initialData: {
20332
20909
  types: string[];
@@ -20364,6 +20941,10 @@ declare const registry: {
20364
20941
  types: string[];
20365
20942
  description: string;
20366
20943
  };
20944
+ entityId: {
20945
+ types: string[];
20946
+ description: string;
20947
+ };
20367
20948
  relationsData: {
20368
20949
  types: string[];
20369
20950
  description: string;
@@ -25083,6 +25664,7 @@ declare const registry: {
25083
25664
  fields: {
25084
25665
  types: string[];
25085
25666
  description: string;
25667
+ required: boolean;
25086
25668
  };
25087
25669
  itemActions: {
25088
25670
  types: string[];
@@ -28730,6 +29312,336 @@ declare const registry: {
28730
29312
  };
28731
29313
  };
28732
29314
  };
29315
+ "day-cell": {
29316
+ type: string;
29317
+ category: string;
29318
+ description: string;
29319
+ suggestedFor: string[];
29320
+ typicalSize: string;
29321
+ propsSchema: {
29322
+ date: {
29323
+ types: string[];
29324
+ description: string;
29325
+ required: boolean;
29326
+ };
29327
+ isToday: {
29328
+ types: string[];
29329
+ description: string;
29330
+ };
29331
+ onClick: {
29332
+ types: string[];
29333
+ description: string;
29334
+ };
29335
+ className: {
29336
+ types: string[];
29337
+ description: string;
29338
+ };
29339
+ };
29340
+ };
29341
+ "flip-container": {
29342
+ type: string;
29343
+ category: string;
29344
+ description: string;
29345
+ suggestedFor: string[];
29346
+ typicalSize: string;
29347
+ propsSchema: {
29348
+ flipped: {
29349
+ types: string[];
29350
+ description: string;
29351
+ required: boolean;
29352
+ };
29353
+ className: {
29354
+ types: string[];
29355
+ description: string;
29356
+ };
29357
+ children: {
29358
+ types: string[];
29359
+ description: string;
29360
+ required: boolean;
29361
+ };
29362
+ onClick: {
29363
+ types: string[];
29364
+ description: string;
29365
+ };
29366
+ };
29367
+ };
29368
+ "time-slot-cell": {
29369
+ type: string;
29370
+ category: string;
29371
+ description: string;
29372
+ suggestedFor: string[];
29373
+ typicalSize: string;
29374
+ propsSchema: {
29375
+ time: {
29376
+ types: string[];
29377
+ description: string;
29378
+ required: boolean;
29379
+ };
29380
+ onClick: {
29381
+ types: string[];
29382
+ description: string;
29383
+ };
29384
+ className: {
29385
+ types: string[];
29386
+ description: string;
29387
+ };
29388
+ children: {
29389
+ types: string[];
29390
+ description: string;
29391
+ };
29392
+ isOccupied: {
29393
+ types: string[];
29394
+ description: string;
29395
+ };
29396
+ };
29397
+ };
29398
+ "calendar-grid": {
29399
+ type: string;
29400
+ category: string;
29401
+ description: string;
29402
+ suggestedFor: string[];
29403
+ typicalSize: string;
29404
+ propsSchema: {
29405
+ weekStart: {
29406
+ types: string[];
29407
+ description: string;
29408
+ };
29409
+ timeSlots: {
29410
+ types: string[];
29411
+ description: string;
29412
+ };
29413
+ events: {
29414
+ types: string[];
29415
+ description: string;
29416
+ };
29417
+ onSlotClick: {
29418
+ types: string[];
29419
+ description: string;
29420
+ };
29421
+ onDayClick: {
29422
+ types: string[];
29423
+ description: string;
29424
+ };
29425
+ onEventClick: {
29426
+ types: string[];
29427
+ description: string;
29428
+ };
29429
+ className: {
29430
+ types: string[];
29431
+ description: string;
29432
+ };
29433
+ };
29434
+ };
29435
+ "chart-legend": {
29436
+ type: string;
29437
+ category: string;
29438
+ description: string;
29439
+ suggestedFor: string[];
29440
+ typicalSize: string;
29441
+ propsSchema: {
29442
+ items: {
29443
+ types: string[];
29444
+ description: string;
29445
+ required: boolean;
29446
+ };
29447
+ className: {
29448
+ types: string[];
29449
+ description: string;
29450
+ };
29451
+ direction: {
29452
+ types: string[];
29453
+ description: string;
29454
+ };
29455
+ };
29456
+ };
29457
+ "date-range-selector": {
29458
+ type: string;
29459
+ category: string;
29460
+ description: string;
29461
+ suggestedFor: string[];
29462
+ typicalSize: string;
29463
+ propsSchema: {
29464
+ options: {
29465
+ types: string[];
29466
+ description: string;
29467
+ };
29468
+ selected: {
29469
+ types: string[];
29470
+ description: string;
29471
+ };
29472
+ onSelect: {
29473
+ types: string[];
29474
+ description: string;
29475
+ };
29476
+ className: {
29477
+ types: string[];
29478
+ description: string;
29479
+ };
29480
+ };
29481
+ };
29482
+ "flip-card": {
29483
+ type: string;
29484
+ category: string;
29485
+ description: string;
29486
+ suggestedFor: string[];
29487
+ typicalSize: string;
29488
+ propsSchema: {
29489
+ front: {
29490
+ types: string[];
29491
+ description: string;
29492
+ required: boolean;
29493
+ };
29494
+ back: {
29495
+ types: string[];
29496
+ description: string;
29497
+ required: boolean;
29498
+ };
29499
+ flipped: {
29500
+ types: string[];
29501
+ description: string;
29502
+ };
29503
+ onFlip: {
29504
+ types: string[];
29505
+ description: string;
29506
+ };
29507
+ className: {
29508
+ types: string[];
29509
+ description: string;
29510
+ };
29511
+ height: {
29512
+ types: string[];
29513
+ description: string;
29514
+ };
29515
+ };
29516
+ };
29517
+ "graph-view": {
29518
+ type: string;
29519
+ category: string;
29520
+ description: string;
29521
+ suggestedFor: string[];
29522
+ typicalSize: string;
29523
+ propsSchema: {
29524
+ nodes: {
29525
+ types: string[];
29526
+ description: string;
29527
+ required: boolean;
29528
+ };
29529
+ edges: {
29530
+ types: string[];
29531
+ description: string;
29532
+ required: boolean;
29533
+ };
29534
+ onNodeClick: {
29535
+ types: string[];
29536
+ description: string;
29537
+ };
29538
+ onNodeHover: {
29539
+ types: string[];
29540
+ description: string;
29541
+ };
29542
+ width: {
29543
+ types: string[];
29544
+ description: string;
29545
+ };
29546
+ height: {
29547
+ types: string[];
29548
+ description: string;
29549
+ };
29550
+ className: {
29551
+ types: string[];
29552
+ description: string;
29553
+ };
29554
+ showLabels: {
29555
+ types: string[];
29556
+ description: string;
29557
+ };
29558
+ zoomToFit: {
29559
+ types: string[];
29560
+ description: string;
29561
+ };
29562
+ };
29563
+ };
29564
+ "line-chart": {
29565
+ type: string;
29566
+ category: string;
29567
+ description: string;
29568
+ suggestedFor: string[];
29569
+ typicalSize: string;
29570
+ propsSchema: {
29571
+ data: {
29572
+ types: string[];
29573
+ description: string;
29574
+ required: boolean;
29575
+ };
29576
+ width: {
29577
+ types: string[];
29578
+ description: string;
29579
+ };
29580
+ height: {
29581
+ types: string[];
29582
+ description: string;
29583
+ };
29584
+ showGrid: {
29585
+ types: string[];
29586
+ description: string;
29587
+ };
29588
+ showValues: {
29589
+ types: string[];
29590
+ description: string;
29591
+ };
29592
+ showArea: {
29593
+ types: string[];
29594
+ description: string;
29595
+ };
29596
+ lineColor: {
29597
+ types: string[];
29598
+ description: string;
29599
+ };
29600
+ areaColor: {
29601
+ types: string[];
29602
+ description: string;
29603
+ };
29604
+ className: {
29605
+ types: string[];
29606
+ description: string;
29607
+ };
29608
+ };
29609
+ };
29610
+ "progress-dots": {
29611
+ type: string;
29612
+ category: string;
29613
+ description: string;
29614
+ suggestedFor: string[];
29615
+ typicalSize: string;
29616
+ propsSchema: {
29617
+ count: {
29618
+ types: string[];
29619
+ description: string;
29620
+ required: boolean;
29621
+ };
29622
+ currentIndex: {
29623
+ types: string[];
29624
+ description: string;
29625
+ required: boolean;
29626
+ };
29627
+ getState: {
29628
+ types: string[];
29629
+ description: string;
29630
+ };
29631
+ onDotClick: {
29632
+ types: string[];
29633
+ description: string;
29634
+ };
29635
+ className: {
29636
+ types: string[];
29637
+ description: string;
29638
+ };
29639
+ size: {
29640
+ types: string[];
29641
+ description: string;
29642
+ };
29643
+ };
29644
+ };
28733
29645
  heading: {
28734
29646
  type: string;
28735
29647
  category: string;
@@ -28929,6 +29841,7 @@ declare const PATTERN_REGISTRY: {
28929
29841
  fields: {
28930
29842
  types: string[];
28931
29843
  description: string;
29844
+ required: boolean;
28932
29845
  };
28933
29846
  columns: {
28934
29847
  types: string[];
@@ -29078,6 +29991,7 @@ declare const PATTERN_REGISTRY: {
29078
29991
  fields: {
29079
29992
  types: string[];
29080
29993
  description: string;
29994
+ required: boolean;
29081
29995
  };
29082
29996
  fieldNames: {
29083
29997
  types: string[];
@@ -29167,6 +30081,7 @@ declare const PATTERN_REGISTRY: {
29167
30081
  fields: {
29168
30082
  types: string[];
29169
30083
  description: string;
30084
+ required: boolean;
29170
30085
  };
29171
30086
  fieldNames: {
29172
30087
  types: string[];
@@ -29192,6 +30107,10 @@ declare const PATTERN_REGISTRY: {
29192
30107
  types: string[];
29193
30108
  description: string;
29194
30109
  };
30110
+ imageField: {
30111
+ types: string[];
30112
+ description: string;
30113
+ };
29195
30114
  };
29196
30115
  };
29197
30116
  "detail-panel": {
@@ -29288,6 +30207,7 @@ declare const PATTERN_REGISTRY: {
29288
30207
  fields: {
29289
30208
  types: string[];
29290
30209
  description: string;
30210
+ required: boolean;
29291
30211
  };
29292
30212
  fieldNames: {
29293
30213
  types: string[];
@@ -29434,6 +30354,7 @@ declare const PATTERN_REGISTRY: {
29434
30354
  fields: {
29435
30355
  types: string[];
29436
30356
  description: string;
30357
+ required: boolean;
29437
30358
  };
29438
30359
  initialData: {
29439
30360
  types: string[];
@@ -29471,6 +30392,10 @@ declare const PATTERN_REGISTRY: {
29471
30392
  types: string[];
29472
30393
  description: string;
29473
30394
  };
30395
+ entityId: {
30396
+ types: string[];
30397
+ description: string;
30398
+ };
29474
30399
  relationsData: {
29475
30400
  types: string[];
29476
30401
  description: string;
@@ -29555,6 +30480,7 @@ declare const PATTERN_REGISTRY: {
29555
30480
  fields: {
29556
30481
  types: string[];
29557
30482
  description: string;
30483
+ required: boolean;
29558
30484
  };
29559
30485
  initialData: {
29560
30486
  types: string[];
@@ -29592,6 +30518,10 @@ declare const PATTERN_REGISTRY: {
29592
30518
  types: string[];
29593
30519
  description: string;
29594
30520
  };
30521
+ entityId: {
30522
+ types: string[];
30523
+ description: string;
30524
+ };
29595
30525
  relationsData: {
29596
30526
  types: string[];
29597
30527
  description: string;
@@ -34311,6 +35241,7 @@ declare const PATTERN_REGISTRY: {
34311
35241
  fields: {
34312
35242
  types: string[];
34313
35243
  description: string;
35244
+ required: boolean;
34314
35245
  };
34315
35246
  itemActions: {
34316
35247
  types: string[];
@@ -37958,6 +38889,336 @@ declare const PATTERN_REGISTRY: {
37958
38889
  };
37959
38890
  };
37960
38891
  };
38892
+ "day-cell": {
38893
+ type: string;
38894
+ category: string;
38895
+ description: string;
38896
+ suggestedFor: string[];
38897
+ typicalSize: string;
38898
+ propsSchema: {
38899
+ date: {
38900
+ types: string[];
38901
+ description: string;
38902
+ required: boolean;
38903
+ };
38904
+ isToday: {
38905
+ types: string[];
38906
+ description: string;
38907
+ };
38908
+ onClick: {
38909
+ types: string[];
38910
+ description: string;
38911
+ };
38912
+ className: {
38913
+ types: string[];
38914
+ description: string;
38915
+ };
38916
+ };
38917
+ };
38918
+ "flip-container": {
38919
+ type: string;
38920
+ category: string;
38921
+ description: string;
38922
+ suggestedFor: string[];
38923
+ typicalSize: string;
38924
+ propsSchema: {
38925
+ flipped: {
38926
+ types: string[];
38927
+ description: string;
38928
+ required: boolean;
38929
+ };
38930
+ className: {
38931
+ types: string[];
38932
+ description: string;
38933
+ };
38934
+ children: {
38935
+ types: string[];
38936
+ description: string;
38937
+ required: boolean;
38938
+ };
38939
+ onClick: {
38940
+ types: string[];
38941
+ description: string;
38942
+ };
38943
+ };
38944
+ };
38945
+ "time-slot-cell": {
38946
+ type: string;
38947
+ category: string;
38948
+ description: string;
38949
+ suggestedFor: string[];
38950
+ typicalSize: string;
38951
+ propsSchema: {
38952
+ time: {
38953
+ types: string[];
38954
+ description: string;
38955
+ required: boolean;
38956
+ };
38957
+ onClick: {
38958
+ types: string[];
38959
+ description: string;
38960
+ };
38961
+ className: {
38962
+ types: string[];
38963
+ description: string;
38964
+ };
38965
+ children: {
38966
+ types: string[];
38967
+ description: string;
38968
+ };
38969
+ isOccupied: {
38970
+ types: string[];
38971
+ description: string;
38972
+ };
38973
+ };
38974
+ };
38975
+ "calendar-grid": {
38976
+ type: string;
38977
+ category: string;
38978
+ description: string;
38979
+ suggestedFor: string[];
38980
+ typicalSize: string;
38981
+ propsSchema: {
38982
+ weekStart: {
38983
+ types: string[];
38984
+ description: string;
38985
+ };
38986
+ timeSlots: {
38987
+ types: string[];
38988
+ description: string;
38989
+ };
38990
+ events: {
38991
+ types: string[];
38992
+ description: string;
38993
+ };
38994
+ onSlotClick: {
38995
+ types: string[];
38996
+ description: string;
38997
+ };
38998
+ onDayClick: {
38999
+ types: string[];
39000
+ description: string;
39001
+ };
39002
+ onEventClick: {
39003
+ types: string[];
39004
+ description: string;
39005
+ };
39006
+ className: {
39007
+ types: string[];
39008
+ description: string;
39009
+ };
39010
+ };
39011
+ };
39012
+ "chart-legend": {
39013
+ type: string;
39014
+ category: string;
39015
+ description: string;
39016
+ suggestedFor: string[];
39017
+ typicalSize: string;
39018
+ propsSchema: {
39019
+ items: {
39020
+ types: string[];
39021
+ description: string;
39022
+ required: boolean;
39023
+ };
39024
+ className: {
39025
+ types: string[];
39026
+ description: string;
39027
+ };
39028
+ direction: {
39029
+ types: string[];
39030
+ description: string;
39031
+ };
39032
+ };
39033
+ };
39034
+ "date-range-selector": {
39035
+ type: string;
39036
+ category: string;
39037
+ description: string;
39038
+ suggestedFor: string[];
39039
+ typicalSize: string;
39040
+ propsSchema: {
39041
+ options: {
39042
+ types: string[];
39043
+ description: string;
39044
+ };
39045
+ selected: {
39046
+ types: string[];
39047
+ description: string;
39048
+ };
39049
+ onSelect: {
39050
+ types: string[];
39051
+ description: string;
39052
+ };
39053
+ className: {
39054
+ types: string[];
39055
+ description: string;
39056
+ };
39057
+ };
39058
+ };
39059
+ "flip-card": {
39060
+ type: string;
39061
+ category: string;
39062
+ description: string;
39063
+ suggestedFor: string[];
39064
+ typicalSize: string;
39065
+ propsSchema: {
39066
+ front: {
39067
+ types: string[];
39068
+ description: string;
39069
+ required: boolean;
39070
+ };
39071
+ back: {
39072
+ types: string[];
39073
+ description: string;
39074
+ required: boolean;
39075
+ };
39076
+ flipped: {
39077
+ types: string[];
39078
+ description: string;
39079
+ };
39080
+ onFlip: {
39081
+ types: string[];
39082
+ description: string;
39083
+ };
39084
+ className: {
39085
+ types: string[];
39086
+ description: string;
39087
+ };
39088
+ height: {
39089
+ types: string[];
39090
+ description: string;
39091
+ };
39092
+ };
39093
+ };
39094
+ "graph-view": {
39095
+ type: string;
39096
+ category: string;
39097
+ description: string;
39098
+ suggestedFor: string[];
39099
+ typicalSize: string;
39100
+ propsSchema: {
39101
+ nodes: {
39102
+ types: string[];
39103
+ description: string;
39104
+ required: boolean;
39105
+ };
39106
+ edges: {
39107
+ types: string[];
39108
+ description: string;
39109
+ required: boolean;
39110
+ };
39111
+ onNodeClick: {
39112
+ types: string[];
39113
+ description: string;
39114
+ };
39115
+ onNodeHover: {
39116
+ types: string[];
39117
+ description: string;
39118
+ };
39119
+ width: {
39120
+ types: string[];
39121
+ description: string;
39122
+ };
39123
+ height: {
39124
+ types: string[];
39125
+ description: string;
39126
+ };
39127
+ className: {
39128
+ types: string[];
39129
+ description: string;
39130
+ };
39131
+ showLabels: {
39132
+ types: string[];
39133
+ description: string;
39134
+ };
39135
+ zoomToFit: {
39136
+ types: string[];
39137
+ description: string;
39138
+ };
39139
+ };
39140
+ };
39141
+ "line-chart": {
39142
+ type: string;
39143
+ category: string;
39144
+ description: string;
39145
+ suggestedFor: string[];
39146
+ typicalSize: string;
39147
+ propsSchema: {
39148
+ data: {
39149
+ types: string[];
39150
+ description: string;
39151
+ required: boolean;
39152
+ };
39153
+ width: {
39154
+ types: string[];
39155
+ description: string;
39156
+ };
39157
+ height: {
39158
+ types: string[];
39159
+ description: string;
39160
+ };
39161
+ showGrid: {
39162
+ types: string[];
39163
+ description: string;
39164
+ };
39165
+ showValues: {
39166
+ types: string[];
39167
+ description: string;
39168
+ };
39169
+ showArea: {
39170
+ types: string[];
39171
+ description: string;
39172
+ };
39173
+ lineColor: {
39174
+ types: string[];
39175
+ description: string;
39176
+ };
39177
+ areaColor: {
39178
+ types: string[];
39179
+ description: string;
39180
+ };
39181
+ className: {
39182
+ types: string[];
39183
+ description: string;
39184
+ };
39185
+ };
39186
+ };
39187
+ "progress-dots": {
39188
+ type: string;
39189
+ category: string;
39190
+ description: string;
39191
+ suggestedFor: string[];
39192
+ typicalSize: string;
39193
+ propsSchema: {
39194
+ count: {
39195
+ types: string[];
39196
+ description: string;
39197
+ required: boolean;
39198
+ };
39199
+ currentIndex: {
39200
+ types: string[];
39201
+ description: string;
39202
+ required: boolean;
39203
+ };
39204
+ getState: {
39205
+ types: string[];
39206
+ description: string;
39207
+ };
39208
+ onDotClick: {
39209
+ types: string[];
39210
+ description: string;
39211
+ };
39212
+ className: {
39213
+ types: string[];
39214
+ description: string;
39215
+ };
39216
+ size: {
39217
+ types: string[];
39218
+ description: string;
39219
+ };
39220
+ };
39221
+ };
37961
39222
  heading: {
37962
39223
  type: string;
37963
39224
  category: string;
@@ -39601,6 +40862,56 @@ declare const COMPONENT_MAPPING: {
39601
40862
  importPath: string;
39602
40863
  category: string;
39603
40864
  };
40865
+ "day-cell": {
40866
+ component: string;
40867
+ importPath: string;
40868
+ category: string;
40869
+ };
40870
+ "flip-container": {
40871
+ component: string;
40872
+ importPath: string;
40873
+ category: string;
40874
+ };
40875
+ "time-slot-cell": {
40876
+ component: string;
40877
+ importPath: string;
40878
+ category: string;
40879
+ };
40880
+ "calendar-grid": {
40881
+ component: string;
40882
+ importPath: string;
40883
+ category: string;
40884
+ };
40885
+ "chart-legend": {
40886
+ component: string;
40887
+ importPath: string;
40888
+ category: string;
40889
+ };
40890
+ "date-range-selector": {
40891
+ component: string;
40892
+ importPath: string;
40893
+ category: string;
40894
+ };
40895
+ "flip-card": {
40896
+ component: string;
40897
+ importPath: string;
40898
+ category: string;
40899
+ };
40900
+ "graph-view": {
40901
+ component: string;
40902
+ importPath: string;
40903
+ category: string;
40904
+ };
40905
+ "line-chart": {
40906
+ component: string;
40907
+ importPath: string;
40908
+ category: string;
40909
+ };
40910
+ "progress-dots": {
40911
+ component: string;
40912
+ importPath: string;
40913
+ category: string;
40914
+ };
39604
40915
  heading: {
39605
40916
  component: string;
39606
40917
  importPath: string;