Created
April 7, 2025 09:45
-
-
Save sitefinitySDK/bae8e64b241e9f71abdf788e2269787e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Content, ContentSection, DisplayName } from '@progress/sitefinity-widget-designers-sdk'; | |
import { ContentListEntity } from './content-list/content-list-entity'; | |
import { MixedContentContext } from '../../editor/widget-framework/mixed-content-context'; | |
export class ExtendedContentListEntity extends ContentListEntity { | |
@Content({ | |
Type: 'Telerik.Sitefinity.Lists.Model.ListItem, Telerik.Sitefinity.News.Model.NewsItem, Telerik.Sitefinity.Events.Model.Event', | |
TypeBlacklist: 'Telerik.Sitefinity.DynamicTypes.Model.PressReleases.Pressrelease' | |
}) | |
@DisplayName('') | |
@ContentSection('Select content to display', 0) | |
SelectedItems: MixedContentContext | null = null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment