@factorialco/f0-react 1.308.0 → 1.308.1
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/experimental.d.ts +8 -8
- package/dist/experimental.js +2921 -2908
- package/dist/f0.d.ts +5 -5
- package/dist/i18n-provider-defaults.d.ts +5 -5
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -815,7 +815,7 @@ export declare const BaseCelebration: ({ link, firstName, lastName, src, onClick
|
|
|
815
815
|
|
|
816
816
|
declare type BaseColor = keyof typeof baseColors;
|
|
817
817
|
|
|
818
|
-
export declare const BaseCommunityPost: ({ id, author, group, createdAt, title, description, onClick, mediaUrl, event, counters, reactions, inLabel, comment, dropdownItems, noReactionsButton,
|
|
818
|
+
export declare const BaseCommunityPost: ({ id, author, group, createdAt, title, description, onClick, mediaUrl, event, counters, reactions, inLabel, comment, dropdownItems, noReactionsButton, }: CommunityPostProps) => JSX_2.Element;
|
|
819
819
|
|
|
820
820
|
/**
|
|
821
821
|
* Base data adapter configuration for non-paginated collections
|
|
@@ -1567,7 +1567,7 @@ declare const columnWidths: {
|
|
|
1567
1567
|
readonly fit: 1;
|
|
1568
1568
|
};
|
|
1569
1569
|
|
|
1570
|
-
export declare const CommunityPost: (({ id, author, group, createdAt, title, description, onClick, mediaUrl, event, counters, reactions, inLabel, comment, dropdownItems, noReactionsButton,
|
|
1570
|
+
export declare const CommunityPost: (({ id, author, group, createdAt, title, description, onClick, mediaUrl, event, counters, reactions, inLabel, comment, dropdownItems, noReactionsButton, }: CommunityPostProps) => JSX_2.Element) & {
|
|
1571
1571
|
Skeleton: ({ withEvent, withImage, }: CommunityPostSkeletonProps) => JSX_2.Element;
|
|
1572
1572
|
};
|
|
1573
1573
|
|
|
@@ -4846,7 +4846,7 @@ declare type PostDescriptionProps = {
|
|
|
4846
4846
|
|
|
4847
4847
|
declare type PostEventProps = {
|
|
4848
4848
|
title: string;
|
|
4849
|
-
|
|
4849
|
+
mediaUrl?: string;
|
|
4850
4850
|
place?: string;
|
|
4851
4851
|
date: Date;
|
|
4852
4852
|
};
|
|
@@ -6483,11 +6483,6 @@ declare module "@tiptap/core" {
|
|
|
6483
6483
|
}
|
|
6484
6484
|
|
|
6485
6485
|
|
|
6486
|
-
declare namespace Calendar {
|
|
6487
|
-
var displayName: string;
|
|
6488
|
-
}
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
6486
|
declare module "@tiptap/core" {
|
|
6492
6487
|
interface Commands<ReturnType> {
|
|
6493
6488
|
moodTracker: {
|
|
@@ -6495,3 +6490,8 @@ declare module "@tiptap/core" {
|
|
|
6495
6490
|
};
|
|
6496
6491
|
}
|
|
6497
6492
|
}
|
|
6493
|
+
|
|
6494
|
+
|
|
6495
|
+
declare namespace Calendar {
|
|
6496
|
+
var displayName: string;
|
|
6497
|
+
}
|