UNPKG

@upstart.gg/sdk

Version:

You can test the CLI without recompiling by running:

76 lines (75 loc) 3.02 kB
import { BrickCategory } from "../../brick-manifest.js"; import { BrickExample } from "./_types.js"; import * as _sinclair_typebox5044 from "@sinclair/typebox"; import * as react_icons_lib10 from "react-icons/lib"; //#region src/shared/bricks/manifests/icon.manifest.d.ts declare const manifest: { readonly icon: react_icons_lib10.IconType; readonly props: _sinclair_typebox5044.TObject<{ lastTouched: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TNumber>; hidden: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TObject<{ desktop: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TBoolean>; mobile: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TBoolean>; }>>; editable: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TBoolean>; width: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TString>; height: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TString>; grow: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TBoolean>; alignSelf: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TUnsafe<"self-auto" | "self-start" | "self-center" | "self-end" | "self-stretch">>; } & { icon: _sinclair_typebox5044.TString; size: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TString>; color: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TString>; link: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TUnion<[_sinclair_typebox5044.TString, _sinclair_typebox5044.TString]>>; loop: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TObject<{ over: _sinclair_typebox5044.TString; overrideLimit: _sinclair_typebox5044.TOptional<_sinclair_typebox5044.TNumber>; }>>; }>; readonly category: BrickCategory; readonly defaultInspectorTab: "preset" | "style" | "content"; readonly hideInLibrary: boolean; readonly deletable: boolean; readonly movable: boolean; readonly resizable: boolean | "horizontal" | "vertical"; readonly duplicatable: boolean; readonly isContainer: boolean; readonly isGlobalBrick: boolean; readonly defaultWidth: { readonly mobile: string; readonly desktop: string; }; readonly defaultHeight: { readonly mobile: string; readonly desktop: string; }; readonly type: string; readonly name: string; readonly iconClassName?: string; readonly staticClasses?: string; readonly description?: string; readonly minWidth?: { mobile?: number; desktop?: number; }; readonly maxWidth?: { mobile?: number; desktop?: number; }; readonly minHeight?: { mobile?: number; desktop?: number; }; readonly maxHeight?: { mobile?: number; desktop?: number; }; readonly consumesMultipleQueryRows?: boolean; readonly inlineDragDisabled?: boolean; readonly aiInstructions?: string; }; type Manifest = typeof manifest; declare const examples: BrickExample<Manifest>[]; //#endregion export { Manifest, examples, manifest }; //# sourceMappingURL=icon.manifest.d.ts.map