@busiverse/ui 0.2.8 → 0.2.9

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/README.md CHANGED
@@ -261,3 +261,14 @@ import { MarketingFeatureCard } from "@busiverse/ui/marketing";
261
261
  It also corrects brand asset URL paths so packaged favicon, icon, logo, and social assets resolve at build time.
262
262
 
263
263
  Public marketing pages should not expose internal chargeback, operation codes, direct costs, margin, Account ledger mechanics, or outbox/saga details. Those remain internal/admin concerns. BusiLand should use customer-facing plans and bundles.
264
+
265
+
266
+ ## v0.2.9 — asset-manifest build warning fix
267
+
268
+ This release fixes Vite/Rolldown warnings caused by social asset URLs resolving against the published package root. The `busiverseAssets` manifest now points to `dist/assets/...` paths at package-consumer build time. No frontend content changes are required.
269
+
270
+ ```bash
271
+ npm install @busiverse/ui@0.2.9 --save-exact
272
+ ```
273
+
274
+ The frontend should not duplicate BUSIVERSE brand assets in `public/`; brand assets remain owned by `@busiverse/ui`.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  busiverseAssets
3
- } from "./chunk-QK6O2RHQ.js";
3
+ } from "./chunk-UN2VM6WK.js";
4
4
  export {
5
5
  busiverseAssets
6
6
  };
package/dist/brand.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  BusiverseBrandHead,
3
3
  applyBusiverseBrandHead
4
- } from "./chunk-NN24XQYI.js";
5
- import "./chunk-QK6O2RHQ.js";
4
+ } from "./chunk-FMJ6TFBB.js";
5
+ import "./chunk-UN2VM6WK.js";
6
6
  import {
7
7
  BusiverseLogo
8
8
  } from "./chunk-32FPZZH2.js";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  busiverseAssets
3
- } from "./chunk-QK6O2RHQ.js";
3
+ } from "./chunk-UN2VM6WK.js";
4
4
 
5
5
  // src/components/brand/BusiverseBrandHead.tsx
6
6
  import * as React from "react";
@@ -0,0 +1,50 @@
1
+ // src/assets/assets.ts
2
+ var busiverseAssets = {
3
+ logo: {
4
+ horizontal: {
5
+ white: new URL("./assets/logo/busiverse-horizontal---white.svg", import.meta.url).href,
6
+ black: new URL("./assets/logo/busiverse-horizontal---black.svg", import.meta.url).href,
7
+ color: new URL("./assets/logo/busiverse-horizontal---color.svg", import.meta.url).href
8
+ },
9
+ full: {
10
+ white: new URL("./assets/logo/busiverse-primary-full-logo---white.svg", import.meta.url).href,
11
+ black: new URL("./assets/logo/busiverse-primary-full-logo---black.svg", import.meta.url).href,
12
+ color: new URL("./assets/logo/busiverse-primary-full-logo---color.svg", import.meta.url).href
13
+ },
14
+ vertical: {
15
+ white: new URL("./assets/logo/busiverse-vertical---white.svg", import.meta.url).href,
16
+ black: new URL("./assets/logo/busiverse-vertical---black.svg", import.meta.url).href,
17
+ color: new URL("./assets/logo/busiverse-vertical---color.svg", import.meta.url).href
18
+ },
19
+ icon: {
20
+ white: new URL("./assets/icon/busiverse-icon-only---white.svg", import.meta.url).href,
21
+ black: new URL("./assets/icon/busiverse-icon-only---black.svg", import.meta.url).href,
22
+ color: new URL("./assets/icon/busiverse-icon-only---color.svg", import.meta.url).href
23
+ }
24
+ },
25
+ favicon: {
26
+ ico: new URL("./assets/favicon.io/favicon.ico", import.meta.url).href,
27
+ png16: new URL("./assets/favicon.io/favicon-16x16.png", import.meta.url).href,
28
+ png32: new URL("./assets/favicon.io/favicon-32x32.png", import.meta.url).href,
29
+ png96: new URL("./assets/favicon.io/favicon-96x96.png", import.meta.url).href,
30
+ appleTouchIcon: new URL("./assets/favicon.io/apple-touch-icon.png", import.meta.url).href,
31
+ androidChrome192: new URL("./assets/favicon.io/android-chrome-192x192.png", import.meta.url).href,
32
+ androidChrome512: new URL("./assets/favicon.io/android-chrome-512x512.png", import.meta.url).href,
33
+ androidIcon192: new URL("./assets/favicon.io/android-icon-192x192.png", import.meta.url).href,
34
+ msTile144: new URL("./assets/favicon.io/ms-icon-144x144.png", import.meta.url).href
35
+ },
36
+ social: {
37
+ xHeader: new URL("./assets/social/busiverse-twitter_x-header-2.7777777777777777x-darkbg.png", import.meta.url).href,
38
+ xProfile: new URL("./assets/social/busiverse-twitter_x-profile-picture-2.2222222222222223x-darkbg.png", import.meta.url).href,
39
+ linkedInCover: new URL("./assets/social/busiverse-linkedin-cover-photo-2.64x-darkbg.png", import.meta.url).href,
40
+ linkedInProfile: new URL("./assets/social/busiverse-linkedin-profile-picture-2.2222222222222223x-darkbg.png", import.meta.url).href,
41
+ facebookCover: new URL("./assets/social/busiverse-facebook-cover-photo-1.7333333333333334x-darkbg.png", import.meta.url).href,
42
+ facebookProfile: new URL("./assets/social/busiverse-facebook-profile-picture-1x-darkbg.png", import.meta.url).href,
43
+ instagramPost: new URL("./assets/social/busiverse-instagram-post-6x-darkbg.png", import.meta.url).href,
44
+ instagramProfile: new URL("./assets/social/busiverse-instagram-profile-picture-1.7777777777777777x-darkbg.png", import.meta.url).href
45
+ }
46
+ };
47
+
48
+ export {
49
+ busiverseAssets
50
+ };
package/dist/index.js CHANGED
@@ -29,10 +29,10 @@ import {
29
29
  import {
30
30
  BusiverseBrandHead,
31
31
  applyBusiverseBrandHead
32
- } from "./chunk-NN24XQYI.js";
32
+ } from "./chunk-FMJ6TFBB.js";
33
33
  import {
34
34
  busiverseAssets
35
- } from "./chunk-QK6O2RHQ.js";
35
+ } from "./chunk-UN2VM6WK.js";
36
36
  import {
37
37
  BusiverseI18nProvider,
38
38
  RegionSelector,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@busiverse/ui",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "author": "Joel Julius Okoromi <okmarq@gmail.com> (https://busiversehq.com)",
5
5
  "description": "BUSIVERSE shared React UI, design tokens, pricing, i18n, auth helpers, and product shell. Network-neutral core; Gateway transport is app-injected.",
6
6
  "type": "module",
@@ -1,50 +0,0 @@
1
- // src/assets/assets.ts
2
- var busiverseAssets = {
3
- logo: {
4
- horizontal: {
5
- white: new URL("./logo/busiverse-horizontal---white.svg", import.meta.url).href,
6
- black: new URL("./logo/busiverse-horizontal---black.svg", import.meta.url).href,
7
- color: new URL("./logo/busiverse-horizontal---color.svg", import.meta.url).href
8
- },
9
- full: {
10
- white: new URL("./logo/busiverse-primary-full-logo---white.svg", import.meta.url).href,
11
- black: new URL("./logo/busiverse-primary-full-logo---black.svg", import.meta.url).href,
12
- color: new URL("./logo/busiverse-primary-full-logo---color.svg", import.meta.url).href
13
- },
14
- vertical: {
15
- white: new URL("./logo/busiverse-vertical---white.svg", import.meta.url).href,
16
- black: new URL("./logo/busiverse-vertical---black.svg", import.meta.url).href,
17
- color: new URL("./logo/busiverse-vertical---color.svg", import.meta.url).href
18
- },
19
- icon: {
20
- white: new URL("./icon/busiverse-icon-only---white.svg", import.meta.url).href,
21
- black: new URL("./icon/busiverse-icon-only---black.svg", import.meta.url).href,
22
- color: new URL("./icon/busiverse-icon-only---color.svg", import.meta.url).href
23
- }
24
- },
25
- favicon: {
26
- ico: new URL("./favicon.io/favicon.ico", import.meta.url).href,
27
- png16: new URL("./favicon.io/favicon-16x16.png", import.meta.url).href,
28
- png32: new URL("./favicon.io/favicon-32x32.png", import.meta.url).href,
29
- png96: new URL("./favicon.io/favicon-96x96.png", import.meta.url).href,
30
- appleTouchIcon: new URL("./favicon.io/apple-touch-icon.png", import.meta.url).href,
31
- androidChrome192: new URL("./favicon.io/android-chrome-192x192.png", import.meta.url).href,
32
- androidChrome512: new URL("./favicon.io/android-chrome-512x512.png", import.meta.url).href,
33
- androidIcon192: new URL("./favicon.io/android-icon-192x192.png", import.meta.url).href,
34
- msTile144: new URL("./favicon.io/ms-icon-144x144.png", import.meta.url).href
35
- },
36
- social: {
37
- xHeader: new URL("./social/busiverse-twitter_x-header-2.7777777777777777x-darkbg.png", import.meta.url).href,
38
- xProfile: new URL("./social/busiverse-twitter_x-profile-picture-2.2222222222222223x-darkbg.png", import.meta.url).href,
39
- linkedInCover: new URL("./social/busiverse-linkedin-cover-photo-2.64x-darkbg.png", import.meta.url).href,
40
- linkedInProfile: new URL("./social/busiverse-linkedin-profile-picture-2.2222222222222223x-darkbg.png", import.meta.url).href,
41
- facebookCover: new URL("./social/busiverse-facebook-cover-photo-1.7333333333333334x-darkbg.png", import.meta.url).href,
42
- facebookProfile: new URL("./social/busiverse-facebook-profile-picture-1x-darkbg.png", import.meta.url).href,
43
- instagramPost: new URL("./social/busiverse-instagram-post-6x-darkbg.png", import.meta.url).href,
44
- instagramProfile: new URL("./social/busiverse-instagram-profile-picture-1.7777777777777777x-darkbg.png", import.meta.url).href
45
- }
46
- };
47
-
48
- export {
49
- busiverseAssets
50
- };