@factorialco/f0-react 1.306.1 → 1.306.3

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.
@@ -495,11 +495,6 @@ declare module "gridstack" {
495
495
  }
496
496
 
497
497
 
498
- declare namespace Calendar {
499
- var displayName: string;
500
- }
501
-
502
-
503
498
  declare module "@tiptap/core" {
504
499
  interface Commands<ReturnType> {
505
500
  moodTracker: {
@@ -507,3 +502,8 @@ declare module "@tiptap/core" {
507
502
  };
508
503
  }
509
504
  }
505
+
506
+
507
+ declare namespace Calendar {
508
+ var displayName: string;
509
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorialco/f0-react",
3
- "version": "1.306.1",
3
+ "version": "1.306.3",
4
4
  "main": "dist/f0.js",
5
5
  "typings": "dist/f0.d.ts",
6
6
  "private": false,
@@ -106,6 +106,7 @@
106
106
  "chalk": "^5.4.1",
107
107
  "chromatic": "^11.28.0",
108
108
  "consola": "^3.4.0",
109
+ "dpdm": "^3.14.0",
109
110
  "dotenv": "^16.4.7",
110
111
  "emoji-mart": "^5.6.0",
111
112
  "eslint": "^9.27.0",
@@ -241,7 +242,7 @@
241
242
  "lint": "eslint -c eslint.config.mjs src/**/*.{ts,tsx} --report-unused-disable-directives --max-warnings 0",
242
243
  "lint-fix": "eslint -c eslint.config.mjs src/**/*.{ts,tsx} --fix --report-unused-disable-directives --max-warnings 0",
243
244
  "preview": "vite preview",
244
- "generate-icons": "rm -fR src/icons/app/* src/icons/modules/* src/flags/* src/icons/ai/* && run-p generate-app-icons generate-module-icons generate-flag-icons generate-ai-icons && pnpm run prettier:format",
245
+ "generate-icons": "rm -fR src/icons/app/* src/icons/modules/* src/flags/* src/icons/ai/* && run-p generate-app-icons generate-module-icons generate-flag-icons generate-ai-icons && prettier --write \"src/{icons,flags}/**/*.tsx\"",
245
246
  "generate-app-icons": "npx @svgr/cli --out-dir src/icons/app node_modules/@factorialco/f0-core/assets/icons/app",
246
247
  "generate-flag-icons": "npx @svgr/cli --out-dir src/flags node_modules/@factorialco/f0-core/assets/flags",
247
248
  "generate-module-icons": "npx @svgr/cli --out-dir src/icons/modules node_modules/@factorialco/f0-core/assets/icons/modules",
@@ -255,6 +256,7 @@
255
256
  "vitest": "vitest",
256
257
  "vitest:ui": "vitest --ui",
257
258
  "vitest:watch": "vitest dev",
258
- "vitest:ci": "pnpm run vitest --reporter=dot"
259
+ "vitest:ci": "pnpm run vitest --reporter=dot",
260
+ "cycle-deps:delta": "tsx --tsconfig tsconfig.node.json .scripts/check-cycle-dependencies.ts"
259
261
  }
260
262
  }