@raycast/api 1.38.2 → 1.38.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/api.d.ts CHANGED
@@ -3912,7 +3912,7 @@ declare interface GridMembers {
3912
3912
  * export default function Command() {
3913
3913
  * return (
3914
3914
  * <Grid>
3915
- * <Grid.Item icon={Icon.Star} title="Augustiner Helles" subtitle="0,5 Liter" />
3915
+ * <Grid.Item content={Icon.Star} title="Augustiner Helles" subtitle="0,5 Liter" />
3916
3916
  * </Grid>
3917
3917
  * );
3918
3918
  * }
@@ -4494,7 +4494,9 @@ export declare enum Icon {
4494
4494
  /** @deprecated Use {@link Icon.SpeakerOff} instead. */
4495
4495
  SpeakerSlash = "speaker-off-16",
4496
4496
  /** @deprecated Use {@link Icon.BlankDocument} instead. */
4497
- TextDocument = "blank-document-16"
4497
+ TextDocument = "blank-document-16",
4498
+ /** @deprecated Use {@link Icon.XMarkCircle} instead. */
4499
+ XmarkCircle = "x-mark-circle-16"
4498
4500
  }
4499
4501
 
4500
4502
  /**
package/bin/arm64/ray CHANGED
Binary file
package/bin/ray CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bash
1
+ #!/bin/bash
2
2
 
3
3
  DIR=$(dirname "${BASH_SOURCE[0]}")
4
4
  SYMLINK=$(readlink "${BASH_SOURCE[0]}")
package/bin/x86/ray CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raycast/api",
3
- "version": "1.38.2",
3
+ "version": "1.38.3",
4
4
  "description": "Build extensions for Raycast with React and Node.js.",
5
5
  "author": "Raycast Technologies Ltd.",
6
6
  "homepage": "https://developers.raycast.com",
package/types/index.d.ts CHANGED
@@ -3912,7 +3912,7 @@ declare interface GridMembers {
3912
3912
  * export default function Command() {
3913
3913
  * return (
3914
3914
  * <Grid>
3915
- * <Grid.Item icon={Icon.Star} title="Augustiner Helles" subtitle="0,5 Liter" />
3915
+ * <Grid.Item content={Icon.Star} title="Augustiner Helles" subtitle="0,5 Liter" />
3916
3916
  * </Grid>
3917
3917
  * );
3918
3918
  * }
@@ -4494,7 +4494,9 @@ export declare enum Icon {
4494
4494
  /** @deprecated Use {@link Icon.SpeakerOff} instead. */
4495
4495
  SpeakerSlash = "speaker-off-16",
4496
4496
  /** @deprecated Use {@link Icon.BlankDocument} instead. */
4497
- TextDocument = "blank-document-16"
4497
+ TextDocument = "blank-document-16",
4498
+ /** @deprecated Use {@link Icon.XMarkCircle} instead. */
4499
+ XmarkCircle = "x-mark-circle-16"
4498
4500
  }
4499
4501
 
4500
4502
  /**