@flamingo-stack/openframe-frontend-core 0.0.440 → 0.0.441-snapshot.20260717120707

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/index.d.ts CHANGED
@@ -13,4 +13,5 @@ export * from './hooks';
13
13
  export * from './utils';
14
14
  export * from './types';
15
15
  export * from './assets';
16
+ export type { BlogAuthor, BlogCategory, BlogMediaAsset, BlogPagination, BlogPost, BlogPostCategory, BlogPostPlatform, BlogPostSummary, BlogPostTag, BlogSearchParams, BlogStatus, BlogTag, CaseStudy, CaseStudyFilters, CaseStudyListResponse, CustomerInterview, CustomerInterviewConfig, CustomerInterviewFilters, CustomerInterviewListResponse, } from './types';
16
17
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,uBAAuB,CAAA;AACrC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,uBAAuB,CAAA;AAErC,cAAc,mBAAmB,CAAA;AAEjC,cAAc,gCAAgC,CAAA;AAE9C,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAA;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,cAAc,oBAAoB,CAAA;AAClC,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,uBAAuB,CAAA;AACrC,cAAc,oBAAoB,CAAA;AAClC,cAAc,yBAAyB,CAAA;AACvC,cAAc,uBAAuB,CAAA;AAErC,cAAc,mBAAmB,CAAA;AAEjC,cAAc,gCAAgC,CAAA;AAE9C,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAA;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,cAAc,oBAAoB,CAAA;AAClC,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AAQxB,YAAY,EACV,UAAU,EACV,YAAY,EACZ,cAAc,EACd,cAAc,EACd,QAAQ,EACR,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,WAAW,EACX,gBAAgB,EAChB,UAAU,EACV,OAAO,EACP,SAAS,EACT,gBAAgB,EAChB,qBAAqB,EACrB,iBAAiB,EACjB,uBAAuB,EACvB,wBAAwB,EACxB,6BAA6B,GAC9B,MAAM,SAAS,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flamingo-stack/openframe-frontend-core",
3
- "version": "0.0.440",
3
+ "version": "0.0.441-snapshot.20260717120707",
4
4
  "description": "Shared design system and components for all Flamingo platforms",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -267,6 +267,10 @@
267
267
  "yalc:push": "yalc push ${YALC_STORE_FOLDER:+--store-folder \"$YALC_STORE_FOLDER\"}",
268
268
  "yalc:publish": "yalc publish ${YALC_STORE_FOLDER:+--store-folder \"$YALC_STORE_FOLDER\"}",
269
269
  "generate:icons": "node scripts/generate-icons.mjs",
270
+ "lint:biome": "biome check .",
271
+ "lint:biome:fix": "biome check --fix .",
272
+ "format": "biome format .",
273
+ "format:fix": "biome format --fix .",
270
274
  "storybook": "storybook dev -p 6006",
271
275
  "build-storybook": "storybook build"
272
276
  },
@@ -362,6 +366,7 @@
362
366
  "vaul": "^1.1.2"
363
367
  },
364
368
  "devDependencies": {
369
+ "@biomejs/biome": "2.4.4",
365
370
  "@hookform/resolvers": "^5.4.0",
366
371
  "@storybook/nextjs-vite": "^10.1.11",
367
372
  "@svgr/cli": "^8.1.0",
package/src/index.ts CHANGED
@@ -16,4 +16,32 @@ export * from './types/logs.types'
16
16
  export * from './hooks'
17
17
  export * from './utils'
18
18
  export * from './types'
19
- export * from './assets'
19
+ export * from './assets'
20
+
21
+ // Disambiguation: these names are star-exported by BOTH './components/chat'
22
+ // (chat entity-card payload types) and './types' (CMS domain types). With two
23
+ // star exports TypeScript treats the names as ambiguous and DROPS them from
24
+ // this barrel (consumers see TS2308). Explicitly re-export the CMS domain
25
+ // shapes as canonical here; the chat payload variants stay available from the
26
+ // './components/chat' subpath.
27
+ export type {
28
+ BlogAuthor,
29
+ BlogCategory,
30
+ BlogMediaAsset,
31
+ BlogPagination,
32
+ BlogPost,
33
+ BlogPostCategory,
34
+ BlogPostPlatform,
35
+ BlogPostSummary,
36
+ BlogPostTag,
37
+ BlogSearchParams,
38
+ BlogStatus,
39
+ BlogTag,
40
+ CaseStudy,
41
+ CaseStudyFilters,
42
+ CaseStudyListResponse,
43
+ CustomerInterview,
44
+ CustomerInterviewConfig,
45
+ CustomerInterviewFilters,
46
+ CustomerInterviewListResponse,
47
+ } from './types'