1- import { ResponseType , IDynamicPerson , PersonType , GroupType , PersonCardInteraction , MgtPersonConfig , PersonViewType , AvatarSize , TasksStringResource , TasksSource , TaskFilter , SelectedChannel } from '@microsoft/mgt-components' ;
1+ import { ResponseType , IDynamicPerson , PersonType , GroupType , PersonCardInteraction , MgtPersonConfig , PersonViewType , AvatarSize , TasksStringResource , TasksSource , TaskFilter , SelectedChannel , TodoFilter } from '@microsoft/mgt-components' ;
22import { TemplateContext , ComponentMediaQuery } from '@microsoft/mgt-element' ;
33import * as MicrosoftGraph from '@microsoft/microsoft-graph-types' ;
44import * as MicrosoftGraphBeta from '@microsoft/microsoft-graph-types-beta' ;
@@ -132,6 +132,17 @@ export type TeamsChannelPickerProps = {
132132 selectionChanged ?: ( e : Event ) => void ;
133133}
134134
135+ export type TodoProps = {
136+ todoFilter ?: TodoFilter ;
137+ readOnly ?: boolean ;
138+ hideHeader ?: boolean ;
139+ hideOptions ?: boolean ;
140+ targetId ?: string ;
141+ initialId ?: string ;
142+ templateContext ?: TemplateContext ;
143+ mediaQuery ?: ComponentMediaQuery ;
144+ }
145+
135146export const Agenda = wrapMgt < AgendaProps > ( 'mgt-agenda' ) ;
136147
137148export const Get = wrapMgt < GetProps > ( 'mgt-get' ) ;
@@ -150,5 +161,7 @@ export const Tasks = wrapMgt<TasksProps>('mgt-tasks');
150161
151162export const TeamsChannelPicker = wrapMgt < TeamsChannelPickerProps > ( 'mgt-teams-channel-picker' ) ;
152163
153- export { ResponseType , IDynamicPerson , PersonType , GroupType , PersonCardInteraction , MgtPersonConfig , PersonViewType , AvatarSize , TasksStringResource , TasksSource , TaskFilter , SelectedChannel } from '@microsoft/mgt-components' ;
164+ export const Todo = wrapMgt < TodoProps > ( 'mgt-todo' ) ;
165+
166+ export { ResponseType , IDynamicPerson , PersonType , GroupType , PersonCardInteraction , MgtPersonConfig , PersonViewType , AvatarSize , TasksStringResource , TasksSource , TaskFilter , SelectedChannel , TodoFilter } from '@microsoft/mgt-components' ;
154167export { TemplateContext , ComponentMediaQuery } from '@microsoft/mgt-element' ;
0 commit comments