@raycast/api 1.36.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 +886 -54
- package/bin/arm64/ray +0 -0
- package/bin/x86/ray +0 -0
- package/package.json +6 -4
- package/types/index.d.ts +755 -49
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.
|
|
@@ -107,6 +110,12 @@ export declare namespace Action {
|
|
|
107
110
|
*/
|
|
108
111
|
export type Props = TrashProps;
|
|
109
112
|
}
|
|
113
|
+
export namespace ToggleQuickLook {
|
|
114
|
+
/**
|
|
115
|
+
* Props of the {@link Action.ToggleQuickLook} React component.
|
|
116
|
+
*/
|
|
117
|
+
export type Props = ToggleQuickLookProps;
|
|
118
|
+
}
|
|
110
119
|
}
|
|
111
120
|
|
|
112
121
|
/**
|
|
@@ -188,7 +197,11 @@ declare type ActionPanelChildren_2 = ReactElement<ActionPanel.Section.Props> | R
|
|
|
188
197
|
/**
|
|
189
198
|
* @deprecated Use {@link Action} instead.
|
|
190
199
|
*/
|
|
191
|
-
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
|
+
};
|
|
192
205
|
|
|
193
206
|
/**
|
|
194
207
|
* @deprecated Use {@link Action.Props} instead.
|
|
@@ -354,6 +367,16 @@ declare interface ActionProps {
|
|
|
354
367
|
* The icon displayed for the action.
|
|
355
368
|
*/
|
|
356
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;
|
|
357
380
|
/**
|
|
358
381
|
* The keyboard shortcut for the item.
|
|
359
382
|
*
|
|
@@ -378,6 +401,19 @@ declare interface ActionsInterface {
|
|
|
378
401
|
actions?: ReactNode;
|
|
379
402
|
}
|
|
380
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
|
+
|
|
381
417
|
export declare namespace Alert {
|
|
382
418
|
/**
|
|
383
419
|
* The options to create an {@link Alert}.
|
|
@@ -500,6 +536,109 @@ export declare interface Application {
|
|
|
500
536
|
bundleId?: string;
|
|
501
537
|
}
|
|
502
538
|
|
|
539
|
+
/**
|
|
540
|
+
* Caching abstraction that stores data on disk and supports LRU (least recently used) access.
|
|
541
|
+
* Since extensions can only consume up to a max. heap memory size, the cache only maintains a lightweight index in memory
|
|
542
|
+
* and stores the actual data in separate files on disk in the extension's support directory.
|
|
543
|
+
*
|
|
544
|
+
* The Cache class provides CRUD-style methods (get, set, remove) to update and retrieve data synchronously based on a key.
|
|
545
|
+
* The data must be a string and it is up to the client to decide which serialization format to use.
|
|
546
|
+
* A typical use case would be to use `JSON.stringify` and `JSON.parse`.
|
|
547
|
+
*
|
|
548
|
+
* @remarks By default, the cache is shared between the commands of an extension. Use {@link Cache.Options} to configure
|
|
549
|
+
* a `namespace` per command if needed (for example, set it to `environment.commandName`).
|
|
550
|
+
*
|
|
551
|
+
* @example
|
|
552
|
+
* ```typescript
|
|
553
|
+
* import { Cache } from "@raycast/api";
|
|
554
|
+
*
|
|
555
|
+
* const cache = new Cache();
|
|
556
|
+
* cache.set("items", JSON.stringify([{ id: "1", title: "Item 1" }]));
|
|
557
|
+
* console.log(JSON.parse(cache.get("items")));
|
|
558
|
+
* ```
|
|
559
|
+
*/
|
|
560
|
+
export declare class Cache {
|
|
561
|
+
static get STORAGE_DIRECTORY_NAME(): string;
|
|
562
|
+
static get DEFAULT_CAPACITY(): number;
|
|
563
|
+
private directory;
|
|
564
|
+
private namespace?;
|
|
565
|
+
private capacity;
|
|
566
|
+
private journal;
|
|
567
|
+
private storage;
|
|
568
|
+
private subscribers;
|
|
569
|
+
constructor(options?: Cache.Options);
|
|
570
|
+
/**
|
|
571
|
+
* @returns the full path to the directory where the data is stored on disk.
|
|
572
|
+
*/
|
|
573
|
+
get storageDirectory(): string;
|
|
574
|
+
/**
|
|
575
|
+
* @returns the data for the given key. If there is no data for the key, `undefined` is returned.
|
|
576
|
+
* @remarks If you want to just check for the existence of a key, use {@link has}.
|
|
577
|
+
*/
|
|
578
|
+
get(key: string): string | undefined;
|
|
579
|
+
/**
|
|
580
|
+
* @returns `true` if data for the key exists, `false` otherwise.
|
|
581
|
+
* @remarks You can use this method to check for entries without affecting the LRU access.
|
|
582
|
+
*/
|
|
583
|
+
has(key: string): boolean;
|
|
584
|
+
/**
|
|
585
|
+
* @returns `true` if the cache is empty, `false` otherwise.
|
|
586
|
+
*/
|
|
587
|
+
get isEmpty(): boolean;
|
|
588
|
+
/**
|
|
589
|
+
* Sets the data for the given key.
|
|
590
|
+
* If the data exceeds the configured `capacity`, the least recently used entries are removed.
|
|
591
|
+
* This also notifies registered subscribers (see {@link subscribe}).
|
|
592
|
+
*/
|
|
593
|
+
set(key: string, data: string): void;
|
|
594
|
+
/**
|
|
595
|
+
* Removes the data for the given key.
|
|
596
|
+
* This also notifies registered subscribers (see {@link subscribe}).
|
|
597
|
+
* @returns `true` if data for the key was removed, `false` otherwise.
|
|
598
|
+
*/
|
|
599
|
+
remove(key: string): boolean;
|
|
600
|
+
/**
|
|
601
|
+
* Clears all stored data.
|
|
602
|
+
* This also notifies registered subscribers (see {@link subscribe}) unless the `notifySubscribers` option is set to `false`.
|
|
603
|
+
*/
|
|
604
|
+
clear(options?: {
|
|
605
|
+
notifySubscribers: boolean;
|
|
606
|
+
}): void;
|
|
607
|
+
/**
|
|
608
|
+
* Registers a new subscriber that gets notified when cache data is set or removed.
|
|
609
|
+
* @returns a function that can be called to remove the subscriber.
|
|
610
|
+
*/
|
|
611
|
+
subscribe(subscriber: Cache.Subscriber): Cache.Subscription;
|
|
612
|
+
private maintainCapacity;
|
|
613
|
+
private notifySubscribers;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
export declare namespace Cache {
|
|
617
|
+
/**
|
|
618
|
+
* The options for creating a new {@link Cache}.
|
|
619
|
+
*/
|
|
620
|
+
export interface Options {
|
|
621
|
+
/**
|
|
622
|
+
* If set, the Cache will be namespaced via a subdirectory.
|
|
623
|
+
* This can be useful to separate the caches for individual commands of an extension.
|
|
624
|
+
* By default, the cache is shared between the commands of an extension.
|
|
625
|
+
*/
|
|
626
|
+
namespace?: string;
|
|
627
|
+
/**
|
|
628
|
+
* The parent directory for the cache data.
|
|
629
|
+
* @deprecated this parameter will be removed in the future – use the default directory.
|
|
630
|
+
*/
|
|
631
|
+
directory?: string;
|
|
632
|
+
/**
|
|
633
|
+
* The capacity in bytes. If the stored data exceeds the capacity, the least recently used data is removed.
|
|
634
|
+
* The default capacity is 10 MB.
|
|
635
|
+
*/
|
|
636
|
+
capacity?: number;
|
|
637
|
+
}
|
|
638
|
+
export type Subscriber = (key: string | undefined, data: string | undefined) => void;
|
|
639
|
+
export type Subscription = () => void;
|
|
640
|
+
}
|
|
641
|
+
|
|
503
642
|
/**
|
|
504
643
|
* See {@link Form.Checkbox}
|
|
505
644
|
*/
|
|
@@ -1055,6 +1194,31 @@ declare interface ConvenienceActions {
|
|
|
1055
1194
|
* ```
|
|
1056
1195
|
*/
|
|
1057
1196
|
CreateQuicklink: typeof CreateQuicklink;
|
|
1197
|
+
/**
|
|
1198
|
+
* Action that toggles the Quick Look to preview a file.
|
|
1199
|
+
*
|
|
1200
|
+
* @example
|
|
1201
|
+
* ```typescript
|
|
1202
|
+
* import { ActionPanel, List, Action } from "@raycast/api";
|
|
1203
|
+
*
|
|
1204
|
+
* export default function Command() {
|
|
1205
|
+
* return (
|
|
1206
|
+
* <List>
|
|
1207
|
+
* <List.Item
|
|
1208
|
+
* title="Preview me"
|
|
1209
|
+
* quickLook={{ path: "~/Downloads/Raycast.dmg", name: "Some file" }}
|
|
1210
|
+
* actions={
|
|
1211
|
+
* <ActionPanel>
|
|
1212
|
+
* <Action.ToggleQuickLook shortcut={{ modifiers: ["cmd"], key: "y" }} />
|
|
1213
|
+
* </ActionPanel>
|
|
1214
|
+
* }
|
|
1215
|
+
* />
|
|
1216
|
+
* </ List>
|
|
1217
|
+
* );
|
|
1218
|
+
* }
|
|
1219
|
+
* ```
|
|
1220
|
+
*/
|
|
1221
|
+
ToggleQuickLook: typeof ToggleQuickLook;
|
|
1058
1222
|
}
|
|
1059
1223
|
|
|
1060
1224
|
/**
|
|
@@ -1944,6 +2108,7 @@ export declare interface Environment {
|
|
|
1944
2108
|
* The theme used by the Raycast application.
|
|
1945
2109
|
*/
|
|
1946
2110
|
theme: "light" | "dark";
|
|
2111
|
+
|
|
1947
2112
|
}
|
|
1948
2113
|
|
|
1949
2114
|
/**
|
|
@@ -1960,6 +2125,7 @@ export declare interface Environment {
|
|
|
1960
2125
|
* console.log(`Support path: ${environment.supportPath}`);
|
|
1961
2126
|
* console.log(`Is development mode: ${environment.isDevelopment}`);
|
|
1962
2127
|
* console.log(`Raycast theme: ${environment.theme}`);
|
|
2128
|
+
* console.log(`Raycast launchType: ${environment.launchType}`);
|
|
1963
2129
|
* ```
|
|
1964
2130
|
*/
|
|
1965
2131
|
export declare const environment: Environment;
|
|
@@ -2007,6 +2173,18 @@ export declare namespace Form {
|
|
|
2007
2173
|
export type Value = FormValue_2;
|
|
2008
2174
|
export type Values = FormValues_2;
|
|
2009
2175
|
export type Props = FormProps_2;
|
|
2176
|
+
/**
|
|
2177
|
+
* An interface describing event in callbacks {@link Form.Item.Props.onFocus} and {@link Form.Item.Props.onBlur}
|
|
2178
|
+
*/
|
|
2179
|
+
export type Event<T extends FormValue_2> = FormEvent<T>;
|
|
2180
|
+
export namespace Event {
|
|
2181
|
+
/**
|
|
2182
|
+
* Types of Form event {@link Form.Event}
|
|
2183
|
+
* * `focus` - the type will be returned for the event of {@link Form.Item.Props.onFocus} callback
|
|
2184
|
+
* * `blur` - the type will be returned for the event of {@link Form.Item.Props.onBlur} callback
|
|
2185
|
+
*/
|
|
2186
|
+
export type Type = FormEventType;
|
|
2187
|
+
}
|
|
2010
2188
|
/**
|
|
2011
2189
|
* A Ref Type for the {@link Form.TextField}.
|
|
2012
2190
|
* Use refs to control your Form by calling `Form.TextField.focus()` or `Form.TextField.reset()` functions.
|
|
@@ -2635,6 +2813,65 @@ export declare const FormDropdownSection: typeof Form.Dropdown.Section;
|
|
|
2635
2813
|
export declare interface FormDropdownSectionProps extends Form.Dropdown.Section.Props {
|
|
2636
2814
|
}
|
|
2637
2815
|
|
|
2816
|
+
/**
|
|
2817
|
+
* An interface describing Form events in callbacks
|
|
2818
|
+
*
|
|
2819
|
+
* @example
|
|
2820
|
+
* ```typescript
|
|
2821
|
+
*import { Form } from "@raycast/api";
|
|
2822
|
+
*
|
|
2823
|
+
*export default function Main() {
|
|
2824
|
+
* return (
|
|
2825
|
+
* <Form>
|
|
2826
|
+
* <Form.TextField id="textField" title="Text Field" onBlur={logEvent} onFocus={logEvent} />
|
|
2827
|
+
* <Form.TextArea id="textArea" title="Text Area" onBlur={logEvent} onFocus={logEvent} />
|
|
2828
|
+
* <Form.Dropdown id="dropdown" title="Dropdown" onBlur={logEvent} onFocus={logEvent}>
|
|
2829
|
+
* {[1, 2, 3, 4, 5, 6, 7].map((num) => (
|
|
2830
|
+
* <Form.Dropdown.Item value={String(num)} title={String(num)} key={num} />
|
|
2831
|
+
* ))}
|
|
2832
|
+
* </Form.Dropdown>
|
|
2833
|
+
* <Form.TagPicker id="tagPicker" title="Tag Picker" onBlur={logEvent} onFocus={logEvent}>
|
|
2834
|
+
* {[1, 2, 3, 4, 5, 6, 7].map((num) => (
|
|
2835
|
+
* <Form.TagPicker.Item value={String(num)} title={String(num)} key={num} />
|
|
2836
|
+
* ))}
|
|
2837
|
+
* </Form.TagPicker>
|
|
2838
|
+
* </Form>
|
|
2839
|
+
* );
|
|
2840
|
+
*}
|
|
2841
|
+
*
|
|
2842
|
+
*function logEvent(event: Form.Event) {
|
|
2843
|
+
* console.log(`Event '${event.type}' has happened for '${event.target.id}'. Current 'value': '${event.target.value}'`);
|
|
2844
|
+
*}
|
|
2845
|
+
*
|
|
2846
|
+
* ```
|
|
2847
|
+
*/
|
|
2848
|
+
declare type FormEvent<T extends FormValue_2> = {
|
|
2849
|
+
/**
|
|
2850
|
+
* An interface containing target data related to the event
|
|
2851
|
+
*/
|
|
2852
|
+
target: {
|
|
2853
|
+
/**
|
|
2854
|
+
* The {@link FormItemProps.id} of Form item where the event has happened
|
|
2855
|
+
*/
|
|
2856
|
+
id: string;
|
|
2857
|
+
/**
|
|
2858
|
+
* The current {@link FormItemProps.value} of Form item where the event has happened
|
|
2859
|
+
*/
|
|
2860
|
+
value?: T;
|
|
2861
|
+
};
|
|
2862
|
+
/**
|
|
2863
|
+
* A type of event
|
|
2864
|
+
*/
|
|
2865
|
+
type: FormEventType;
|
|
2866
|
+
};
|
|
2867
|
+
|
|
2868
|
+
/**
|
|
2869
|
+
* Types of Form event ({@link Form.Event}).
|
|
2870
|
+
* * `focus` will be returned for the event of {@link Form.Item.Props.onFocus} callback
|
|
2871
|
+
* * `blur` will be returned for the event of {@link Form.Item.Props.onBlur} callback
|
|
2872
|
+
*/
|
|
2873
|
+
declare type FormEventType = "focus" | "blur";
|
|
2874
|
+
|
|
2638
2875
|
/**
|
|
2639
2876
|
* @deprecated Use {@link Form.ItemProps} instead.
|
|
2640
2877
|
*/
|
|
@@ -2658,6 +2895,11 @@ declare interface FormItemProps_2<T extends FormValue_2> {
|
|
|
2658
2895
|
* An optional info message to describe the form item. It appears on the right side of the item with an info icon. When the icon is hovered, the info message is shown.
|
|
2659
2896
|
*/
|
|
2660
2897
|
info?: string;
|
|
2898
|
+
/**
|
|
2899
|
+
* An optional error message to show the form item validation issues.
|
|
2900
|
+
* If the `error` is present, the Form Item will be highlighted with red border and will show an error message on the right.
|
|
2901
|
+
*/
|
|
2902
|
+
error?: string;
|
|
2661
2903
|
/**
|
|
2662
2904
|
* Indicates whether the value of the item should be persisted after submitting, and restored next time the form is rendered.
|
|
2663
2905
|
*/
|
|
@@ -2683,7 +2925,14 @@ declare interface FormItemProps_2<T extends FormValue_2> {
|
|
|
2683
2925
|
* The callback which will be triggered when the `value` of the item changes.
|
|
2684
2926
|
*/
|
|
2685
2927
|
onChange?: (newValue: T) => void;
|
|
2686
|
-
|
|
2928
|
+
/**
|
|
2929
|
+
* The callback that will be triggered when the item loses its focus.
|
|
2930
|
+
*/
|
|
2931
|
+
onBlur?: (event: FormEvent<T>) => void;
|
|
2932
|
+
/**
|
|
2933
|
+
* The callback which will be triggered should be called when the item is focused.
|
|
2934
|
+
*/
|
|
2935
|
+
onFocus?: (event: FormEvent<T>) => void;
|
|
2687
2936
|
}
|
|
2688
2937
|
|
|
2689
2938
|
/**
|
|
@@ -2761,6 +3010,17 @@ declare interface FormItemRef {
|
|
|
2761
3010
|
reset: () => void;
|
|
2762
3011
|
}
|
|
2763
3012
|
|
|
3013
|
+
/**
|
|
3014
|
+
* An interface describing top-level props for Form drafts
|
|
3015
|
+
*/
|
|
3016
|
+
export declare interface FormLaunchProps {
|
|
3017
|
+
/**
|
|
3018
|
+
* When a user enters the command via a draft, this object will contain the user inputs that were saved as a draft.
|
|
3019
|
+
* Use its values to populate the initial state for your Form.
|
|
3020
|
+
*/
|
|
3021
|
+
draftValues?: Form.Values;
|
|
3022
|
+
}
|
|
3023
|
+
|
|
2764
3024
|
declare interface FormMembers {
|
|
2765
3025
|
/**
|
|
2766
3026
|
* A form item with a checkbox.
|
|
@@ -3202,6 +3462,12 @@ export declare interface FormProps extends Form.Props {
|
|
|
3202
3462
|
* Props of the {@link Form} React component.
|
|
3203
3463
|
*/
|
|
3204
3464
|
declare interface FormProps_2 extends ActionsInterface, NavigationChildInterface {
|
|
3465
|
+
/**
|
|
3466
|
+
* Defines whether the Form.Items values will be preserved when user exits the screen.
|
|
3467
|
+
* @remarks Keep in mind that drafts for forms nested in navigation is not supported yet. In the case you will see a warning about it.
|
|
3468
|
+
* @defaultValue `false`
|
|
3469
|
+
*/
|
|
3470
|
+
enableDrafts?: boolean;
|
|
3205
3471
|
/**
|
|
3206
3472
|
* The Form.Item elements of the form.
|
|
3207
3473
|
*/
|
|
@@ -3623,7 +3889,7 @@ declare interface GridMembers {
|
|
|
3623
3889
|
* export default function Command() {
|
|
3624
3890
|
* return (
|
|
3625
3891
|
* <Grid>
|
|
3626
|
-
* <Grid.Item icon={Icon.Star} title="Augustiner Helles" subtitle="0,5 Liter"
|
|
3892
|
+
* <Grid.Item icon={Icon.Star} title="Augustiner Helles" subtitle="0,5 Liter" />
|
|
3627
3893
|
* </Grid>
|
|
3628
3894
|
* );
|
|
3629
3895
|
* }
|
|
@@ -3664,11 +3930,10 @@ declare interface GridMembers {
|
|
|
3664
3930
|
* import { Grid } from "@raycast/api";
|
|
3665
3931
|
*
|
|
3666
3932
|
* function DrinkDropdown(props: DrinkDropdownProps) {
|
|
3667
|
-
* const {
|
|
3933
|
+
* const { drinkTypes, onDrinkTypeChange } = props;
|
|
3668
3934
|
* return (
|
|
3669
3935
|
* <Grid.Dropdown
|
|
3670
3936
|
* tooltip="Select Drink Type"
|
|
3671
|
-
* disabled={isLoading}
|
|
3672
3937
|
* storeValue={true}
|
|
3673
3938
|
* onChange={(newValue) => {
|
|
3674
3939
|
* onDrinkTypeChange(newValue);
|
|
@@ -3786,55 +4051,419 @@ declare interface GridProps extends ActionsInterface, NavigationChildInterface {
|
|
|
3786
4051
|
* ```
|
|
3787
4052
|
*/
|
|
3788
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",
|
|
3789
4073
|
ArrowClockwise = "arrow-clockwise-16",
|
|
3790
|
-
|
|
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",
|
|
3791
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",
|
|
3792
4100
|
Binoculars = "binoculars-16",
|
|
3793
|
-
|
|
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",
|
|
3794
4117
|
Calendar = "calendar-16",
|
|
3795
|
-
|
|
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",
|
|
3796
4127
|
ChevronDown = "chevron-down-16",
|
|
4128
|
+
ChevronLeft = "chevron-left-16",
|
|
4129
|
+
ChevronRight = "chevron-right-16",
|
|
3797
4130
|
ChevronUp = "chevron-up-16",
|
|
3798
4131
|
Circle = "circle-16",
|
|
3799
|
-
|
|
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",
|
|
3800
4141
|
Clock = "clock-16",
|
|
3801
|
-
|
|
3802
|
-
|
|
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",
|
|
3803
4165
|
Dot = "dot-16",
|
|
3804
|
-
Download = "
|
|
4166
|
+
Download = "download-16",
|
|
4167
|
+
EditShape = "edit-shape-16",
|
|
4168
|
+
Eject = "eject-16",
|
|
4169
|
+
Ellipsis = "ellipsis-16",
|
|
4170
|
+
Emoji = "emoji-16",
|
|
3805
4171
|
Envelope = "envelope-16",
|
|
3806
|
-
|
|
4172
|
+
Eraser = "eraser-16",
|
|
4173
|
+
ExclamationMark = "important-01-16",
|
|
4174
|
+
Exclamationmark = "exclamationmark-16",
|
|
4175
|
+
Exclamationmark2 = "exclamationmark-2-16",
|
|
4176
|
+
Exclamationmark3 = "exclamationmark-3-16",
|
|
3807
4177
|
Eye = "eye-16",
|
|
3808
|
-
|
|
4178
|
+
EyeDisabled = "eye-disabled-16",
|
|
4179
|
+
EyeDropper = "eye-dropper-16",
|
|
4180
|
+
Female = "female-16",
|
|
4181
|
+
FilmStrip = "film-strip-16",
|
|
4182
|
+
Filter = "filter-16",
|
|
3809
4183
|
Finder = "finder-16",
|
|
3810
|
-
|
|
3811
|
-
|
|
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",
|
|
3812
4200
|
Hammer = "hammer-16",
|
|
3813
|
-
|
|
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",
|
|
3814
4223
|
Link = "link-16",
|
|
3815
|
-
List = "
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
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",
|
|
3819
4354
|
Pencil = "pencil-16",
|
|
3820
|
-
Person = "person-
|
|
4355
|
+
Person = "person-16",
|
|
4356
|
+
PersonCircle = "person-circle-16",
|
|
3821
4357
|
Phone = "phone-16",
|
|
4358
|
+
PhoneRinging = "phone-ringing-16",
|
|
4359
|
+
PieChart = "pie-chart-16",
|
|
4360
|
+
Pill = "pill-16",
|
|
3822
4361
|
Pin = "pin-16",
|
|
4362
|
+
PinDisabled = "pin-disabled-16",
|
|
4363
|
+
Play = "play-16",
|
|
4364
|
+
PlayFilled = "play-filled-16",
|
|
4365
|
+
Plug = "plug-16",
|
|
3823
4366
|
Plus = "plus-16",
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
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",
|
|
3828
4411
|
Star = "star-16",
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
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",
|
|
3832
4428
|
Terminal = "terminal-16",
|
|
4429
|
+
Text = "text-16",
|
|
4430
|
+
TextCursor = "text-cursor-16",
|
|
4431
|
+
Torch = "torch-16",
|
|
4432
|
+
Train = "train-16",
|
|
3833
4433
|
Trash = "trash-16",
|
|
3834
|
-
|
|
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",
|
|
3835
4443
|
Video = "video-16",
|
|
3836
|
-
|
|
3837
|
-
|
|
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"
|
|
3838
4467
|
}
|
|
3839
4468
|
|
|
3840
4469
|
/**
|
|
@@ -4028,11 +4657,17 @@ declare const Item: FunctionComponent<ItemProps> & ItemMembers;
|
|
|
4028
4657
|
*/
|
|
4029
4658
|
declare const Item_2: FunctionComponent<ItemProps_2>;
|
|
4030
4659
|
|
|
4031
|
-
declare
|
|
4660
|
+
declare type ItemAccessory = ({
|
|
4032
4661
|
/**
|
|
4033
4662
|
* An optional text that will be used as the label.
|
|
4034
4663
|
*/
|
|
4035
4664
|
text?: string | undefined | null;
|
|
4665
|
+
} | {
|
|
4666
|
+
/**
|
|
4667
|
+
* An optional Date that will be used as the label. The date is formatted relatively to the current time (for example `new Date()` will be displayed as `"now"`, yesterday's Date will be displayed as "1d", etc.).
|
|
4668
|
+
*/
|
|
4669
|
+
date?: Date | undefined | null;
|
|
4670
|
+
}) & {
|
|
4036
4671
|
/**
|
|
4037
4672
|
* An optional {@link Image.ImageLike} that will be used as the icon.
|
|
4038
4673
|
* @remarks
|
|
@@ -4043,7 +4678,7 @@ declare interface ItemAccessory {
|
|
|
4043
4678
|
* An optional tooltip shown when the accessory is hovered.
|
|
4044
4679
|
*/
|
|
4045
4680
|
tooltip?: string | undefined | null;
|
|
4046
|
-
}
|
|
4681
|
+
};
|
|
4047
4682
|
|
|
4048
4683
|
declare interface ItemMembers {
|
|
4049
4684
|
/**
|
|
@@ -4121,6 +4756,16 @@ declare interface ItemProps extends ActionsInterface {
|
|
|
4121
4756
|
* The `List.Item.Detail` to be rendered in the right side area when the parent List is showing details and the item is selected.
|
|
4122
4757
|
*/
|
|
4123
4758
|
detail?: ReactNode;
|
|
4759
|
+
/**
|
|
4760
|
+
* Optional information to preview files with Quick Look. Toggle the preview with {@link Action.ToggleQuickLook}.
|
|
4761
|
+
*
|
|
4762
|
+
* @remarks
|
|
4763
|
+
* If no `name` is specified, the file name of the given path is used.
|
|
4764
|
+
*/
|
|
4765
|
+
quickLook?: {
|
|
4766
|
+
name?: string | null;
|
|
4767
|
+
path: string;
|
|
4768
|
+
};
|
|
4124
4769
|
}
|
|
4125
4770
|
|
|
4126
4771
|
declare interface ItemProps_2 extends ActionsInterface {
|
|
@@ -4130,31 +4775,42 @@ declare interface ItemProps_2 extends ActionsInterface {
|
|
|
4130
4775
|
*/
|
|
4131
4776
|
id?: string;
|
|
4132
4777
|
/**
|
|
4133
|
-
* An image, optionally with a tooltip, representing the content of the grid item.
|
|
4778
|
+
* An image or color, optionally with a tooltip, representing the content of the grid item.
|
|
4134
4779
|
*/
|
|
4135
4780
|
content: Image.ImageLike | {
|
|
4136
|
-
|
|
4781
|
+
color: Color.ColorLike;
|
|
4782
|
+
} | {
|
|
4783
|
+
value: Image.ImageLike | {
|
|
4784
|
+
color: Color.ColorLike;
|
|
4785
|
+
};
|
|
4137
4786
|
tooltip: string;
|
|
4138
4787
|
};
|
|
4139
4788
|
/**
|
|
4140
|
-
*
|
|
4789
|
+
* An optional title displayed below the content.
|
|
4141
4790
|
*/
|
|
4142
|
-
title?: string
|
|
4143
|
-
value: string;
|
|
4144
|
-
tooltip: string;
|
|
4145
|
-
};
|
|
4791
|
+
title?: string;
|
|
4146
4792
|
/**
|
|
4147
|
-
* An optional subtitle displayed
|
|
4793
|
+
* An optional subtitle displayed below the title.
|
|
4148
4794
|
*/
|
|
4149
|
-
subtitle?: string
|
|
4150
|
-
value: string;
|
|
4151
|
-
tooltip: string;
|
|
4152
|
-
};
|
|
4795
|
+
subtitle?: string;
|
|
4153
4796
|
/**
|
|
4154
4797
|
* An optional property used for providing additional indexable strings for search.
|
|
4155
4798
|
* When filtering the list in Raycast through the search bar, the keywords will be searched in addition to the title.
|
|
4156
4799
|
*/
|
|
4157
4800
|
keywords?: string[];
|
|
4801
|
+
/**
|
|
4802
|
+
* Optional information to preview files with Quick Look. Toggle the preview ith {@link Action.ToggleQuickLook}.
|
|
4803
|
+
*
|
|
4804
|
+
* @remarks
|
|
4805
|
+
* If no `name` is specified, the file name of the given path is used.
|
|
4806
|
+
*/
|
|
4807
|
+
quickLook?: {
|
|
4808
|
+
name?: string | null;
|
|
4809
|
+
path: string;
|
|
4810
|
+
};
|
|
4811
|
+
/**
|
|
4812
|
+
* An {@link ActionPanel} that will be updated for the selected grid item.
|
|
4813
|
+
*/
|
|
4158
4814
|
actions?: ReactNode | null;
|
|
4159
4815
|
}
|
|
4160
4816
|
|
|
@@ -4518,11 +5174,10 @@ declare interface ListMembers {
|
|
|
4518
5174
|
* import { List } from "@raycast/api";
|
|
4519
5175
|
*
|
|
4520
5176
|
* function DrinkDropdown(props: DrinkDropdownProps) {
|
|
4521
|
-
* const {
|
|
5177
|
+
* const { drinkTypes, onDrinkTypeChange } = props;
|
|
4522
5178
|
* return (
|
|
4523
5179
|
* <List.Dropdown
|
|
4524
5180
|
* tooltip="Select Drink Type"
|
|
4525
|
-
* disabled={isLoading}
|
|
4526
5181
|
* storeValue={true}
|
|
4527
5182
|
* onChange={(newValue) => {
|
|
4528
5183
|
* onDrinkTypeChange(newValue);
|
|
@@ -5939,6 +6594,23 @@ declare interface SubmenuProps {
|
|
|
5939
6594
|
* Use {@link ActionPanel.Submenu} as parent when specifying sub-menu's children to make code is more readable.
|
|
5940
6595
|
*/
|
|
5941
6596
|
children?: ReactNode;
|
|
6597
|
+
/**
|
|
6598
|
+
* Callback that is triggered when the Submenu is opened.
|
|
6599
|
+
*
|
|
6600
|
+
* This callback can be used to fetch its content lazily:
|
|
6601
|
+
* ```js
|
|
6602
|
+
* function LazySubmenu() {
|
|
6603
|
+
* const [content, setContent] = useState(null)
|
|
6604
|
+
*
|
|
6605
|
+
* return (
|
|
6606
|
+
* <ActionPanel.Submenu onOpen={() => fetchSubmenuContent().then(setContent)}>
|
|
6607
|
+
* {content}
|
|
6608
|
+
* </ActionPanel.Submenu>
|
|
6609
|
+
* )
|
|
6610
|
+
* }
|
|
6611
|
+
* ```
|
|
6612
|
+
*/
|
|
6613
|
+
onOpen?: () => void;
|
|
5942
6614
|
}
|
|
5943
6615
|
|
|
5944
6616
|
/**
|
|
@@ -6122,6 +6794,12 @@ declare interface TextAreaProps extends FormItemProps_2<string> {
|
|
|
6122
6794
|
* Placeholder text shown in the text area.
|
|
6123
6795
|
*/
|
|
6124
6796
|
placeholder?: string;
|
|
6797
|
+
/**
|
|
6798
|
+
* Whether markdown will be highlighted in the TextArea or not.
|
|
6799
|
+
* When enabled, markdown shortcuts starts to work for the TextArea (pressing `⌘ + B` will add `**bold**` around the selected text, `⌘ + I` will make the selected text italic, etc.)
|
|
6800
|
+
* @defaultValue `false`
|
|
6801
|
+
*/
|
|
6802
|
+
enableMarkdown?: boolean;
|
|
6125
6803
|
}
|
|
6126
6804
|
|
|
6127
6805
|
/**
|
|
@@ -6307,6 +6985,34 @@ export declare interface ToastOptions extends Toast.Options {
|
|
|
6307
6985
|
*/
|
|
6308
6986
|
export declare const ToastStyle: typeof Toast.Style;
|
|
6309
6987
|
|
|
6988
|
+
/**
|
|
6989
|
+
* See {@link Action.ToggleQuickLook}
|
|
6990
|
+
*/
|
|
6991
|
+
declare const ToggleQuickLook: FunctionComponent<ToggleQuickLookProps>;
|
|
6992
|
+
|
|
6993
|
+
/**
|
|
6994
|
+
* See {@link Action.ToggleQuickLook.Props}
|
|
6995
|
+
*/
|
|
6996
|
+
declare interface ToggleQuickLookProps {
|
|
6997
|
+
/**
|
|
6998
|
+
* The title for the action.
|
|
6999
|
+
* @defaultValue `"Quick Look"`
|
|
7000
|
+
*/
|
|
7001
|
+
title?: string;
|
|
7002
|
+
/**
|
|
7003
|
+
* The icon displayed for the action.
|
|
7004
|
+
* @defaultValue {@link Icon.Eye}
|
|
7005
|
+
*/
|
|
7006
|
+
icon?: Image.ImageLike;
|
|
7007
|
+
/**
|
|
7008
|
+
* The keyboard shortcut for the action.
|
|
7009
|
+
*
|
|
7010
|
+
* @remarks
|
|
7011
|
+
* The recommended system-wide keyboard shortcut is "⌘ + Y".
|
|
7012
|
+
*/
|
|
7013
|
+
shortcut?: Keyboard.Shortcut;
|
|
7014
|
+
}
|
|
7015
|
+
|
|
6310
7016
|
/**
|
|
6311
7017
|
* See {@link Action.Trash}
|
|
6312
7018
|
*/
|