nnews-react 2.0.4 → 2.0.5

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
@@ -125,7 +125,7 @@ export declare interface ArticleInput {
125
125
  roleIds?: string[];
126
126
  }
127
127
 
128
- export declare function ArticleList({ articles, loading, error, onArticleClick, onEditClick, onDeleteClick, onAIClick, showActions, emptyMessage, }: ArticleListProps_2): JSX_2.Element;
128
+ export declare function ArticleList({ articles, loading, error, onArticleClick, onEditClick, onAIClick, showActions, emptyMessage, }: ArticleListProps_2): JSX_2.Element;
129
129
 
130
130
  export declare interface ArticleListProps {
131
131
  categoryId?: number;
@@ -145,7 +145,6 @@ declare interface ArticleListProps_2 {
145
145
  error?: Error | null;
146
146
  onArticleClick?: (article: Article) => void;
147
147
  onEditClick?: (article: Article) => void;
148
- onDeleteClick?: (article: Article) => void;
149
148
  onAIClick?: (article: Article) => void;
150
149
  showActions?: boolean;
151
150
  emptyMessage?: string;