@limetech/lime-crm-building-blocks 1.105.0 → 1.105.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/cjs/lime-crm-building-blocks.cjs.js +1 -1
  3. package/dist/cjs/limebb-document-item.cjs.entry.js +29 -8
  4. package/dist/cjs/limebb-document-picker.cjs.entry.js +3 -3
  5. package/dist/cjs/loader.cjs.js +1 -1
  6. package/dist/collection/components/chat-list/chat-item/chat-item.js +2 -2
  7. package/dist/collection/components/chat-list/chat-list.js +2 -2
  8. package/dist/collection/components/component-command-picker/component-config/component-config.js +2 -2
  9. package/dist/collection/components/component-command-picker/component-picker/component-picker.js +2 -2
  10. package/dist/collection/components/date-picker/date-picker.js +2 -2
  11. package/dist/collection/components/date-range/date-range.js +2 -2
  12. package/dist/collection/components/document-picker/document-item/document-item.js +55 -10
  13. package/dist/collection/components/document-picker/document-picker.js +5 -5
  14. package/dist/collection/components/feed/feed-item/feed-timeline-item.js +2 -2
  15. package/dist/collection/components/feed/feed.js +2 -2
  16. package/dist/collection/components/info-tile/info-tile.js +2 -2
  17. package/dist/collection/components/kanban/kanban-group/kanban-group.js +2 -2
  18. package/dist/collection/components/kanban/kanban-item/kanban-item.js +2 -2
  19. package/dist/collection/components/kanban/kanban.js +2 -2
  20. package/dist/collection/components/lime-query-builder/limetype-field/limetype-field.js +2 -2
  21. package/dist/collection/components/limeobject/file-viewer/file-viewer.js +2 -2
  22. package/dist/collection/components/loader/loader.js +2 -2
  23. package/dist/collection/components/locale-picker/locale-picker.js +2 -2
  24. package/dist/collection/components/notification-list/notification-item/notification-item.js +2 -2
  25. package/dist/collection/components/notification-list/notification-list.js +2 -2
  26. package/dist/collection/components/percentage-visualizer/percentage-visualizer.js +2 -2
  27. package/dist/collection/components/trend-indicator/trend-indicator.js +2 -2
  28. package/dist/components/document-item.js +31 -9
  29. package/dist/components/limebb-document-picker.js +3 -3
  30. package/dist/esm/lime-crm-building-blocks.js +1 -1
  31. package/dist/esm/limebb-document-item.entry.js +29 -8
  32. package/dist/esm/limebb-document-picker.entry.js +3 -3
  33. package/dist/esm/loader.js +1 -1
  34. package/dist/lime-crm-building-blocks/lime-crm-building-blocks.esm.js +1 -1
  35. package/dist/lime-crm-building-blocks/p-2673c79e.entry.js +1 -0
  36. package/dist/lime-crm-building-blocks/p-80b9d946.entry.js +1 -0
  37. package/dist/types/components/document-picker/document-item/document-item.d.ts +8 -1
  38. package/dist/types/components/document-picker/document-item/document-item.types.d.ts +3 -15
  39. package/dist/types/components.d.ts +96 -88
  40. package/package.json +4 -4
  41. package/dist/lime-crm-building-blocks/p-876701c6.entry.js +0 -1
  42. package/dist/lime-crm-building-blocks/p-9d25ed5a.entry.js +0 -1
@@ -85,7 +85,7 @@ export namespace Components {
85
85
  */
86
86
  interface LimebbChatItem {
87
87
  /**
88
- * The context this component belongs to
88
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
89
89
  * @inheritdoc
90
90
  */
91
91
  "context": LimeWebComponentContext;
@@ -102,7 +102,7 @@ export namespace Components {
102
102
  */
103
103
  "item": ChatItem;
104
104
  /**
105
- * Reference to the platform
105
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
106
106
  * @inheritdoc
107
107
  */
108
108
  "platform": LimeWebComponentPlatform;
@@ -123,7 +123,7 @@ export namespace Components {
123
123
  */
124
124
  interface LimebbChatList {
125
125
  /**
126
- * The context this component belongs to
126
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
127
127
  * @inheritdoc
128
128
  */
129
129
  "context": LimeWebComponentContext;
@@ -148,7 +148,7 @@ export namespace Components {
148
148
  */
149
149
  "order": 'newest-on-top' | 'oldest-on-top';
150
150
  /**
151
- * Reference to the platform
151
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
152
152
  * @inheritdoc
153
153
  */
154
154
  "platform": LimeWebComponentPlatform;
@@ -162,7 +162,7 @@ export namespace Components {
162
162
  */
163
163
  interface LimebbComponentConfig {
164
164
  /**
165
- * The context this component belongs to
165
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
166
166
  */
167
167
  "context": LimeWebComponentContext;
168
168
  /**
@@ -186,7 +186,7 @@ export namespace Components {
186
186
  */
187
187
  "nameField"?: string;
188
188
  /**
189
- * Reference to the platform
189
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
190
190
  */
191
191
  "platform": LimeWebComponentPlatform;
192
192
  /**
@@ -217,7 +217,7 @@ export namespace Components {
217
217
  */
218
218
  interface LimebbComponentPicker {
219
219
  /**
220
- * The context this component belongs to
220
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
221
221
  */
222
222
  "context": LimeWebComponentContext;
223
223
  /**
@@ -241,7 +241,7 @@ export namespace Components {
241
241
  */
242
242
  "label": string;
243
243
  /**
244
- * Reference to the platform
244
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
245
245
  */
246
246
  "platform": LimeWebComponentPlatform;
247
247
  /**
@@ -363,7 +363,7 @@ export namespace Components {
363
363
  */
364
364
  interface LimebbDatePicker {
365
365
  /**
366
- * The context this component belongs to
366
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
367
367
  * @inheritdoc
368
368
  */
369
369
  "context": LimeWebComponentContext;
@@ -388,7 +388,7 @@ export namespace Components {
388
388
  */
389
389
  "placeholder": string;
390
390
  /**
391
- * Reference to the platform
391
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
392
392
  * @inheritdoc
393
393
  */
394
394
  "platform": LimeWebComponentPlatform;
@@ -425,7 +425,7 @@ export namespace Components {
425
425
  */
426
426
  interface LimebbDateRange {
427
427
  /**
428
- * The context this component belongs to
428
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
429
429
  * @inheritdoc
430
430
  */
431
431
  "context": LimeWebComponentContext;
@@ -442,7 +442,7 @@ export namespace Components {
442
442
  */
443
443
  "language": Languages;
444
444
  /**
445
- * Reference to the platform
445
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
446
446
  * @inheritdoc
447
447
  */
448
448
  "platform": LimeWebComponentPlatform;
@@ -470,16 +470,20 @@ export namespace Components {
470
470
  */
471
471
  interface LimebbDocumentItem {
472
472
  /**
473
- * The context this component belongs to
473
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
474
474
  * @inheritdoc
475
475
  */
476
476
  "context": LimeWebComponentContext;
477
+ /**
478
+ * The preferred file URL types to use when displaying the document's image preview.
479
+ */
480
+ "fileTypes": LimeFileUrlType[];
477
481
  /**
478
482
  * The item to display in the document picker.
479
483
  */
480
484
  "item": DocumentItem;
481
485
  /**
482
- * Reference to the platform
486
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
483
487
  * @inheritdoc
484
488
  */
485
489
  "platform": LimeWebComponentPlatform;
@@ -502,7 +506,7 @@ export namespace Components {
502
506
  */
503
507
  interface LimebbDocumentPicker {
504
508
  /**
505
- * The context this component belongs to
509
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
506
510
  * @inheritdoc
507
511
  */
508
512
  "context": LimeWebComponentContext;
@@ -523,7 +527,7 @@ export namespace Components {
523
527
  */
524
528
  "label"?: string;
525
529
  /**
526
- * Reference to the platform
530
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
527
531
  * @inheritdoc
528
532
  */
529
533
  "platform": LimeWebComponentPlatform;
@@ -587,7 +591,7 @@ export namespace Components {
587
591
  */
588
592
  interface LimebbFeed {
589
593
  /**
590
- * The context this component belongs to
594
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
591
595
  * @inheritdoc
592
596
  */
593
597
  "context": LimeWebComponentContext;
@@ -624,7 +628,7 @@ export namespace Components {
624
628
  */
625
629
  "minutesOfProximity": number;
626
630
  /**
627
- * Reference to the platform
631
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
628
632
  * @inheritdoc
629
633
  */
630
634
  "platform": LimeWebComponentPlatform;
@@ -652,7 +656,7 @@ export namespace Components {
652
656
  */
653
657
  interface LimebbFeedTimelineItem {
654
658
  /**
655
- * The context this component belongs to
659
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
656
660
  * @inheritdoc
657
661
  */
658
662
  "context": LimeWebComponentContext;
@@ -673,7 +677,7 @@ export namespace Components {
673
677
  */
674
678
  "item": FeedItem;
675
679
  /**
676
- * Reference to the platform
680
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
677
681
  * @inheritdoc
678
682
  */
679
683
  "platform": LimeWebComponentPlatform;
@@ -751,7 +755,7 @@ export namespace Components {
751
755
  */
752
756
  "aggregateOperator": AggregateOperator;
753
757
  /**
754
- * The context this component belongs to
758
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
755
759
  */
756
760
  "context": LimeWebComponentContext;
757
761
  /**
@@ -772,7 +776,7 @@ export namespace Components {
772
776
  */
773
777
  "label"?: string | Record<string, string>;
774
778
  /**
775
- * Reference to the platform
779
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
776
780
  */
777
781
  "platform": LimeWebComponentPlatform;
778
782
  /**
@@ -869,7 +873,7 @@ export namespace Components {
869
873
  */
870
874
  interface LimebbKanban {
871
875
  /**
872
- * The context this component belongs to
876
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
873
877
  * @inheritdoc
874
878
  */
875
879
  "context": LimeWebComponentContext;
@@ -878,7 +882,7 @@ export namespace Components {
878
882
  */
879
883
  "groups": KanbanGroup[];
880
884
  /**
881
- * Reference to the platform
885
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
882
886
  * @inheritdoc
883
887
  */
884
888
  "platform": LimeWebComponentPlatform;
@@ -889,7 +893,7 @@ export namespace Components {
889
893
  */
890
894
  interface LimebbKanbanGroup {
891
895
  /**
892
- * The context this component belongs to
896
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
893
897
  * @inheritdoc
894
898
  */
895
899
  "context": LimeWebComponentContext;
@@ -914,7 +918,7 @@ export namespace Components {
914
918
  */
915
919
  "loading": boolean;
916
920
  /**
917
- * Reference to the platform
921
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
918
922
  * @inheritdoc
919
923
  */
920
924
  "platform": LimeWebComponentPlatform;
@@ -933,7 +937,7 @@ export namespace Components {
933
937
  */
934
938
  interface LimebbKanbanItem {
935
939
  /**
936
- * The context this component belongs to
940
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
937
941
  * @inheritdoc
938
942
  */
939
943
  "context": LimeWebComponentContext;
@@ -942,7 +946,7 @@ export namespace Components {
942
946
  */
943
947
  "item": KanbanItem;
944
948
  /**
945
- * Reference to the platform
949
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
946
950
  * @inheritdoc
947
951
  */
948
952
  "platform": LimeWebComponentPlatform;
@@ -1415,7 +1419,7 @@ export namespace Components {
1415
1419
  */
1416
1420
  interface LimebbLimeobjectFileViewer {
1417
1421
  /**
1418
- * The context this component belongs to
1422
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
1419
1423
  */
1420
1424
  "context": LimeWebComponentContext;
1421
1425
  /**
@@ -1423,7 +1427,7 @@ export namespace Components {
1423
1427
  */
1424
1428
  "fileTypes": LimeFileUrlType[];
1425
1429
  /**
1426
- * Reference to the platform
1430
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
1427
1431
  */
1428
1432
  "platform": LimeWebComponentPlatform;
1429
1433
  /**
@@ -1448,7 +1452,7 @@ export namespace Components {
1448
1452
  */
1449
1453
  interface LimebbLimetypeField {
1450
1454
  /**
1451
- * The context this component belongs to
1455
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
1452
1456
  * @inheritdoc
1453
1457
  */
1454
1458
  "context": LimeWebComponentContext;
@@ -1485,7 +1489,7 @@ export namespace Components {
1485
1489
  */
1486
1490
  "limetypes"?: string[];
1487
1491
  /**
1488
- * Reference to the platform
1492
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
1489
1493
  * @inheritdoc
1490
1494
  */
1491
1495
  "platform": LimeWebComponentPlatform;
@@ -1516,12 +1520,12 @@ export namespace Components {
1516
1520
  }
1517
1521
  interface LimebbLoader {
1518
1522
  /**
1519
- * The context this component belongs to
1523
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
1520
1524
  * @inheritdoc
1521
1525
  */
1522
1526
  "context": LimeWebComponentContext;
1523
1527
  /**
1524
- * Reference to the platform
1528
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
1525
1529
  * @inheritdoc
1526
1530
  */
1527
1531
  "platform": LimeWebComponentPlatform;
@@ -1535,7 +1539,7 @@ export namespace Components {
1535
1539
  */
1536
1540
  interface LimebbLocalePicker {
1537
1541
  /**
1538
- * The context this component belongs to
1542
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
1539
1543
  * @inheritdoc
1540
1544
  */
1541
1545
  "context": LimeWebComponentContext;
@@ -1559,7 +1563,7 @@ export namespace Components {
1559
1563
  */
1560
1564
  "multipleChoice"?: boolean;
1561
1565
  /**
1562
- * Reference to the platform
1566
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
1563
1567
  * @inheritdoc
1564
1568
  */
1565
1569
  "platform": LimeWebComponentPlatform;
@@ -1670,7 +1674,7 @@ export namespace Components {
1670
1674
  */
1671
1675
  interface LimebbNotificationItem {
1672
1676
  /**
1673
- * The context this component belongs to
1677
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
1674
1678
  * @inheritdoc
1675
1679
  */
1676
1680
  "context": LimeWebComponentContext;
@@ -1679,7 +1683,7 @@ export namespace Components {
1679
1683
  */
1680
1684
  "item": NotificationItem;
1681
1685
  /**
1682
- * Reference to the platform
1686
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
1683
1687
  * @inheritdoc
1684
1688
  */
1685
1689
  "platform": LimeWebComponentPlatform;
@@ -1696,7 +1700,7 @@ export namespace Components {
1696
1700
  */
1697
1701
  interface LimebbNotificationList {
1698
1702
  /**
1699
- * The context this component belongs to
1703
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
1700
1704
  * @inheritdoc
1701
1705
  */
1702
1706
  "context": LimeWebComponentContext;
@@ -1713,7 +1717,7 @@ export namespace Components {
1713
1717
  */
1714
1718
  "loading": boolean;
1715
1719
  /**
1716
- * Reference to the platform
1720
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
1717
1721
  * @inheritdoc
1718
1722
  */
1719
1723
  "platform": LimeWebComponentPlatform;
@@ -1738,7 +1742,7 @@ export namespace Components {
1738
1742
  */
1739
1743
  interface LimebbPercentageVisualizer {
1740
1744
  /**
1741
- * The context this component belongs to
1745
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
1742
1746
  * @inherit
1743
1747
  */
1744
1748
  "context": LimeWebComponentContext;
@@ -1763,7 +1767,7 @@ export namespace Components {
1763
1767
  */
1764
1768
  "multiplier": number;
1765
1769
  /**
1766
- * Reference to the platform
1770
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
1767
1771
  * @inherit
1768
1772
  */
1769
1773
  "platform": LimeWebComponentPlatform;
@@ -2057,7 +2061,7 @@ export namespace Components {
2057
2061
  */
2058
2062
  interface LimebbTrendIndicator {
2059
2063
  /**
2060
- * The context this component belongs to
2064
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
2061
2065
  * @inherit
2062
2066
  */
2063
2067
  "context": LimeWebComponentContext;
@@ -2078,7 +2082,7 @@ export namespace Components {
2078
2082
  */
2079
2083
  "label"?: string;
2080
2084
  /**
2081
- * Reference to the platform
2085
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
2082
2086
  * @inherit
2083
2087
  */
2084
2088
  "platform": LimeWebComponentPlatform;
@@ -3781,7 +3785,7 @@ declare namespace LocalJSX {
3781
3785
  */
3782
3786
  interface LimebbChatItem {
3783
3787
  /**
3784
- * The context this component belongs to
3788
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
3785
3789
  * @inheritdoc
3786
3790
  */
3787
3791
  "context"?: LimeWebComponentContext;
@@ -3798,7 +3802,7 @@ declare namespace LocalJSX {
3798
3802
  */
3799
3803
  "item"?: ChatItem;
3800
3804
  /**
3801
- * Reference to the platform
3805
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
3802
3806
  * @inheritdoc
3803
3807
  */
3804
3808
  "platform": LimeWebComponentPlatform;
@@ -3819,7 +3823,7 @@ declare namespace LocalJSX {
3819
3823
  */
3820
3824
  interface LimebbChatList {
3821
3825
  /**
3822
- * The context this component belongs to
3826
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
3823
3827
  * @inheritdoc
3824
3828
  */
3825
3829
  "context"?: LimeWebComponentContext;
@@ -3844,7 +3848,7 @@ declare namespace LocalJSX {
3844
3848
  */
3845
3849
  "order"?: 'newest-on-top' | 'oldest-on-top';
3846
3850
  /**
3847
- * Reference to the platform
3851
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
3848
3852
  * @inheritdoc
3849
3853
  */
3850
3854
  "platform": LimeWebComponentPlatform;
@@ -3858,7 +3862,7 @@ declare namespace LocalJSX {
3858
3862
  */
3859
3863
  interface LimebbComponentConfig {
3860
3864
  /**
3861
- * The context this component belongs to
3865
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
3862
3866
  */
3863
3867
  "context"?: LimeWebComponentContext;
3864
3868
  /**
@@ -3886,7 +3890,7 @@ declare namespace LocalJSX {
3886
3890
  */
3887
3891
  "onChange"?: (event: LimebbComponentConfigCustomEvent<Record<string, unknown>>) => void;
3888
3892
  /**
3889
- * Reference to the platform
3893
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
3890
3894
  */
3891
3895
  "platform"?: LimeWebComponentPlatform;
3892
3896
  /**
@@ -3917,7 +3921,7 @@ declare namespace LocalJSX {
3917
3921
  */
3918
3922
  interface LimebbComponentPicker {
3919
3923
  /**
3920
- * The context this component belongs to
3924
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
3921
3925
  */
3922
3926
  "context"?: LimeWebComponentContext;
3923
3927
  /**
@@ -3949,7 +3953,7 @@ declare namespace LocalJSX {
3949
3953
  */
3950
3954
  "onCopy"?: (event: LimebbComponentPickerCustomEvent<string>) => void;
3951
3955
  /**
3952
- * Reference to the platform
3956
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
3953
3957
  */
3954
3958
  "platform"?: LimeWebComponentPlatform;
3955
3959
  /**
@@ -4075,7 +4079,7 @@ declare namespace LocalJSX {
4075
4079
  */
4076
4080
  interface LimebbDatePicker {
4077
4081
  /**
4078
- * The context this component belongs to
4082
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4079
4083
  * @inheritdoc
4080
4084
  */
4081
4085
  "context"?: LimeWebComponentContext;
@@ -4104,7 +4108,7 @@ declare namespace LocalJSX {
4104
4108
  */
4105
4109
  "placeholder"?: string;
4106
4110
  /**
4107
- * Reference to the platform
4111
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4108
4112
  * @inheritdoc
4109
4113
  */
4110
4114
  "platform": LimeWebComponentPlatform;
@@ -4141,7 +4145,7 @@ declare namespace LocalJSX {
4141
4145
  */
4142
4146
  interface LimebbDateRange {
4143
4147
  /**
4144
- * The context this component belongs to
4148
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4145
4149
  * @inheritdoc
4146
4150
  */
4147
4151
  "context"?: LimeWebComponentContext;
@@ -4166,7 +4170,7 @@ declare namespace LocalJSX {
4166
4170
  */
4167
4171
  "onChangeStartTime"?: (event: LimebbDateRangeCustomEvent<Date>) => void;
4168
4172
  /**
4169
- * Reference to the platform
4173
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4170
4174
  * @inheritdoc
4171
4175
  */
4172
4176
  "platform"?: LimeWebComponentPlatform;
@@ -4194,10 +4198,14 @@ declare namespace LocalJSX {
4194
4198
  */
4195
4199
  interface LimebbDocumentItem {
4196
4200
  /**
4197
- * The context this component belongs to
4201
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4198
4202
  * @inheritdoc
4199
4203
  */
4200
4204
  "context"?: LimeWebComponentContext;
4205
+ /**
4206
+ * The preferred file URL types to use when displaying the document's image preview.
4207
+ */
4208
+ "fileTypes"?: LimeFileUrlType[];
4201
4209
  /**
4202
4210
  * The item to display in the document picker.
4203
4211
  */
@@ -4207,7 +4215,7 @@ declare namespace LocalJSX {
4207
4215
  */
4208
4216
  "onInteract"?: (event: LimebbDocumentItemCustomEvent<DocumentItem>) => void;
4209
4217
  /**
4210
- * Reference to the platform
4218
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4211
4219
  * @inheritdoc
4212
4220
  */
4213
4221
  "platform": LimeWebComponentPlatform;
@@ -4230,7 +4238,7 @@ declare namespace LocalJSX {
4230
4238
  */
4231
4239
  interface LimebbDocumentPicker {
4232
4240
  /**
4233
- * The context this component belongs to
4241
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4234
4242
  * @inheritdoc
4235
4243
  */
4236
4244
  "context"?: LimeWebComponentContext;
@@ -4255,7 +4263,7 @@ declare namespace LocalJSX {
4255
4263
  */
4256
4264
  "onChange"?: (event: LimebbDocumentPickerCustomEvent<DocumentItem | DocumentItem[]>) => void;
4257
4265
  /**
4258
- * Reference to the platform
4266
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4259
4267
  * @inheritdoc
4260
4268
  */
4261
4269
  "platform": LimeWebComponentPlatform;
@@ -4319,7 +4327,7 @@ declare namespace LocalJSX {
4319
4327
  */
4320
4328
  interface LimebbFeed {
4321
4329
  /**
4322
- * The context this component belongs to
4330
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4323
4331
  * @inheritdoc
4324
4332
  */
4325
4333
  "context"?: LimeWebComponentContext;
@@ -4364,7 +4372,7 @@ declare namespace LocalJSX {
4364
4372
  */
4365
4373
  "onLoadMore"?: (event: LimebbFeedCustomEvent<void>) => void;
4366
4374
  /**
4367
- * Reference to the platform
4375
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4368
4376
  * @inheritdoc
4369
4377
  */
4370
4378
  "platform": LimeWebComponentPlatform;
@@ -4392,7 +4400,7 @@ declare namespace LocalJSX {
4392
4400
  */
4393
4401
  interface LimebbFeedTimelineItem {
4394
4402
  /**
4395
- * The context this component belongs to
4403
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4396
4404
  * @inheritdoc
4397
4405
  */
4398
4406
  "context"?: LimeWebComponentContext;
@@ -4413,7 +4421,7 @@ declare namespace LocalJSX {
4413
4421
  */
4414
4422
  "item"?: FeedItem;
4415
4423
  /**
4416
- * Reference to the platform
4424
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4417
4425
  * @inheritdoc
4418
4426
  */
4419
4427
  "platform": LimeWebComponentPlatform;
@@ -4495,7 +4503,7 @@ declare namespace LocalJSX {
4495
4503
  */
4496
4504
  "aggregateOperator"?: AggregateOperator;
4497
4505
  /**
4498
- * The context this component belongs to
4506
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4499
4507
  */
4500
4508
  "context": LimeWebComponentContext;
4501
4509
  /**
@@ -4516,7 +4524,7 @@ declare namespace LocalJSX {
4516
4524
  */
4517
4525
  "label"?: string | Record<string, string>;
4518
4526
  /**
4519
- * Reference to the platform
4527
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4520
4528
  */
4521
4529
  "platform": LimeWebComponentPlatform;
4522
4530
  /**
@@ -4637,7 +4645,7 @@ declare namespace LocalJSX {
4637
4645
  */
4638
4646
  interface LimebbKanban {
4639
4647
  /**
4640
- * The context this component belongs to
4648
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4641
4649
  * @inheritdoc
4642
4650
  */
4643
4651
  "context"?: LimeWebComponentContext;
@@ -4654,7 +4662,7 @@ declare namespace LocalJSX {
4654
4662
  */
4655
4663
  "onLoadMore"?: (event: LimebbKanbanCustomEvent<KanbanGroup>) => void;
4656
4664
  /**
4657
- * Reference to the platform
4665
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4658
4666
  * @inheritdoc
4659
4667
  */
4660
4668
  "platform": LimeWebComponentPlatform;
@@ -4665,7 +4673,7 @@ declare namespace LocalJSX {
4665
4673
  */
4666
4674
  interface LimebbKanbanGroup {
4667
4675
  /**
4668
- * The context this component belongs to
4676
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4669
4677
  * @inheritdoc
4670
4678
  */
4671
4679
  "context"?: LimeWebComponentContext;
@@ -4694,7 +4702,7 @@ declare namespace LocalJSX {
4694
4702
  */
4695
4703
  "onLoadMore"?: (event: LimebbKanbanGroupCustomEvent<KanbanGroup['identifier']>) => void;
4696
4704
  /**
4697
- * Reference to the platform
4705
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4698
4706
  * @inheritdoc
4699
4707
  */
4700
4708
  "platform": LimeWebComponentPlatform;
@@ -4713,7 +4721,7 @@ declare namespace LocalJSX {
4713
4721
  */
4714
4722
  interface LimebbKanbanItem {
4715
4723
  /**
4716
- * The context this component belongs to
4724
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
4717
4725
  * @inheritdoc
4718
4726
  */
4719
4727
  "context"?: LimeWebComponentContext;
@@ -4726,7 +4734,7 @@ declare namespace LocalJSX {
4726
4734
  */
4727
4735
  "onInteract"?: (event: LimebbKanbanItemCustomEvent<KanbanItem>) => void;
4728
4736
  /**
4729
- * Reference to the platform
4737
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
4730
4738
  * @inheritdoc
4731
4739
  */
4732
4740
  "platform": LimeWebComponentPlatform;
@@ -5247,7 +5255,7 @@ declare namespace LocalJSX {
5247
5255
  */
5248
5256
  interface LimebbLimeobjectFileViewer {
5249
5257
  /**
5250
- * The context this component belongs to
5258
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
5251
5259
  */
5252
5260
  "context": LimeWebComponentContext;
5253
5261
  /**
@@ -5255,7 +5263,7 @@ declare namespace LocalJSX {
5255
5263
  */
5256
5264
  "fileTypes"?: LimeFileUrlType[];
5257
5265
  /**
5258
- * Reference to the platform
5266
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
5259
5267
  */
5260
5268
  "platform": LimeWebComponentPlatform;
5261
5269
  /**
@@ -5280,7 +5288,7 @@ declare namespace LocalJSX {
5280
5288
  */
5281
5289
  interface LimebbLimetypeField {
5282
5290
  /**
5283
- * The context this component belongs to
5291
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
5284
5292
  * @inheritdoc
5285
5293
  */
5286
5294
  "context"?: LimeWebComponentContext;
@@ -5322,7 +5330,7 @@ declare namespace LocalJSX {
5322
5330
  */
5323
5331
  "onChange"?: (event: LimebbLimetypeFieldCustomEvent<string>) => void;
5324
5332
  /**
5325
- * Reference to the platform
5333
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
5326
5334
  * @inheritdoc
5327
5335
  */
5328
5336
  "platform"?: LimeWebComponentPlatform;
@@ -5353,7 +5361,7 @@ declare namespace LocalJSX {
5353
5361
  }
5354
5362
  interface LimebbLoader {
5355
5363
  /**
5356
- * The context this component belongs to
5364
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
5357
5365
  * @inheritdoc
5358
5366
  */
5359
5367
  "context"?: LimeWebComponentContext;
@@ -5362,7 +5370,7 @@ declare namespace LocalJSX {
5362
5370
  */
5363
5371
  "onLoaded"?: (event: LimebbLoaderCustomEvent<void>) => void;
5364
5372
  /**
5365
- * Reference to the platform
5373
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
5366
5374
  * @inheritdoc
5367
5375
  */
5368
5376
  "platform"?: LimeWebComponentPlatform;
@@ -5376,7 +5384,7 @@ declare namespace LocalJSX {
5376
5384
  */
5377
5385
  interface LimebbLocalePicker {
5378
5386
  /**
5379
- * The context this component belongs to
5387
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
5380
5388
  * @inheritdoc
5381
5389
  */
5382
5390
  "context"?: LimeWebComponentContext;
@@ -5405,7 +5413,7 @@ declare namespace LocalJSX {
5405
5413
  */
5406
5414
  "onChange"?: (event: LimebbLocalePickerCustomEvent<LanguagePickerType>) => void;
5407
5415
  /**
5408
- * Reference to the platform
5416
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
5409
5417
  * @inheritdoc
5410
5418
  */
5411
5419
  "platform": LimeWebComponentPlatform;
@@ -5516,7 +5524,7 @@ declare namespace LocalJSX {
5516
5524
  */
5517
5525
  interface LimebbNotificationItem {
5518
5526
  /**
5519
- * The context this component belongs to
5527
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
5520
5528
  * @inheritdoc
5521
5529
  */
5522
5530
  "context"?: LimeWebComponentContext;
@@ -5529,7 +5537,7 @@ declare namespace LocalJSX {
5529
5537
  */
5530
5538
  "onInteract"?: (event: LimebbNotificationItemCustomEvent<NotificationItem>) => void;
5531
5539
  /**
5532
- * Reference to the platform
5540
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
5533
5541
  * @inheritdoc
5534
5542
  */
5535
5543
  "platform": LimeWebComponentPlatform;
@@ -5546,7 +5554,7 @@ declare namespace LocalJSX {
5546
5554
  */
5547
5555
  interface LimebbNotificationList {
5548
5556
  /**
5549
- * The context this component belongs to
5557
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
5550
5558
  * @inheritdoc
5551
5559
  */
5552
5560
  "context"?: LimeWebComponentContext;
@@ -5567,7 +5575,7 @@ declare namespace LocalJSX {
5567
5575
  */
5568
5576
  "onItemClick"?: (event: LimebbNotificationListCustomEvent<NotificationItem>) => void;
5569
5577
  /**
5570
- * Reference to the platform
5578
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
5571
5579
  * @inheritdoc
5572
5580
  */
5573
5581
  "platform": LimeWebComponentPlatform;
@@ -5592,7 +5600,7 @@ declare namespace LocalJSX {
5592
5600
  */
5593
5601
  interface LimebbPercentageVisualizer {
5594
5602
  /**
5595
- * The context this component belongs to
5603
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
5596
5604
  * @inherit
5597
5605
  */
5598
5606
  "context"?: LimeWebComponentContext;
@@ -5617,7 +5625,7 @@ declare namespace LocalJSX {
5617
5625
  */
5618
5626
  "multiplier"?: number;
5619
5627
  /**
5620
- * Reference to the platform
5628
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
5621
5629
  * @inherit
5622
5630
  */
5623
5631
  "platform"?: LimeWebComponentPlatform;
@@ -5932,7 +5940,7 @@ declare namespace LocalJSX {
5932
5940
  */
5933
5941
  interface LimebbTrendIndicator {
5934
5942
  /**
5935
- * The context this component belongs to
5943
+ * The context describing where this component is running. The context provides information about the current limetype and record ID (if viewing/editing a specific record). Components can use this to load relevant data and understand their operating environment.
5936
5944
  * @inherit
5937
5945
  */
5938
5946
  "context"?: LimeWebComponentContext;
@@ -5953,7 +5961,7 @@ declare namespace LocalJSX {
5953
5961
  */
5954
5962
  "label"?: string;
5955
5963
  /**
5956
- * Reference to the platform
5964
+ * Reference to the platform service container. Use this to access all platform services like repositories, HTTP client, command bus, navigator, and more. The platform instance is shared across all components in the same application context.
5957
5965
  * @inherit
5958
5966
  */
5959
5967
  "platform"?: LimeWebComponentPlatform;