@apolitical/component-library 8.3.8 → 8.3.10
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/context/intl/intl.provider.d.ts +2 -0
- package/discussion/feeds/activities-feed/cache/hooks/edit/edit.hook.d.ts +1 -0
- package/discussion/sections/activity-section/mocks/course-discussion-activity-section.mock.d.ts +2 -0
- package/helpers/intl.d.ts +2 -0
- package/index.js +107 -107
- package/index.mjs +5250 -5229
- package/navigation/language-switcher/language-switcher.mock.d.ts +23 -19
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import type { ICache, ICacheItem } from '../..';
|
|
|
3
3
|
interface IEditVars {
|
|
4
4
|
activityId: string;
|
|
5
5
|
content: string;
|
|
6
|
+
title: string;
|
|
6
7
|
}
|
|
7
8
|
export declare function useEditActivity({ mutationFn, mutationHandlers: { mutate: mutateWrapper, error: onError }, }: IMutationContext<ICacheItem, Error, IEditVars, ICache>): import("@tanstack/react-query/build/legacy/types").UseMutateFunction<import('../../../../../../discussion/shared').IActivity, Error, IEditVars, ICache>;
|
|
8
9
|
export {};
|
package/helpers/intl.d.ts
CHANGED
|
@@ -482,6 +482,8 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
482
482
|
header_language_unavailable_es: string;
|
|
483
483
|
header_language_unavailable_fr: string;
|
|
484
484
|
header_language_unavailable_pt: string;
|
|
485
|
+
header_language_unavailable_id: string;
|
|
486
|
+
'header_language_unavailable_pt-BR': string;
|
|
485
487
|
pageLayout_browserTooSmall: string;
|
|
486
488
|
pageLayout_error: string;
|
|
487
489
|
loadingBlock_loading: string;
|