@factorialco/f0-react 1.306.2 → 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.
@@ -450,23 +450,6 @@ declare global {
450
450
  }
451
451
  }
452
452
 
453
- declare module "gridstack" {
454
- interface GridStackWidget {
455
- id?: string;
456
- allowedSizes?: Array<{
457
- w: number;
458
- h: number;
459
- }>;
460
- meta?: Record<string, unknown>;
461
- }
462
- interface GridStackNode {
463
- allowedSizes?: Array<{
464
- w: number;
465
- h: number;
466
- }>;
467
- }
468
- }
469
-
470
453
 
471
454
  declare module "@tiptap/core" {
472
455
  interface Commands<ReturnType> {
@@ -494,9 +477,21 @@ declare module "@tiptap/core" {
494
477
  }
495
478
  }
496
479
 
497
-
498
- declare namespace Calendar {
499
- var displayName: string;
480
+ declare module "gridstack" {
481
+ interface GridStackWidget {
482
+ id?: string;
483
+ allowedSizes?: Array<{
484
+ w: number;
485
+ h: number;
486
+ }>;
487
+ meta?: Record<string, unknown>;
488
+ }
489
+ interface GridStackNode {
490
+ allowedSizes?: Array<{
491
+ w: number;
492
+ h: number;
493
+ }>;
494
+ }
500
495
  }
501
496
 
502
497
 
@@ -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.2",
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
  }