@mohasinac/appkit 2.7.42 → 2.7.43
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/client.d.ts +2 -0
- package/dist/client.js +1 -0
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -224,6 +224,8 @@ export { ClassifiedDetailView } from "./_internal/client/features/classified/Cla
|
|
|
224
224
|
export type { ClassifiedDetailViewProps } from "./_internal/client/features/classified/ClassifiedDetailView";
|
|
225
225
|
export { DigitalCodeDetailView } from "./_internal/client/features/digital-code/DigitalCodeDetailView";
|
|
226
226
|
export type { DigitalCodeDetailViewProps } from "./_internal/client/features/digital-code/DigitalCodeDetailView";
|
|
227
|
+
export { CodeRevealPanel } from "./_internal/client/features/digital-code/CodeRevealPanel";
|
|
228
|
+
export type { CodeRevealPanelProps, RevealedCode } from "./_internal/client/features/digital-code/CodeRevealPanel";
|
|
227
229
|
export { LiveItemDetailView } from "./_internal/client/features/live/LiveItemDetailView";
|
|
228
230
|
export type { LiveItemDetailViewProps } from "./_internal/client/features/live/LiveItemDetailView";
|
|
229
231
|
export { PhysicalLocationModal } from "./features/seller/components/PhysicalLocationModal";
|
package/dist/client.js
CHANGED
|
@@ -242,5 +242,6 @@ export { NavPermissionsManager } from "./features/site-settings/components/NavPe
|
|
|
242
242
|
// ── Classified + digital-code + live-item client views ────────────────────────
|
|
243
243
|
export { ClassifiedDetailView } from "./_internal/client/features/classified/ClassifiedDetailView";
|
|
244
244
|
export { DigitalCodeDetailView } from "./_internal/client/features/digital-code/DigitalCodeDetailView";
|
|
245
|
+
export { CodeRevealPanel } from "./_internal/client/features/digital-code/CodeRevealPanel";
|
|
245
246
|
export { LiveItemDetailView } from "./_internal/client/features/live/LiveItemDetailView";
|
|
246
247
|
export { PhysicalLocationModal } from "./features/seller/components/PhysicalLocationModal";
|