@factorialco/f0-react 1.209.1 → 1.210.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 -6
- package/dist/experimental.js +610 -595
- package/dist/f0.d.ts +5 -5
- package/icons/app/Swap.d.ts +4 -0
- package/icons/app/Swap.d.ts.map +1 -0
- package/icons/app/Swap.js +5 -0
- package/icons/app/index.d.ts +1 -0
- package/icons/app/index.d.ts.map +1 -1
- package/icons/app/index.js +1 -0
- package/package.json +2 -2
package/dist/experimental.d.ts
CHANGED
|
@@ -2647,7 +2647,7 @@ declare type ItemProps = {
|
|
|
2647
2647
|
|
|
2648
2648
|
declare type Items = typeof Item_2 | typeof PersonItem | typeof CompanyItem | typeof TeamItem;
|
|
2649
2649
|
|
|
2650
|
-
export declare function ItemSectionHeader({ item, children, isActive, collapsible, isExpanded, onToggleExpanded, sortable, }: TOCItemSectionHeaderProps): JSX_2.Element;
|
|
2650
|
+
export declare function ItemSectionHeader({ item, children, isActive, collapsible, isExpanded, onToggleExpanded, sortable, hideChildrenCounter, }: TOCItemSectionHeaderProps): JSX_2.Element;
|
|
2651
2651
|
|
|
2652
2652
|
declare type KanbanCollectionProps<Record extends RecordType, Filters extends FiltersDefinition, Sortings extends SortingsDefinition, Summaries extends SummariesDefinition, ItemActions extends ItemActionsDefinition<Record>, NavigationFilters extends NavigationFiltersDefinition, Grouping extends GroupingDefinition<Record>> = CollectionProps<Record, Filters, Sortings, Summaries, ItemActions, NavigationFilters, Grouping, KanbanVisualizationOptions<Record, Filters, Sortings>>;
|
|
2653
2653
|
|
|
@@ -4592,6 +4592,7 @@ declare interface TOCItemSectionHeaderProps {
|
|
|
4592
4592
|
isExpanded?: boolean;
|
|
4593
4593
|
onToggleExpanded?: (id: string) => void;
|
|
4594
4594
|
sortable: boolean;
|
|
4595
|
+
hideChildrenCounter?: boolean;
|
|
4595
4596
|
}
|
|
4596
4597
|
|
|
4597
4598
|
export declare interface TOCProps {
|
|
@@ -4604,6 +4605,7 @@ export declare interface TOCProps {
|
|
|
4604
4605
|
onReorder?: (reorderedIds: IdStructure[]) => void;
|
|
4605
4606
|
showSearchBox?: boolean;
|
|
4606
4607
|
searchPlaceholder?: string;
|
|
4608
|
+
hideChildrenCounter?: boolean;
|
|
4607
4609
|
}
|
|
4608
4610
|
|
|
4609
4611
|
declare type toggleActionType = {
|
|
@@ -5066,11 +5068,6 @@ declare module "@tiptap/core" {
|
|
|
5066
5068
|
}
|
|
5067
5069
|
|
|
5068
5070
|
|
|
5069
|
-
declare namespace Calendar {
|
|
5070
|
-
var displayName: string;
|
|
5071
|
-
}
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
5071
|
declare module "@tiptap/core" {
|
|
5075
5072
|
interface Commands<ReturnType> {
|
|
5076
5073
|
moodTracker: {
|
|
@@ -5078,3 +5075,8 @@ declare module "@tiptap/core" {
|
|
|
5078
5075
|
};
|
|
5079
5076
|
}
|
|
5080
5077
|
}
|
|
5078
|
+
|
|
5079
|
+
|
|
5080
|
+
declare namespace Calendar {
|
|
5081
|
+
var displayName: string;
|
|
5082
|
+
}
|