sprof 0.6.6 → 0.6.8
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.
|
@@ -4,6 +4,8 @@ type __VLS_Props = {
|
|
|
4
4
|
dayTitle?: (day: any) => string;
|
|
5
5
|
/** Название места/зала (по умолчанию — place.name или schedule.placeName) */
|
|
6
6
|
placeName?: (schedule: any) => string;
|
|
7
|
+
/** Показывать блок места/зала над слотами (по умолчанию — true) */
|
|
8
|
+
showPlace?: boolean;
|
|
7
9
|
/** Название слота (по умолчанию — item.name) */
|
|
8
10
|
slotName?: (slot: any) => string;
|
|
9
11
|
/** Участники слота (по умолчанию — []) */
|
|
@@ -38,6 +40,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
38
40
|
slotListOf: (schedule: any) => any[];
|
|
39
41
|
nestedSlotListOf: (session: any) => any[];
|
|
40
42
|
placeName: (schedule: any) => string;
|
|
43
|
+
showPlace: boolean;
|
|
41
44
|
slotParticipants: (slot: any) => any[];
|
|
42
45
|
sessionParticipants: (session: any) => any[];
|
|
43
46
|
participantName: (p: any) => string;
|