@factorialco/f0-react 1.201.4 → 1.201.5

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.
@@ -223,6 +223,10 @@ declare interface AiBannerInternalProps {
223
223
  secondaryAction?: AiBannerAction;
224
224
  }
225
225
 
226
+ declare interface AiBannerSkeletonProps {
227
+ compact?: boolean;
228
+ }
229
+
226
230
  declare interface AIBlockConfig {
227
231
  buttons?: AIButton[];
228
232
  onClick: (type: string) => Promise<JSONContent_2 | null>;
@@ -1912,7 +1916,7 @@ declare interface ErrorMessageProps {
1912
1916
  export declare type ExtractPropertyKeys<RecordType> = keyof RecordType;
1913
1917
 
1914
1918
  export declare const F0AiBanner: ForwardRefExoticComponent<AiBannerInternalProps & RefAttributes<HTMLDivElement>> & {
1915
- Skeleton: () => JSX_2.Element;
1919
+ Skeleton: ({ compact }: AiBannerSkeletonProps) => JSX_2.Element;
1916
1920
  };
1917
1921
 
1918
1922
  export declare type F0AiBannerProps = AiBannerInternalProps;
@@ -3005,6 +3009,14 @@ export declare interface NotesTextEditorProps {
3005
3009
  withPadding?: boolean;
3006
3010
  }
3007
3011
 
3012
+ export declare const NotesTextEditorSkeleton: ({ withHeader, withTitle, withPadding, }: NotesTextEditorSkeletonProps) => JSX_2.Element;
3013
+
3014
+ export declare interface NotesTextEditorSkeletonProps {
3015
+ withHeader?: boolean;
3016
+ withTitle?: boolean;
3017
+ withPadding?: boolean;
3018
+ }
3019
+
3008
3020
  export declare const NumberInput: ForwardRefExoticComponent<Omit<NumberInputProps, "ref"> & RefAttributes<HTMLInputElement>>;
3009
3021
 
3010
3022
  export declare type NumberInputProps = Omit<InputProps<string>, "value" | "type" | "onChange"> & {