fansunited-frontend-core 0.0.73 → 0.0.75
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 +49 -0
- package/api/componentEvents.d.ts +17 -0
- package/api/componentEvents.d.ts.map +1 -0
- package/components/SignInCta.d.ts +13 -0
- package/components/SignInCta.d.ts.map +1 -0
- package/components/SignInGatePanel.d.ts +14 -0
- package/components/SignInGatePanel.d.ts.map +1 -0
- package/hooks/hooks.d.ts +4 -0
- package/hooks/hooks.d.ts.map +1 -1
- package/hooks/useParticipationDraft.d.ts +23 -0
- package/hooks/useParticipationDraft.d.ts.map +1 -0
- package/hooks/useSignInGate.d.ts +25 -0
- package/hooks/useSignInGate.d.ts.map +1 -0
- package/index.d.ts +6 -0
- package/index.d.ts.map +1 -1
- package/index.es.js +6634 -6117
- package/interfaces/interfaces.d.ts +134 -1
- package/interfaces/interfaces.d.ts.map +1 -1
- package/locales/ar.json.d.ts +18 -1
- package/locales/bg.json.d.ts +18 -1
- package/locales/de.json.d.ts +18 -1
- package/locales/el.json.d.ts +18 -1
- package/locales/en.json.d.ts +18 -1
- package/locales/es.json.d.ts +18 -1
- package/locales/fr-be.json.d.ts +18 -1
- package/locales/fr.json.d.ts +18 -1
- package/locales/it.json.d.ts +18 -1
- package/locales/pl.json.d.ts +18 -1
- package/locales/pt-br.json.d.ts +18 -1
- package/locales/pt.json.d.ts +18 -1
- package/locales/ro.json.d.ts +18 -1
- package/locales/sk.json.d.ts +18 -1
- package/locales/sr.json.d.ts +18 -1
- package/package.json +1 -1
- package/types/types.d.ts +9 -1
- package/types/types.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,7 @@ in particular **no `@mui/*` package has to be installed**.
|
|
|
33
33
|
- Shared utilities and helper functions
|
|
34
34
|
- React providers and hooks
|
|
35
35
|
- Component primitives
|
|
36
|
+
- Typed analytics events for tag-manager and analytics integrations
|
|
36
37
|
|
|
37
38
|
## Core Exports
|
|
38
39
|
|
|
@@ -119,6 +120,8 @@ import {
|
|
|
119
120
|
BetslipProps,
|
|
120
121
|
BetslipState,
|
|
121
122
|
PredictorBetslipConfig,
|
|
123
|
+
PredictorCallbacks,
|
|
124
|
+
ComponentEvent,
|
|
122
125
|
} from "fansunited-frontend-core";
|
|
123
126
|
```
|
|
124
127
|
|
|
@@ -158,6 +161,14 @@ import {
|
|
|
158
161
|
SelectionStatus,
|
|
159
162
|
OddsFormat,
|
|
160
163
|
PredictorBetslipTrigger,
|
|
164
|
+
|
|
165
|
+
// Component analytics events
|
|
166
|
+
ComponentEvent,
|
|
167
|
+
ComponentEventParams,
|
|
168
|
+
PredictorComponentEvent,
|
|
169
|
+
PredictorCallbacks,
|
|
170
|
+
PredictorAnalyticsContext,
|
|
171
|
+
PredictorAnalyticsEventName,
|
|
161
172
|
} from "fansunited-frontend-core";
|
|
162
173
|
```
|
|
163
174
|
|
|
@@ -354,6 +365,44 @@ function MatchCard({ eventId, market, outcome }) {
|
|
|
354
365
|
}
|
|
355
366
|
```
|
|
356
367
|
|
|
368
|
+
### Component Events Bus
|
|
369
|
+
|
|
370
|
+
`componentEvents` is a singleton bus carrying analytics events emitted by the components —
|
|
371
|
+
`widget_view`, `prediction_submitted`, `private_league_joined` and the rest. Use it when you cannot
|
|
372
|
+
reach the component's JSX: a tag manager, a separately-bundled script, anything loading after mount.
|
|
373
|
+
|
|
374
|
+
> **Important:** import `componentEvents` from `fansunited-frontend-components`, not from
|
|
375
|
+
> `fansunited-frontend-core` — same reason as `betslipApi`. The components package bundles its own
|
|
376
|
+
> copy of the bus, so importing from there guarantees you get the singleton the components emit on.
|
|
377
|
+
> The **types** below come from core.
|
|
378
|
+
|
|
379
|
+
```tsx
|
|
380
|
+
import { componentEvents } from "fansunited-frontend-components";
|
|
381
|
+
import type { ComponentEvent } from "fansunited-frontend-core";
|
|
382
|
+
|
|
383
|
+
const unsubscribe = componentEvents.subscribe((event: ComponentEvent) => {
|
|
384
|
+
if (event.component !== "predictor") return;
|
|
385
|
+
console.log(event.name, event.params, event.context);
|
|
386
|
+
});
|
|
387
|
+
```
|
|
388
|
+
|
|
389
|
+
`subscribe` returns an unsubscribe function. It **replays recent events** to a new subscriber (the
|
|
390
|
+
last 50, within the last 5 minutes), so a listener that attaches after the component mounted still
|
|
391
|
+
sees `widget_view` and anything else it missed.
|
|
392
|
+
|
|
393
|
+
The bus is **subscribe-only**: there is no public emit, so nothing else on the page can forge events
|
|
394
|
+
into your analytics. `ComponentEvent` is discriminated on `component` — narrow it before reading
|
|
395
|
+
`name` / `context`, and code keeps compiling when more components start emitting.
|
|
396
|
+
|
|
397
|
+
Payloads are flat primitives and carry **no personal data** — no profile id, email, display name or
|
|
398
|
+
token; only `context.userIsLoggedIn`. Identifiers in the payloads (`match_id`, `home_team_id`, …) are
|
|
399
|
+
canonical and provider-agnostic, so they are the fields to join on; team *names* are localised by the
|
|
400
|
+
`language` prop and are for display only.
|
|
401
|
+
|
|
402
|
+
Emitting components: `Predictor` today. See the `Predictor` section of the
|
|
403
|
+
[`fansunited-frontend-components` README](https://www.npmjs.com/package/fansunited-frontend-components)
|
|
404
|
+
for the full event catalogue and the tag-manager setup.
|
|
405
|
+
|
|
357
406
|
## Call-to-Action (CTA) Interfaces
|
|
358
407
|
|
|
359
408
|
The package provides several CTA interfaces for different use cases:
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ComponentEvent } from '../interfaces/interfaces';
|
|
2
|
+
|
|
3
|
+
type Listener = (event: ComponentEvent) => void;
|
|
4
|
+
/** What consumers get. Deliberately read-only — see `componentEventsEmitter`. */
|
|
5
|
+
export interface ComponentEventsApi {
|
|
6
|
+
/** Observe every component event. Returns an unsubscribe function. */
|
|
7
|
+
subscribe(listener: Listener): () => void;
|
|
8
|
+
}
|
|
9
|
+
/** @internal Emit side, for the component packages only. Never expose this on a global. */
|
|
10
|
+
export interface ComponentEventsEmitter {
|
|
11
|
+
emit(event: ComponentEvent): void;
|
|
12
|
+
}
|
|
13
|
+
export declare const componentEvents: ComponentEventsApi;
|
|
14
|
+
/** @internal Not re-exported from `fansunited-frontend-components`. */
|
|
15
|
+
export declare const componentEventsEmitter: ComponentEventsEmitter;
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=componentEvents.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"componentEvents.d.ts","sourceRoot":"","sources":["../../src/api/componentEvents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,KAAK,QAAQ,GAAG,CAAC,KAAK,EAAE,cAAc,KAAK,IAAI,CAAC;AAahD,iFAAiF;AACjF,MAAM,WAAW,kBAAkB;IACjC,sEAAsE;IACtE,SAAS,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,IAAI,CAAC;CAC3C;AAED,2FAA2F;AAC3F,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,CAAC;CACnC;AA8DD,eAAO,MAAM,eAAe,EAAE,kBAAwB,CAAC;AAEvD,uEAAuE;AACvE,eAAO,MAAM,sBAAsB,EAAE,sBAA4B,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { SignInCTADetails } from '../interfaces/interfaces';
|
|
3
|
+
|
|
4
|
+
export interface SignInCtaProps {
|
|
5
|
+
signInCTA?: SignInCTADetails;
|
|
6
|
+
/** Branding primary, when the entity overrides the theme. */
|
|
7
|
+
primaryColor?: string;
|
|
8
|
+
pulse?: boolean;
|
|
9
|
+
}
|
|
10
|
+
/** CTA ladder: component, then onClick, then url, then a disabled button. */
|
|
11
|
+
declare const SignInCta: React.FC<SignInCtaProps>;
|
|
12
|
+
export default SignInCta;
|
|
13
|
+
//# sourceMappingURL=SignInCta.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SignInCta.d.ts","sourceRoot":"","sources":["../../src/components/SignInCta.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAG5D,MAAM,WAAW,cAAc;IAC7B,SAAS,CAAC,EAAE,gBAAgB,CAAC;IAC7B,6DAA6D;IAC7D,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,6EAA6E;AAC7E,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAuHvC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { SignInCTADetails, SignInGateLabels } from '../interfaces/interfaces';
|
|
3
|
+
|
|
4
|
+
export interface SignInGatePanelProps {
|
|
5
|
+
signInCTA?: SignInCTADetails;
|
|
6
|
+
labels?: SignInGateLabels;
|
|
7
|
+
primaryColor?: string;
|
|
8
|
+
textColor?: string;
|
|
9
|
+
align?: "start" | "center";
|
|
10
|
+
}
|
|
11
|
+
/** The deferred gate's body: the reason, then the sign-in CTA. */
|
|
12
|
+
declare const SignInGatePanel: React.FC<SignInGatePanelProps>;
|
|
13
|
+
export default SignInGatePanel;
|
|
14
|
+
//# sourceMappingURL=SignInGatePanel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SignInGatePanel.d.ts","sourceRoot":"","sources":["../../src/components/SignInGatePanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAI9E,MAAM,WAAW,oBAAoB;IACnC,SAAS,CAAC,EAAE,gBAAgB,CAAC;IAC7B,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;CAC5B;AAED,kEAAkE;AAClE,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CAkEnD,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
package/hooks/hooks.d.ts
CHANGED
|
@@ -7,5 +7,9 @@ export { useLeadForm } from './useLeadForm';
|
|
|
7
7
|
export { useInfoPage } from './useInfoPage';
|
|
8
8
|
export { useConsents } from './useConsents';
|
|
9
9
|
export type { UseConsentsParams, UseConsentsReturn } from './useConsents';
|
|
10
|
+
export { useSignInGate } from './useSignInGate';
|
|
11
|
+
export type { UseSignInGateParams, UseSignInGateReturn } from './useSignInGate';
|
|
12
|
+
export { useParticipationDraft } from './useParticipationDraft';
|
|
13
|
+
export type { DraftStorage, UseParticipationDraftParams, UseParticipationDraftReturn, } from './useParticipationDraft';
|
|
10
14
|
export type { UseLeadFormParams, UseLeadFormReturn, LeadFormData } from './useLeadForm';
|
|
11
15
|
//# sourceMappingURL=hooks.d.ts.map
|
package/hooks/hooks.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../src/hooks/hooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,YAAY,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAC1E,YAAY,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../../src/hooks/hooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,YAAY,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAC1E,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,YAAY,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAChF,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,YAAY,EACV,YAAY,EACZ,2BAA2B,EAC3B,2BAA2B,GAC5B,MAAM,yBAAyB,CAAC;AACjC,YAAY,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export type DraftStorage = "session" | "local";
|
|
2
|
+
export interface UseParticipationDraftParams {
|
|
3
|
+
/** Widget slug, e.g. "classic-quiz". Part of the storage key. */
|
|
4
|
+
namespace: string;
|
|
5
|
+
entityId: string;
|
|
6
|
+
/** Derived from the entity's content; a mismatch drops the draft. */
|
|
7
|
+
fingerprint: string;
|
|
8
|
+
/** Defaults to "session", which survives a same-tab redirect and clears with the tab. */
|
|
9
|
+
storage?: DraftStorage;
|
|
10
|
+
}
|
|
11
|
+
export interface UseParticipationDraftReturn<T> {
|
|
12
|
+
/**
|
|
13
|
+
* Explicit rather than a returned value: the fingerprint depends on the entity, so reading on
|
|
14
|
+
* the first render would compare against an empty one and bin a good draft.
|
|
15
|
+
*/
|
|
16
|
+
read: () => T | null;
|
|
17
|
+
save: (value: T) => void;
|
|
18
|
+
clear: () => void;
|
|
19
|
+
}
|
|
20
|
+
/** Keeps an unsubmitted participation across a sign-in that navigates away. */
|
|
21
|
+
export declare const useParticipationDraft: <T>(params: UseParticipationDraftParams) => UseParticipationDraftReturn<T>;
|
|
22
|
+
export default useParticipationDraft;
|
|
23
|
+
//# sourceMappingURL=useParticipationDraft.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useParticipationDraft.d.ts","sourceRoot":"","sources":["../../src/hooks/useParticipationDraft.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,OAAO,CAAC;AAE/C,MAAM,WAAW,2BAA2B;IAC1C,iEAAiE;IACjE,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,qEAAqE;IACrE,WAAW,EAAE,MAAM,CAAC;IACpB,yFAAyF;IACzF,OAAO,CAAC,EAAE,YAAY,CAAC;CACxB;AAED,MAAM,WAAW,2BAA2B,CAAC,CAAC;IAC5C;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC,GAAG,IAAI,CAAC;IACrB,IAAI,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;IACzB,KAAK,EAAE,MAAM,IAAI,CAAC;CACnB;AA2BD,+EAA+E;AAC/E,eAAO,MAAM,qBAAqB,GAAI,CAAC,UAC7B,2BAA2B,KAClC,2BAA2B,CAAC,CAAC,CA8E/B,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { SignInCTADetails, SignInGatePosition } from '../interfaces/interfaces';
|
|
2
|
+
|
|
3
|
+
export interface UseSignInGateParams {
|
|
4
|
+
signInCTA?: SignInCTADetails;
|
|
5
|
+
/** True when the entity requires a registered user (authRequirement "REGISTERED"). */
|
|
6
|
+
authRequired: boolean;
|
|
7
|
+
userIsLoggedIn?: boolean;
|
|
8
|
+
/** Total steps in the flow — questions, for a quiz. Used to clamp `afterStep`. */
|
|
9
|
+
totalSteps: number;
|
|
10
|
+
}
|
|
11
|
+
export interface UseSignInGateReturn {
|
|
12
|
+
/** The resolved position. "before" whenever the config is absent or unusable. */
|
|
13
|
+
position: SignInGatePosition;
|
|
14
|
+
/** True when the gate is not the up-front wall, i.e. the user plays before signing in. */
|
|
15
|
+
isDeferred: boolean;
|
|
16
|
+
/** Clamped step the gate opens after. Only meaningful for position "step". */
|
|
17
|
+
afterStep: number;
|
|
18
|
+
isSignedIn: boolean;
|
|
19
|
+
/** True while the gate still has to be satisfied. */
|
|
20
|
+
isPending: boolean;
|
|
21
|
+
}
|
|
22
|
+
/** Resolves when the sign-in gate fires and tracks whether it has been satisfied. */
|
|
23
|
+
export declare const useSignInGate: (params: UseSignInGateParams) => UseSignInGateReturn;
|
|
24
|
+
export default useSignInGate;
|
|
25
|
+
//# sourceMappingURL=useSignInGate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useSignInGate.d.ts","sourceRoot":"","sources":["../../src/hooks/useSignInGate.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAEhF,MAAM,WAAW,mBAAmB;IAClC,SAAS,CAAC,EAAE,gBAAgB,CAAC;IAC7B,sFAAsF;IACtF,YAAY,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,kFAAkF;IAClF,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,mBAAmB;IAClC,iFAAiF;IACjF,QAAQ,EAAE,kBAAkB,CAAC;IAC7B,0FAA0F;IAC1F,UAAU,EAAE,OAAO,CAAC;IACpB,8EAA8E;IAC9E,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,OAAO,CAAC;IACpB,qDAAqD;IACrD,SAAS,EAAE,OAAO,CAAC;CACpB;AAoDD,qFAAqF;AACrF,eAAO,MAAM,aAAa,WAChB,mBAAmB,KAC1B,mBAyBF,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
package/index.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ export declare const version: string;
|
|
|
2
2
|
export * from './constants/constants';
|
|
3
3
|
export { betslipApi } from './api/betslipApi';
|
|
4
4
|
export type { BetslipState } from './api/betslipApi';
|
|
5
|
+
export { componentEvents, componentEventsEmitter } from './api/componentEvents';
|
|
6
|
+
export type { ComponentEventsApi, ComponentEventsEmitter, } from './api/componentEvents';
|
|
5
7
|
export * from './functions/functions';
|
|
6
8
|
export * from './interfaces/interfaces';
|
|
7
9
|
export * from './types/types';
|
|
@@ -17,6 +19,10 @@ export { default as ConsentsList } from './components/Consents/ConsentsList';
|
|
|
17
19
|
export type { ConsentsListProps } from './components/Consents/ConsentsList';
|
|
18
20
|
export { default as ConsentPanel } from './components/Consents/ConsentPanel';
|
|
19
21
|
export { default as ConsentCta } from './components/Consents/ConsentCta';
|
|
22
|
+
export { default as SignInCta } from './components/SignInCta';
|
|
23
|
+
export type { SignInCtaProps } from './components/SignInCta';
|
|
24
|
+
export { default as SignInGatePanel } from './components/SignInGatePanel';
|
|
25
|
+
export type { SignInGatePanelProps } from './components/SignInGatePanel';
|
|
20
26
|
export { default as StandardSkeleton } from './components/Skeletons/Standard/StandardSkeleton';
|
|
21
27
|
export { default as SplitSkeleton } from './components/Skeletons/Split/SplitSkeleton';
|
|
22
28
|
export { default as OverlaySkeleton } from './components/Skeletons/Overlay/OverlaySkeleton';
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|