@ai-matrx/capture 0.4.0 → 0.4.3

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/react.d.cts CHANGED
@@ -4,10 +4,11 @@ import React__default from 'react';
4
4
  /**
5
5
  * features/capture-camera/ — EXTRACTION SOURCE for the `@ai-matrx/capture`
6
6
  * package (aidream/apps/shared/capture). Everything outside `host/` must stay
7
- * free of app imports beyond React, lucide-react and `cn` — those are the
8
- * documented substitution points when this directory is mirrored into the
9
- * package (icons → inlined SVGs, cn tailwind-merge), exactly like
10
- * `@ai-matrx/media` was extracted from `features/files`.
7
+ * free of app imports beyond React and `cn` — those are the documented
8
+ * substitution points when this directory is mirrored into the package
9
+ * (icons → the package's own inlined SVGs in `components/icons.tsx` per
10
+ * ruling C19, cn → tailwind-merge), exactly like `@ai-matrx/media` was
11
+ * extracted from `features/files`.
11
12
  *
12
13
  * The package is the OPINIONATED iPhone-style camera chrome: translucent
13
14
  * top/bottom bars over a full-bleed feed, the two-tap options grid, zoom
@@ -78,7 +79,7 @@ interface CaptureOptionTile {
78
79
  /** Highlight state (iPhone: yellow when engaged/auto). */
79
80
  active?: boolean;
80
81
  /** Small value read-out under the icon (e.g. "3s", "4:3"). */
81
- valueLabel?: string;
82
+ valueLabel?: string | undefined;
82
83
  disabled?: boolean;
83
84
  onPress: () => void;
84
85
  }
@@ -110,7 +111,7 @@ interface CaptureCameraSlots {
110
111
  id: string;
111
112
  label: string;
112
113
  onSelect: () => void;
113
- }[];
114
+ }[] | undefined;
114
115
  /** Free overlays rendered above everything (sheets, pagers). */
115
116
  overlays?: React.ReactNode;
116
117
  }
@@ -123,7 +124,7 @@ interface CaptureRailAction {
123
124
  /** Engaged/on — rendered in the accent colour. */
124
125
  active?: boolean;
125
126
  /** A short read-out under the icon (e.g. "3s", "4:3", "Auto"). */
126
- valueLabel?: string;
127
+ valueLabel?: string | undefined;
127
128
  disabled?: boolean;
128
129
  /**
129
130
  * Primary actions stay visible when the rail is collapsed. Everything else
@@ -588,9 +589,9 @@ interface MediaViewerProps {
588
589
  /** Key of the item to open on. */
589
590
  initialKey: string | null;
590
591
  onClose: () => void;
591
- onDelete?: (item: CaptureMediaItem) => void;
592
+ onDelete?: ((item: CaptureMediaItem) => void) | undefined;
592
593
  /** Offered on photo items with a renderable URL. */
593
- onEdit?: (item: CaptureMediaItem) => void;
594
+ onEdit?: ((item: CaptureMediaItem) => void) | undefined;
594
595
  /** What deleting costs, stated BEFORE the delete (destructive-actions
595
596
  * rule). Override per domain; deletion is never one silent tap. */
596
597
  deleteConsequence?: string;
@@ -628,7 +629,7 @@ interface ModeSelectorProps {
628
629
  id: string;
629
630
  label: string;
630
631
  onSelect: () => void;
631
- }[];
632
+ }[] | undefined;
632
633
  }
633
634
  declare function ModeSelector({ mode, onModeChange, onUpload, modeDisabled, uploadDisabled, extraModes, }: ModeSelectorProps): React__default.JSX.Element;
634
635
 
package/dist/react.d.ts CHANGED
@@ -4,10 +4,11 @@ import React__default from 'react';
4
4
  /**
5
5
  * features/capture-camera/ — EXTRACTION SOURCE for the `@ai-matrx/capture`
6
6
  * package (aidream/apps/shared/capture). Everything outside `host/` must stay
7
- * free of app imports beyond React, lucide-react and `cn` — those are the
8
- * documented substitution points when this directory is mirrored into the
9
- * package (icons → inlined SVGs, cn tailwind-merge), exactly like
10
- * `@ai-matrx/media` was extracted from `features/files`.
7
+ * free of app imports beyond React and `cn` — those are the documented
8
+ * substitution points when this directory is mirrored into the package
9
+ * (icons → the package's own inlined SVGs in `components/icons.tsx` per
10
+ * ruling C19, cn → tailwind-merge), exactly like `@ai-matrx/media` was
11
+ * extracted from `features/files`.
11
12
  *
12
13
  * The package is the OPINIONATED iPhone-style camera chrome: translucent
13
14
  * top/bottom bars over a full-bleed feed, the two-tap options grid, zoom
@@ -78,7 +79,7 @@ interface CaptureOptionTile {
78
79
  /** Highlight state (iPhone: yellow when engaged/auto). */
79
80
  active?: boolean;
80
81
  /** Small value read-out under the icon (e.g. "3s", "4:3"). */
81
- valueLabel?: string;
82
+ valueLabel?: string | undefined;
82
83
  disabled?: boolean;
83
84
  onPress: () => void;
84
85
  }
@@ -110,7 +111,7 @@ interface CaptureCameraSlots {
110
111
  id: string;
111
112
  label: string;
112
113
  onSelect: () => void;
113
- }[];
114
+ }[] | undefined;
114
115
  /** Free overlays rendered above everything (sheets, pagers). */
115
116
  overlays?: React.ReactNode;
116
117
  }
@@ -123,7 +124,7 @@ interface CaptureRailAction {
123
124
  /** Engaged/on — rendered in the accent colour. */
124
125
  active?: boolean;
125
126
  /** A short read-out under the icon (e.g. "3s", "4:3", "Auto"). */
126
- valueLabel?: string;
127
+ valueLabel?: string | undefined;
127
128
  disabled?: boolean;
128
129
  /**
129
130
  * Primary actions stay visible when the rail is collapsed. Everything else
@@ -588,9 +589,9 @@ interface MediaViewerProps {
588
589
  /** Key of the item to open on. */
589
590
  initialKey: string | null;
590
591
  onClose: () => void;
591
- onDelete?: (item: CaptureMediaItem) => void;
592
+ onDelete?: ((item: CaptureMediaItem) => void) | undefined;
592
593
  /** Offered on photo items with a renderable URL. */
593
- onEdit?: (item: CaptureMediaItem) => void;
594
+ onEdit?: ((item: CaptureMediaItem) => void) | undefined;
594
595
  /** What deleting costs, stated BEFORE the delete (destructive-actions
595
596
  * rule). Override per domain; deletion is never one silent tap. */
596
597
  deleteConsequence?: string;
@@ -628,7 +629,7 @@ interface ModeSelectorProps {
628
629
  id: string;
629
630
  label: string;
630
631
  onSelect: () => void;
631
- }[];
632
+ }[] | undefined;
632
633
  }
633
634
  declare function ModeSelector({ mode, onModeChange, onUpload, modeDisabled, uploadDisabled, extraModes, }: ModeSelectorProps): React__default.JSX.Element;
634
635