@busiverse/ui 0.1.0 → 0.2.2
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 +90 -1
- package/dist/api/createGatewayClient.d.ts +9 -0
- package/dist/api/createGatewayClient.d.ts.map +1 -1
- package/dist/assets/assets.d.ts +16 -0
- package/dist/assets/assets.d.ts.map +1 -1
- package/dist/{chunk-BEOTRCGO.js → chunk-SXD6EH2C.js} +0 -1
- package/dist/components/billing/ServicePricingExplorer.d.ts +13 -0
- package/dist/components/billing/ServicePricingExplorer.d.ts.map +1 -0
- package/dist/components/billing/index.d.ts +1 -0
- package/dist/components/billing/index.d.ts.map +1 -1
- package/dist/components/brand/BusiverseBrandHead.d.ts +16 -0
- package/dist/components/brand/BusiverseBrandHead.d.ts.map +1 -0
- package/dist/components/brand/index.d.ts +1 -0
- package/dist/components/brand/index.d.ts.map +1 -1
- package/dist/i18n/RegionSelector.d.ts +9 -0
- package/dist/i18n/RegionSelector.d.ts.map +1 -0
- package/dist/i18n/index.d.ts +2 -1
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7981 -85
- package/dist/pricing/index.d.ts +4 -0
- package/dist/pricing/index.d.ts.map +1 -0
- package/dist/pricing/pricingFormat.d.ts +19 -0
- package/dist/pricing/pricingFormat.d.ts.map +1 -0
- package/dist/pricing/regions.d.ts +9 -0
- package/dist/pricing/regions.d.ts.map +1 -0
- package/dist/pricing/servicePricingCatalog.d.ts +166 -0
- package/dist/pricing/servicePricingCatalog.d.ts.map +1 -0
- package/dist/registry/services.d.ts.map +1 -1
- package/dist/styles.css +43 -4
- package/dist/tailwind/index.js +1 -2
- package/package.json +4 -4
- package/dist/chunk-BEOTRCGO.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/tailwind/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -144,5 +144,94 @@ npm run typecheck
|
|
|
144
144
|
npm run build
|
|
145
145
|
npm audit --audit-level=low
|
|
146
146
|
npm pack --dry-run
|
|
147
|
-
npm publish --access
|
|
147
|
+
npm publish --access public
|
|
148
148
|
```
|
|
149
|
+
|
|
150
|
+
## Version 0.2.0 additions
|
|
151
|
+
|
|
152
|
+
This release adds the BUSIVERSE standardized service pricing system used by `busiverse-landing` and reusable by every separately deployed Vercel frontend.
|
|
153
|
+
|
|
154
|
+
### Added
|
|
155
|
+
|
|
156
|
+
- `busiverseServicePricingCatalog` with 257 Account-rated operation rows.
|
|
157
|
+
- `ServicePricingExplorer` for external pricing, internal Busiverse chargeback, estimated direct cost, margin, and standardized equivalents.
|
|
158
|
+
- `RegionSelector` and supported pricing regions.
|
|
159
|
+
- Country/region/currency/time-zone aware pricing display helpers.
|
|
160
|
+
- Time-series aware service metadata for services that surface metrics, decision history, request metering, blockchain events, model jobs, and market data.
|
|
161
|
+
|
|
162
|
+
### Vercel frontend usage
|
|
163
|
+
|
|
164
|
+
Install from public npm after publishing this version:
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
npm install @busiverse/ui@^0.2.0
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
Import shared styles once in each Vite frontend entrypoint:
|
|
171
|
+
|
|
172
|
+
```tsx
|
|
173
|
+
import "@busiverse/ui/styles.css";
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Wrap the frontend with the i18n provider:
|
|
177
|
+
|
|
178
|
+
```tsx
|
|
179
|
+
import { BusiverseI18nProvider } from "@busiverse/ui";
|
|
180
|
+
|
|
181
|
+
<BusiverseI18nProvider
|
|
182
|
+
initialRegion={{
|
|
183
|
+
locale: import.meta.env.VITE_DEFAULT_LOCALE ?? "en-NG",
|
|
184
|
+
countryCode: import.meta.env.VITE_DEFAULT_COUNTRY ?? "NG",
|
|
185
|
+
regionCode: import.meta.env.VITE_DEFAULT_REGION ?? "NG-LA",
|
|
186
|
+
currencyCode: import.meta.env.VITE_DEFAULT_CURRENCY ?? "NGN",
|
|
187
|
+
timeZone: import.meta.env.VITE_DEFAULT_TIME_ZONE ?? "Africa/Lagos",
|
|
188
|
+
}}
|
|
189
|
+
>
|
|
190
|
+
<App />
|
|
191
|
+
</BusiverseI18nProvider>
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
Use the standardized pricing explorer anywhere pricing must be shown:
|
|
195
|
+
|
|
196
|
+
```tsx
|
|
197
|
+
import { ServicePricingExplorer } from "@busiverse/ui";
|
|
198
|
+
|
|
199
|
+
<ServicePricingExplorer />
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
The current currency conversion rates are display fallbacks only. Final production charging still belongs to Account, with Location and Mint resolving region, currency, taxes, pass-through cost, and local pricing rules.
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
## v0.2.1 network-neutral security patch
|
|
206
|
+
|
|
207
|
+
`@busiverse/ui` no longer performs direct network access from inside the package. The previous `createGatewayClient` implementation used the browser `fetch` global directly, which can be flagged by npm/package scanners as “network access”. The package now requires the consuming frontend to inject a transport function.
|
|
208
|
+
|
|
209
|
+
```ts
|
|
210
|
+
import { createGatewayClient } from "@busiverse/ui";
|
|
211
|
+
|
|
212
|
+
export const gateway = createGatewayClient({
|
|
213
|
+
baseUrl: import.meta.env.VITE_GATEWAY_API_URL,
|
|
214
|
+
transport: window.fetch.bind(window),
|
|
215
|
+
getAccessToken: async () => accessToken,
|
|
216
|
+
});
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
Font loading is also app-owned. The shared CSS does not import Google Fonts or any remote stylesheet. Each separately deployed Vercel frontend should self-host the BUSIVERSE fonts or load them explicitly at the app level.
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
## v0.2.2 brand asset ownership
|
|
223
|
+
|
|
224
|
+
`@busiverse/ui` is now the owner of BUSIVERSE favicons, platform icons, social preview defaults, and logo assets. Consuming frontends should not duplicate BUSIVERSE favicon/logo assets in their own `public/` folders unless a deployment platform explicitly requires a static file before JavaScript loads.
|
|
225
|
+
|
|
226
|
+
Use `BusiverseBrandHead` once near the root of each frontend to inject the shared favicons, app manifest, Open Graph metadata, Twitter card metadata, and Microsoft tile metadata from package-owned assets.
|
|
227
|
+
|
|
228
|
+
```tsx
|
|
229
|
+
import { BusiverseBrandHead } from "@busiverse/ui";
|
|
230
|
+
|
|
231
|
+
<BusiverseBrandHead
|
|
232
|
+
title="BUSIVERSE — Turn Ideas Into Operating Businesses"
|
|
233
|
+
description="BUSIVERSE combines AI automation, blockchain-backed trust, and modular business services to help teams launch and operate ventures faster."
|
|
234
|
+
/>
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
The package remains network-neutral: it does not call `fetch`, open sockets, or import remote fonts.
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import type { BusiverseRegionContext } from "../i18n/types";
|
|
2
|
+
export type GatewayTransport = (url: string, init: RequestInit) => Promise<Response>;
|
|
2
3
|
export interface GatewayClientOptions {
|
|
3
4
|
baseUrl: string;
|
|
5
|
+
/**
|
|
6
|
+
* Transport is intentionally injected by the consuming frontend.
|
|
7
|
+
*
|
|
8
|
+
* The shared UI package must remain network-neutral so package scanners do not
|
|
9
|
+
* classify @busiverse/ui itself as a network-capable module. Browser/Vercel
|
|
10
|
+
* apps should pass `window.fetch.bind(window)` or their own audited wrapper.
|
|
11
|
+
*/
|
|
12
|
+
transport: GatewayTransport;
|
|
4
13
|
getAccessToken?: () => Promise<string | null | undefined> | string | null | undefined;
|
|
5
14
|
region?: BusiverseRegionContext;
|
|
6
15
|
defaultHeaders?: HeadersInit;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createGatewayClient.d.ts","sourceRoot":"","sources":["../../src/api/createGatewayClient.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,eAAe,CAAC;AAG5D,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,OAAO,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACtF,MAAM,CAAC,EAAE,sBAAsB,CAAC;IAChC,cAAc,CAAC,EAAE,WAAW,CAAC;IAC7B,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;CAC7B;AAED,MAAM,WAAW,qBAAsB,SAAQ,WAAW;IACxD,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,sBAAsB,CAAC;CACjC;AAED,qBAAa,eAAgB,SAAQ,KAAK;IACxC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC;gBACX,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,SAA0C;CAM7F;AAQD,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,oBAAoB;cACxC,CAAC,QAAQ,MAAM,SAAQ,qBAAqB,KAAQ,OAAO,CAAC,CAAC,CAAC;UAqB7E,CAAC,QAAQ,MAAM,SAAS,qBAAqB;WAC5C,CAAC,QAAQ,MAAM,SAAS,OAAO,SAAS,qBAAqB;UAC9D,CAAC,QAAQ,MAAM,SAAS,OAAO,SAAS,qBAAqB;YAC3D,CAAC,QAAQ,MAAM,SAAS,OAAO,SAAS,qBAAqB;aAC5D,CAAC,QAAQ,MAAM,SAAS,qBAAqB;EAEzD"}
|
|
1
|
+
{"version":3,"file":"createGatewayClient.d.ts","sourceRoot":"","sources":["../../src/api/createGatewayClient.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,eAAe,CAAC;AAG5D,MAAM,MAAM,gBAAgB,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,WAAW,KAAK,OAAO,CAAC,QAAQ,CAAC,CAAC;AAErF,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;OAMG;IACH,SAAS,EAAE,gBAAgB,CAAC;IAC5B,cAAc,CAAC,EAAE,MAAM,OAAO,CAAC,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACtF,MAAM,CAAC,EAAE,sBAAsB,CAAC;IAChC,cAAc,CAAC,EAAE,WAAW,CAAC;IAC7B,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;CAC7B;AAED,MAAM,WAAW,qBAAsB,SAAQ,WAAW;IACxD,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,sBAAsB,CAAC;CACjC;AAED,qBAAa,eAAgB,SAAQ,KAAK;IACxC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC;gBACX,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,SAA0C;CAM7F;AAQD,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,oBAAoB;cACxC,CAAC,QAAQ,MAAM,SAAQ,qBAAqB,KAAQ,OAAO,CAAC,CAAC,CAAC;UAqB7E,CAAC,QAAQ,MAAM,SAAS,qBAAqB;WAC5C,CAAC,QAAQ,MAAM,SAAS,OAAO,SAAS,qBAAqB;UAC9D,CAAC,QAAQ,MAAM,SAAS,OAAO,SAAS,qBAAqB;YAC3D,CAAC,QAAQ,MAAM,SAAS,OAAO,SAAS,qBAAqB;aAC5D,CAAC,QAAQ,MAAM,SAAS,qBAAqB;EAEzD"}
|
package/dist/assets/assets.d.ts
CHANGED
|
@@ -25,7 +25,23 @@ export declare const busiverseAssets: {
|
|
|
25
25
|
readonly ico: string;
|
|
26
26
|
readonly png16: string;
|
|
27
27
|
readonly png32: string;
|
|
28
|
+
readonly png96: string;
|
|
28
29
|
readonly appleTouchIcon: string;
|
|
30
|
+
readonly androidChrome192: string;
|
|
31
|
+
readonly androidChrome512: string;
|
|
32
|
+
readonly androidIcon192: string;
|
|
33
|
+
readonly msTile144: string;
|
|
34
|
+
};
|
|
35
|
+
readonly social: {
|
|
36
|
+
readonly xHeader: string;
|
|
37
|
+
readonly xProfile: string;
|
|
38
|
+
readonly linkedInCover: string;
|
|
39
|
+
readonly linkedInProfile: string;
|
|
40
|
+
readonly facebookCover: string;
|
|
41
|
+
readonly facebookProfile: string;
|
|
42
|
+
readonly instagramPost: string;
|
|
43
|
+
readonly instagramProfile: string;
|
|
29
44
|
};
|
|
30
45
|
};
|
|
46
|
+
export type BusiverseAssets = typeof busiverseAssets;
|
|
31
47
|
//# sourceMappingURL=assets.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assets.d.ts","sourceRoot":"","sources":["../../src/assets/assets.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"assets.d.ts","sourceRoot":"","sources":["../../src/assets/assets.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4ClB,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,OAAO,eAAe,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type BusiversePricingRow, type PricingAudience } from "../../pricing/servicePricingCatalog";
|
|
3
|
+
export interface ServicePricingExplorerProps {
|
|
4
|
+
className?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
rows?: BusiversePricingRow[];
|
|
8
|
+
defaultAudience?: PricingAudience;
|
|
9
|
+
showRegionSelector?: boolean;
|
|
10
|
+
maxInitialRows?: number;
|
|
11
|
+
}
|
|
12
|
+
export declare function ServicePricingExplorer({ className, title, description, rows, defaultAudience, showRegionSelector, maxInitialRows, }: ServicePricingExplorerProps): React.JSX.Element;
|
|
13
|
+
//# sourceMappingURL=ServicePricingExplorer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServicePricingExplorer.d.ts","sourceRoot":"","sources":["../../../src/components/billing/ServicePricingExplorer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAS/B,OAAO,EAGL,KAAK,mBAAmB,EAExB,KAAK,eAAe,EACrB,MAAM,qCAAqC,CAAC;AAG7C,MAAM,WAAW,2BAA2B;IAC1C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAC7B,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAgCD,wBAAgB,sBAAsB,CAAC,EACrC,SAAS,EACT,KAAsC,EACtC,WAA0N,EAC1N,IAAqC,EACrC,eAA4B,EAC5B,kBAAyB,EACzB,cAAmB,GACpB,EAAE,2BAA2B,qBAyF7B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/billing/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/billing/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface BusiverseBrandHeadProps {
|
|
2
|
+
title?: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
siteName?: string;
|
|
5
|
+
url?: string;
|
|
6
|
+
image?: string;
|
|
7
|
+
twitterSite?: string;
|
|
8
|
+
keywords?: string;
|
|
9
|
+
locale?: string;
|
|
10
|
+
themeColor?: string;
|
|
11
|
+
appleMobileWebAppTitle?: string;
|
|
12
|
+
applicationName?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare function applyBusiverseBrandHead({ title, description, siteName, url, image, twitterSite, keywords, locale, themeColor, appleMobileWebAppTitle, applicationName, }?: BusiverseBrandHeadProps): void;
|
|
15
|
+
export declare function BusiverseBrandHead(props: BusiverseBrandHeadProps): null;
|
|
16
|
+
//# sourceMappingURL=BusiverseBrandHead.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BusiverseBrandHead.d.ts","sourceRoot":"","sources":["../../../src/components/brand/BusiverseBrandHead.tsx"],"names":[],"mappings":"AAGA,MAAM,WAAW,uBAAuB;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AA6CD,wBAAgB,uBAAuB,CAAC,EACtC,KAAqB,EACrB,WAAiC,EACjC,QAAsB,EACtB,GAAG,EACH,KAAsC,EACtC,WAA2B,EAC3B,QAA8H,EAC9H,MAAgB,EAChB,UAAgC,EAChC,sBAAoC,EACpC,eAA6B,GAC9B,GAAE,uBAA4B,QAgC9B;AAED,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,uBAAuB,QAkBhE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/brand/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/brand/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type BusiverseSupportedRegion } from "../pricing/regions";
|
|
3
|
+
export interface RegionSelectorProps {
|
|
4
|
+
regions?: BusiverseSupportedRegion[];
|
|
5
|
+
label?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function RegionSelector({ regions, label, className }: RegionSelectorProps): React.JSX.Element;
|
|
9
|
+
//# sourceMappingURL=RegionSelector.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RegionSelector.d.ts","sourceRoot":"","sources":["../../src/i18n/RegionSelector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAA6B,KAAK,wBAAwB,EAAE,MAAM,oBAAoB,CAAC;AAI9F,MAAM,WAAW,mBAAmB;IAClC,OAAO,CAAC,EAAE,wBAAwB,EAAE,CAAC;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,cAAc,CAAC,EAAE,OAAmC,EAAE,KAAwB,EAAE,SAAS,EAAE,EAAE,mBAAmB,qBAqB/H"}
|
package/dist/i18n/index.d.ts
CHANGED
package/dist/i18n/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,kBAAkB,CAAC"}
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
|