@mohasinac/appkit 2.7.48 → 2.7.49
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 +2 -0
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -230,3 +230,5 @@ export { LiveItemDetailView } from "./_internal/client/features/live/LiveItemDet
|
|
|
230
230
|
export type { LiveItemDetailViewProps } from "./_internal/client/features/live/LiveItemDetailView";
|
|
231
231
|
export { PhysicalLocationModal } from "./features/seller/components/PhysicalLocationModal";
|
|
232
232
|
export type { PhysicalLocation } from "./features/seller/components/PhysicalLocationModal";
|
|
233
|
+
export { Toggle } from "./ui/components/Toggle";
|
|
234
|
+
export type { ToggleProps } from "./ui/components/Toggle";
|
package/dist/client.js
CHANGED
|
@@ -245,3 +245,5 @@ export { DigitalCodeDetailView } from "./_internal/client/features/digital-code/
|
|
|
245
245
|
export { CodeRevealPanel } from "./_internal/client/features/digital-code/CodeRevealPanel";
|
|
246
246
|
export { LiveItemDetailView } from "./_internal/client/features/live/LiveItemDetailView";
|
|
247
247
|
export { PhysicalLocationModal } from "./features/seller/components/PhysicalLocationModal";
|
|
248
|
+
// [CLIENT-ONLY] — Toggle switch primitive.
|
|
249
|
+
export { Toggle } from "./ui/components/Toggle";
|