@contractspec/lib.example-shared-ui 6.0.22 → 7.0.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.
@@ -2,7 +2,7 @@ $ contractspec-bun-build prebuild
2
2
  $ bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build transpile
4
4
  [contractspec-bun-build] transpile target=bun root=src entries=29 noBundle=false
5
- Bundled 29 modules in 23ms
5
+ Bundled 29 modules in 25ms
6
6
 
7
7
  ./EvolutionDashboard.js 14.12 KB (entry point)
8
8
  ./index.js 59.14 KB (entry point)
@@ -35,7 +35,7 @@ Bundled 29 modules in 23ms
35
35
  lib/runtime-context.js 390 bytes (entry point)
36
36
 
37
37
  [contractspec-bun-build] transpile target=node root=src entries=29 noBundle=false
38
- Bundled 29 modules in 23ms
38
+ Bundled 29 modules in 27ms
39
39
 
40
40
  ./EvolutionDashboard.js 14.1 KB (entry point)
41
41
  ./index.js 59.1 KB (entry point)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @contractspec/lib.example-shared-ui
2
2
 
3
+ ## 7.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - Reduce published install and bundle size by optionalizing heavy runtime families and adding a repo dependency audit.
8
+ - Packages: @contractspec/lib.ui-kit (major), @contractspec/integration.providers-impls (major), @contractspec/lib.runtime-sandbox (major), @contractspec/lib.example-shared-ui (major), @contractspec/lib.video-gen (major), @contractspec/lib.ui-kit-web (minor), @contractspec/app.cli-contractspec (minor), @contractspec/app.api-library (patch), @contractspec/app.registry-packs (patch), vscode-contractspec (patch), @contractspec/example.project-management-sync (patch), @contractspec/example.voice-providers (patch), @contractspec/example.meeting-recorder-providers (patch), @contractspec/example.integration-posthog (patch), contractspec (patch)
9
+ - Migration: Consumers using native UI, provider implementations, sandbox database/runtime, example runtime UI, or Remotion video subpaths should add the corresponding optional peer packages directly to their app/package dependencies.; Replace broad `@contractspec/integration.providers-impls/impls` imports with provider-specific subpaths such as `@contractspec/integration.providers-impls/impls/linear`.; Run `bun run deps:audit --json` before and after dependency changes to compare runtime edges, heavy dependency families, and package dist sizes.
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies because of chore: auto-bump internal dependents
14
+ - Updated dependencies because of Reduce published install and bundle size by optionalizing heavy runtime families and adding a repo dependency audit.
15
+ - Updated dependencies because of Stabilize Expo mobile chart rendering by avoiding CommonJS tslib helper resolution and completing native gesture-handler setup.
16
+ - @contractspec/lib.design-system@3.11.1
17
+ - @contractspec/lib.ui-kit-web@3.11.0
18
+ - @contractspec/lib.presentation-runtime-core@5.0.1
19
+ - @contractspec/lib.contracts-spec@5.5.0
20
+ - @contractspec/lib.surface-runtime@0.5.21
21
+
3
22
  ## 6.0.22
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/lib.example-shared-ui",
3
- "version": "6.0.22",
3
+ "version": "7.0.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -437,24 +437,36 @@
437
437
  }
438
438
  },
439
439
  "peerDependencies": {
440
- "@contractspec/lib.surface-runtime": "0.5.21"
440
+ "@contractspec/lib.surface-runtime": "0.5.21",
441
+ "@apollo/client": "^4.1.7",
442
+ "framer-motion": "^12.38.0",
443
+ "lucide-react": "^1.8.0",
444
+ "react-dom": "19.2.0"
441
445
  },
442
446
  "peerDependenciesMeta": {
443
447
  "@contractspec/lib.surface-runtime": {
444
448
  "optional": true
449
+ },
450
+ "@apollo/client": {
451
+ "optional": true
452
+ },
453
+ "framer-motion": {
454
+ "optional": true
455
+ },
456
+ "lucide-react": {
457
+ "optional": true
458
+ },
459
+ "react-dom": {
460
+ "optional": true
445
461
  }
446
462
  },
447
463
  "dependencies": {
448
- "@apollo/client": "^4.1.7",
449
464
  "@contractspec/lib.contracts-spec": "5.5.0",
450
- "@contractspec/lib.design-system": "3.11.0",
451
- "@contractspec/lib.ui-kit-web": "3.10.3",
465
+ "@contractspec/lib.design-system": "3.11.1",
466
+ "@contractspec/lib.ui-kit-web": "3.11.0",
452
467
  "@tanstack/react-query": "^5.97.0",
453
- "framer-motion": "^12.38.0",
454
- "lucide-react": "^1.8.0",
455
468
  "react": "19.2.0",
456
- "react-dom": "19.2.0",
457
- "@contractspec/lib.presentation-runtime-core": "5.0.0"
469
+ "@contractspec/lib.presentation-runtime-core": "5.0.1"
458
470
  },
459
471
  "optionalDependencies": {
460
472
  "@contractspec/lib.surface-runtime": "0.5.21"
@@ -464,7 +476,11 @@
464
476
  "@types/react": "^19.2.14",
465
477
  "@types/react-dom": "^19.2.2",
466
478
  "typescript": "^5.9.3",
467
- "@contractspec/tool.bun": "3.7.15"
479
+ "@contractspec/tool.bun": "3.7.16",
480
+ "@apollo/client": "^4.1.7",
481
+ "framer-motion": "^12.38.0",
482
+ "lucide-react": "^1.8.0",
483
+ "react-dom": "19.2.0"
468
484
  },
469
485
  "types": "./dist/index.d.ts"
470
486
  }