@primestyleai/tryon 5.10.194 → 5.10.196
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/PrimeStyleTryon.d.ts +6 -0
- package/dist/api-client.d.ts +42 -1
- package/dist/clarity.d.ts +13 -0
- package/dist/{index-BiotPzcm.js → index-8lZs7T93.js} +292 -156
- package/dist/index-8lZs7T93.js.map +1 -0
- package/dist/primestyle-tryon.js +173 -94
- package/dist/primestyle-tryon.js.map +1 -1
- package/dist/react/PrimeStyleTryonInner.d.ts +1 -1
- package/dist/react/index.js +5902 -5518
- package/dist/react/index.js.map +1 -1
- package/dist/react/styles.d.ts +1 -1
- package/dist/react/types.d.ts +2 -0
- package/dist/replay.d.ts +9 -0
- package/dist/storefront/primestyle-tryon.js +737 -117
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
- package/dist/index-BiotPzcm.js.map +0 -1
package/dist/react/types.d.ts
CHANGED
|
@@ -264,6 +264,8 @@ export interface PrimeStyleTryonProps {
|
|
|
264
264
|
style?: CSSProperties;
|
|
265
265
|
/** Optional portal target for modal/dropdown overlays. */
|
|
266
266
|
portalContainer?: Element | DocumentFragment | null;
|
|
267
|
+
/** Optional Microsoft Clarity project id. Defaults to PrimeStyleAI's SDK replay project. */
|
|
268
|
+
clarityProjectId?: string;
|
|
267
269
|
onOpen?: () => void;
|
|
268
270
|
onClose?: () => void;
|
|
269
271
|
onUpload?: (file: File) => void;
|
package/dist/replay.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { ApiClient } from "./api-client";
|
|
2
|
+
interface StartSdkReplayInput {
|
|
3
|
+
client: ApiClient;
|
|
4
|
+
productId?: string;
|
|
5
|
+
productTitle?: string;
|
|
6
|
+
productUrl?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function startSdkReplay(input: StartSdkReplayInput): () => void;
|
|
9
|
+
export {};
|