@factorialco/f0-react 1.183.0 → 1.184.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/f0.d.ts CHANGED
@@ -2021,8 +2021,8 @@ declare global {
2021
2021
 
2022
2022
  declare module "@tiptap/core" {
2023
2023
  interface Commands<ReturnType> {
2024
- liveCompanion: {
2025
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
2024
+ aiBlock: {
2025
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
2026
2026
  };
2027
2027
  }
2028
2028
  }
@@ -2030,8 +2030,8 @@ declare module "@tiptap/core" {
2030
2030
 
2031
2031
  declare module "@tiptap/core" {
2032
2032
  interface Commands<ReturnType> {
2033
- aiBlock: {
2034
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
2033
+ liveCompanion: {
2034
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
2035
2035
  };
2036
2036
  }
2037
2037
  }
@@ -2046,6 +2046,11 @@ declare module "@tiptap/core" {
2046
2046
  }
2047
2047
 
2048
2048
 
2049
+ declare namespace Calendar {
2050
+ var displayName: string;
2051
+ }
2052
+
2053
+
2049
2054
  declare module "@tiptap/core" {
2050
2055
  interface Commands<ReturnType> {
2051
2056
  moodTracker: {
@@ -2053,8 +2058,3 @@ declare module "@tiptap/core" {
2053
2058
  };
2054
2059
  }
2055
2060
  }
2056
-
2057
-
2058
- declare namespace Calendar {
2059
- var displayName: string;
2060
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorialco/f0-react",
3
- "version": "1.183.0",
3
+ "version": "1.184.0",
4
4
  "main": "dist/f0.js",
5
5
  "typings": "dist/f0.d.ts",
6
6
  "private": false,
@@ -192,7 +192,6 @@
192
192
  "dev:coder": "pnpm build --watch -- --buildSync",
193
193
  "start": "pnpm run dev",
194
194
  "size": "pnpm run build && size-limit",
195
- "size:ci": "size-limit --json",
196
195
  "build": "tsc --project ./tsconfig-build.json && run-p build-icons && BUILD_TYPES=true vite build -- --tailwind",
197
196
  "build:tsup": "tsup && pnpm run build:tailwind && run-p build-icons",
198
197
  "build-icons": "tsc --project ./tsconfig-build-icons.json",