@factorialco/f0-react 1.318.1 → 1.319.0
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 +9 -7
- package/dist/experimental.js +6033 -6037
- package/dist/f0.d.ts +5 -4
- package/dist/f0.js +2 -2
- package/dist/{hooks-B4dLKVTc.js → hooks-D8Z_j9NW.js} +2657 -2604
- package/dist/i18n-provider-defaults.d.ts +4 -4
- package/dist/styles.css +1 -1
- package/package.json +19 -28
package/dist/experimental.d.ts
CHANGED
|
@@ -860,12 +860,13 @@ declare type BaseFilterDefinition<T extends FilterTypeKey> = {
|
|
|
860
860
|
hideSelector?: boolean;
|
|
861
861
|
};
|
|
862
862
|
|
|
863
|
-
declare function BaseHeader({ title, avatar, description, primaryAction, secondaryActions, otherActions, status, metadata, }: BaseHeaderProps_2): JSX_2.Element;
|
|
863
|
+
declare function BaseHeader({ title, avatar, deactivated, description, primaryAction, secondaryActions, otherActions, status, metadata, }: BaseHeaderProps_2): JSX_2.Element;
|
|
864
864
|
|
|
865
865
|
declare type BaseHeaderProps = ComponentProps<typeof BaseHeader>;
|
|
866
866
|
|
|
867
867
|
declare interface BaseHeaderProps_2 {
|
|
868
868
|
title: string;
|
|
869
|
+
deactivated?: boolean;
|
|
869
870
|
avatar?: {
|
|
870
871
|
type: "generic";
|
|
871
872
|
name: string;
|
|
@@ -2762,6 +2763,7 @@ export declare type EntitySelectEntity = {
|
|
|
2762
2763
|
avatar?: string;
|
|
2763
2764
|
expanded?: boolean;
|
|
2764
2765
|
searchKeys?: string[];
|
|
2766
|
+
deactivated?: boolean;
|
|
2765
2767
|
subItems?: EntitySelectSubEntity[];
|
|
2766
2768
|
};
|
|
2767
2769
|
|
|
@@ -4978,7 +4980,7 @@ declare type PropertyDefinition_2<T> = {
|
|
|
4978
4980
|
hide?: (item: T) => boolean;
|
|
4979
4981
|
};
|
|
4980
4982
|
|
|
4981
|
-
declare type Props = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status">;
|
|
4983
|
+
declare type Props = {} & Pick<BaseHeaderProps, "avatar" | "title" | "description" | "primaryAction" | "secondaryActions" | "otherActions" | "metadata" | "status" | "deactivated">;
|
|
4982
4984
|
|
|
4983
4985
|
declare type Props_2 = {
|
|
4984
4986
|
/** Main heading text */
|
|
@@ -5148,7 +5150,7 @@ declare type RendererDefinition = ValueDisplayRendererDefinition;
|
|
|
5148
5150
|
|
|
5149
5151
|
export declare type ResolvedRecordType<R> = R extends RecordType ? R : RecordType;
|
|
5150
5152
|
|
|
5151
|
-
export declare const ResourceHeader: ({ avatar, title, description, primaryAction, secondaryActions, otherActions, status, metadata, }: Props) => JSX_2.Element;
|
|
5153
|
+
export declare const ResourceHeader: ({ avatar, title, description, primaryAction, secondaryActions, otherActions, status, metadata, deactivated, }: Props) => JSX_2.Element;
|
|
5152
5154
|
|
|
5153
5155
|
export declare type resultType = {
|
|
5154
5156
|
value: string | null;
|
|
@@ -6406,8 +6408,8 @@ declare global {
|
|
|
6406
6408
|
|
|
6407
6409
|
declare module "@tiptap/core" {
|
|
6408
6410
|
interface Commands<ReturnType> {
|
|
6409
|
-
|
|
6410
|
-
|
|
6411
|
+
liveCompanion: {
|
|
6412
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
6411
6413
|
};
|
|
6412
6414
|
}
|
|
6413
6415
|
}
|
|
@@ -6415,8 +6417,8 @@ declare module "@tiptap/core" {
|
|
|
6415
6417
|
|
|
6416
6418
|
declare module "@tiptap/core" {
|
|
6417
6419
|
interface Commands<ReturnType> {
|
|
6418
|
-
|
|
6419
|
-
|
|
6420
|
+
aiBlock: {
|
|
6421
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6420
6422
|
};
|
|
6421
6423
|
}
|
|
6422
6424
|
}
|