@compsych/mobile-ui 1.0.26 → 1.0.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compsych/mobile-ui",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "description": "ComPsych React Native Design System — 19 mobile UI components with self-contained design tokens",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -19,6 +19,7 @@ import { HeaderText } from '../HeaderText';
19
19
  export interface ActionSheetAction {
20
20
  label: string;
21
21
  onPress: () => void;
22
+ loading?: boolean;
22
23
  }
23
24
 
24
25
  export interface ActionSheetProps {
@@ -183,6 +184,7 @@ export function ActionSheet({
183
184
  variant="filled"
184
185
  size="xl"
185
186
  fullWidth
187
+ loading={primaryAction.loading}
186
188
  onPress={primaryAction.onPress}
187
189
  />
188
190
  )}