@raycast/api 1.37.1 → 1.38.0
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 +583 -45
- package/bin/arm64/ray +0 -0
- package/bin/x86/ray +0 -0
- package/package.json +1 -1
- package/types/index.d.ts +436 -49
package/bin/arm64/ray
CHANGED
|
Binary file
|
package/bin/x86/ray
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -37,10 +37,13 @@ import { RefAttributes } from 'react';
|
|
|
37
37
|
* }
|
|
38
38
|
* ```
|
|
39
39
|
*/
|
|
40
|
-
export declare const Action: FunctionComponent<ActionProps> & ConvenienceActions
|
|
40
|
+
export declare const Action: FunctionComponent<ActionProps> & ConvenienceActions & {
|
|
41
|
+
Style: typeof ActionStyle;
|
|
42
|
+
};
|
|
41
43
|
|
|
42
44
|
export declare namespace Action {
|
|
43
45
|
export type Props = ActionProps;
|
|
46
|
+
export type Style = ActionStyle;
|
|
44
47
|
export namespace CopyToClipboard {
|
|
45
48
|
/**
|
|
46
49
|
* Props of the {@link Action.CopyToClipboard} React component.
|
|
@@ -194,7 +197,11 @@ declare type ActionPanelChildren_2 = ReactElement<ActionPanel.Section.Props> | R
|
|
|
194
197
|
/**
|
|
195
198
|
* @deprecated Use {@link Action} instead.
|
|
196
199
|
*/
|
|
197
|
-
export declare const ActionPanelItem: FunctionComponent<ActionProps> & ConvenienceActions
|
|
200
|
+
export declare const ActionPanelItem: FunctionComponent<ActionProps> & ConvenienceActions & {
|
|
201
|
+
Style: ActionStyle; /**
|
|
202
|
+
* @deprecated Use {@link Image.ImageLike} instead
|
|
203
|
+
*/
|
|
204
|
+
};
|
|
198
205
|
|
|
199
206
|
/**
|
|
200
207
|
* @deprecated Use {@link Action.Props} instead.
|
|
@@ -360,6 +367,16 @@ declare interface ActionProps {
|
|
|
360
367
|
* The icon displayed for the action.
|
|
361
368
|
*/
|
|
362
369
|
icon?: Image.ImageLike | undefined | null;
|
|
370
|
+
/**
|
|
371
|
+
* Defines the visual style of the Action.
|
|
372
|
+
*
|
|
373
|
+
* @remarks
|
|
374
|
+
* Use {@link Action.Style.Regular} for displaying a regular actions.
|
|
375
|
+
* Use {@link Action.Style.Destructive} when your action has something that user should be careful about.
|
|
376
|
+
* Use the confirmation {@link Alert} if the action is doing something that user cannot revert.
|
|
377
|
+
* @defaultValue {@link Action.Style.Regular}
|
|
378
|
+
*/
|
|
379
|
+
style?: ActionStyle;
|
|
363
380
|
/**
|
|
364
381
|
* The keyboard shortcut for the item.
|
|
365
382
|
*
|
|
@@ -384,6 +401,19 @@ declare interface ActionsInterface {
|
|
|
384
401
|
actions?: ReactNode;
|
|
385
402
|
}
|
|
386
403
|
|
|
404
|
+
/**
|
|
405
|
+
* Defines the visual style of the Action.
|
|
406
|
+
*
|
|
407
|
+
* @remarks
|
|
408
|
+
* Use {@link Action.Style.Regular} for displaying a regular actions.
|
|
409
|
+
* Use {@link Action.Style.Destructive} when your action has something that user should be careful about.
|
|
410
|
+
* Use the confirmation {@link Alert} if the action is doing something that user cannot revert.
|
|
411
|
+
*/
|
|
412
|
+
declare enum ActionStyle {
|
|
413
|
+
Regular = "regular",
|
|
414
|
+
Destructive = "destructive"
|
|
415
|
+
}
|
|
416
|
+
|
|
387
417
|
export declare namespace Alert {
|
|
388
418
|
/**
|
|
389
419
|
* The options to create an {@link Alert}.
|
|
@@ -513,7 +543,7 @@ export declare interface Application {
|
|
|
513
543
|
*
|
|
514
544
|
* The Cache class provides CRUD-style methods (get, set, remove) to update and retrieve data synchronously based on a key.
|
|
515
545
|
* The data must be a string and it is up to the client to decide which serialization format to use.
|
|
516
|
-
*
|
|
546
|
+
* A typical use case would be to use `JSON.stringify` and `JSON.parse`.
|
|
517
547
|
*
|
|
518
548
|
* @remarks By default, the cache is shared between the commands of an extension. Use {@link Cache.Options} to configure
|
|
519
549
|
* a `namespace` per command if needed (for example, set it to `environment.commandName`).
|
|
@@ -576,9 +606,9 @@ export declare class Cache {
|
|
|
576
606
|
}): void;
|
|
577
607
|
/**
|
|
578
608
|
* Registers a new subscriber that gets notified when cache data is set or removed.
|
|
579
|
-
* @returns a function that can be
|
|
609
|
+
* @returns a function that can be called to remove the subscriber.
|
|
580
610
|
*/
|
|
581
|
-
subscribe(
|
|
611
|
+
subscribe(subscriber: Cache.Subscriber): Cache.Subscription;
|
|
582
612
|
private maintainCapacity;
|
|
583
613
|
private notifySubscribers;
|
|
584
614
|
}
|
|
@@ -596,11 +626,12 @@ export declare namespace Cache {
|
|
|
596
626
|
namespace?: string;
|
|
597
627
|
/**
|
|
598
628
|
* The parent directory for the cache data.
|
|
629
|
+
* @deprecated this parameter will be removed in the future – use the default directory.
|
|
599
630
|
*/
|
|
600
631
|
directory?: string;
|
|
601
632
|
/**
|
|
602
633
|
* The capacity in bytes. If the stored data exceeds the capacity, the least recently used data is removed.
|
|
603
|
-
*
|
|
634
|
+
* The default capacity is 10 MB.
|
|
604
635
|
*/
|
|
605
636
|
capacity?: number;
|
|
606
637
|
}
|
|
@@ -1175,13 +1206,10 @@ declare interface ConvenienceActions {
|
|
|
1175
1206
|
* <List>
|
|
1176
1207
|
* <List.Item
|
|
1177
1208
|
* title="Preview me"
|
|
1209
|
+
* quickLook={{ path: "~/Downloads/Raycast.dmg", name: "Some file" }}
|
|
1178
1210
|
* actions={
|
|
1179
1211
|
* <ActionPanel>
|
|
1180
|
-
* <Action.ToggleQuickLook
|
|
1181
|
-
* name="Some file"
|
|
1182
|
-
* path="~/Downloads/Raycast.dmg"
|
|
1183
|
-
* shortcut={{ modifiers: ["cmd"], key: "y" }}
|
|
1184
|
-
* />
|
|
1212
|
+
* <Action.ToggleQuickLook shortcut={{ modifiers: ["cmd"], key: "y" }} />
|
|
1185
1213
|
* </ActionPanel>
|
|
1186
1214
|
* }
|
|
1187
1215
|
* />
|
|
@@ -2080,6 +2108,7 @@ export declare interface Environment {
|
|
|
2080
2108
|
* The theme used by the Raycast application.
|
|
2081
2109
|
*/
|
|
2082
2110
|
theme: "light" | "dark";
|
|
2111
|
+
|
|
2083
2112
|
}
|
|
2084
2113
|
|
|
2085
2114
|
/**
|
|
@@ -2096,6 +2125,7 @@ export declare interface Environment {
|
|
|
2096
2125
|
* console.log(`Support path: ${environment.supportPath}`);
|
|
2097
2126
|
* console.log(`Is development mode: ${environment.isDevelopment}`);
|
|
2098
2127
|
* console.log(`Raycast theme: ${environment.theme}`);
|
|
2128
|
+
* console.log(`Raycast launchType: ${environment.launchType}`);
|
|
2099
2129
|
* ```
|
|
2100
2130
|
*/
|
|
2101
2131
|
export declare const environment: Environment;
|
|
@@ -3900,11 +3930,10 @@ declare interface GridMembers {
|
|
|
3900
3930
|
* import { Grid } from "@raycast/api";
|
|
3901
3931
|
*
|
|
3902
3932
|
* function DrinkDropdown(props: DrinkDropdownProps) {
|
|
3903
|
-
* const {
|
|
3933
|
+
* const { drinkTypes, onDrinkTypeChange } = props;
|
|
3904
3934
|
* return (
|
|
3905
3935
|
* <Grid.Dropdown
|
|
3906
3936
|
* tooltip="Select Drink Type"
|
|
3907
|
-
* disabled={isLoading}
|
|
3908
3937
|
* storeValue={true}
|
|
3909
3938
|
* onChange={(newValue) => {
|
|
3910
3939
|
* onDrinkTypeChange(newValue);
|
|
@@ -4022,55 +4051,419 @@ declare interface GridProps extends ActionsInterface, NavigationChildInterface {
|
|
|
4022
4051
|
* ```
|
|
4023
4052
|
*/
|
|
4024
4053
|
export declare enum Icon {
|
|
4054
|
+
AddPerson = "add-person-16",
|
|
4055
|
+
Airplane = "airplane-16",
|
|
4056
|
+
AirplaneFilled = "airplane-filled-16",
|
|
4057
|
+
AirplaneLanding = "airplane-landing-16",
|
|
4058
|
+
AirplaneTakeoff = "airplane-takeoff-16",
|
|
4059
|
+
Airpods = "airpods-16",
|
|
4060
|
+
Alarm = "alarm-16",
|
|
4061
|
+
AlarmRinging = "alarm-ringing-16",
|
|
4062
|
+
AlignCentre = "align-centre-16",
|
|
4063
|
+
AlignLeft = "align-left-16",
|
|
4064
|
+
AlignRight = "align-right-16",
|
|
4065
|
+
AmericanFootball = "american-football-16",
|
|
4066
|
+
Anchor = "anchor-16",
|
|
4067
|
+
AppWindow = "app-window-16",
|
|
4068
|
+
AppWindowGrid2x2 = "app-window-grid-2x2-16",
|
|
4069
|
+
AppWindowGrid3x3 = "app-window-grid-3x3-16",
|
|
4070
|
+
AppWindowList = "app-window-list-16",
|
|
4071
|
+
AppWindowSidebarLeft = "app-window-sidebar-left-16",
|
|
4072
|
+
AppWindowSidebarRight = "app-window-sidebar-right-16",
|
|
4025
4073
|
ArrowClockwise = "arrow-clockwise-16",
|
|
4026
|
-
|
|
4074
|
+
ArrowCounterClockwise = "arrow-counter-clockwise-16",
|
|
4075
|
+
ArrowDown = "arrow-down-16",
|
|
4076
|
+
ArrowDownCircle = "arrow-down-circle-16",
|
|
4077
|
+
ArrowDownCircleFilled = "arrow-down-circle-filled-16",
|
|
4078
|
+
ArrowLeft = "arrow-left-16",
|
|
4079
|
+
ArrowLeftCircle = "arrow-left-circle-16",
|
|
4080
|
+
ArrowLeftCircleFilled = "arrow-left-circle-filled-16",
|
|
4081
|
+
ArrowNe = "arrow-ne-16",
|
|
4027
4082
|
ArrowRight = "arrow-right-16",
|
|
4083
|
+
ArrowRightCircle = "arrow-right-circle-16",
|
|
4084
|
+
ArrowRightCircleFilled = "arrow-right-circle-filled-16",
|
|
4085
|
+
ArrowUp = "arrow-up-16",
|
|
4086
|
+
ArrowUpCircle = "arrow-up-circle-16",
|
|
4087
|
+
ArrowUpCircleFilled = "arrow-up-circle-filled-16",
|
|
4088
|
+
AtSymbol = "at-symbol-16",
|
|
4089
|
+
BandAid = "band-aid-16",
|
|
4090
|
+
BankNote = "bank-note-16",
|
|
4091
|
+
BarChart = "bar-chart-16",
|
|
4092
|
+
BarCode = "bar-code-16",
|
|
4093
|
+
BathTub = "bath-tub-16",
|
|
4094
|
+
Battery = "battery-16",
|
|
4095
|
+
BatteryCharging = "battery-charging-16",
|
|
4096
|
+
BatteryDisabled = "battery-disabled-16",
|
|
4097
|
+
Bell = "bell-16",
|
|
4098
|
+
BellDisabled = "bell-disabled-16",
|
|
4099
|
+
Bike = "bike-16",
|
|
4028
4100
|
Binoculars = "binoculars-16",
|
|
4029
|
-
|
|
4101
|
+
BlankDocument = "blank-document-16",
|
|
4102
|
+
Bluetooth = "bluetooth-16",
|
|
4103
|
+
Boat = "boat-16",
|
|
4104
|
+
Bold = "bold-16",
|
|
4105
|
+
Bolt = "bolt-16",
|
|
4106
|
+
BoltDisabled = "bolt-disabled-16",
|
|
4107
|
+
Book = "book-16",
|
|
4108
|
+
Bookmark = "bookmark-16",
|
|
4109
|
+
Box = "box-16",
|
|
4110
|
+
Brush = "brush-16",
|
|
4111
|
+
Bubble = "speech-bubble-16",
|
|
4112
|
+
Bug = "bug-16",
|
|
4113
|
+
BulletPoints = "bullet-points-16",
|
|
4114
|
+
BullsEye = "bulls-eye-16",
|
|
4115
|
+
Buoy = "buoy-16",
|
|
4116
|
+
Calculator = "calculator-16",
|
|
4030
4117
|
Calendar = "calendar-16",
|
|
4031
|
-
|
|
4118
|
+
Camera = "camera-16",
|
|
4119
|
+
Car = "car-16",
|
|
4120
|
+
Cart = "cart-16",
|
|
4121
|
+
Cd = "cd-16",
|
|
4122
|
+
Center = "center-16",
|
|
4123
|
+
Check = "check-16",
|
|
4124
|
+
CheckCircle = "check-circle-16",
|
|
4125
|
+
Checkmark = "check-circle-16",
|
|
4126
|
+
ChessPiece = "chess-piece-16",
|
|
4032
4127
|
ChevronDown = "chevron-down-16",
|
|
4128
|
+
ChevronLeft = "chevron-left-16",
|
|
4129
|
+
ChevronRight = "chevron-right-16",
|
|
4033
4130
|
ChevronUp = "chevron-up-16",
|
|
4034
4131
|
Circle = "circle-16",
|
|
4035
|
-
|
|
4132
|
+
CircleEllipsis = "circle-ellipsis-16",
|
|
4133
|
+
CircleFilled = "circle-filled-16",
|
|
4134
|
+
CircleProgress = "circle-progress-16",
|
|
4135
|
+
CircleProgress100 = "circle-progress-100-16",
|
|
4136
|
+
CircleProgress25 = "circle-progress-25-16",
|
|
4137
|
+
CircleProgress50 = "circle-progress-50-16",
|
|
4138
|
+
CircleProgress75 = "circle-progress-75-16",
|
|
4139
|
+
ClearFormatting = "clear-formatting-16",
|
|
4140
|
+
Clipboard = "copy-clipboard-16",
|
|
4036
4141
|
Clock = "clock-16",
|
|
4037
|
-
|
|
4038
|
-
|
|
4142
|
+
Cloud = "cloud-16",
|
|
4143
|
+
CloudLightning = "cloud-lightning-16",
|
|
4144
|
+
CloudRain = "cloud-rain-16",
|
|
4145
|
+
CloudSnow = "cloud-snow-16",
|
|
4146
|
+
CloudSun = "cloud-sun-16",
|
|
4147
|
+
Code = "code-16",
|
|
4148
|
+
CodeBlock = "code-block-16",
|
|
4149
|
+
Cog = "cog-16",
|
|
4150
|
+
Coin = "coin-16",
|
|
4151
|
+
Coins = "coins-16",
|
|
4152
|
+
Compass = "compass-16",
|
|
4153
|
+
ComputerChip = "computer-chip-16",
|
|
4154
|
+
Contrast = "contrast-16",
|
|
4155
|
+
CopyClipboard = "copy-clipboard-16",
|
|
4156
|
+
CreditCard = "credit-card-16",
|
|
4157
|
+
CricketBall = "cricket-ball-16",
|
|
4158
|
+
Crop = "crop-16",
|
|
4159
|
+
Crown = "crown-16",
|
|
4160
|
+
Crypto = "crypto-16",
|
|
4161
|
+
DeleteDocument = "delete-document-16",
|
|
4162
|
+
Desktop = "desktop-16",
|
|
4163
|
+
Dna = "dna-16",
|
|
4164
|
+
Document = "blank-document-16",
|
|
4039
4165
|
Dot = "dot-16",
|
|
4040
|
-
Download = "
|
|
4166
|
+
Download = "download-16",
|
|
4167
|
+
EditShape = "edit-shape-16",
|
|
4168
|
+
Eject = "eject-16",
|
|
4169
|
+
Ellipsis = "ellipsis-16",
|
|
4170
|
+
Emoji = "emoji-16",
|
|
4041
4171
|
Envelope = "envelope-16",
|
|
4042
|
-
|
|
4172
|
+
Eraser = "eraser-16",
|
|
4173
|
+
ExclamationMark = "important-01-16",
|
|
4174
|
+
Exclamationmark = "exclamationmark-16",
|
|
4175
|
+
Exclamationmark2 = "exclamationmark-2-16",
|
|
4176
|
+
Exclamationmark3 = "exclamationmark-3-16",
|
|
4043
4177
|
Eye = "eye-16",
|
|
4044
|
-
|
|
4178
|
+
EyeDisabled = "eye-disabled-16",
|
|
4179
|
+
EyeDropper = "eye-dropper-16",
|
|
4180
|
+
Female = "female-16",
|
|
4181
|
+
FilmStrip = "film-strip-16",
|
|
4182
|
+
Filter = "filter-16",
|
|
4045
4183
|
Finder = "finder-16",
|
|
4046
|
-
|
|
4047
|
-
|
|
4184
|
+
Fingerprint = "fingerprint-16",
|
|
4185
|
+
Folder = "folder-16",
|
|
4186
|
+
Footprints = "footprints-16",
|
|
4187
|
+
Forward = "forward-16",
|
|
4188
|
+
ForwardFilled = "forward-filled-16",
|
|
4189
|
+
FountainTip = "fountain-tip-16",
|
|
4190
|
+
FullSignal = "full-signal-16",
|
|
4191
|
+
GameController = "game-controller-16",
|
|
4192
|
+
Gauge = "gauge-16",
|
|
4193
|
+
Gear = "cog-16",
|
|
4194
|
+
Geopin = "geopin-16",
|
|
4195
|
+
Germ = "germ-16",
|
|
4196
|
+
Gift = "gift-16",
|
|
4197
|
+
Glasses = "glasses-16",
|
|
4198
|
+
Globe = "globe-01-16",
|
|
4199
|
+
Goal = "goal-16",
|
|
4048
4200
|
Hammer = "hammer-16",
|
|
4049
|
-
|
|
4201
|
+
HardDrive = "hard-drive-16",
|
|
4202
|
+
Hashtag = "hashtag-16",
|
|
4203
|
+
Headphones = "headphones-16",
|
|
4204
|
+
Heart = "heart-16",
|
|
4205
|
+
HeartDisabled = "heart-disabled-16",
|
|
4206
|
+
Heartbeat = "heartbeat-16",
|
|
4207
|
+
Highlight = "highlight-16",
|
|
4208
|
+
Hourglass = "hourglass-16",
|
|
4209
|
+
House = "house-16",
|
|
4210
|
+
Image = "image-16",
|
|
4211
|
+
Important = "important-01-16",
|
|
4212
|
+
Info = "info-01-16",
|
|
4213
|
+
Italics = "italics-16",
|
|
4214
|
+
Key = "key-16",
|
|
4215
|
+
Keyboard = "keyboard-16",
|
|
4216
|
+
Layers = "layers-16",
|
|
4217
|
+
Leaderboard = "leaderboard-16",
|
|
4218
|
+
Leaf = "leaf-16",
|
|
4219
|
+
LevelMeter = "signal-2-16",
|
|
4220
|
+
LightBulb = "light-bulb-16",
|
|
4221
|
+
LightBulbOff = "light-bulb-off-16",
|
|
4222
|
+
LineChart = "line-chart-16",
|
|
4050
4223
|
Link = "link-16",
|
|
4051
|
-
List = "
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4224
|
+
List = "app-window-list-16",
|
|
4225
|
+
Livestream = "livestream-01-16",
|
|
4226
|
+
Lock = "lock-16",
|
|
4227
|
+
LockDisabled = "lock-disabled-16",
|
|
4228
|
+
LockUnlocked = "lock-unlocked-16",
|
|
4229
|
+
Logout = "logout-16",
|
|
4230
|
+
Lorry = "lorry-16",
|
|
4231
|
+
Lowercase = "lowercase-16",
|
|
4232
|
+
MagnifyingGlass = "magnifying-glass-16",
|
|
4233
|
+
Male = "male-16",
|
|
4234
|
+
Map = "map-16",
|
|
4235
|
+
Mask = "mask-16",
|
|
4236
|
+
Maximize = "maximize-16",
|
|
4237
|
+
MedicalSupport = "medical-support-16",
|
|
4238
|
+
Megaphone = "megaphone-16",
|
|
4239
|
+
MemoryChip = "computer-chip-16",
|
|
4240
|
+
MemoryStick = "memory-stick-16",
|
|
4241
|
+
Message = "speech-bubble-16",
|
|
4242
|
+
Microphone = "microphone-16",
|
|
4243
|
+
MicrophoneDisabled = "microphone-disabled-16",
|
|
4244
|
+
Minimize = "minimize-16",
|
|
4245
|
+
Minus = "minus-16",
|
|
4246
|
+
MinusCircle = "minus-circle-16",
|
|
4247
|
+
MinusCircleFilled = "minus-circle-filled-16",
|
|
4248
|
+
Mobile = "mobile-16",
|
|
4249
|
+
Monitor = "monitor-16",
|
|
4250
|
+
Moon = "moon-16",
|
|
4251
|
+
Mountain = "mountain-16",
|
|
4252
|
+
Mouse = "mouse-16",
|
|
4253
|
+
Multiply = "multiply-16",
|
|
4254
|
+
Music = "music-16",
|
|
4255
|
+
Network = "network-16",
|
|
4256
|
+
NewDocument = "new-document-16",
|
|
4257
|
+
NewFolder = "new-folder-16",
|
|
4258
|
+
Number = "number-01-16",
|
|
4259
|
+
Number00 = "number-00-16",
|
|
4260
|
+
Number10 = "number-10-16",
|
|
4261
|
+
Number11 = "number-11-16",
|
|
4262
|
+
Number12 = "number-12-16",
|
|
4263
|
+
Number13 = "number-13-16",
|
|
4264
|
+
Number14 = "number-14-16",
|
|
4265
|
+
Number15 = "number-15-16",
|
|
4266
|
+
Number16 = "number-16-16",
|
|
4267
|
+
Number17 = "number-17-16",
|
|
4268
|
+
Number18 = "number-18-16",
|
|
4269
|
+
Number19 = "number-19-16",
|
|
4270
|
+
Number20 = "number-20-16",
|
|
4271
|
+
Number21 = "number-21-16",
|
|
4272
|
+
Number22 = "number-22-16",
|
|
4273
|
+
Number23 = "number-23-16",
|
|
4274
|
+
Number24 = "number-24-16",
|
|
4275
|
+
Number25 = "number-25-16",
|
|
4276
|
+
Number26 = "number-26-16",
|
|
4277
|
+
Number27 = "number-27-16",
|
|
4278
|
+
Number28 = "number-28-16",
|
|
4279
|
+
Number29 = "number-29-16",
|
|
4280
|
+
Number30 = "number-30-16",
|
|
4281
|
+
Number31 = "number-31-16",
|
|
4282
|
+
Number32 = "number-32-16",
|
|
4283
|
+
Number33 = "number-33-16",
|
|
4284
|
+
Number34 = "number-34-16",
|
|
4285
|
+
Number35 = "number-35-16",
|
|
4286
|
+
Number36 = "number-36-16",
|
|
4287
|
+
Number37 = "number-37-16",
|
|
4288
|
+
Number38 = "number-38-16",
|
|
4289
|
+
Number39 = "number-39-16",
|
|
4290
|
+
Number40 = "number-40-16",
|
|
4291
|
+
Number41 = "number-41-16",
|
|
4292
|
+
Number42 = "number-42-16",
|
|
4293
|
+
Number43 = "number-43-16",
|
|
4294
|
+
Number44 = "number-44-16",
|
|
4295
|
+
Number45 = "number-45-16",
|
|
4296
|
+
Number46 = "number-46-16",
|
|
4297
|
+
Number47 = "number-47-16",
|
|
4298
|
+
Number48 = "number-48-16",
|
|
4299
|
+
Number49 = "number-49-16",
|
|
4300
|
+
Number50 = "number-50-16",
|
|
4301
|
+
Number51 = "number-51-16",
|
|
4302
|
+
Number52 = "number-52-16",
|
|
4303
|
+
Number53 = "number-53-16",
|
|
4304
|
+
Number54 = "number-54-16",
|
|
4305
|
+
Number55 = "number-55-16",
|
|
4306
|
+
Number56 = "number-56-16",
|
|
4307
|
+
Number57 = "number-57-16",
|
|
4308
|
+
Number58 = "number-58-16",
|
|
4309
|
+
Number59 = "number-59-16",
|
|
4310
|
+
Number60 = "number-60-16",
|
|
4311
|
+
Number61 = "number-61-16",
|
|
4312
|
+
Number62 = "number-62-16",
|
|
4313
|
+
Number63 = "number-63-16",
|
|
4314
|
+
Number64 = "number-64-16",
|
|
4315
|
+
Number65 = "number-65-16",
|
|
4316
|
+
Number66 = "number-66-16",
|
|
4317
|
+
Number67 = "number-67-16",
|
|
4318
|
+
Number68 = "number-68-16",
|
|
4319
|
+
Number69 = "number-69-16",
|
|
4320
|
+
Number70 = "number-70-16",
|
|
4321
|
+
Number71 = "number-71-16",
|
|
4322
|
+
Number72 = "number-72-16",
|
|
4323
|
+
Number73 = "number-73-16",
|
|
4324
|
+
Number74 = "number-74-16",
|
|
4325
|
+
Number75 = "number-75-16",
|
|
4326
|
+
Number76 = "number-76-16",
|
|
4327
|
+
Number77 = "number-77-16",
|
|
4328
|
+
Number78 = "number-78-16",
|
|
4329
|
+
Number79 = "number-79-16",
|
|
4330
|
+
Number80 = "number-80-16",
|
|
4331
|
+
Number81 = "number-81-16",
|
|
4332
|
+
Number82 = "number-82-16",
|
|
4333
|
+
Number83 = "number-83-16",
|
|
4334
|
+
Number84 = "number-84-16",
|
|
4335
|
+
Number85 = "number-85-16",
|
|
4336
|
+
Number86 = "number-86-16",
|
|
4337
|
+
Number87 = "number-87-16",
|
|
4338
|
+
Number88 = "number-88-16",
|
|
4339
|
+
Number89 = "number-89-16",
|
|
4340
|
+
Number90 = "number-90-16",
|
|
4341
|
+
Number91 = "number-91-16",
|
|
4342
|
+
Number92 = "number-92-16",
|
|
4343
|
+
Number93 = "number-93-16",
|
|
4344
|
+
Number94 = "number-94-16",
|
|
4345
|
+
Number95 = "number-95-16",
|
|
4346
|
+
Number96 = "number-96-16",
|
|
4347
|
+
Number97 = "number-97-16",
|
|
4348
|
+
Number98 = "number-98-16",
|
|
4349
|
+
Number99 = "number-99-16",
|
|
4350
|
+
Paperclip = "paperclip-16",
|
|
4351
|
+
Patch = "patch-16",
|
|
4352
|
+
Pause = "pause-16",
|
|
4353
|
+
PauseFilled = "pause-filled-16",
|
|
4055
4354
|
Pencil = "pencil-16",
|
|
4056
|
-
Person = "person-
|
|
4355
|
+
Person = "person-16",
|
|
4356
|
+
PersonCircle = "person-circle-16",
|
|
4057
4357
|
Phone = "phone-16",
|
|
4358
|
+
PhoneRinging = "phone-ringing-16",
|
|
4359
|
+
PieChart = "pie-chart-16",
|
|
4360
|
+
Pill = "pill-16",
|
|
4058
4361
|
Pin = "pin-16",
|
|
4362
|
+
PinDisabled = "pin-disabled-16",
|
|
4363
|
+
Play = "play-16",
|
|
4364
|
+
PlayFilled = "play-filled-16",
|
|
4365
|
+
Plug = "plug-16",
|
|
4059
4366
|
Plus = "plus-16",
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4367
|
+
PlusCircle = "plus-circle-16",
|
|
4368
|
+
PlusCircleFilled = "plus-circle-filled-16",
|
|
4369
|
+
PlusMinusDivideMultiply = "plus-minus-divide-multiply-16",
|
|
4370
|
+
Power = "power-16",
|
|
4371
|
+
Print = "print-16",
|
|
4372
|
+
QuestionMark = "question-mark-circle-16",
|
|
4373
|
+
QuestionMarkCircle = "question-mark-circle-16",
|
|
4374
|
+
QuotationMarks = "quotation-marks-16",
|
|
4375
|
+
QuoteBlock = "quote-block-16",
|
|
4376
|
+
Racket = "racket-16",
|
|
4377
|
+
Raindrop = "raindrop-16",
|
|
4378
|
+
RaycastLogoNeg = "raycast-logo-neg-16",
|
|
4379
|
+
RaycastLogoPos = "raycast-logo-pos-16",
|
|
4380
|
+
Receipt = "receipt-16",
|
|
4381
|
+
Redo = "redo-16",
|
|
4382
|
+
RemovePerson = "remove-person-16",
|
|
4383
|
+
Repeat = "repeat-16",
|
|
4384
|
+
Reply = "reply-16",
|
|
4385
|
+
Rewind = "rewind-16",
|
|
4386
|
+
RewindFilled = "rewind-filled-16",
|
|
4387
|
+
Rocket = "rocket-16",
|
|
4388
|
+
Rosette = "rosette-16",
|
|
4389
|
+
RotateAntiClockwise = "rotate-anti-clockwise-16",
|
|
4390
|
+
RotateClockwise = "rotate-clockwise-16",
|
|
4391
|
+
Ruler = "ruler-16",
|
|
4392
|
+
SaveDocument = "save-document-16",
|
|
4393
|
+
Shield = "shield-01-16",
|
|
4394
|
+
Shuffle = "shuffle-16",
|
|
4395
|
+
Sidebar = "app-window-sidebar-right-16",
|
|
4396
|
+
Signal1 = "signal-1-16",
|
|
4397
|
+
Signal2 = "signal-2-16",
|
|
4398
|
+
Signal3 = "signal-3-16",
|
|
4399
|
+
Snippets = "snippets-16",
|
|
4400
|
+
Snowflake = "snowflake-16",
|
|
4401
|
+
SoccerBall = "soccer-ball-16",
|
|
4402
|
+
SpeakerDown = "speaker-down-16",
|
|
4403
|
+
SpeakerHigh = "speaker-high-16",
|
|
4404
|
+
SpeakerLow = "speaker-low-16",
|
|
4405
|
+
SpeakerOff = "speaker-off-16",
|
|
4406
|
+
SpeakerOn = "speaker-on-16",
|
|
4407
|
+
SpeakerUp = "speaker-up-16",
|
|
4408
|
+
SpeechBubble = "speech-bubble-16",
|
|
4409
|
+
SpeechBubbleActive = "speech-bubble-active-16",
|
|
4410
|
+
SpeechBubbleImportant = "speech-bubble-important-16",
|
|
4064
4411
|
Star = "star-16",
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4412
|
+
StarCircle = "star-circle-16",
|
|
4413
|
+
StarDisabled = "star-disabled-16",
|
|
4414
|
+
Stars = "stars-16",
|
|
4415
|
+
Stop = "stop-16",
|
|
4416
|
+
StopFilled = "stop-filled-16",
|
|
4417
|
+
Stopwatch = "stopwatch-16",
|
|
4418
|
+
Store = "store-16",
|
|
4419
|
+
StrikeThrough = "strike-through-16",
|
|
4420
|
+
Sun = "sun-16",
|
|
4421
|
+
Sunrise = "sunrise-16",
|
|
4422
|
+
Swatch = "swatch-16",
|
|
4423
|
+
Switch = "switch-16",
|
|
4424
|
+
Syringe = "syringe-16",
|
|
4425
|
+
Tag = "tag-16",
|
|
4426
|
+
Temperature = "temperature-16",
|
|
4427
|
+
TennisBall = "tennis-ball-16",
|
|
4068
4428
|
Terminal = "terminal-16",
|
|
4429
|
+
Text = "text-16",
|
|
4430
|
+
TextCursor = "text-cursor-16",
|
|
4431
|
+
Torch = "torch-16",
|
|
4432
|
+
Train = "train-16",
|
|
4069
4433
|
Trash = "trash-16",
|
|
4070
|
-
|
|
4434
|
+
Tray = "tray-16",
|
|
4435
|
+
Tree = "tree-16",
|
|
4436
|
+
Trophy = "trophy-16",
|
|
4437
|
+
TwoPeople = "two-people-16",
|
|
4438
|
+
Umbrella = "umbrella-16",
|
|
4439
|
+
Underline = "underline-16",
|
|
4440
|
+
Undo = "undo-16",
|
|
4441
|
+
Upload = "upload-16",
|
|
4442
|
+
Uppercase = "uppercase-16",
|
|
4071
4443
|
Video = "video-16",
|
|
4072
|
-
|
|
4073
|
-
|
|
4444
|
+
Wallet = "wallet-16",
|
|
4445
|
+
Wand = "wand-16",
|
|
4446
|
+
Warning = "warning-16",
|
|
4447
|
+
Weights = "weights-16",
|
|
4448
|
+
Wifi = "wifi-16",
|
|
4449
|
+
WifiDisabled = "wifi-disabled-16",
|
|
4450
|
+
Window = "app-window-16",
|
|
4451
|
+
WrenchScrewdriver = "wrench-screwdriver-16",
|
|
4452
|
+
WristWatch = "wrist-watch-16",
|
|
4453
|
+
XMarkCircle = "x-mark-circle-16",
|
|
4454
|
+
XMarkCircleFilled = "x-mark-circle-filled-16",
|
|
4455
|
+
/** @deprecated Use {@link Icon.ArrowClockwise} instead. */
|
|
4456
|
+
TwoArrowsClockwise = "arrow-clockwise-16",
|
|
4457
|
+
/** @deprecated Use {@link Icon.EyeDisabled} instead. */
|
|
4458
|
+
EyeSlash = "eye-disabled-16",
|
|
4459
|
+
/** @deprecated Use {@link Icon.SpeakerDown} instead. */
|
|
4460
|
+
SpeakerArrowDown = "speaker-down-16",
|
|
4461
|
+
/** @deprecated Use {@link Icon.SpeakerUp} instead. */
|
|
4462
|
+
SpeakerArrowUp = "speaker-up-16",
|
|
4463
|
+
/** @deprecated Use {@link Icon.SpeakerOff} instead. */
|
|
4464
|
+
SpeakerSlash = "speaker-off-16",
|
|
4465
|
+
/** @deprecated Use {@link Icon.BlankDocument} instead. */
|
|
4466
|
+
TextDocument = "blank-document-16"
|
|
4074
4467
|
}
|
|
4075
4468
|
|
|
4076
4469
|
/**
|
|
@@ -4364,7 +4757,7 @@ declare interface ItemProps extends ActionsInterface {
|
|
|
4364
4757
|
*/
|
|
4365
4758
|
detail?: ReactNode;
|
|
4366
4759
|
/**
|
|
4367
|
-
* Optional information to preview files with Quick Look. Toggle the preview
|
|
4760
|
+
* Optional information to preview files with Quick Look. Toggle the preview with {@link Action.ToggleQuickLook}.
|
|
4368
4761
|
*
|
|
4369
4762
|
* @remarks
|
|
4370
4763
|
* If no `name` is specified, the file name of the given path is used.
|
|
@@ -4536,11 +4929,6 @@ declare interface LabelProps_2 {
|
|
|
4536
4929
|
text?: string;
|
|
4537
4930
|
}
|
|
4538
4931
|
|
|
4539
|
-
/**
|
|
4540
|
-
* The top-level props that a Command receives on launch
|
|
4541
|
-
*/
|
|
4542
|
-
export declare type LaunchProps = FormLaunchProps;
|
|
4543
|
-
|
|
4544
4932
|
/**
|
|
4545
4933
|
* See {@link Detail.Metadata.Link}
|
|
4546
4934
|
*/
|
|
@@ -4786,11 +5174,10 @@ declare interface ListMembers {
|
|
|
4786
5174
|
* import { List } from "@raycast/api";
|
|
4787
5175
|
*
|
|
4788
5176
|
* function DrinkDropdown(props: DrinkDropdownProps) {
|
|
4789
|
-
* const {
|
|
5177
|
+
* const { drinkTypes, onDrinkTypeChange } = props;
|
|
4790
5178
|
* return (
|
|
4791
5179
|
* <List.Dropdown
|
|
4792
5180
|
* tooltip="Select Drink Type"
|
|
4793
|
-
* disabled={isLoading}
|
|
4794
5181
|
* storeValue={true}
|
|
4795
5182
|
* onChange={(newValue) => {
|
|
4796
5183
|
* onDrinkTypeChange(newValue);
|
|
@@ -6604,7 +6991,7 @@ export declare const ToastStyle: typeof Toast.Style;
|
|
|
6604
6991
|
declare const ToggleQuickLook: FunctionComponent<ToggleQuickLookProps>;
|
|
6605
6992
|
|
|
6606
6993
|
/**
|
|
6607
|
-
* See {@link Action.
|
|
6994
|
+
* See {@link Action.ToggleQuickLook.Props}
|
|
6608
6995
|
*/
|
|
6609
6996
|
declare interface ToggleQuickLookProps {
|
|
6610
6997
|
/**
|