Skip to content

Commit

Permalink
Ability refresh the table and change country/language on keywords tabel
Browse files Browse the repository at this point in the history
  • Loading branch information
priyanshu-09 committed Aug 29, 2024
1 parent aab37c6 commit a0ad36b
Show file tree
Hide file tree
Showing 6 changed files with 19,574 additions and 19,217 deletions.
18 changes: 15 additions & 3 deletions package-dist/chatScreen/ChatScreenKeywords.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,25 @@ export interface ChatScreenKeywordsProps {
handleProceed: (selectedRows: DataType[]) => void;
productCampaign: {
description: string;
country: string;
language: string;
countrySelected: string;
languageSelected: string;
countries: Array<{
value: string;
label: string;
}>;
languages: Array<{
value: string;
label: string;
}>;
};
handleSuggestChanges: (userQuery: string) => void;
areKeywordsLoading: boolean;
currencySymbol?: string;
handleUpdateCampaignName?: (name: string) => void;
handleChangeCountry: (country: string) => void;
handleChangeLanguage: (language: string) => void;
handleRefreshTable: () => void;
refreshTableText?: string;
}
export declare function ChatScreenKeywords({ pageHeading, keywordsData, handleStartFresh, handleProceed, productCampaign, handleSuggestChanges, areKeywordsLoading, currencySymbol, handleUpdateCampaignName, }: ChatScreenKeywordsProps): import("react/jsx-runtime").JSX.Element;
export declare function ChatScreenKeywords({ pageHeading, keywordsData, handleStartFresh, handleProceed, productCampaign, handleSuggestChanges, areKeywordsLoading, currencySymbol, handleUpdateCampaignName, handleChangeCountry, handleChangeLanguage, handleRefreshTable, refreshTableText, }: ChatScreenKeywordsProps): import("react/jsx-runtime").JSX.Element;
export {};
Loading

0 comments on commit a0ad36b

Please sign in to comment.