SYMBOL INDEX (1504 symbols across 773 files) FILE: apps/builder/src/App.tsx function App (line 36) | function App() { FILE: apps/builder/src/api/ws/ILLA_PROTO.ts type MovingMessageBin (line 17) | interface MovingMessageBin { type Signal (line 90) | enum Signal { type Target (line 163) | enum Target { class MovingMessageBin$Type (line 232) | class MovingMessageBin$Type extends MessageType { method constructor (line 233) | constructor() { method create (line 254) | create(value?: PartialMessage): MovingMessageBin { method internalBinaryRead (line 261) | internalBinaryRead(reader: IBinaryReader, length: number, options: Bin... method internalBinaryWrite (line 328) | internalBinaryWrite(message: MovingMessageBin, writer: IBinaryWriter, ... FILE: apps/builder/src/api/ws/illaBinaryWS.ts constant RECONNECT_TIMEOUT (line 14) | const RECONNECT_TIMEOUT = 5 * 1000 constant REPEAT_LIMIT (line 15) | const REPEAT_LIMIT = 5 class ILLABinaryWebsocket (line 17) | class ILLABinaryWebsocket { method constructor (line 30) | constructor(url: string, context: ILLA_WEBSOCKET_CONTEXT) { method createWebsocket (line 36) | private createWebsocket() { method initEventHandle (line 54) | private initEventHandle() { method split (line 98) | private split(byteBuf: Uint8Array) { method reconnect (line 121) | private reconnect() { method close (line 160) | public close() { method onMessage (line 165) | public onMessage(event: MessageEvent) { method send (line 223) | public send(message: Uint8Array) { FILE: apps/builder/src/api/ws/illaWS.ts constant HEARTBEAT_PING_TIMEOUT (line 21) | const HEARTBEAT_PING_TIMEOUT = 10 * 1000 constant HEARTBEAT_PONG_TIMEOUT (line 22) | const HEARTBEAT_PONG_TIMEOUT = 10 * 1000 constant RECONNECT_TIMEOUT (line 23) | const RECONNECT_TIMEOUT = 5 * 1000 constant REPEAT_LIMIT (line 24) | const REPEAT_LIMIT = 5 constant MESSAGE_QUEUE_MAX_LENGTH (line 25) | const MESSAGE_QUEUE_MAX_LENGTH = 20 type WSMessageListener (line 35) | interface WSMessageListener { class ILLAWebsocket (line 109) | class ILLAWebsocket { method constructor (line 123) | constructor(url: string, context: ILLA_WEBSOCKET_CONTEXT) { method initWebsocket (line 128) | public initWebsocket() { method registerListener (line 144) | public registerListener(listener: WSMessageListener) { method unRegisterListener (line 148) | public unRegisterListener(listener: WSMessageListener) { method clearListener (line 155) | public clearListener() { method initEventHandle (line 165) | private initEventHandle() { method reconnect (line 236) | public reconnect() { method heartCheck (line 252) | private heartCheck() { method heartStart (line 257) | private heartStart() { method heartReset (line 273) | private heartReset() { method close (line 278) | public close() { method send (line 285) | public send(message: string) { FILE: apps/builder/src/api/ws/index.ts function transformComponentReduxPayloadToWsPayload (line 21) | function transformComponentReduxPayloadToWsPayload( function getTextMessagePayload (line 45) | function getTextMessagePayload( class Connection (line 120) | class Connection { method enterDashboardRoom (line 123) | static enterDashboardRoom(wsURL: string) { method enterAppRoom (line 130) | static enterAppRoom(wsURL: string, binaryWsURL: string, appID: string) { method enterAgentRoom (line 139) | static enterAgentRoom(wsURL: string, messageListener: WSMessageListene... method getTextRoom (line 146) | static getTextRoom( method getBinaryRoom (line 153) | static getBinaryRoom( method leaveRoom (line 160) | static leaveRoom(type: RoomType, roomId: string) { function generateTextMessageWs (line 188) | function generateTextMessageWs( function generateBinaryMessageWs (line 195) | function generateBinaryMessageWs(url: string) { FILE: apps/builder/src/api/ws/interface.ts type RoomType (line 4) | type RoomType = "dashboard" | "app" | "ai-agent" type Room (line 6) | interface Room { type Broadcast (line 10) | interface Broadcast { type Callback (line 15) | interface Callback { type ILLAWebSocketComponentPayload (line 27) | interface ILLAWebSocketComponentPayload { type ILLA_WEBSOCKET_STATUS (line 34) | enum ILLA_WEBSOCKET_STATUS { type ILLA_WEBSOCKET_CONTEXT (line 43) | enum ILLA_WEBSOCKET_CONTEXT { FILE: apps/builder/src/api/ws/textSignal.ts type TextSignal (line 1) | enum TextSignal { type TextTarget (line 24) | enum TextTarget { type ErrorCode (line 38) | enum ErrorCode { FILE: apps/builder/src/components/CodeEditor/CodeMirror/extensions/completionSources/ILLAContextDesc/utils.tsx type IILLAUtilsDesc (line 1) | interface IILLAUtilsDesc { constant ILLA_UTILS_DESC (line 6) | const ILLA_UTILS_DESC: Record = { FILE: apps/builder/src/components/CodeEditor/CodeMirror/extensions/completionSources/TernServer/index.tsx type AutocompleteDataType (line 15) | enum AutocompleteDataType { function getDataType (line 25) | function getDataType(type: string): AutocompleteDataType { function checkCursorInDynamicFlag (line 36) | function checkCursorInDynamicFlag( FILE: apps/builder/src/components/CodeEditor/CodeMirror/extensions/completionSources/illaContext.ts function getDataInfo (line 64) | function getDataInfo(data: Record, path: string) { function getDataType (line 177) | function getDataType(data: unknown): AutocompleteDataType { function getDataEvaluatesToDom (line 188) | function getDataEvaluatesToDom(data: unknown, dataType: AutocompleteData... FILE: apps/builder/src/components/CodeEditor/CodeMirror/extensions/heighLightJSExpression.ts function getDecoration (line 19) | function getDecoration( method constructor (line 53) | constructor(view: EditorView) { method update (line 56) | update(update: ViewUpdate) { FILE: apps/builder/src/components/CodeEditor/CodeMirror/extensions/interface.ts type CODE_TYPE (line 1) | enum CODE_TYPE { type CODE_LANG (line 7) | enum CODE_LANG { type IExpressionShape (line 22) | interface IExpressionShape { type ICodeMirrorOptions (line 27) | interface ICodeMirrorOptions { FILE: apps/builder/src/components/CodeEditor/CodeMirror/extensions/utils.ts function posToOffset (line 3) | function posToOffset(doc: Text, pos: IPosition) { function offsetToPos (line 6) | function offsetToPos(doc: Text, offset: number): Position { type IPosition (line 11) | interface IPosition { class Position (line 19) | class Position implements IPosition { method constructor (line 20) | constructor(public line: number, public character: number) {} method setLine (line 22) | setLine(line: number) { method setCharacter (line 26) | setCharacter(character: number) { method lessThanOrEqualTo (line 30) | lessThanOrEqualTo(position: IPosition) { FILE: apps/builder/src/components/CodeEditor/CodeMirror/interface.ts type ILLACodeMirrorProps (line 6) | interface ILLACodeMirrorProps FILE: apps/builder/src/components/CodeEditor/HintToolTip/interface.ts type HintTooltipProps (line 4) | interface HintTooltipProps { type HintTooltipContentProps (line 13) | interface HintTooltipContentProps FILE: apps/builder/src/components/CodeEditor/ModalCodeMirror/interface.ts type ModalBodyContent (line 4) | interface ModalBodyContent { type FooterContentProps (line 18) | interface FooterContentProps { type ModalCodeMirrorProps (line 22) | interface ModalCodeMirrorProps FILE: apps/builder/src/components/CodeEditor/index.tsx constant MAX_LEN_WITH_SNIPPETS (line 92) | const MAX_LEN_WITH_SNIPPETS = 1024 FILE: apps/builder/src/components/CodeEditor/interface.ts type CodeEditorProps (line 5) | interface CodeEditorProps FILE: apps/builder/src/components/ColorPicker/constants.ts constant COLOR_MAP (line 18) | const COLOR_MAP = (() => { constant PRE_COLOR (line 26) | const PRE_COLOR = colorSchemes.map((color) => { FILE: apps/builder/src/components/ColorPicker/interface.ts type ColorPickerProps (line 1) | interface ColorPickerProps { FILE: apps/builder/src/components/ColorSetter/interface.tsx type ColorPickerSetterProps (line 1) | interface ColorPickerSetterProps { FILE: apps/builder/src/components/ColorSetter/style.ts function applyCircleStyle (line 13) | function applyCircleStyle(color: string): SerializedStyles { FILE: apps/builder/src/components/DriveFileSelect/components/FileList/interface.ts type FileListProps (line 5) | interface FileListProps { FILE: apps/builder/src/components/DriveFileSelect/constants.ts constant FOLDER_LIST_CONTAINER_HEIGHT (line 1) | const FOLDER_LIST_CONTAINER_HEIGHT = 276 constant FOLDER_LIST_ITEM_HEIGHT (line 2) | const FOLDER_LIST_ITEM_HEIGHT = 46 constant MAX_SIZE_MESSAGE (line 3) | const MAX_SIZE_MESSAGE = constant MIN_SIZE_MESSAGE (line 5) | const MIN_SIZE_MESSAGE = constant MAX_FILE_NUM (line 7) | const MAX_FILE_NUM = constant MIN_FILE_NUM (line 9) | const MIN_FILE_NUM = constant ROOT_PATH (line 12) | const ROOT_PATH = "root" FILE: apps/builder/src/components/DriveFileSelect/context/index.tsx type Injected (line 5) | interface Injected { FILE: apps/builder/src/components/DriveFileSelect/interface.ts type FileToPanel (line 3) | type FileToPanel = Pick< FILE: apps/builder/src/components/EditableText/interface.ts type EditableTextProps (line 1) | interface EditableTextProps { FILE: apps/builder/src/components/ErrorBoundary/index.tsx class ErrorBoundary (line 5) | class ErrorBoundary extends Component { FILE: apps/builder/src/components/Guide/WidgetStepMask/index.tsx type StepMaskProps (line 21) | interface StepMaskProps { FILE: apps/builder/src/components/Guide/index.tsx type GuideProps (line 19) | interface GuideProps { FILE: apps/builder/src/components/ILLAMarkdown/interface.ts type ILLAMarkdownProps (line 1) | interface ILLAMarkdownProps { FILE: apps/builder/src/components/LayoutAutoChange/index.tsx type LayoutAutoChangeProps (line 6) | interface LayoutAutoChangeProps { FILE: apps/builder/src/components/Modal/Body/interface.ts type ModalBodyProps (line 3) | interface ModalBodyProps { FILE: apps/builder/src/components/Modal/Footer/interface.ts type ModalFooterProps (line 3) | interface ModalFooterProps { FILE: apps/builder/src/components/Modal/Header/interface.ts type HeaderProps (line 1) | interface HeaderProps { FILE: apps/builder/src/components/Modal/interface.ts type BaseModalProps (line 3) | interface BaseModalProps { type ModalProps (line 11) | interface ModalProps extends BaseModalProps { type MovableModalProps (line 18) | interface MovableModalProps extends BaseModalProps { FILE: apps/builder/src/components/PanelBar/interface.ts type PanelBarProps (line 3) | interface PanelBarProps { FILE: apps/builder/src/components/PanelBar/style.ts function applyPanelBarOpenedIconStyle (line 101) | function applyPanelBarOpenedIconStyle( FILE: apps/builder/src/components/RecordEditor/interface.ts type RecordEditorProps (line 5) | interface RecordEditorProps { FILE: apps/builder/src/components/RecordEditor/style.ts function applyRecordEditorContainerStyle (line 4) | function applyRecordEditorContainerStyle(label: string) { function applyRecordValueStyle (line 56) | function applyRecordValueStyle(fillOnly?: boolean): SerializedStyles { FILE: apps/builder/src/components/Tabs/constant.tsx constant ACTION_PANEL_TABS (line 9) | const ACTION_PANEL_TABS: SimpleTabsItem[] = [ constant COMPONENT_MANAGER_TABS (line 20) | const COMPONENT_MANAGER_TABS: SimpleTabsItem[] = [ FILE: apps/builder/src/components/Tabs/interface.ts type SimpleTabsItem (line 4) | interface SimpleTabsItem { type SimpleTabsProps (line 10) | interface SimpleTabsProps { FILE: apps/builder/src/config/AppWithAgent/index.ts constant NODE_START_POSITION_Y (line 13) | const NODE_START_POSITION_Y = 26 constant NODE_SPACE_STEP (line 14) | const NODE_SPACE_STEP = 6 constant SEND_CONTENT_LABEL (line 15) | const SEND_CONTENT_LABEL = "Send content" FILE: apps/builder/src/config/AppWithAgent/templateNode.ts constant TIP_NODES (line 3) | const TIP_NODES: ComponentTreeNode = { constant AGENT_INPUT_CONTAINER_NODE (line 1268) | const AGENT_INPUT_CONTAINER_NODE: ComponentTreeNode = { constant TEST_ROOT_NODE (line 1447) | const TEST_ROOT_NODE: ComponentTreeNode = { FILE: apps/builder/src/config/guide/config.tsx constant SELECT_WIDGET_ITEM (line 14) | const SELECT_WIDGET_ITEM = { type SelectWidget (line 29) | type SelectWidget = keyof typeof SELECT_WIDGET_ITEM constant GUIDE_SELECT_WIDGET (line 31) | const GUIDE_SELECT_WIDGET = Object.keys( constant GUIDE_SQL_QUERY (line 35) | const GUIDE_SQL_QUERY = constant GUIDE_STEP (line 42) | const GUIDE_STEP = [ FILE: apps/builder/src/config/guide/index.ts constant GUIDE_COMPONENTS (line 23) | const GUIDE_COMPONENTS = Components as unknown as ComponentTreeNode[] constant GUIDE_RESOURCES (line 24) | const GUIDE_RESOURCES = Resources as Resource[] constant GUIDE_ACTIONS (line 25) | const GUIDE_ACTIONS = Actions constant GUIDE_DEFAULT_ACTION_ID (line 28) | const GUIDE_DEFAULT_ACTION_ID = "ILAfx4p1C7d0" constant GUIDE_DATA (line 30) | const GUIDE_DATA = data as unknown as CurrentAppResp constant GUIDE_CONFIG (line 75) | const GUIDE_CONFIG = formatAppDataToConfig(GUIDE_DATA) FILE: apps/builder/src/config/template/interface.ts type TemplateResources (line 8) | type TemplateResources = { type TemplateAction (line 14) | type TemplateAction = Partial> & { type TemplateActions (line 19) | type TemplateActions = TemplateAction[] FILE: apps/builder/src/env.d.ts type ImportMetaEnv (line 1) | interface ImportMetaEnv { type ImportMeta (line 14) | interface ImportMeta { FILE: apps/builder/src/i18n/config.ts constant LANG_OPTIONS (line 122) | const LANG_OPTIONS = Object.keys(resources).map((key) => { FILE: apps/builder/src/i18n/i18next.d.ts type CustomTypeOptions (line 4) | interface CustomTypeOptions { FILE: apps/builder/src/i18n/react-i18next.d.ts type CustomTypeOptions (line 5) | interface CustomTypeOptions { FILE: apps/builder/src/middleware/undoRedo/interface.ts type REDUX_ACTION_FROM (line 1) | enum REDUX_ACTION_FROM { FILE: apps/builder/src/page/AI/AIAgent/aiagent.tsx constant CAN_EDIT_KNOWLEDGE_FILE (line 131) | const CAN_EDIT_KNOWLEDGE_FILE = false FILE: apps/builder/src/page/AI/AIAgent/interface.ts type SCROLL_ID (line 28) | enum SCROLL_ID { FILE: apps/builder/src/page/AI/AIAgentRun/AIAgentRunMobile/index.tsx method onSendPrompt (line 186) | onSendPrompt(): void { method onUpdateRoomUsers (line 203) | onUpdateRoomUsers(roomUsers: CollaboratorsInfo[]): void { FILE: apps/builder/src/page/AI/AIAgentRun/AIAgentRunPC/index.tsx method onSendPrompt (line 404) | onSendPrompt(): void { method onUpdateRoomUsers (line 421) | onUpdateRoomUsers(roomUsers: CollaboratorsInfo[]): void { FILE: apps/builder/src/page/AI/components/AIAgentBlock/interface.ts type AIAgentBlockProps (line 3) | interface AIAgentBlockProps { FILE: apps/builder/src/page/AI/components/AIAgentBlock/style.ts function applyBlockTextStyle (line 10) | function applyBlockTextStyle( function applyBlockSubtitleStyle (line 35) | function applyBlockSubtitleStyle( FILE: apps/builder/src/page/AI/components/AIAgentMessage/interface.ts type AIAgentMessageProps (line 3) | interface AIAgentMessageProps { FILE: apps/builder/src/page/AI/components/ChatContext/interface.ts type ChatContextProps (line 3) | interface ChatContextProps { FILE: apps/builder/src/page/AI/components/ErrorText/index.tsx type ErrorTextProps (line 5) | interface ErrorTextProps { FILE: apps/builder/src/page/AI/components/GenerationMessage/interface.ts type GenerationMessageProps (line 3) | interface GenerationMessageProps { FILE: apps/builder/src/page/AI/components/KnowledgeUpload/contants.ts constant JSON_RULES (line 7) | const JSON_RULES = ["application/json"] constant ACCEPT (line 8) | const ACCEPT = [ constant MAX_MESSAGE_FILES_LENGTH (line 19) | const MAX_MESSAGE_FILES_LENGTH = 10 constant MAX_FILE_SIZE (line 20) | const MAX_FILE_SIZE = 20971520 // 20MB FILE: apps/builder/src/page/AI/components/KnowledgeUpload/index.tsx type KnowledgeUploadProps (line 27) | interface KnowledgeUploadProps { FILE: apps/builder/src/page/AI/components/MarkdownMessage/interface.ts type MarkdownMessageProps (line 1) | interface MarkdownMessageProps { FILE: apps/builder/src/page/AI/components/PreviewChat/UploadButton/index.tsx type UploadButton (line 8) | interface UploadButton { FILE: apps/builder/src/page/AI/components/PreviewChat/UploadKnowledgeFiles/index.tsx type UploadKnowledgeFilesPops (line 7) | interface UploadKnowledgeFilesPops { FILE: apps/builder/src/page/AI/components/PreviewChat/interface.ts type EDIT_STATE (line 9) | type EDIT_STATE = "EDIT" | "RUN" type SenderType (line 11) | enum SenderType { type ChatWsAppendResponse (line 17) | interface ChatWsAppendResponse { type ChatWsEndResponse (line 24) | interface ChatWsEndResponse { type ChatSender (line 28) | interface ChatSender { type ChatMessage (line 33) | interface ChatMessage { type ChatSendRequestPayload (line 40) | interface ChatSendRequestPayload { type PreviewChatProps (line 50) | interface PreviewChatProps { FILE: apps/builder/src/page/AI/components/UserMessage/ShowFiles/index.tsx type ShowFilesProps (line 12) | interface ShowFilesProps { FILE: apps/builder/src/page/AI/components/UserMessage/interface.ts type UserMessageProps (line 3) | interface UserMessageProps { FILE: apps/builder/src/page/AI/components/ws/useAgentConnect.ts type AgentMessageType (line 33) | type AgentMessageType = "chat" | "stop_all" | "clean" function useAgentConnect (line 35) | function useAgentConnect(useAgentProps: UseAgentProps) { FILE: apps/builder/src/page/AI/components/ws/useAgentProps.ts type UseAgentProps (line 10) | interface UseAgentProps { type UseAgentReturn (line 20) | interface UseAgentReturn { FILE: apps/builder/src/page/App/Module/ActionEditor/styles.ts function applyActionEditorStyle (line 4) | function applyActionEditorStyle(h: number) { function applyConfigItemLabelText (line 70) | function applyConfigItemLabelText( FILE: apps/builder/src/page/App/Module/CanvasPanel/Components/BuildAppOnEmpty/BuildByTemplate/index.tsx type BuildByTemplateProps (line 30) | interface BuildByTemplateProps { FILE: apps/builder/src/page/App/Module/CanvasPanel/Components/BuildAppOnEmpty/PreviewAppImage/index.tsx type PreviewAppImageProps (line 4) | interface PreviewAppImageProps { FILE: apps/builder/src/page/App/Module/CanvasPanel/Components/BuildAppOnEmpty/constants.ts constant DATABASE_CARD_WIDTH (line 1) | const DATABASE_CARD_WIDTH = 224 constant CARD_LIST_GAP (line 2) | const CARD_LIST_GAP = 16 constant DATABASE_CONTAINER_GAP (line 3) | const DATABASE_CONTAINER_GAP = 24 constant CARD_LIST_SEPARATOR_WIDTH (line 4) | const CARD_LIST_SEPARATOR_WIDTH = 1 constant MORE_CARD_WIDTH (line 5) | const MORE_CARD_WIDTH = 89 constant CONTAINER_PADDING (line 6) | const CONTAINER_PADDING = 16 constant SHOWN_BUILD_APP (line 7) | const SHOWN_BUILD_APP = "shownBuildApp" FILE: apps/builder/src/page/App/Module/CanvasPanel/interface.ts type CanvasPanelProps (line 3) | interface CanvasPanelProps extends HTMLAttributes { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/BaseDataItem/interface.ts type BaseDataItemProps (line 1) | interface BaseDataItemProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/GlobalsSpaceTree/interface.ts type CreateGlobalModalProps (line 1) | interface CreateGlobalModalProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/LibrariesTree/constants.ts constant LIBRARIES (line 1) | const LIBRARIES = [ FILE: apps/builder/src/page/App/Module/DataWorkspace/components/LibrariesTree/interface.ts type LibrariesItemProps (line 1) | interface LibrariesItemProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/MoreAction/interface.ts type MoreActionProps (line 1) | interface MoreActionProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/PageSpaceTree/components/ActionMenu/interface.ts type ActionMenuProps (line 1) | interface ActionMenuProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/PageSpaceTree/components/ChangePathModal/interface.ts type ModalProps (line 1) | interface ModalProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/PageSpaceTree/components/PageItem/interface.ts type PageItemProps (line 1) | interface PageItemProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/WorkSpaceTreeGroup/interface.ts type WorkSpaceTreeGroupProps (line 3) | interface WorkSpaceTreeGroupProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/WorkSpaceTreeItem/interface.ts type WorkSpaceTreeItemProps (line 1) | interface WorkSpaceTreeItemProps { type WorkSpaceTreeNodeProps (line 9) | interface WorkSpaceTreeNodeProps { FILE: apps/builder/src/page/App/Module/DataWorkspace/components/WorkSpaceTreeItem/style.ts function applyJsonValueColorStyle (line 32) | function applyJsonValueColorStyle(type: string) { FILE: apps/builder/src/page/App/Module/DataWorkspace/style.ts function applyJsonValueColorStyle (line 3) | function applyJsonValueColorStyle( FILE: apps/builder/src/page/App/Module/LeftPanel/Components/MoreActionButton/utils.ts constant APP_NAME_MAX_LENGTH (line 3) | const APP_NAME_MAX_LENGTH = 128 constant COPY_SUFFIX (line 4) | const COPY_SUFFIX = " Copy" FILE: apps/builder/src/page/App/Module/PageNavBar/AppName/interface.ts type AppNameProps (line 3) | interface AppNameProps { FILE: apps/builder/src/page/App/Module/PageNavBar/AppSettingModal/index.tsx type AppSettingFields (line 31) | interface AppSettingFields { FILE: apps/builder/src/page/App/Module/PageNavBar/AppSettingModal/interface.ts type AppSettingModalProps (line 3) | interface AppSettingModalProps { FILE: apps/builder/src/page/App/Module/PageNavBar/CollaboratorsList/ListItem/interface.ts type UserListItemProps (line 1) | interface UserListItemProps { FILE: apps/builder/src/page/App/Module/PageNavBar/DeloyButtonGroup/index.tsx type DeployButtonGroupProps (line 22) | interface DeployButtonGroupProps { FILE: apps/builder/src/page/App/Module/PageNavBar/ShareAppButton/interface.ts type ShareAppButtonProps (line 3) | interface ShareAppButtonProps { FILE: apps/builder/src/page/App/Module/PageNavBar/WindowIcons/style.ts function windowIconStyle (line 27) | function windowIconStyle(selected: boolean): SerializedStyles { FILE: apps/builder/src/page/App/Module/PageNavBar/index.tsx method onCancel (line 181) | onCancel() { FILE: apps/builder/src/page/App/Module/PageNavBar/interface.ts type PageNavBarProps (line 3) | interface PageNavBarProps extends HTMLAttributes {} FILE: apps/builder/src/page/App/Module/PageNavBar/resp.ts type DeployResp (line 1) | interface DeployResp { FILE: apps/builder/src/page/App/Module/UploadDetail/components/DetailList/constants.ts constant PROCESS_DETAIL_LIST_HEIGHT (line 1) | const PROCESS_DETAIL_LIST_HEIGHT = 400 constant PROCESS_DETAIL_ITEM_HEIGHT (line 2) | const PROCESS_DETAIL_ITEM_HEIGHT = 52 FILE: apps/builder/src/page/App/Module/UploadDetail/components/DetailList/interface.ts type FILE_ITEM_DETAIL_STATUS_IN_UI (line 1) | enum FILE_ITEM_DETAIL_STATUS_IN_UI { type FileItemDetailProps (line 8) | interface FileItemDetailProps { FILE: apps/builder/src/page/App/Module/UploadDetail/components/ProcessDetailModal/interface.ts type IUpdateDetailModalProps (line 1) | interface IUpdateDetailModalProps { FILE: apps/builder/src/page/App/Module/UploadDetail/store/index.ts method subscribe (line 11) | subscribe(listener) { method addFileDetailInfo (line 19) | addFileDetailInfo(fileDetailInfo) { method updateFileDetailInfo (line 26) | updateFileDetailInfo(queryID, fileDetailInfo) { method deleteFileDetailInfo (line 41) | deleteFileDetailInfo(queryID) { method retryUpload (line 48) | retryUpload(queryID) { method getSnapshot (line 68) | getSnapshot() { FILE: apps/builder/src/page/App/Module/UploadDetail/store/interface.ts type ISaveToILLADriveParams (line 3) | interface ISaveToILLADriveParams { type FileDetailInfos (line 9) | interface FileDetailInfos { type IUploadDetailStore (line 19) | interface IUploadDetailStore { FILE: apps/builder/src/page/App/components/Actions/ActionGuidePanel/components/ActionSection/interface.ts type PanelSectionProps (line 3) | interface PanelSectionProps { FILE: apps/builder/src/page/App/components/Actions/ActionGuidePanel/components/AgentSection/interface.ts type AgentPanelSectionProps (line 3) | interface AgentPanelSectionProps { FILE: apps/builder/src/page/App/components/Actions/ActionGuidePanel/constans.ts constant RECOMMEND_RESOURCES_SELF_HOST (line 4) | const RECOMMEND_RESOURCES_SELF_HOST: ActionType[] = [ constant MORE_DATA_TYPE_SELF_HOST (line 12) | const MORE_DATA_TYPE_SELF_HOST: ActionType[] = [ constant ONLY_CLOUD_MODE_DATA_TYPE (line 17) | const ONLY_CLOUD_MODE_DATA_TYPE: ActionType[] = ["aiagent", "illadrive"] constant RECOMMEND_RESOURCES_CLOUD (line 19) | const RECOMMEND_RESOURCES_CLOUD: ActionType[] = [ function filterSelfHostActionType (line 37) | function filterSelfHostActionType(actionType: ActionType) { FILE: apps/builder/src/page/App/components/Actions/ActionList/interface.ts type ListWithNewButtonProps (line 1) | interface ListWithNewButtonProps { FILE: apps/builder/src/page/App/components/Actions/ActionListItem/interface.ts type ActionListItemProps (line 5) | interface ActionListItemProps extends HTMLAttributes { FILE: apps/builder/src/page/App/components/Actions/ActionListItem/style.ts function applyActionItemTitleStyle (line 25) | function applyActionItemTitleStyle(error: boolean): SerializedStyles { function applyActionItemContainerStyle (line 51) | function applyActionItemContainerStyle( FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ActionMockPanel/interface.ts type ActionMockPanelProps (line 1) | interface ActionMockPanelProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ActionResult/interface.ts type ActionResultProps (line 1) | interface ActionResultProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ActionResult/restApiHeader.tsx type RESULT_SHOW_TYPE (line 22) | enum RESULT_SHOW_TYPE { type TabsConfig (line 28) | interface TabsConfig { type AdvancedResultHeaderProps (line 34) | interface AdvancedResultHeaderProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ActionResult/style.ts function applyActionContentContainerStyle (line 15) | function applyActionContentContainerStyle( FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ActionResult/utils.ts type IShowResult (line 3) | interface IShowResult { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ActionTitleBar/index.tsx type RunMode (line 75) | type RunMode = "save" | "run" | "test_run" | "save_and_run" constant FILE_SIZE_LIMIT_TYPE (line 76) | const FILE_SIZE_LIMIT_TYPE = ["s3", "smtp"] FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ActionTitleBar/interface.ts type ActionTitleBarProps (line 1) | interface ActionTitleBarProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ActionTitleBar/style.ts function applyOpenStateStyle (line 66) | function applyOpenStateStyle(openState: boolean): SerializedStyles { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/AppwritePanel/interface.ts type AppwriteSubPanelProps (line 3) | interface AppwriteSubPanelProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/CouchDBPanel/index.tsx type CouchDBPanelType (line 32) | type CouchDBPanelType = ActionItem> FILE: apps/builder/src/page/App/components/Actions/ActionPanel/CouchDBPanel/interface.ts type CouchDBSubPanelProps (line 4) | interface CouchDBSubPanelProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/DynamoDBPanel/interface.ts type DynamoDBSubPanelProps (line 4) | interface DynamoDBSubPanelProps { type DynamoDBPanelItemsInfo (line 9) | interface DynamoDBPanelItemsInfo { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/FirebasePanel/components/CollectionInput/interface.ts type CollectionInputProps (line 3) | interface CollectionInputProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/FirebasePanel/components/CollectionRecordEditor/constants.ts type OperationType (line 1) | enum OperationType { type OperationTypeValue (line 12) | enum OperationTypeValue { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/FirebasePanel/components/CollectionRecordEditor/interface.ts type CollectionRecordEditorProps (line 3) | interface CollectionRecordEditorProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/FirebasePanel/constants.ts type ServiceTypeLabel (line 8) | enum ServiceTypeLabel { type FirestoreActionTypeLabel (line 29) | enum FirestoreActionTypeLabel { type AuthActionTypeLabel (line 70) | enum AuthActionTypeLabel { type RealtimeActionTypeLabel (line 111) | enum RealtimeActionTypeLabel { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/FirebasePanel/intreface.ts type FirebaseActionPartProps (line 7) | interface FirebaseActionPartProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/GoogleSheetsPanel/CopySpreadSheetSubPanel/style.ts function applyFxIconStyle (line 17) | function applyFxIconStyle(selected?: boolean): SerializedStyles { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/GoogleSheetsPanel/interface.ts type GoogleSheetsActionSubPanelProps (line 5) | interface GoogleSheetsActionSubPanelProps { type BasicSheetConfigProps (line 11) | interface BasicSheetConfigProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/HuggingFaceCommonPanel/interface.ts type HuggingFaceCommonPanelProps (line 1) | interface HuggingFaceCommonPanelProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/components/BaseFxSelect/index.tsx type BaseFxSelectProps (line 8) | interface BaseFxSelectProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/components/FolderSelect/index.tsx type FolderSelectProps (line 20) | interface FolderSelectProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/components/SortOperate/index.tsx type SortOperateProps (line 11) | interface SortOperateProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/constants.ts constant PAGESIZE (line 1) | const PAGESIZE = 10 FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/interface.ts type ILLADriveActionPartProps (line 3) | interface ILLADriveActionPartProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/provider.tsx type Injected (line 9) | interface Injected { type FileUploadProviderProps (line 13) | interface FileUploadProviderProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/Layout/GeneralPanelLayout/constants.ts constant NO_OPTIONS_HEADER (line 1) | const NO_OPTIONS_HEADER = ["transformer", "globalData"] constant NO_EVENT_HANDLER (line 2) | const NO_EVENT_HANDLER = ["transformer", "globalData"] FILE: apps/builder/src/page/App/components/Actions/ActionPanel/Layout/GeneralPanelLayout/interface.ts type GeneralPanelLayoutProps (line 4) | interface GeneralPanelLayoutProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/Layout/HorizontalWithLabel/interface.ts type HorizontalWithLabelProps (line 3) | interface HorizontalWithLabelProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/Layout/Label/interface.ts type ActionPanelLabelProps (line 1) | interface ActionPanelLabelProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/MicrosoftSqlPanel/index.tsx type MSSQLActionType (line 44) | type MSSQLActionType = MicrosoftSqlAction FILE: apps/builder/src/page/App/components/Actions/ActionPanel/MicrosoftSqlPanel/interface.ts type MSSQLModeProps (line 3) | interface MSSQLModeProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/MongoDbPanel/interface.ts type MongoDbActionPartProps (line 3) | interface MongoDbActionPartProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/PanelHeader/MockOperation/interface.ts type MockOperationProps (line 1) | interface MockOperationProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/PanelHeader/ResourceChoose/index.tsx type ResourceChooseProps (line 22) | interface ResourceChooseProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/RestApiPanel/BodyEditor/interface.ts type BodyEditorProps (line 7) | interface BodyEditorProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/S3Panel/components/ContentTypeSelect/interface.ts type ContentTypeSelectProps (line 1) | interface ContentTypeSelectProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/S3Panel/constants.ts type S3ActionType (line 3) | enum S3ActionType { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/S3Panel/interface.ts type S3ActionPartProps (line 3) | interface S3ActionPartProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/SingleTypeComponent/interface.ts type SingleComponentType (line 4) | type SingleComponentType = type SingleComponentProps (line 10) | interface SingleComponentProps FILE: apps/builder/src/page/App/components/Actions/ActionPanel/TransformerComponent/interface.ts type TransformComponentProps (line 1) | interface TransformComponentProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/pulicComponent/SQLModeTip/index.tsx type SQLModeTipProps (line 23) | interface SQLModeTipProps extends BoxProps { FILE: apps/builder/src/page/App/components/Actions/ActionPanel/utils/calculateFileSize.ts constant MAX_SIZE (line 7) | const MAX_SIZE = 5 * 1024 * 1024 FILE: apps/builder/src/page/App/components/Actions/ActionPanel/utils/safeModeTip.ts constant SAFE_MODE_ACTION_TYPE (line 1) | const SAFE_MODE_ACTION_TYPE = [ FILE: apps/builder/src/page/App/components/Actions/AdvancedPanel/Components/Control/interface.ts type AdvancedPanelControlProps (line 3) | interface AdvancedPanelControlProps { FILE: apps/builder/src/page/App/components/Actions/AdvancedPanel/Components/Header/interface.ts type AdvancedPanelHeaderProps (line 1) | interface AdvancedPanelHeaderProps { FILE: apps/builder/src/page/App/components/Actions/AdvancedPanel/Model/Timing/index.tsx constant RUN_TIME_OPTIONS (line 19) | const RUN_TIME_OPTIONS = [ FILE: apps/builder/src/page/App/components/Actions/CheckboxInput/interface.ts type CheckboxInputProps (line 3) | interface CheckboxInputProps { FILE: apps/builder/src/page/App/components/Actions/Context/SqlModeTipContext/index.tsx type ActionShowSQLMode (line 3) | type ActionShowSQLMode = Record type Injected (line 5) | interface Injected { FILE: apps/builder/src/page/App/components/Actions/ControlledElement/interface.ts type ControlledType (line 6) | type ControlledType = type DefaultValueType (line 18) | type DefaultValueType = string | boolean | number type ControlledElementProps (line 20) | interface ControlledElementProps { FILE: apps/builder/src/page/App/components/Actions/ControlledElement/style.ts function applyConfigItemContainer (line 4) | function applyConfigItemContainer(hasTextarea: boolean) { function applyConfigItemLabelText (line 48) | function applyConfigItemLabelText( FILE: apps/builder/src/page/App/components/Actions/DragBar/interface.ts type DragBarProps (line 3) | interface DragBarProps extends HTMLAttributes { FILE: apps/builder/src/page/App/components/Actions/InputEditor/interface.ts type ControlledInputProps (line 8) | interface ControlledInputProps FILE: apps/builder/src/page/App/components/Actions/InputRecordEditor/interface.ts type InputRecordEditorProps (line 4) | interface InputRecordEditorProps { FILE: apps/builder/src/page/App/components/Actions/InputRecordEditor/style.ts function applyRecordEditorContainerStyle (line 4) | function applyRecordEditorContainerStyle(label: string) { FILE: apps/builder/src/page/App/components/Actions/ResourceDivider/interface.ts type ResourceDividerType (line 1) | type ResourceDividerType = type ResourceDividerProps (line 6) | interface ResourceDividerProps { FILE: apps/builder/src/page/App/components/Actions/SearchHeader/index.tsx type SearchInputProps (line 17) | interface SearchInputProps { FILE: apps/builder/src/page/App/components/Actions/SearchHeader/interface.tsx type SearchHeaderProps (line 1) | interface SearchHeaderProps { FILE: apps/builder/src/page/App/components/Actions/api.ts function onCopyActionItem (line 20) | async function onCopyActionItem(action: ActionItem) { function onDeleteActionItem (line 69) | async function onDeleteActionItem(action: ActionItem) { FILE: apps/builder/src/page/App/components/Actions/getIcon.tsx function getAgentIcon (line 4) | function getAgentIcon(agent: Agent, size: string) { FILE: apps/builder/src/page/App/components/Avatar/interface.ts type AvatarProps (line 3) | interface AvatarProps extends HTMLAttributes { FILE: apps/builder/src/page/App/components/Avatar/style.ts function applyUserAvatarStyle (line 4) | function applyUserAvatarStyle( FILE: apps/builder/src/page/App/components/ComponentPanel/componentListBuilder.tsx constant DEPRECATED_WIDGETS (line 14) | const DEPRECATED_WIDGETS = ["CHART", "TABLE_WIDGET"] constant PREMIUM_WIDGETS (line 15) | const PREMIUM_WIDGETS = ["DRIVE_PICKER_WIDGET"] type SessionType (line 17) | type SessionType = keyof typeof sessionTypeMapSessionNameKey constant COMMONLY_WIDGET (line 31) | const COMMONLY_WIDGET = new Set([ FILE: apps/builder/src/page/App/components/ComponentPanel/interface.ts type ComponentPanelProps (line 4) | interface ComponentPanelProps extends HTMLAttributes { type WidgetCardInfo (line 8) | interface WidgetCardInfo { type ComponentSessionProps (line 18) | type ComponentSessionProps = { type TypeMapComponent (line 24) | type TypeMapComponent = { type ComponentItemProps (line 28) | interface ComponentItemProps { FILE: apps/builder/src/page/App/components/ComponentPanel/utils.tsx function getMatchComponent (line 4) | function getMatchComponent( FILE: apps/builder/src/page/App/components/ConfigPanel/index.tsx type ConfigPanelProps (line 6) | interface ConfigPanelProps extends HTMLAttributes {} FILE: apps/builder/src/page/App/components/Debugger/components/ErrorItem/interface.ts type ErrorItemProps (line 4) | interface ErrorItemProps extends HTMLAttributes { FILE: apps/builder/src/page/App/components/Debugger/components/ErrorItem/style.ts function applyExpandIconStyle (line 57) | function applyExpandIconStyle(expanded?: boolean): SerializedStyles { FILE: apps/builder/src/page/App/components/Debugger/components/JsonView/interface.ts type JsonViewProps (line 3) | interface JsonViewProps extends HTMLAttributes { FILE: apps/builder/src/page/App/components/Debugger/components/JsonView/style.ts function applyLevelStyle (line 23) | function applyLevelStyle(level: number): SerializedStyles { FILE: apps/builder/src/page/App/components/Debugger/style.ts function applyDebuggerStyle (line 4) | function applyDebuggerStyle(h: number) { FILE: apps/builder/src/page/App/components/DotPanel/calc.ts type ItemPosition (line 3) | interface ItemPosition { type CanvasPosition (line 8) | interface CanvasPosition { type NodeWidthAndHeight (line 13) | interface NodeWidthAndHeight { type CenterPointPosition (line 18) | interface CenterPointPosition { function calcRectCenterPointPosition (line 23) | function calcRectCenterPointPosition( type RectShape (line 41) | interface RectShape { function calcRectShapeByCenterPoint (line 48) | function calcRectShapeByCenterPoint( type LandingPosition (line 64) | interface LandingPosition { function calcLadingPosition (line 72) | function calcLadingPosition( type RectangleType (line 115) | type RectangleType = { function getMousePointerPosition (line 337) | function getMousePointerPosition( FILE: apps/builder/src/page/App/components/DotPanel/components/Canvas/interface.ts type RenderComponentCanvasContainerProps (line 1) | interface RenderComponentCanvasContainerProps { type DropCollectedProps (line 14) | interface DropCollectedProps { type DropResultInfo (line 18) | interface DropResultInfo { FILE: apps/builder/src/page/App/components/DotPanel/components/ComponentParser/interface.ts type ComponentParserProps (line 1) | interface ComponentParserProps { FILE: apps/builder/src/page/App/components/DotPanel/components/DragPreview/interface.ts type DragPreviewProps (line 4) | interface DragPreviewProps { type DragCollectedProps (line 10) | interface DragCollectedProps { FILE: apps/builder/src/page/App/components/DotPanel/components/DragShadowPreview/Shadow/index.tsx type DragShadowPreviewProps (line 10) | interface DragShadowPreviewProps { FILE: apps/builder/src/page/App/components/DotPanel/components/DragShadowPreview/interface.ts type DragShadowPreviewProps (line 1) | interface DragShadowPreviewProps { FILE: apps/builder/src/page/App/components/DotPanel/components/MousePreview/Cursor/interface.ts type NickNameContainerProps (line 1) | interface NickNameContainerProps { type CursorProps (line 6) | interface CursorProps { FILE: apps/builder/src/page/App/components/DotPanel/components/MousePreview/interface.ts type MousePreviewProps (line 1) | interface MousePreviewProps { FILE: apps/builder/src/page/App/components/DotPanel/components/MultiSelectCanvas/interface.ts type MultiSelectCanvasProps (line 3) | interface MultiSelectCanvasProps { FILE: apps/builder/src/page/App/components/DotPanel/components/MultiSelectedContainer/interface.ts type MultiSelectedScaleSquareProps (line 3) | interface MultiSelectedScaleSquareProps { type SelectedComponentWithShape (line 8) | interface SelectedComponentWithShape extends LayoutInfo { FILE: apps/builder/src/page/App/components/DotPanel/components/Page/interface.ts type RenderPageProps (line 1) | interface RenderPageProps { FILE: apps/builder/src/page/App/components/DotPanel/components/Section/BodySection/interface.ts type RenderSectionProps (line 3) | type RenderSectionProps = RenderBasicSectionProps FILE: apps/builder/src/page/App/components/DotPanel/components/Section/FooterSection/interface.ts type RenderFooterSectionProps (line 3) | interface RenderFooterSectionProps extends RenderBasicSectionProps { FILE: apps/builder/src/page/App/components/DotPanel/components/Section/HeaderSection/interface.ts type RenderHeaderSectionProps (line 3) | interface RenderHeaderSectionProps extends RenderBasicSectionProps { FILE: apps/builder/src/page/App/components/DotPanel/components/Section/LeftSection/interface.ts type RenderLeftSectionProps (line 3) | interface RenderLeftSectionProps extends RenderBasicSectionProps { FILE: apps/builder/src/page/App/components/DotPanel/components/Section/ModalSection/interface.ts type RenderModalSectionProps (line 1) | interface RenderModalSectionProps { FILE: apps/builder/src/page/App/components/DotPanel/components/Section/RightSection/interface.ts type RenderRightSectionProps (line 3) | interface RenderRightSectionProps extends RenderBasicSectionProps { FILE: apps/builder/src/page/App/components/DotPanel/components/Section/interface.ts type RenderBasicSectionProps (line 1) | interface RenderBasicSectionProps { FILE: apps/builder/src/page/App/components/DotPanel/constant/canvas.ts constant UNIT_HEIGHT (line 1) | const UNIT_HEIGHT = 8 constant DEFAULT_BODY_COLUMNS_NUMBER (line 3) | const DEFAULT_BODY_COLUMNS_NUMBER = 32 constant DEFAULT_ASIDE_COLUMNS_NUMBER (line 4) | const DEFAULT_ASIDE_COLUMNS_NUMBER = 8 constant HEADER_MIN_HEIGHT (line 6) | const HEADER_MIN_HEIGHT = 40 constant FOOTER_MIN_HEIGHT (line 7) | const FOOTER_MIN_HEIGHT = 40 constant BODY_MIN_HEIGHT (line 8) | const BODY_MIN_HEIGHT = 40 constant LEFT_MIN_WIDTH (line 10) | const LEFT_MIN_WIDTH = 80 constant RIGHT_MIN_WIDTH (line 11) | const RIGHT_MIN_WIDTH = 80 constant BODY_MIN_WIDTH (line 12) | const BODY_MIN_WIDTH = 80 constant BASIC_CANVAS_PADDING (line 14) | const BASIC_CANVAS_PADDING = 8 constant SCROLL_CONTAINER_PADDING (line 15) | const SCROLL_CONTAINER_PADDING = 2 constant BORDER_WIDTH (line 16) | const BORDER_WIDTH = 2 constant ADD_ROWS (line 17) | const ADD_ROWS = 40 constant SAFE_ROWS (line 18) | const SAFE_ROWS = 10 constant DEFAULT_PERCENT_WIDTH (line 20) | const DEFAULT_PERCENT_WIDTH = { constant DEFAULT_PX_WIDTH (line 26) | const DEFAULT_PX_WIDTH = { FILE: apps/builder/src/page/App/components/DotPanel/constant/snapshotNew.ts class SnapShot (line 3) | class SnapShot { method constructor (line 7) | constructor() { method setSnapshot (line 11) | setSnapshot(snapshot: Record) { method getSnapshot (line 16) | getSnapshot() { method clearSnapshot (line 20) | clearSnapshot() { method getSnapShotArray (line 23) | getSnapShotArray() { method getSnapShotArrayByParentDisplayName (line 26) | getSnapShotArrayByParentDisplayName(parentDisplayName: string) { FILE: apps/builder/src/page/App/components/DotPanel/context/mouseHoverContext.tsx type MouseHoverContextInjected (line 5) | interface MouseHoverContextInjected { type MouseHoverProviderProps (line 16) | interface MouseHoverProviderProps { FILE: apps/builder/src/page/App/components/DotPanel/context/mouseMoveContext.tsx type MouseMoveContextInjected (line 3) | interface MouseMoveContextInjected { type MouseMoveProviderProps (line 14) | interface MouseMoveProviderProps { FILE: apps/builder/src/page/App/components/DotPanel/hooks/useMousePostionAsync.tsx type CursorPosition (line 11) | interface CursorPosition { FILE: apps/builder/src/page/App/components/DotPanel/interface.ts type DropCollectedInfo (line 2) | interface DropCollectedInfo { type DragCollectedInfo (line 7) | interface DragCollectedInfo { type PreviewPlaceholderProps (line 11) | interface PreviewPlaceholderProps { FILE: apps/builder/src/page/App/components/DotPanel/utils.ts type WidgetShape (line 3) | interface WidgetShape { FILE: apps/builder/src/page/App/components/DotPanel/utils/crossingHelper.ts type NodeShape (line 4) | interface NodeShape { FILE: apps/builder/src/page/App/components/DotPanel/utils/getDropResult.ts type DropResult (line 4) | interface DropResult { FILE: apps/builder/src/page/App/components/EmptySearchResult/interface.ts type EmptySearchResultProps (line 1) | interface EmptySearchResultProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/BorderSetter/interface.ts type BorderSetterProps (line 1) | interface BorderSetterProps {} FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/CalendarEventListSetter/interface.ts type CalendarEventsListSetterProps (line 5) | interface CalendarEventsListSetterProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/CarouselListSetter/interface.ts type CarouselListSetterProps (line 5) | interface CarouselListSetterProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ChartSetter/chartColorSelectSetter.tsx type CHartColorLabelProps (line 15) | interface CHartColorLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ChartSetter/chartDatasetsSetter/datasetsContext.tsx type ProviderProps (line 6) | interface ProviderProps { type ContextShape (line 15) | interface ContextShape extends Omit { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ChartSetter/chartDatasetsSetter/interface.ts type ListItemProps (line 7) | interface ListItemProps { type ChartDatasetShape (line 15) | interface ChartDatasetShape { type ChartDatasetsSetterProps (line 25) | interface ChartDatasetsSetterProps extends BaseSetter, PanelLabelProps { type ListBodyProps (line 31) | interface ListBodyProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ChartSetter/chartDatasetsSetter/listItem.tsx constant CHART_COLOR_TYPE_CONFIG (line 28) | const CHART_COLOR_TYPE_CONFIG = { constant CHART__BASE_COLOR_TYPE_CONFIG (line 103) | const CHART__BASE_COLOR_TYPE_CONFIG = CHART_COLOR_TYPE_CONFIG[ constant CHART_PRESET_COLOR (line 116) | const CHART_PRESET_COLOR = CHART_COLOR_TYPE_CONFIG["illa-preset"] constant CHART_COLOR_TYPE_CONFIG_KEYS (line 117) | const CHART_COLOR_TYPE_CONFIG_KEYS = Object.keys(CHART_COLOR_TYPE_CONFIG) type ColorAreaProps (line 119) | interface ColorAreaProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ChartSetter/interface.ts type ChartDataSourceSetterProps (line 5) | interface ChartDataSourceSetterProps type ChartColorSelectSetterProps (line 12) | interface ChartColorSelectSetterProps extends BaseSetter { type ChartTypeSelectSetterProps (line 16) | interface ChartTypeSelectSetterProps extends BaseSelectSetterProps {} FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ColorPickerSetter/interface.ts type ColorPickerSetterProps (line 1) | interface ColorPickerSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ContainerSetter/ViewsSetter/context/viewsListContext.tsx type ProviderProps (line 18) | interface ProviderProps { type Inject (line 37) | interface Inject extends Omit { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ContainerSetter/ViewsSetter/dragIconAndLabel.tsx type optionIconProps (line 25) | interface optionIconProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ContainerSetter/ViewsSetter/header.tsx type HeaderProps (line 9) | interface HeaderProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ContainerSetter/ViewsSetter/interface.ts type ViewItemShape (line 5) | interface ViewItemShape { type ViewSetterProps (line 13) | interface ViewSetterProps extends BaseSetter { type DragIconAndLabelProps (line 19) | interface DragIconAndLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ContainerSetter/ViewsSetter/listBody.tsx type ItemsProps (line 18) | interface ItemsProps extends ViewItemShape { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ContainerSetter/ViewsSetter/listItem.tsx type ListItemProps (line 18) | interface ListItemProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/ContainerSetter/interface.ts type ContainerDefaultViewKeySetterProps (line 3) | interface ContainerDefaultViewKeySetterProps FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnButtonGroupSetter/interface.ts type ColumnButtonGroupSetterProps (line 4) | interface ColumnButtonGroupSetterProps extends BaseSetter { type GroupButton (line 9) | interface GroupButton { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnMappedInput/interface.ts type ColumnMappedInputProps (line 3) | interface ColumnMappedInputProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnMappedSelect/interface.ts type ColumnMappedSelectProps (line 3) | interface ColumnMappedSelectProps extends BaseSelectSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnSetter/Components/UpdateButton/interface.ts type UpdateButtonProps (line 1) | interface UpdateButtonProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnSetter/index.tsx function generateCalcColumnConfig (line 20) | function generateCalcColumnConfig( FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnSetter/interface.ts type ColumnType (line 10) | type ColumnType = type ColumnConfig (line 29) | interface ColumnConfig { type ColumnSetterProps (line 52) | interface ColumnSetterProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnSwitchSetter/interface.ts type ColumnSwitchSetterProps (line 4) | interface ColumnSwitchSetterProps extends BaseSetter, PanelLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnTypeSelectSetter/interface.ts type ColumnTypeSelectSetterProps (line 3) | interface ColumnTypeSelectSetterProps extends BaseSelectSetterProps {} FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnsSelectSetter/interface.ts type ColumnsSelectSetterProps (line 3) | interface ColumnsSelectSetterProps extends BaseSelectSetterProps {} FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/utils.ts function dealRawData2ArrayData (line 6) | function dealRawData2ArrayData( function getHashCode (line 65) | function getHashCode(str: string) { function isValidLocale (line 78) | function isValidLocale(locale: string) { function getPreColor (line 260) | function getPreColor(index: number) { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DragMoveComponent/Column/interface.ts type ColumnProps (line 4) | interface ColumnProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DragMoveComponent/ColumnContainer/interface.ts type ColumnContainerProps (line 5) | interface ColumnContainerProps extends PropsWithChildren { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/components/SourceHeader/index.tsx type SourceHeaderProps (line 12) | interface SourceHeaderProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/components/URLModeInput/interface.ts type URLModeInputProps (line 3) | type URLModeInputProps = Pick< FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/components/UploadInput/index.tsx type UploadModeProps (line 8) | interface UploadModeProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/constants.ts constant PAGESIZE (line 1) | const PAGESIZE = 10 constant COLOR_SCHEME (line 2) | const COLOR_SCHEME = "techPurple" type DRIVE_SOURCE_MODE (line 3) | enum DRIVE_SOURCE_MODE { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/interface.ts type DriveSourceGroupSetterProps (line 3) | interface DriveSourceGroupSetterProps extends BaseSetter { type SelectItemValue (line 7) | interface SelectItemValue { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/provider/FileUploadProvider/index.tsx type Injected (line 9) | interface Injected { type FileUploadProviderProps (line 18) | interface FileUploadProviderProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/provider/SourceSelectProvider/index.tsx type Props (line 26) | interface Props { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/EventHandlerSetter/List/interface.ts type ActionMenuProps (line 1) | interface ActionMenuProps { type EventAndMethodLabelProps (line 7) | interface EventAndMethodLabelProps { type MoreProps (line 11) | interface MoreProps { type ListBodyProps (line 15) | interface ListBodyProps { type ListItemProps (line 19) | interface ListItemProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/EventHandlerSetter/context/index.tsx type ProviderProps (line 5) | interface ProviderProps { type Inject (line 15) | interface Inject extends Omit { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/EventHandlerSetter/interface.ts type NewBaseEventHandlerSetterProps (line 6) | interface NewBaseEventHandlerSetterProps FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/IconSetter/interface.ts type IconShowType (line 4) | type IconShowType = "All" | "Filled" | "Outline" type IconDataType (line 6) | type IconDataType = { type BaseIconSetterProps (line 11) | interface BaseIconSetterProps extends BaseSetter { type IconSelectorProps (line 15) | interface IconSelectorProps extends BaseSetter { type IconPickerListProps (line 20) | interface IconPickerListProps { type IconTriggerComponentProps (line 27) | interface IconTriggerComponentProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/InputSetter/BaseInput/interface.ts type NewBaseInputSetterProps (line 3) | interface NewBaseInputSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/InputSetter/FileMinMaxSetter/interface.ts type FileMinMaxSetterProps (line 4) | interface FileMinMaxSetterProps extends BaseSetter, PanelLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/InputSetter/MeasureCheckInput/interface.ts type MeasureCheckInputSetterProps (line 3) | interface MeasureCheckInputSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/InputSetter/PaddingInput/interface.ts type DirectionPaddingSetterProps (line 3) | interface DirectionPaddingSetterProps extends BaseInputSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/InputSetter/interface.ts type BaseInputSetterProps (line 4) | interface BaseInputSetterProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/MappedOptionSetter/interface.ts type MappedOptionSetterProps (line 5) | interface MappedOptionSetterProps extends BaseSetter, PanelLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/MenuSetter/MenuOptionSetter/index.tsx function getDifferentLabelFromValue (line 30) | function getDifferentLabelFromValue( function getDifferentValueFromValue (line 43) | function getDifferentValueFromValue( FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/MenuSetter/MenuOptionSetter/interface.ts type MenuOptionSetterProps (line 6) | interface MenuOptionSetterProps extends BaseSetter { type SetterSubMenuProps (line 11) | interface SetterSubMenuProps extends HTMLAttributes { type NewButtonProps (line 22) | interface NewButtonProps extends ButtonProps { type SetterMenuItemProps (line 26) | interface SetterMenuItemProps extends HTMLAttributes { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/OptionListSetter/interface.ts type OptionItemShape (line 4) | interface OptionItemShape { type OptionListSetterProps (line 11) | interface OptionListSetterProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/PublicComponent/DynamicIcon/interface.ts type DynamicIconProps (line 1) | interface DynamicIconProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/PublicComponent/Label/interface.ts type AddActionLabelProps (line 3) | interface AddActionLabelProps FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/PublicComponent/Modal/interface.ts type HeaderProps (line 5) | interface HeaderProps { type BaseBodyProps (line 11) | interface BaseBodyProps { type BodyProps (line 15) | interface BodyProps { type ModalProps (line 21) | interface ModalProps extends HeaderProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/RadioGroupSetter/interface.ts type BaseRadioGroupProps (line 3) | interface BaseRadioGroupProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/SelectSetter/CustomBgSelect/index.tsx type CUSTOM_BG_SELECT_OPTIONS (line 9) | enum CUSTOM_BG_SELECT_OPTIONS { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/SelectSetter/CustomBgSelect/interface.ts type ShadowSelectProps (line 3) | interface ShadowSelectProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/SelectSetter/MeasureSelectSetter/interface.ts type MeasureSelectSetterProps (line 4) | interface MeasureSelectSetterProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/SelectSetter/ShadowSelect/interface.ts type ShadowSelectProps (line 1) | interface ShadowSelectProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/SelectSetter/interface.ts type BaseSelectSetterProps (line 3) | interface BaseSelectSetterProps extends BaseSetter { type BaseDynamicSelectSetterProps (line 13) | interface BaseDynamicSelectSetterProps extends BaseSetter { type HeightModeSetterProps (line 27) | interface HeightModeSetterProps extends BaseSelectSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/StepsListSetter/interface.ts type StepsListSetterProps (line 5) | interface StepsListSetterProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/StyleContainerSetter/interface.ts type StyleContainerSetterProps (line 3) | interface StyleContainerSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/SwitchSetter/interface.tsx type BaseSwitchProps (line 4) | interface BaseSwitchProps extends BaseSetter { type DynamicSwitchProps (line 12) | interface DynamicSwitchProps extends BaseSetter, PanelLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/TableSetter/CellSetter/context/columnListContext.tsx type ProviderProps (line 6) | interface ProviderProps { type Inject (line 15) | interface Inject extends Omit { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/TableSetter/CellSetter/interface.ts type HeaderProps (line 5) | interface HeaderProps { type CellItemProps (line 10) | interface CellItemProps { type ColumnItemProps (line 17) | interface ColumnItemProps extends CellItemProps {} type DragIconAndLabelProps (line 19) | interface DragIconAndLabelProps extends CellItemProps {} type ColumnListSetterProps (line 21) | interface ColumnListSetterProps extends BaseSetter { type CellSetterProps (line 26) | interface CellSetterProps extends BaseSetter { type DragItem (line 31) | interface DragItem { type ActionMenuProps (line 37) | interface ActionMenuProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/TableSetter/ColumnSetter/context/columnListContext.tsx type ProviderProps (line 6) | interface ProviderProps { type Inject (line 15) | interface Inject extends Omit { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/TableSetter/ColumnSetter/interface.ts type HeaderProps (line 5) | interface HeaderProps { type ColumnItemProps (line 10) | interface ColumnItemProps type DragIconAndLabelProps (line 15) | interface DragIconAndLabelProps { type ColumnListSetterProps (line 22) | interface ColumnListSetterProps extends BaseSetter { type DragItem (line 27) | interface DragItem { type ActionMenuProps (line 33) | interface ActionMenuProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/TableSetter/columnTypeSelectSetter.tsx type ColumnTypeSelectSetterProps (line 14) | interface ColumnTypeSelectSetterProps extends BaseSelectSetterProps {} FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/TableSetter/interface.ts type SelectOptions (line 5) | type SelectOptions = ( type ColumnsSelectSetterProps (line 14) | interface ColumnsSelectSetterProps extends BaseSetter, PanelLabelProps { type TableDataSourceSetterProps (line 18) | interface TableDataSourceSetterProps type TableDataInputSetterProps (line 24) | interface TableDataInputSetterProps extends BaseInputSetterProps {} FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/TabsSetter/DefaultTabKeySetter/interface.ts type TabsDefaultKeySetterProps (line 4) | interface TabsDefaultKeySetterProps extends BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/TabsSetter/TabListSetter/interface.ts type ViewItemShape (line 4) | interface ViewItemShape { type ViewSetterProps (line 12) | interface ViewSetterProps extends BaseSetter { type DragIconAndLabelProps (line 17) | interface DragIconAndLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/index.tsx type SetterType (line 382) | type SetterType = keyof typeof SetterTypeMapSetter FILE: apps/builder/src/page/App/components/InspectPanel/PanelSetters/interface.ts type BaseSetter (line 5) | interface BaseSetter { FILE: apps/builder/src/page/App/components/InspectPanel/components/ActionMenu/interface.ts type PanelHeaderActionProps (line 1) | interface PanelHeaderActionProps { FILE: apps/builder/src/page/App/components/InspectPanel/components/FieldAndLabel/interface.ts type RenderFieldAndLabelProps (line 4) | interface RenderFieldAndLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/components/FieldFactory/interface.ts type FieldFactoryProps (line 3) | interface FieldFactoryProps { FILE: apps/builder/src/page/App/components/InspectPanel/components/GuideModePanelSetter/interface.ts type RenderGuideModePanelSetterProps (line 3) | interface RenderGuideModePanelSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/components/Label/interface.ts type PanelLabelProps (line 1) | interface PanelLabelProps { FILE: apps/builder/src/page/App/components/InspectPanel/components/Label/style.ts function applyLabelTipsStyle (line 21) | function applyLabelTipsStyle( FILE: apps/builder/src/page/App/components/InspectPanel/components/PanelSetter/interface.ts type RenderPanelSetterProps (line 3) | interface RenderPanelSetterProps { FILE: apps/builder/src/page/App/components/InspectPanel/components/Panelbar/interface.ts type RenderPanelBarProps (line 3) | interface RenderPanelBarProps { FILE: apps/builder/src/page/App/components/InspectPanel/context/selectedContext.tsx type Injected (line 3) | interface Injected { type Props (line 23) | interface Props { FILE: apps/builder/src/page/App/components/InspectPanel/interface.ts type EventHandlerPanelConfig (line 7) | interface EventHandlerPanelConfig extends PanelFieldConfig { type PanelFieldConfig (line 11) | interface PanelFieldConfig extends PanelLabelProps { type PanelFieldGroupConfig (line 37) | interface PanelFieldGroupConfig { type PanelConfig (line 43) | type PanelConfig = PanelFieldConfig | PanelFieldGroupConfig type PanelSetterProps (line 45) | interface PanelSetterProps extends Omit { type SelectedPanelProps (line 50) | interface SelectedPanelProps { FILE: apps/builder/src/page/App/components/InspectPanel/style.ts function applySetterWrapperStyle (line 8) | function applySetterWrapperStyle( FILE: apps/builder/src/page/App/components/MissingRosourceModal/interface.ts type MissingTipButtonMethod (line 1) | interface MissingTipButtonMethod { type IMissingResourceModalProps (line 5) | interface IMissingResourceModalProps { FILE: apps/builder/src/page/App/components/PagePanel/Components/Label/interface.ts type PageLabelProps (line 1) | interface PageLabelProps { FILE: apps/builder/src/page/App/components/PagePanel/Components/Label/style.ts function labelStyle (line 21) | function labelStyle(size: "big" | "small", disabledTooltip: boolean) { FILE: apps/builder/src/page/App/components/PagePanel/Components/LayoutSelect/index.tsx constant LAYOUT_OPTIONS (line 27) | const LAYOUT_OPTIONS = [ FILE: apps/builder/src/page/App/components/PagePanel/Components/LayoutSelect/interface.ts type LayoutOptionsPanelProps (line 3) | interface LayoutOptionsPanelProps { type LayoutSelectProps (line 8) | interface LayoutSelectProps { type LayoutOptionItemProps (line 13) | interface LayoutOptionItemProps { FILE: apps/builder/src/page/App/components/PagePanel/Components/PanelActionBar/interface.ts type PanelActionBarProps (line 1) | interface PanelActionBarProps { FILE: apps/builder/src/page/App/components/PagePanel/Components/ViewsList/interface.ts type HeaderProps (line 3) | interface HeaderProps { type ViewListProps (line 13) | interface ViewListProps { type BodyProps (line 22) | interface BodyProps { type ItemProps (line 30) | interface ItemProps extends Omit { type LabelNameAndDragIconProps (line 39) | interface LabelNameAndDragIconProps { type ModalProps (line 44) | interface ModalProps { FILE: apps/builder/src/page/App/components/PagePanel/Layout/divider/interface.ts type PanelDividerProps (line 1) | interface PanelDividerProps { FILE: apps/builder/src/page/App/components/PagePanel/Layout/leftAndRight/interface.ts type LeftAndRightLayoutProps (line 3) | interface LeftAndRightLayoutProps { FILE: apps/builder/src/page/App/components/PagePanel/Layout/setterPadding/interface.ts type SetterPaddingLayout (line 3) | interface SetterPaddingLayout { FILE: apps/builder/src/page/App/components/PagePanel/Layout/verticalLayout/interface.ts type VerticalLayoutProps (line 3) | interface VerticalLayoutProps { FILE: apps/builder/src/page/App/components/PagePanel/Modules/Style/Components/AddSection/interface.ts type AddSectionProps (line 3) | interface AddSectionProps { FILE: apps/builder/src/page/App/components/PagePanel/Modules/Style/Components/DeleteActionContainer/interface.ts type DeleteActionContainerProps (line 3) | interface DeleteActionContainerProps { FILE: apps/builder/src/page/App/components/PagePanel/Modules/Style/Components/DirectionPaddingSetter/interface.ts type DirectionPaddingSetterProps (line 1) | interface DirectionPaddingSetterProps { FILE: apps/builder/src/page/App/components/PagePanel/Modules/Style/Components/ShadowSelect/constants.ts type SHADOW_VALUE (line 3) | enum SHADOW_VALUE { constant SHADOW_OPTIONS (line 10) | const SHADOW_OPTIONS = [ FILE: apps/builder/src/page/App/components/PagePanel/Modules/Style/Components/ShadowSelect/interface.ts type ShadowSetterProps (line 3) | interface ShadowSetterProps { FILE: apps/builder/src/page/App/components/ScaleSquare/components/AutoHeightWithLimitedContainer/index.tsx constant DEFAULT_MAX_HEIGHT (line 17) | const DEFAULT_MAX_HEIGHT = 80 constant DEFAULT_MIN_GAP (line 18) | const DEFAULT_MIN_GAP = 8 FILE: apps/builder/src/page/App/components/ScaleSquare/components/AutoHeightWithLimitedContainer/interface.ts type AutoHeightWithLimitedContainerProps (line 1) | interface AutoHeightWithLimitedContainerProps { FILE: apps/builder/src/page/App/components/ScaleSquare/components/CollaboratorsList/style.ts function applyUserAvatarStyle (line 4) | function applyUserAvatarStyle( FILE: apps/builder/src/page/App/components/ScaleSquare/components/DragContainer/interface.ts type DragContainerProps (line 4) | interface DragContainerProps { type DRAG_EFFECT (line 13) | enum DRAG_EFFECT { type DragInfo (line 18) | interface DragInfo { FILE: apps/builder/src/page/App/components/ScaleSquare/components/MoveBar/interface.ts type MoveBarProps (line 3) | interface MoveBarProps { type BarPosition (line 13) | type BarPosition = "l" | "r" | "t" | "b" | "tl" | "tr" | "bl" | "br" FILE: apps/builder/src/page/App/components/ScaleSquare/components/MoveBar/moveBar.tsx type WidgetDocProps (line 38) | interface WidgetDocProps { FILE: apps/builder/src/page/App/components/ScaleSquare/components/PositionContainer/interface.ts type PositionContainerProps (line 3) | interface PositionContainerProps { FILE: apps/builder/src/page/App/components/ScaleSquare/components/ResizingAndDragContainer/ResizeHandler/hooks.ts type DragResizeHandlerInfo (line 27) | interface DragResizeHandlerInfo { type ResizingCollectedProps (line 129) | interface ResizingCollectedProps { FILE: apps/builder/src/page/App/components/ScaleSquare/components/ResizingAndDragContainer/ResizeHandler/interface.ts type BarPosition (line 3) | type BarPosition = "l" | "r" | "t" | "b" | "tl" | "tr" | "bl" | "br" type ResizeHandlerProps (line 5) | interface ResizeHandlerProps { type PartResizeHandlerProps (line 10) | interface PartResizeHandlerProps { FILE: apps/builder/src/page/App/components/ScaleSquare/components/ResizingAndDragContainer/ResizeHandler/style.ts function applyBarHandlerStyle (line 57) | function applyBarHandlerStyle( function applyBarPointerStyle (line 108) | function applyBarPointerStyle( function applySquarePointerStyle (line 134) | function applySquarePointerStyle( FILE: apps/builder/src/page/App/components/ScaleSquare/components/ResizingAndDragContainer/interface.ts type ResizingAndDragContainerProps (line 3) | interface ResizingAndDragContainerProps { FILE: apps/builder/src/page/App/components/ScaleSquare/components/WrapperContainer/interface.ts type WrapperContainerProps (line 3) | interface WrapperContainerProps { FILE: apps/builder/src/page/App/components/ScaleSquare/constant/moveBar.ts constant MOVE_BAR_HEIGHT (line 1) | const MOVE_BAR_HEIGHT = 18 constant MIN_MOVE_BAR_WIDTH (line 2) | const MIN_MOVE_BAR_WIDTH = 48 constant MOVE_BAR_SVG_WIDTH (line 3) | const MOVE_BAR_SVG_WIDTH = 12 FILE: apps/builder/src/page/App/components/ScaleSquare/constant/widget.ts constant WIDGET_PADDING (line 1) | const WIDGET_PADDING = 3 // need to modify constant WIDGET_SCALE_SQUARE_BORDER_WIDTH (line 2) | const WIDGET_SCALE_SQUARE_BORDER_WIDTH = 1 constant CONTAINER_PADDING (line 3) | const CONTAINER_PADDING = 4 constant DEFAULT_MIN_COLUMN (line 4) | const DEFAULT_MIN_COLUMN = 1 constant LIKE_CONTAINER_WIDGET_PADDING (line 5) | const LIKE_CONTAINER_WIDGET_PADDING = 4 constant LIST_ITEM_MARGIN_TOP (line 6) | const LIST_ITEM_MARGIN_TOP = 16 constant LABEL_TOP_UNIT_HEIGHT (line 7) | const LABEL_TOP_UNIT_HEIGHT = 32 constant VALIDATE_MESSAGE_HEIGHT (line 8) | const VALIDATE_MESSAGE_HEIGHT = 33 FILE: apps/builder/src/page/App/components/ScaleSquare/interface.ts type ScaleSquareType (line 3) | type ScaleSquareType = "error" | "normal" | "production" type ScaleSquareProps (line 5) | interface ScaleSquareProps { type ScaleSquarePropsWithJSON (line 13) | interface ScaleSquarePropsWithJSON { FILE: apps/builder/src/page/App/components/ScaleSquare/style.ts type BarPosition (line 5) | type BarPosition = "l" | "r" | "t" | "b" | "tl" | "tr" | "bl" | "br" function getSelectedColor (line 7) | function getSelectedColor(selected: boolean): string { function applySquarePointerStyle (line 11) | function applySquarePointerStyle( function applyBarPointerStyle (line 131) | function applyBarPointerStyle( function applyBarHandlerStyle (line 166) | function applyBarHandlerStyle( FILE: apps/builder/src/page/App/resp/currentAppResp.ts type CurrentAppResp (line 9) | interface CurrentAppResp { FILE: apps/builder/src/page/Deploy/Watermark/style.ts function applyPopupStateStyle (line 26) | function applyPopupStateStyle(openState: boolean) { FILE: apps/builder/src/page/Deploy/content.tsx type IDeployContentAsyncValue (line 33) | interface IDeployContentAsyncValue { FILE: apps/builder/src/page/Deploy/style.ts function applyPopupStateStyle (line 20) | function applyPopupStateStyle(openState?: boolean): SerializedStyles { FILE: apps/builder/src/page/History/components/SnapShotItem/index.tsx type SnapShotListProps (line 35) | interface SnapShotListProps { FILE: apps/builder/src/page/History/components/SnapShotList/index.tsx type SnapShotListProps (line 18) | interface SnapShotListProps extends HTMLAttributes { FILE: apps/builder/src/page/Resource/CreateOrEdit/interface.ts type ResourceCreateOrEditPanelProps (line 3) | interface ResourceCreateOrEditPanelProps { FILE: apps/builder/src/page/Status/interface.ts type ErrorPageProps (line 3) | interface ErrorPageProps { FILE: apps/builder/src/redux/aiAgent/dashboardTeamAIAgentPayload.ts type AddTeamAIAgentPayload (line 3) | interface AddTeamAIAgentPayload { type ModifyTeamAIAgentPayload (line 7) | interface ModifyTeamAIAgentPayload { FILE: apps/builder/src/redux/aiAgent/dashboardTeamAIAgentState.ts type AIAgentState (line 3) | interface AIAgentState { FILE: apps/builder/src/redux/builderInfo/builderInfoState.ts type BuilderInfo (line 1) | interface BuilderInfo { FILE: apps/builder/src/redux/config/configListener.ts function handleChangeSelectedActionExecution (line 32) | async function handleChangeSelectedActionExecution( function setupConfigListeners (line 80) | function setupConfigListeners( FILE: apps/builder/src/redux/config/configPayload.ts type UpdateCanvasShapePayload (line 6) | interface UpdateCanvasShapePayload { type UpdateWSStatusPayload (line 11) | interface UpdateWSStatusPayload { FILE: apps/builder/src/redux/config/configState.ts type IllaMode (line 8) | type IllaMode = "preview" | "edit" | "production" | "template-edit" type ConfigState (line 10) | interface ConfigState { FILE: apps/builder/src/redux/currentApp/action/actionListener.ts function handleAddActionItemEffect (line 16) | async function handleAddActionItemEffect( function handleUpdateActionItem (line 23) | async function handleUpdateActionItem( function handleBatchUpdateActionItem (line 47) | async function handleBatchUpdateActionItem( function setupActionListeners (line 125) | function setupActionListeners( FILE: apps/builder/src/redux/currentApp/action/actionState.ts type Events (line 4) | interface Events { type UpdateActionDisplayNamePayload (line 9) | interface UpdateActionDisplayNamePayload { type UpdateActionSlicePropsPayload (line 15) | interface UpdateActionSlicePropsPayload { type RemoveActionItemReducerPayload (line 25) | interface RemoveActionItemReducerPayload { FILE: apps/builder/src/redux/currentApp/collaborators/collaboratorsHandlers.ts constant AVATAR_WIDTH (line 87) | const AVATAR_WIDTH = 14 constant AVATAR_GAP (line 88) | const AVATAR_GAP = 4 constant MIN_DISABLE_MARGIN_WIDTH (line 90) | const MIN_DISABLE_MARGIN_WIDTH = 34 constant MIN_THREE_AVATAR_WIDTH (line 92) | const MIN_THREE_AVATAR_WIDTH = 50 constant MIN_THREE_AVATAR_MOVE_BAR_WIDTH (line 94) | const MIN_THREE_AVATAR_MOVE_BAR_WIDTH = 70 FILE: apps/builder/src/redux/currentApp/collaborators/collaboratorsState.ts type CollaboratorsInfo (line 3) | interface CollaboratorsInfo { type CollaboratorsState (line 10) | interface CollaboratorsState { FILE: apps/builder/src/redux/currentApp/components/componentsListener.ts function handleUpdateComponentDisplayNameEffect (line 31) | function handleUpdateComponentDisplayNameEffect( function handleChangeCurrentPageWhenDelete (line 51) | async function handleChangeCurrentPageWhenDelete( function handleChangeCurrentSectionWhenDelete (line 110) | async function handleChangeCurrentSectionWhenDelete( function handleUpdateComponentReflowEffect (line 214) | function handleUpdateComponentReflowEffect( function setupComponentsListeners (line 423) | function setupComponentsListeners( FILE: apps/builder/src/redux/currentApp/components/componentsPayload.ts type UpdateComponentPositionPayload (line 1) | interface UpdateComponentPositionPayload { type LayoutInfo (line 14) | interface LayoutInfo { type StatusInfo (line 24) | interface StatusInfo { type UpdateComponentNodeLayoutInfoPayload (line 29) | interface UpdateComponentNodeLayoutInfoPayload { type BatchUpdateComponentNodeLayoutInfoPayload (line 41) | interface BatchUpdateComponentNodeLayoutInfoPayload { type UpdateComponentSlicePropsPayload (line 51) | interface UpdateComponentSlicePropsPayload { FILE: apps/builder/src/redux/currentApp/components/componentsReducer.ts function removeDisplayNames (line 60) | function removeDisplayNames( FILE: apps/builder/src/redux/currentApp/components/componentsSelector.ts function searchDSLByDisplayName (line 15) | function searchDSLByDisplayName( function searchComponentFromMap (line 23) | function searchComponentFromMap( function searchDSLFromTree (line 33) | function searchDSLFromTree( function filterContainerNode (line 52) | function filterContainerNode(components: ComponentsState): { function flattenDslToArray (line 65) | function flattenDslToArray(componentNodes: ComponentsState) { function getNodeDepths (line 383) | function getNodeDepths(tree: ComponentsState) { FILE: apps/builder/src/redux/currentApp/components/componentsState.ts type ViewportSizeType (line 8) | type ViewportSizeType = "fluid" | "desktop" | "tablet" | "custom" type RootComponentNodeProps (line 10) | interface RootComponentNodeProps { type RootComponentNode (line 20) | interface RootComponentNode extends ComponentMapNode { type PageNodeProps (line 25) | interface PageNodeProps { type PageNode (line 52) | interface PageNode extends ComponentTreeNode { type ComponentsState (line 57) | type ComponentsState = Record type DeleteComponentNodePayload (line 60) | interface DeleteComponentNodePayload { type DeletePageNodePayload (line 65) | interface DeletePageNodePayload { type SortComponentNodeChildrenPayload (line 70) | interface SortComponentNodeChildrenPayload { type UpdateComponentPropsPayload (line 75) | interface UpdateComponentPropsPayload { type AddContainerComponentViewsReducerPayload (line 81) | interface AddContainerComponentViewsReducerPayload { type DeleteContainerComponentViewsReducerPayload (line 95) | interface DeleteContainerComponentViewsReducerPayload { type UpdateComponentDisplayNamePayload (line 101) | interface UpdateComponentDisplayNamePayload { type UpdateComponentReflowPayload (line 106) | interface UpdateComponentReflowPayload { type UpdateTargetPageLayoutPayload (line 111) | interface UpdateTargetPageLayoutPayload { type UpdateTargetPagePropsPayload (line 124) | interface UpdateTargetPagePropsPayload { type DeleteTargetPageSectionPayload (line 131) | interface DeleteTargetPageSectionPayload { type AddTargetPageSectionPayload (line 140) | interface AddTargetPageSectionPayload { type AddSectionViewPayload (line 150) | interface AddSectionViewPayload { type AddSectionViewByConfigPayload (line 161) | interface AddSectionViewByConfigPayload extends AddSectionViewPayload { type DeleteSectionViewPayload (line 166) | interface DeleteSectionViewPayload { type UpdateSectionViewPropsPayload (line 172) | interface UpdateSectionViewPropsPayload { type AddModalComponentPayload (line 177) | interface AddModalComponentPayload { type UpdateComponentNodeHeightPayload (line 182) | interface UpdateComponentNodeHeightPayload { type SetGlobalStatePayload (line 188) | interface SetGlobalStatePayload { type DeleteGlobalStatePayload (line 194) | interface DeleteGlobalStatePayload { type DeleteSubPageViewNodePayload (line 198) | interface DeleteSubPageViewNodePayload { type UpdateCurrentPageStylePayload (line 203) | interface UpdateCurrentPageStylePayload { type DeleteCurrentPageStylePayload (line 214) | interface DeleteCurrentPageStylePayload { FILE: apps/builder/src/redux/currentApp/cursor/cursorState.ts type CursorInfo (line 3) | interface CursorInfo { type UpdateCursorPayload (line 15) | type UpdateCursorPayload = CursorInfo type CursorState (line 17) | type CursorState = Record FILE: apps/builder/src/redux/currentApp/dragShadow/dragShadowState.ts type DragShadowInfo (line 3) | interface DragShadowInfo { type UpdateCursorPayload (line 20) | type UpdateCursorPayload = DragShadowInfo type DragShadowState (line 22) | type DragShadowState = Record FILE: apps/builder/src/redux/currentApp/executionTree/executionListener.ts function handleStartExecution (line 57) | async function handleStartExecution( function handleStartExecutionOnCanvas (line 83) | async function handleStartExecutionOnCanvas( function handleUpdateModalEffect (line 110) | function handleUpdateModalEffect( function setupExecutionListeners (line 147) | function setupExecutionListeners( FILE: apps/builder/src/redux/currentApp/executionTree/executionSelector.ts constant IGNORE_WIDGET_TYPES (line 59) | const IGNORE_WIDGET_TYPES = new Set([ FILE: apps/builder/src/redux/currentApp/executionTree/executionState.ts type ExecutionErrorType (line 3) | enum ExecutionErrorType { type ErrorShape (line 9) | interface ErrorShape { type DependenciesState (line 16) | type DependenciesState = Record type ExecutionState (line 18) | interface ExecutionState { type setExecutionResultPayload (line 32) | interface setExecutionResultPayload { type UpdateExecutionByDisplayNamePayload (line 36) | interface UpdateExecutionByDisplayNamePayload { type UpdateCurrentPagePathPayload (line 41) | interface UpdateCurrentPagePathPayload { FILE: apps/builder/src/redux/currentApp/layoutInfo/layoutInfoListener.ts function handleUpdateReflowEffect (line 23) | async function handleUpdateReflowEffect( function handleUpdateWidgetPositionInExecutionLayoutInfo (line 196) | function handleUpdateWidgetPositionInExecutionLayoutInfo( function setupLayoutInfoListeners (line 253) | function setupLayoutInfoListeners( FILE: apps/builder/src/redux/currentApp/layoutInfo/layoutInfoState.ts type WidgetLayoutInfo (line 4) | interface WidgetLayoutInfo { type LayoutInfoState (line 13) | interface LayoutInfoState { type UpdateWidgetLayoutInfoPayload (line 21) | interface UpdateWidgetLayoutInfoPayload { type BatchUpdateWidgetLayoutInfoPayload (line 28) | interface BatchUpdateWidgetLayoutInfoPayload { FILE: apps/builder/src/redux/currentAppHistory/currentAppHistoryState.ts type SnapshotTriggerMode (line 3) | enum SnapshotTriggerMode { type UserInfo (line 8) | interface UserInfo { type ModifyHistory (line 15) | interface ModifyHistory { type Snapshot (line 26) | interface Snapshot { type SnapshotList (line 36) | interface SnapshotList { type CurrentSnapshotList (line 41) | interface CurrentSnapshotList extends SnapshotList { type CurrentAppHistory (line 46) | interface CurrentAppHistory extends CurrentSnapshotList { FILE: apps/builder/src/redux/guide/guideState.ts type Guide (line 1) | interface Guide { FILE: apps/builder/src/redux/resource/resourceState.ts type ResourceInitialConfig (line 7) | interface ResourceInitialConfig { type ResourceListState (line 13) | type ResourceListState = Resource[] FILE: apps/builder/src/redux/resource/upstashResource.ts constant DEFAULT_NAME (line 1) | const DEFAULT_NAME = "default" constant DATABASE_INDEX (line 2) | const DATABASE_INDEX = 0 FILE: apps/builder/src/router/interface.ts type RoutesObjectPro (line 3) | type RoutesObjectPro = RouteObject & { FILE: apps/builder/src/router/loader/historyLoader.ts constant INITIAL_PAGE (line 6) | const INITIAL_PAGE = 1 FILE: apps/builder/src/router/utils/lazyLoad.tsx function lazyLoad (line 3) | function lazyLoad( FILE: apps/builder/src/services/action.ts type IActionRunResultRequestData (line 14) | interface IActionRunResultRequestData { type IActionRunResultResponseData (line 21) | interface IActionRunResultResponseData[]> { type IDeleteActionResponse (line 83) | interface IDeleteActionResponse { type IGenerateSQLRequest (line 138) | interface IGenerateSQLRequest { type IGenerateSQLResponse (line 144) | interface IGenerateSQLResponse { FILE: apps/builder/src/services/agent.ts type TeamAgentListData (line 8) | interface TeamAgentListData { type ForkAgentResponse (line 27) | interface ForkAgentResponse { type UploadResponse (line 194) | interface UploadResponse { FILE: apps/builder/src/services/apps.ts type IAPPPublicStatus (line 12) | interface IAPPPublicStatus { type IAppCreateRequestData (line 105) | interface IAppCreateRequestData { FILE: apps/builder/src/services/drive.ts type IFetchUploadFilesToAnonymousFolderRequest (line 15) | interface IFetchUploadFilesToAnonymousFolderRequest { type IFetchUploadFilesToAnonymousFolderResponse (line 23) | interface IFetchUploadFilesToAnonymousFolderResponse { type IFetchGetUploadFileURLRequest (line 72) | interface IFetchGetUploadFileURLRequest { type IFetchUploadFileURLResponse (line 81) | interface IFetchUploadFileURLResponse { type IFetchDownloadURLByTinyURL (line 128) | interface IFetchDownloadURLByTinyURL { type IILLAFileInfo (line 148) | interface IILLAFileInfo { type IFetchFileListRequestData (line 160) | interface IFetchFileListRequestData { type IFetchFileListResponseData (line 171) | interface IFetchFileListResponseData { type IFetchGenerateTinyURLRequestData (line 220) | interface IFetchGenerateTinyURLRequestData { type IFetchGenerateTinyURLResponseData (line 227) | interface IFetchGenerateTinyURLResponseData { type IFetchGenerateBatchTinyURLResponse (line 237) | type IFetchGenerateBatchTinyURLResponse = type IFetchAnonymousPermissionResponseData (line 291) | interface IFetchAnonymousPermissionResponseData { type IFetchCheckFileExistRequestData (line 331) | interface IFetchCheckFileExistRequestData { type IFetchCheckFileExistResponseData (line 337) | interface IFetchCheckFileExistResponseData { type IFetchFileDetailRequestData (line 359) | interface IFetchFileDetailRequestData { type IFetchFIleDetailResponseData (line 369) | interface IFetchFIleDetailResponseData { FILE: apps/builder/src/services/public.ts type IFetchWsURLResponse (line 4) | interface IFetchWsURLResponse { FILE: apps/builder/src/services/resource.ts type IResourceMeta (line 16) | interface IResourceMeta { FILE: apps/builder/src/store.ts type RootState (line 53) | type RootState = ReturnType type AppDispatch (line 55) | type AppDispatch = typeof store.dispatch type AppStartListening (line 57) | type AppStartListening = TypedStartListening type AppListenerEffectAPI (line 59) | type AppListenerEffectAPI = ListenerEffectAPI FILE: apps/builder/src/style.tsx constant FONT_SIZE (line 3) | const FONT_SIZE = (100 / 780) * 100 constant LEFT_PANEL_WIDTH (line 55) | const LEFT_PANEL_WIDTH = 280 constant RIGHT_PANEL_WIDTH (line 56) | const RIGHT_PANEL_WIDTH = 320 constant MIDDLE_PANEL_WIDTH (line 57) | const MIDDLE_PANEL_WIDTH = 300 constant NAVBAR_HEIGHT (line 58) | const NAVBAR_HEIGHT = 48 FILE: apps/builder/src/types/environment.d.ts type ProcessEnv (line 3) | interface ProcessEnv { FILE: apps/builder/src/types/global.d.ts type Window (line 1) | interface Window { FILE: apps/builder/src/types/richText.d.ts class editorPlugin (line 2) | class editorPlugin { FILE: apps/builder/src/utils/action/driveActions.ts type IUploadRes (line 236) | interface IUploadRes { FILE: apps/builder/src/utils/action/premiumActionHandler.ts constant PREMIUM_ACTIONS (line 9) | const PREMIUM_ACTIONS = ["illadrive"] FILE: apps/builder/src/utils/action/runAction.ts type IExecutionActions (line 131) | interface IExecutionActions extends ActionItem { FILE: apps/builder/src/utils/action/runActionTransformer.ts function runTransformer (line 6) | function runTransformer(transformer: Transformer, rawData: any) { FILE: apps/builder/src/utils/calculateMemoryUsage.ts constant LIMIT_MEMORY (line 1) | const LIMIT_MEMORY = 10 * 1024 * 1024 // 1MB = 1024 * 1024 bytes FILE: apps/builder/src/utils/componentNode/buildTree.ts type NeedBuildNode (line 3) | interface NeedBuildNode { type BuildedNode (line 10) | interface BuildedNode { function buildForest (line 17) | function buildForest( FILE: apps/builder/src/utils/componentNode/flatTree.ts function buildTreeByMapNode (line 30) | function buildTreeByMapNode( FILE: apps/builder/src/utils/componentNode/index.ts type DynamicAttrPathActions (line 11) | enum DynamicAttrPathActions { type DynamicAttrPathUpdateShape (line 17) | interface DynamicAttrPathUpdateShape { FILE: apps/builder/src/utils/componentNode/search.ts function searchParent (line 76) | function searchParent( FILE: apps/builder/src/utils/copyManager.ts class CopyManager (line 63) | class CopyManager { method copyActionByActionID (line 69) | static copyActionByActionID(actionID: string) { method copyComponentNodeByDisplayName (line 81) | static copyComponentNodeByDisplayName(displayNames: string[]) { method paste (line 94) | static paste(sources: "keyboard" | "duplicate") { method copyComponent (line 408) | static copyComponent( FILE: apps/builder/src/utils/drag/drag.ts function startDragMultiNodes (line 7) | function startDragMultiNodes(dragWidgetInfos: WidgetLayoutInfo[]) { function endDragMultiNodes (line 13) | function endDragMultiNodes( FILE: apps/builder/src/utils/drive/upload/getSingedURL.ts type GET_SINGED_URL_ERROR_CODE (line 25) | enum GET_SINGED_URL_ERROR_CODE { method start (line 299) | start(controller) { FILE: apps/builder/src/utils/evaluateDynamicString/codeSandbox.ts function runUsersCode (line 24) | function runUsersCode(code: string) { function isDomElement (line 34) | function isDomElement(obj: any): boolean { function getPropertyFromNativeWindow (line 38) | function getPropertyFromNativeWindow(prop: PropertyKey) { function createBlackHole (line 50) | function createBlackHole(): any { function createMockWindow (line 73) | function createMockWindow(base?: object) { function proxySandbox (line 97) | function proxySandbox(context: any) { FILE: apps/builder/src/utils/evaluateDynamicString/utils.ts constant QUOTED_DYNAMIC_STRING_REGEX (line 4) | const QUOTED_DYNAMIC_STRING_REGEX = /["']({{[\s\S]*?}})["']/g constant DYNAMIC_STRING_REG (line 5) | const DYNAMIC_STRING_REG = /{{([\s\S]*?)}}/ function getDisplayNameAndAttrPath (line 60) | function getDisplayNameAndAttrPath(fullPath: string): { FILE: apps/builder/src/utils/evaluateDynamicString/valueConverter.ts constant ASYNC_SCRIPT_CODE_INPUT_START_MARKS (line 68) | const ASYNC_SCRIPT_CODE_INPUT_START_MARKS = "{{(async function (){" constant SYNC_SCRIPT_CODE_INPUT_START_MARKS (line 69) | const SYNC_SCRIPT_CODE_INPUT_START_MARKS = "{{(function (){" constant SCRIPT_CODE_INPUT_END_MARKS (line 70) | const SCRIPT_CODE_INPUT_END_MARKS = "})()}}" FILE: apps/builder/src/utils/eventHandlerHelper/index.ts type EVENT_ACTION_TYPE (line 12) | enum EVENT_ACTION_TYPE { FILE: apps/builder/src/utils/eventHandlerHelper/utils/driveUtils.ts type IDriveDownloadInfo (line 24) | interface IDriveDownloadInfo { type IDownloadFromILLADriveParams (line 29) | interface IDownloadFromILLADriveParams { method start (line 46) | start(controller) { type FILE_TYPE (line 125) | enum FILE_TYPE { type ISaveToILLADriveParams (line 137) | interface ISaveToILLADriveParams { FILE: apps/builder/src/utils/executionTreeHelper/executionTreeFactory.ts constant IGNORE_ACTION_RUN_ATTR_NAME (line 42) | const IGNORE_ACTION_RUN_ATTR_NAME = [ constant IGNORE_AUTO_RUN_WITH_RUN_SCRIPT_ATTR_RULES (line 51) | const IGNORE_AUTO_RUN_WITH_RUN_SCRIPT_ATTR_RULES = [ class ExecutionTreeFactory (line 63) | class ExecutionTreeFactory { method constructor (line 74) | constructor() {} method destroyTree (line 76) | destroyTree() { method initTree (line 90) | initTree(rawTree: RawTreeShape) { method validateTree (line 126) | validateTree(tree: RawTreeShape) { method calcSubTreeSortOrder (line 225) | calcSubTreeSortOrder( method getEvaluationSortOrder (line 253) | getEvaluationSortOrder( method getCompleteSortOrder (line 273) | getCompleteSortOrder(changes: string[], inDependencyTree: Dependencies... method mergeErrorTree (line 319) | mergeErrorTree( method updateExecutionTreeByUpdatePaths (line 341) | updateExecutionTreeByUpdatePaths( method mergeOrderPathAndUpdateMapActions (line 372) | mergeOrderPathAndUpdateMapActions( method updateTree (line 385) | updateTree(rawTree: RawTreeShape, isAddAction?: boolean) { method setEvaluatedTree (line 470) | setEvaluatedTree(executedTree: Record) { method getUpdatePathFromDifferences (line 474) | getUpdatePathFromDifferences( method updateRawTreeByUpdatePaths (line 532) | updateRawTreeByUpdatePaths( method updateTreeFromExecution (line 551) | updateTreeFromExecution(executionTree: Record) { method listEntityDependencies (line 606) | listEntityDependencies( method generateDependenciesMap (line 626) | generateDependenciesMap(rawTree: RawTreeShape) { method sortEvalOrder (line 660) | sortEvalOrder(dependenciesMap: DependenciesState): string[] { method generateInDependenciesMap (line 695) | generateInDependenciesMap(): DependenciesState { method executeTree (line 713) | executeTree( FILE: apps/builder/src/utils/executionTreeHelper/generateRawAction.ts type RawAction (line 6) | interface RawAction { FILE: apps/builder/src/utils/executionTreeHelper/interface.ts type CurrentUserInfoInTree (line 5) | interface CurrentUserInfoInTree { type RawTreeShape (line 15) | interface RawTreeShape { type ActionSeedShape (line 21) | type ActionSeedShape = ActionItem[] type WidgetShape (line 23) | interface WidgetShape { type WidgetSeedShape (line 29) | interface WidgetSeedShape { type RawTreeSeedShape (line 33) | interface RawTreeSeedShape { FILE: apps/builder/src/utils/executionTreeHelper/rawTreeFactory.ts constant CURRENT_USER_INFO_ACCESS_LIST_KEY (line 13) | const CURRENT_USER_INFO_ACCESS_LIST_KEY = [ class RawTreeFactory (line 23) | class RawTreeFactory { method create (line 24) | static create(seeds: RawTreeSeedShape): RawTreeShape { FILE: apps/builder/src/utils/executionTreeHelper/rrecursiveDelete.ts function recursiveDelete (line 1) | function recursiveDelete( FILE: apps/builder/src/utils/executionTreeHelper/runtimePropsCollector.ts constant THIRD_PARTY_PACKAGES (line 35) | const THIRD_PARTY_PACKAGES = { class ILLAEditorRuntimePropsCollector (line 54) | class ILLAEditorRuntimePropsCollector { method constructor (line 58) | constructor() { method getInstance (line 77) | public static getInstance(): ILLAEditorRuntimePropsCollector { method addRuntimeProp (line 85) | public addRuntimeProp(displayName: string, runtimeProp: unknown) { method deleteRuntimeProp (line 89) | public deleteRuntimeProp(displayName: string) { method getRuntimeProps (line 94) | public getRuntimeProps() { method getThirdPartyPackages (line 98) | public getThirdPartyPackages() { method getGlobalCalcContext (line 102) | public getGlobalCalcContext(otherContext: Record = {}) { method getCurrentPageCalcContext (line 157) | public getCurrentPageCalcContext(otherContext: Record... method getGlobalCalcContextWithLimit (line 245) | public getGlobalCalcContextWithLimit(otherContext?: Record) { function isAction (line 49) | function isAction(entity: Record) { function getObjectPaths (line 140) | function getObjectPaths(obj: Record, currentPath = "") { FILE: apps/builder/src/utils/file/calculateFileInfo.ts constant FILE_EXTENSION_TO_CONTENT_TYPE_MAP (line 46) | const FILE_EXTENSION_TO_CONTENT_TYPE_MAP = { FILE: apps/builder/src/utils/file/parseFileValue.ts constant C_MAP_URL (line 15) | const C_MAP_URL = "https://unpkg.com/pdfjs-dist@2.16.105/cmaps/" FILE: apps/builder/src/utils/focusManager.ts type ILLAPanelType (line 1) | type ILLAPanelType = type ClickPosition (line 12) | interface ClickPosition { class FocusManager (line 18) | class FocusManager { method switchFocus (line 22) | static switchFocus( method getClickPosition (line 30) | static getClickPosition(): ClickPosition | undefined { method getFocus (line 34) | static getFocus(): ILLAPanelType { FILE: apps/builder/src/utils/generators/generateComponentNode.ts constant TEMPLATE_DISPLAYNAME_KEY (line 13) | const TEMPLATE_DISPLAYNAME_KEY = "templateDisplayName" function transformListWidget (line 289) | function transformListWidget(baseDSL: ComponentTreeNode) { function transFormTemplateDisplayName (line 298) | function transFormTemplateDisplayName( FILE: apps/builder/src/utils/generators/generateDisplayName.ts constant ADD_DISPLAY_NAME (line 7) | const ADD_DISPLAY_NAME = "addDisplayName" constant REMOVE_DISPLAY_NAME (line 8) | const REMOVE_DISPLAY_NAME = "removeDisplayName" constant UPDATE_DISPLAY_NAME (line 9) | const UPDATE_DISPLAY_NAME = "updateDisplayName" constant GENERATE_OR_UPDATE_DISPLAYNAME (line 10) | const GENERATE_OR_UPDATE_DISPLAYNAME = "generateOrUpdateDisplayName" constant PLACEHOLDER_DISPLAYNAME (line 12) | const PLACEHOLDER_DISPLAYNAME = ["document", "utils"] class DisplayNameGenerator (line 14) | class DisplayNameGenerator { method isAlreadyGenerate (line 21) | static isAlreadyGenerate(displayName: string): boolean { method initApp (line 25) | static initApp(appId: string, teamID: string, uid: string) { method generateDisplayName (line 32) | static generateDisplayName(type: string, showName?: string): string { method updateDisplayNameList (line 55) | static updateDisplayNameList( method addComponentDisplayName (line 70) | static addComponentDisplayName(componentNode: ComponentTreeNode) { method addDisplayNames (line 77) | static addDisplayNames(displayNames: string[]) { method updateOrGenerateDisplayName (line 83) | static updateOrGenerateDisplayName(displayName: string) { method removeDisplayName (line 105) | static removeDisplayName(displayName: string) { method removeDisplayNameMulti (line 120) | static removeDisplayNameMulti(displayNames: string[]) { FILE: apps/builder/src/utils/generators/generatePageOrSectionConfig.ts type SectionNodeType (line 21) | type SectionNodeType = FILE: apps/builder/src/utils/mediaSourceLoad/interface.ts type Inject (line 3) | interface Inject { type MediaSourceLoadProviderProps (line 9) | interface MediaSourceLoadProviderProps { FILE: apps/builder/src/utils/screen/index.ts constant MOBILE_SCREEN_WIDTH (line 1) | const MOBILE_SCREEN_WIDTH = 780 FILE: apps/builder/src/utils/shortcut/interface.ts type ShortcutContextProp (line 1) | interface ShortcutContextProp { FILE: apps/builder/src/utils/storage.ts constant CUSTOM_STORAGE_PREFIX (line 5) | const CUSTOM_STORAGE_PREFIX = "ILLABuilderCustomStorage" FILE: apps/builder/src/utils/typeHelper.ts constant DISPLAY_NAME_REGEX (line 13) | const DISPLAY_NAME_REGEX = /^([a-zA-Z_$])([a-zA-Z0-9_$])*$/ type Types (line 15) | enum Types { function isURL (line 50) | function isURL(str: string) { function isBlobURLOrUrl (line 57) | function isBlobURLOrUrl(url: string): boolean { FILE: apps/builder/src/utils/undoRedo/circularStack.ts class CircularStack (line 1) | class CircularStack { method constructor (line 7) | constructor(maxSize: number) { method push (line 14) | push(item: T) { method pop (line 20) | pop(): T | undefined { method peek (line 31) | peek(): T | undefined { method isEmpty (line 39) | isEmpty(): boolean { method isFull (line 43) | isFull(): boolean { method clear (line 47) | clear() { FILE: apps/builder/src/utils/undoRedo/undo.ts constant UNDO_REDO_STACK_MAX_LENGTH (line 11) | const UNDO_REDO_STACK_MAX_LENGTH = 30 class ILLA_UNDO_REDO (line 15) | class ILLA_UNDO_REDO { method constructor (line 19) | constructor(maxStackLength: number = UNDO_REDO_STACK_MAX_LENGTH) { method pushToUndoStack (line 24) | pushToUndoStack(undoAction: AnyAction[]) { method popFromUndoStack (line 31) | popFromUndoStack() { method modifyUndoStackAtLast (line 45) | modifyUndoStackAtLast(undoAction: AnyAction[], isRedo: boolean = false) { method pushToRedoStack (line 57) | pushToRedoStack(redoAction: AnyAction[]) { method popFromRedoStack (line 61) | popFromRedoStack() { method destroy (line 74) | destroy() { FILE: apps/builder/src/utils/url/base64.ts function isValidBase64 (line 3) | function isValidBase64(src: string) { FILE: apps/builder/src/utils/useFuse.ts function useFuse (line 5) | function useFuse( FILE: apps/builder/src/utils/validationFactory/index.ts type VALIDATION_TYPES (line 3) | enum VALIDATION_TYPES { type ValidationResponse (line 13) | interface ValidationResponse { type ValidateFunctionType (line 19) | type ValidateFunctionType = ( FILE: apps/builder/src/widgetLibrary/AudioWidget/eventHandlerConfig.ts constant AUDIO_EVENT_HANDLER_CONFIG (line 4) | const AUDIO_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/AudioWidget/interface.tsx type WrappedAudioProps (line 5) | interface WrappedAudioProps extends BaseWidgetProps { type AudioWidgetProps (line 21) | interface AudioWidgetProps FILE: apps/builder/src/widgetLibrary/AudioWidget/panelConfig.tsx constant AUDIO_PANEL_CONFIG (line 9) | const AUDIO_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/AudioWidget/widgetConfig.tsx constant AUDIO_WIDGET_CONFIG (line 5) | const AUDIO_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/AvatarWidget/eventHandlerConfig.ts constant AVATAR_EVENT_HANDLER_CONFIG (line 4) | const AVATAR_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/AvatarWidget/interface.ts type AvatarType (line 4) | type AvatarType = "image" | "icon" | "text" type WrappedAvatarProps (line 6) | interface WrappedAvatarProps type AvatarWidgetProps (line 20) | interface AvatarWidgetProps extends BaseWidgetProps, WrappedAvatarProps { FILE: apps/builder/src/widgetLibrary/AvatarWidget/panelConfig.tsx constant AVATAR_PANEL_CONFIG (line 10) | const AVATAR_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/AvatarWidget/widgetConfig.tsx constant AVATAR_WIDGET_CONFIG (line 5) | const AVATAR_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/BarProgressWidget/eventHandlerConfig.ts constant BAR_PROGRESS_EVENT_HANDLER_CONFIG (line 3) | const BAR_PROGRESS_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/BarProgressWidget/interface.tsx type WrappedBarProgressProps (line 6) | interface WrappedBarProgressProps type BarProgressWidgetProps (line 14) | interface BarProgressWidgetProps FILE: apps/builder/src/widgetLibrary/BarProgressWidget/panelConfig.tsx constant BAR_PROGRESS_PANEL_CONFIG (line 8) | const BAR_PROGRESS_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/BarProgressWidget/widgetConfig.tsx constant BAR_PROGRESS_WIDGET_CONFIG (line 5) | const BAR_PROGRESS_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/ButtonWidget/eventHandlerConfig.ts constant BUTTON_EVENT_HANDLER_CONFIG (line 4) | const BUTTON_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/ButtonWidget/interface.tsx type WrappedButtonProps (line 5) | interface WrappedButtonProps type ButtonWidgetProps (line 21) | interface ButtonWidgetProps FILE: apps/builder/src/widgetLibrary/ButtonWidget/panelConfig.tsx constant BUTTON_PANEL_CONFIG (line 8) | const BUTTON_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/ButtonWidget/widgetConfig.tsx constant BUTTON_WIDGET_CONFIG (line 5) | const BUTTON_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/CarouselWidget/eventHandlerConfig.ts constant CAROUSEL_EVENT_HANDLER_CONFIG (line 6) | const CAROUSEL_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/CarouselWidget/interface.tsx type CarouselSettings (line 5) | interface CarouselSettings { type MappedCarouselData (line 14) | interface MappedCarouselData { type CarouselProps (line 23) | interface CarouselProps { type CarouselWidgetProps (line 42) | interface CarouselWidgetProps FILE: apps/builder/src/widgetLibrary/CarouselWidget/panelConfig.tsx constant CAROUSEL_PANEL_CONFIG (line 13) | const CAROUSEL_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/CarouselWidget/widgetConfig.tsx constant CAROUSEL_DEFAULT_IMAGE (line 6) | const CAROUSEL_DEFAULT_IMAGE = constant CAROUSEL_WIDGET_CONFIG (line 27) | const CAROUSEL_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/CascaderWidget/eventHandlerConfig.ts constant CASCADER_EVENT_HANDLER_CONFIG (line 4) | const CASCADER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/CascaderWidget/interface.ts type WrappedCascaderWidgetProps (line 6) | interface WrappedCascaderWidgetProps type CascaderWidgetProps (line 30) | interface CascaderWidgetProps FILE: apps/builder/src/widgetLibrary/CascaderWidget/panelConfig.tsx constant CASCADER_PANEL_CONFIG (line 9) | const CASCADER_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/CascaderWidget/widgetConfig.tsx constant CASCADER_WIDGET_CONFIG (line 5) | const CASCADER_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/ChartWidget/interface.tsx type WrappedChartProps (line 4) | interface WrappedChartProps type ChartWidgetProps (line 13) | interface ChartWidgetProps { type CHART_DATASET_AGGREGATION_METHOD (line 30) | enum CHART_DATASET_AGGREGATION_METHOD { FILE: apps/builder/src/widgetLibrary/ChartWidget/panelConfig.tsx constant CHART_PANEL_CONFIG (line 69) | const CHART_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/ChartWidget/widgetConfig.tsx constant CHART_WIDGET_CONFIG (line 6) | const CHART_WIDGET_CONFIG: WidgetConfig = { constant CHART_WIDGET_V2_CONFIG (line 19) | const CHART_WIDGET_V2_CONFIG: WidgetConfig = { function initChartWidgetDefaultProps (line 32) | function initChartWidgetDefaultProps() { FILE: apps/builder/src/widgetLibrary/ChatWidget/eventHandlerConfig.ts constant CHAT_EVENT_HANDLER_CONFIG (line 4) | const CHAT_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/ChatWidget/interface.ts type MessageType (line 4) | type MessageType = "text" | "image" | "video" | "audio" type Pluralize (line 6) | type Pluralize = { type IMessageItem (line 10) | interface IMessageItem extends BaseChatProps { type OptionsProps (line 14) | interface OptionsProps type MessageContent (line 24) | interface MessageContent { type BaseChatProps (line 36) | interface BaseChatProps extends BaseWidgetProps { type ChatWidgetProps (line 56) | interface ChatWidgetProps type MessageSpecProps (line 65) | interface MessageSpecProps extends OptionsProps { FILE: apps/builder/src/widgetLibrary/ChatWidget/panelConfig.tsx constant CHAT_PANEL_CONFIG (line 10) | const CHAT_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/ChatWidget/widgetConfig.tsx constant CHAT_WIDGET_CONFIG (line 9) | const CHAT_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/CheckboxGroupWidget/eventHandlerConfig.ts constant CHECK_BOX_GROUP_EVENT_HANDLER_CONFIG (line 4) | const CHECK_BOX_GROUP_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/CheckboxGroupWidget/interface.ts type WrappedCheckboxGroupProps (line 7) | interface WrappedCheckboxGroupProps type CheckboxGroupWidgetProps (line 24) | interface CheckboxGroupWidgetProps FILE: apps/builder/src/widgetLibrary/CheckboxGroupWidget/panelConfig.tsx constant CHECKBOX_GROUP_PANEL_CONFIG (line 9) | const CHECKBOX_GROUP_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/CheckboxGroupWidget/widgetConfig.tsx constant CHECKBOX_GROUP_WIDGET_CONFIG (line 6) | const CHECKBOX_GROUP_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/CircleProgressWidget/eventHandlerConfig.ts constant CIRCLE_PROGRESS_EVENT_HANDLER_CONFIG (line 3) | const CIRCLE_PROGRESS_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/CircleProgressWidget/interface.tsx type Alignment (line 9) | type Alignment = "start" | "center" | "end" type WrappedCircleProgressProps (line 10) | interface WrappedCircleProgressProps type CircleProgressWidgetProps (line 22) | interface CircleProgressWidgetProps FILE: apps/builder/src/widgetLibrary/CircleProgressWidget/panelConfig.tsx constant CIRCLE_PROGRESS_PANEL_CONFIG (line 12) | const CIRCLE_PROGRESS_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/CircleProgressWidget/style.ts function applyContainerCss (line 4) | function applyContainerCss(alignment: Alignment = "center") { FILE: apps/builder/src/widgetLibrary/CircleProgressWidget/widgetConfig.tsx constant CIRCLE_PROGRESS_WIDGET_CONFIG (line 5) | const CIRCLE_PROGRESS_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/CodeScannerWidget/codeModal.tsx type CodeModalProps (line 21) | interface CodeModalProps { type SuccessModalProps (line 31) | interface SuccessModalProps { constant SCAN_MODAL_INDEX (line 38) | const SCAN_MODAL_INDEX = 1000 constant SUCCESS_MODAL_INDEX (line 39) | const SUCCESS_MODAL_INDEX = 1005 FILE: apps/builder/src/widgetLibrary/CodeScannerWidget/eventHandlerConfig.ts constant CODE_SCANNER_EVENT_HANDLER_CONFIG (line 4) | const CODE_SCANNER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/CodeScannerWidget/interface.ts type WrappedCodeScannerProps (line 6) | interface WrappedCodeScannerProps extends CodeScannerWidgetProps { type CodeScannerWidgetProps (line 18) | interface CodeScannerWidgetProps FILE: apps/builder/src/widgetLibrary/CodeScannerWidget/panelConfig.tsx constant CODE_SCANNER_PANEL_CONFIG (line 8) | const CODE_SCANNER_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/CodeScannerWidget/widgetConfig.tsx constant CODE_SCANNER_WIDGET_CONFIG (line 5) | const CODE_SCANNER_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/ContainerWidget/eventHandlerConfig.ts constant CONTAINER_EVENT_HANDLER_CONFIG (line 4) | const CONTAINER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/ContainerWidget/interface.ts type viewListItemShaper (line 4) | interface viewListItemShaper { type ContainerProps (line 12) | interface ContainerProps extends BaseWidgetProps { FILE: apps/builder/src/widgetLibrary/ContainerWidget/panelConfig.tsx constant CONTAINER_PANEL_CONFIG (line 9) | const CONTAINER_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/ContainerWidget/widgetConfig.tsx constant CONTAINER_WIDGET_CONFIG (line 14) | const CONTAINER_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/DataGridWidget/Toolbar/interface.ts type ToolbarProps (line 1) | interface ToolbarProps { FILE: apps/builder/src/widgetLibrary/DataGridWidget/columnDeal.tsx function formatDataGridColumnEvent (line 50) | function formatDataGridColumnEvent(path: string, prefix: string) { function getColumnFromType (line 54) | function getColumnFromType( function getSafeColumn (line 503) | function getSafeColumn(column: ColumnConfig): ColumnConfig { function getColumnTypeFromValue (line 546) | function getColumnTypeFromValue(value: unknown): ColumnType { FILE: apps/builder/src/widgetLibrary/DataGridWidget/constants.ts constant UNIQUE_ID_NAME (line 1) | const UNIQUE_ID_NAME = "$uniqueID" FILE: apps/builder/src/widgetLibrary/DataGridWidget/eventHandlerConfig.ts constant DATA_GRID_BUTTON_EVENT_HANDLER_CONFIG (line 4) | const DATA_GRID_BUTTON_EVENT_HANDLER_CONFIG: EventHandlerConfig = { constant DATA_GRID_EVENT_HANDLER_CONFIG (line 16) | const DATA_GRID_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/DataGridWidget/interface.ts type BaseDataGridProps (line 11) | interface BaseDataGridProps extends BaseWidgetProps { FILE: apps/builder/src/widgetLibrary/DataGridWidget/panelConfig.tsx function getColumnsTypeSetter (line 82) | function getColumnsTypeSetter( function getColumnsTypeSubSetter (line 97) | function getColumnsTypeSubSetter(type: ColumnType): PanelFieldConfig[] { constant DATA_GRID_COMMON_COLUMN_SETTER_CONFIG (line 567) | const DATA_GRID_COMMON_COLUMN_SETTER_CONFIG: PanelFieldConfig[] = [ constant DATA_GRID_PANEL_CONFIG (line 712) | const DATA_GRID_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/DataGridWidget/utils.ts function getDataGridLocalization (line 23) | function getDataGridLocalization() { FILE: apps/builder/src/widgetLibrary/DataGridWidget/widgetConfig.tsx constant DATA_GRID_WIDGET_CONFIG (line 130) | const DATA_GRID_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/DateRangeWidget/eventHandlerConfig.ts constant DATE_RANGE_EVENT_HANDLER_CONFIG (line 4) | const DATE_RANGE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/DateRangeWidget/interface.tsx type WrappedDateRangeProps (line 7) | interface WrappedDateRangeProps type DateWidgetProps (line 34) | interface DateWidgetProps FILE: apps/builder/src/widgetLibrary/DateRangeWidget/panelConfig.tsx constant DATE_RANGE_PANEL_CONFIG (line 9) | const DATE_RANGE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/DateRangeWidget/widgetConfig.tsx constant DATE_RANGE_WIDGET_CONFIG (line 6) | const DATE_RANGE_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/DateTimeWidget/eventHandlerConfig.ts constant DATE_TIME_EVENT_HANDLER_CONFIG (line 4) | const DATE_TIME_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/DateTimeWidget/interface.tsx type WrappedDateTimeProps (line 7) | interface WrappedDateTimeProps type DateTimeWidgetProps (line 32) | interface DateTimeWidgetProps FILE: apps/builder/src/widgetLibrary/DateTimeWidget/panelConfig.tsx constant DATE_TIME_PANEL_CONFIG (line 9) | const DATE_TIME_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/DateTimeWidget/widgetConfig.tsx constant DATE_TIME_WIDGET_CONFIG (line 5) | const DATE_TIME_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/DateWidget/eventHandlerConfig.ts constant DATE_EVENT_HANDLER_CONFIG (line 4) | const DATE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/DateWidget/interface.tsx type WrappedDateProps (line 7) | interface WrappedDateProps type DateWidgetProps (line 30) | interface DateWidgetProps FILE: apps/builder/src/widgetLibrary/DateWidget/panelConfig.tsx constant DATE_PANEL_CONFIG (line 9) | const DATE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/DateWidget/widgetConfig.tsx constant DATE_WIDGET_CONFIG (line 6) | const DATE_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/DividerWidget/eventHandlerConfig.ts constant DIVIDER_EVENT_HANDLER_CONFIG (line 3) | const DIVIDER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/DividerWidget/interface.tsx type WrappedDividerProps (line 4) | interface WrappedDividerProps { type DividerWidgetProps (line 10) | interface DividerWidgetProps FILE: apps/builder/src/widgetLibrary/DividerWidget/panelConfig.tsx constant DIVIDER_PANEL_CONFIG (line 12) | const DIVIDER_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/DividerWidget/widgetConfig.tsx constant DIVIDER_WIDGET_CONFIG (line 5) | const DIVIDER_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/DrivePickerWidget/constants.ts constant PAGESIZE (line 1) | const PAGESIZE = 10 constant DEFAULT_EXPIRED_TIME (line 2) | const DEFAULT_EXPIRED_TIME = 300 FILE: apps/builder/src/widgetLibrary/DrivePickerWidget/eventHandlerConfig.ts constant DRIVE_PICKER_EVENT_HANDLER_CONFIG (line 4) | const DRIVE_PICKER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/DrivePickerWidget/interface.ts type WrappedDrivePickerProps (line 5) | interface WrappedDrivePickerProps extends BaseWidgetProps { type DrivePickerWidgetProps (line 26) | interface DrivePickerWidgetProps type SelectItemValue (line 30) | interface SelectItemValue { FILE: apps/builder/src/widgetLibrary/DrivePickerWidget/panelConfig.tsx constant DRIVE_PICKER_PANEL_CONFIG (line 8) | const DRIVE_PICKER_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/DrivePickerWidget/provider.tsx type Props (line 29) | interface Props { FILE: apps/builder/src/widgetLibrary/DrivePickerWidget/widgetConfig.tsx constant DRIVE_PICKER_WIDGET_CONFIG (line 5) | const DRIVE_PICKER_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/EditableWidget/eventHandlerConfig.ts constant EDITABLE_EVENT_HANDLER_CONFIG (line 4) | const EDITABLE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/EditableWidget/interface.ts type WrappedEditableTextProps (line 7) | interface WrappedEditableTextProps type EditableTextWidgetProps (line 28) | interface EditableTextWidgetProps FILE: apps/builder/src/widgetLibrary/EditableWidget/panelConfig.tsx constant EDITABLE_TEXT_PANEL_CONFIG (line 9) | const EDITABLE_TEXT_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/EditableWidget/style.tsx function applyTextCss (line 4) | function applyTextCss(isPlaceHolder = false) { FILE: apps/builder/src/widgetLibrary/EditableWidget/widgetConfig.tsx constant EDITABLE_TEXT_WIDGET_CONFIG (line 5) | const EDITABLE_TEXT_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/EventCalendarWidget/eventHandlerConfig.ts constant EVENT_CALENDAR_EVENT_HANDLER_CONFIG (line 4) | const EVENT_CALENDAR_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/EventCalendarWidget/interface.ts type Pluralize (line 4) | type Pluralize = { type CssAttribute (line 8) | type CssAttribute = string | number | undefined type Event (line 9) | interface Event { type ResourceMap (line 23) | interface ResourceMap { type EventInteractionArgs (line 27) | interface EventInteractionArgs { type WrappedEventCalendarProps (line 35) | interface WrappedEventCalendarProps { type EventCalendarWidgetProps (line 55) | interface EventCalendarWidgetProps type CalendarEventOptionsType (line 65) | interface CalendarEventOptionsType extends Event { FILE: apps/builder/src/widgetLibrary/EventCalendarWidget/panelConfig.tsx constant EVENT_CALENDAR_PANEL_CONFIG (line 8) | const EVENT_CALENDAR_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/EventCalendarWidget/widgetConfig.tsx constant EVENT_CALENDAR_WIDGET_CONFIG (line 25) | const EVENT_CALENDAR_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/FormWidget/eventHandlerConfig.ts constant FORM_EVENT_HANDLER_CONFIG (line 4) | const FORM_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/FormWidget/form.tsx function getLikeInputChildrenNode (line 50) | function getLikeInputChildrenNode( type DragCollection (line 87) | interface DragCollection { FILE: apps/builder/src/widgetLibrary/FormWidget/interface.ts type FormWidgetProps (line 4) | interface FormWidgetProps extends BaseWidgetProps { FILE: apps/builder/src/widgetLibrary/FormWidget/panelConfig.tsx constant FORM_PANEL_CONFIG (line 9) | const FORM_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/FormWidget/widgetConfig.tsx constant FORM_WIDGET_CONFIG (line 10) | const FORM_WIDGET_CONFIG: WidgetConfig = { constant FORM_BODY_MIN_HEIGHT (line 81) | const FORM_BODY_MIN_HEIGHT = 100 constant FORM_MIN_FOOTER_HEIGHT_ROW_NUMBER (line 82) | const FORM_MIN_FOOTER_HEIGHT_ROW_NUMBER = 7 constant FORM_MIN_HEADER_HEIGHT_ROW_NUMBER (line 83) | const FORM_MIN_HEADER_HEIGHT_ROW_NUMBER = 7 constant FORM_BODY_MARGIN (line 84) | const FORM_BODY_MARGIN = 7 constant FORM_CAN_BIND_WIDGET_TYPE (line 86) | const FORM_CAN_BIND_WIDGET_TYPE = new Map([ FILE: apps/builder/src/widgetLibrary/GridListWidget/components/CursorBasedSelector/index.tsx type CursorBasedSelectorProps (line 5) | interface CursorBasedSelectorProps { FILE: apps/builder/src/widgetLibrary/GridListWidget/constants.ts constant DEFAULT_LIST (line 1) | const DEFAULT_LIST = [ FILE: apps/builder/src/widgetLibrary/GridListWidget/eventHandlerConfig.ts constant GRID_LIST_EVENT_HANDLER_CONFIG (line 4) | const GRID_LIST_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/GridListWidget/interface.ts type PAGINATION_TYPE (line 4) | enum PAGINATION_TYPE { type COLUMN_NUM_ADAPTATION (line 9) | enum COLUMN_NUM_ADAPTATION { type ItemPadding (line 14) | type ItemPadding = { type ShadowOptions (line 19) | type ShadowOptions = "none" | "small" | "medium" | "large" type GridListWidgetProps (line 20) | interface GridListWidgetProps extends BaseWidgetProps { type RenderTemplateContainerProps (line 54) | interface RenderTemplateContainerProps { type RenderCopyContainerProps (line 72) | interface RenderCopyContainerProps { type ListWidgetPropsWithChildrenNodes (line 80) | interface ListWidgetPropsWithChildrenNodes extends GridListWidgetProps { FILE: apps/builder/src/widgetLibrary/GridListWidget/panelConfig.tsx constant GRID_LIST_PANEL_CONFIG (line 14) | const GRID_LIST_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/GridListWidget/widgetConfig.tsx constant GRID_LIST_WIDGET_CONFIG (line 12) | const GRID_LIST_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/IFrameWidget/eventHandlerConfig.ts constant IFRAME_EVENT_HANDLER_CONFIG (line 3) | const IFRAME_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/IFrameWidget/interface.ts type IFrameWidgetProps (line 3) | interface IFrameWidgetProps extends BaseWidgetProps { FILE: apps/builder/src/widgetLibrary/IFrameWidget/panelConfig.tsx constant IFRAME_PANEL_CONFIG (line 6) | const IFRAME_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/IFrameWidget/style.ts function applyIframeContainer (line 3) | function applyIframeContainer(isDragging: boolean): SerializedStyles { FILE: apps/builder/src/widgetLibrary/IFrameWidget/widgetConfig.tsx constant IFRAME_WIDGET_CONFIG (line 5) | const IFRAME_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/IconWidget/eventHandlerConfig.ts constant ICON_EVENT_HANDLER_CONFIG (line 4) | const ICON_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/IconWidget/interface.ts type RIALL (line 5) | interface RIALL { type IconWidgetProps (line 13) | interface IconWidgetProps FILE: apps/builder/src/widgetLibrary/IconWidget/panelConfig.tsx constant ICON_PANEL_CONFIG (line 8) | const ICON_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/IconWidget/utils.ts constant IMPORT_ICONS_ID (line 8) | const IMPORT_ICONS_ID = ["sl", "fc", "bs", "tb"] constant ALL_ICONS (line 9) | const ALL_ICONS = (RiLib as unknown as RIALL)["IconsManifest"].filter( FILE: apps/builder/src/widgetLibrary/IconWidget/widgetConfig.tsx constant ICON_WIDGET_CONFIG (line 5) | const ICON_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/ImageWidget/eventHandlerConfig.ts constant IMAGE_EVENT_HANDLER_CONFIG (line 4) | const IMAGE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/ImageWidget/interface.ts type HorizontalAlign (line 5) | type HorizontalAlign = "start" | "center" | "end" type DynamicHeight (line 6) | type DynamicHeight = "auto" | "fixed" type ObjectFit (line 7) | type ObjectFit = "contain" | "cover" type WrappedImageProps (line 8) | interface WrappedImageProps type ImageWidgetProps (line 24) | interface ImageWidgetProps FILE: apps/builder/src/widgetLibrary/ImageWidget/panelConfig.tsx constant IMAGE_PANEL_CONFIG (line 16) | const IMAGE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/ImageWidget/widgetConfig.tsx constant IMAGE_WIDGET_CONFIG (line 5) | const IMAGE_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/InputWidget/eventHandlerConfig.ts constant INPUT_EVENT_HANDLER_CONFIG (line 4) | const INPUT_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/InputWidget/interface.tsx type WrappedInputProps (line 7) | interface WrappedInputProps type InputWidgetProps (line 36) | interface InputWidgetProps FILE: apps/builder/src/widgetLibrary/InputWidget/panelConfig.tsx constant INPUT_PANEL_CONFIG (line 9) | const INPUT_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/InputWidget/widgetConfig.tsx constant INPUT_WIDGET_CONFIG (line 5) | const INPUT_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/JsonEditorWidget/eventHandlerConfig.ts constant JSON_EDITOR_EVENT_HANDLER_CONFIG (line 4) | const JSON_EDITOR_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/JsonEditorWidget/interface.ts type BaseJsonEditorProps (line 4) | interface BaseJsonEditorProps extends BaseWidgetProps { type JsonEditorWidgetProps (line 12) | interface JsonEditorWidgetProps FILE: apps/builder/src/widgetLibrary/JsonEditorWidget/panelConfig.tsx constant JSON_EDITOR_PANEL_CONFIG (line 9) | const JSON_EDITOR_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/JsonEditorWidget/widgetConfig.tsx constant JSON_EDITOR_WIDGET_CONFIG (line 5) | const JSON_EDITOR_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/index.ts function generateTheme (line 7) | function generateTheme< function generateForm (line 20) | function generateForm< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/ArrayFieldItemTemplate/index.tsx function ArrayFieldItemTemplate (line 10) | function ArrayFieldItemTemplate< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/ArrayFieldTemplate/index.tsx constant DESCRIPTION_COL_STYLE (line 14) | const DESCRIPTION_COL_STYLE = { function ArrayFieldTemplate (line 18) | function ArrayFieldTemplate< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/BaseInputTemplate/index.tsx function BaseInputTemplate (line 14) | function BaseInputTemplate< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/DescriptionField/index.tsx function DescriptionField (line 9) | function DescriptionField< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/ErrorList/index.tsx function ErrorList (line 11) | function ErrorList< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/FieldTemplate/index.tsx function FieldTemplate (line 12) | function FieldTemplate< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/IconButton/index.tsx function IconButton (line 17) | function IconButton< function AddButton (line 30) | function AddButton< function CopyButton (line 46) | function CopyButton< function MoveDownButton (line 64) | function MoveDownButton< function MoveUpButton (line 82) | function MoveUpButton< function RemoveButton (line 100) | function RemoveButton< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/ObjectFieldTemplate/index.tsx function ObjectFieldTemplate (line 18) | function ObjectFieldTemplate< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/SubmitButton/index.tsx function SubmitButton (line 10) | function SubmitButton< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/TitleField/index.tsx function TitleField (line 10) | function TitleField< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/WrapIfAdditionalTemplate/index.tsx function WrapIfAdditionalTemplate (line 13) | function WrapIfAdditionalTemplate< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/index.ts function generateTemplates (line 25) | function generateTemplates< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/AltDateTimeWidget/index.tsx function AltDateTimeWidget (line 9) | function AltDateTimeWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/AltDateWidget/index.tsx function DateElement (line 25) | function DateElement< type AltDateStateType (line 51) | interface AltDateStateType extends DateObject { function AltDateWidget (line 61) | function AltDateWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/CheckboxWidget/index.tsx function CheckboxWidget (line 14) | function CheckboxWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/CheckboxesWidget/index.tsx function CheckboxesWidget (line 13) | function CheckboxesWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/DateTimeWidget/index.tsx function DateTimeWidget (line 11) | function DateTimeWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/DateWidget/index.tsx function DateWidget (line 11) | function DateWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/RadioWidget/index.tsx function RadioWidget (line 13) | function RadioWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/RangeWidget/index.tsx function RangeWidget (line 13) | function RangeWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/SelectWidget/index.tsx function SelectWidget (line 14) | function SelectWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/TextareaWidget/index.tsx function TextareaWidget (line 12) | function TextareaWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/TimeWidget/index.tsx function TimeWidget (line 11) | function TimeWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/UpDownWidget/index.tsx function UpDownWidget (line 12) | function UpDownWidget< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/widgets/index.ts function generateWidgets (line 20) | function generateWidgets< FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/eventHandlerConfig.ts constant JSON_SCHEMA_FORM_EVENT_HANDLER_CONFIG (line 4) | const JSON_SCHEMA_FORM_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/interface.ts type RIALL (line 6) | interface RIALL { type JsonSchemaFormWidgetProps (line 14) | interface JsonSchemaFormWidgetProps type WrapperSchemaFormProps (line 22) | interface WrapperSchemaFormProps extends BaseWidgetProps { FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/panelConfig.tsx constant JSON_SCHEMA_FORM_PANEL_CONFIG (line 9) | const JSON_SCHEMA_FORM_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/JsonSchemaFormWidget/widgetConfig.tsx constant JSON_SCHEMA_FORM_WIDGET_CONFIG (line 5) | const JSON_SCHEMA_FORM_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/ListWidget/components/CursorBasedSelector/index.tsx type CursorBasedSelectorProps (line 5) | interface CursorBasedSelectorProps { FILE: apps/builder/src/widgetLibrary/ListWidget/constants.ts constant DEFAULT_LIST (line 1) | const DEFAULT_LIST = [ FILE: apps/builder/src/widgetLibrary/ListWidget/eventHandlerConfig.ts constant LIST_EVENT_HANDLER_CONFIG (line 4) | const LIST_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/ListWidget/interface.ts type PAGINATION_TYPE (line 4) | enum PAGINATION_TYPE { type ShadowOptions (line 8) | type ShadowOptions = "none" | "small" | "medium" | "large" type ItemPadding (line 10) | type ItemPadding = { type ListWidgetProps (line 14) | interface ListWidgetProps extends BaseWidgetProps { type RenderTemplateContainerProps (line 45) | interface RenderTemplateContainerProps { type RenderCopyContainerProps (line 63) | interface RenderCopyContainerProps { type ListWidgetPropsWithChildrenNodes (line 71) | interface ListWidgetPropsWithChildrenNodes extends ListWidgetProps { FILE: apps/builder/src/widgetLibrary/ListWidget/panelConfig.tsx constant LIST_PANEL_CONFIG (line 10) | const LIST_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/ListWidget/widgetConfig.tsx constant LIST_WIDGET_CONFIG (line 13) | const LIST_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/MapBoxWidget/eventHandlerConfig.ts constant MAP_EVENT_HANDLER_CONFIG (line 4) | const MAP_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/MapBoxWidget/interface.ts type MapProps (line 8) | interface MapProps { type WrappedMapProps (line 22) | interface WrappedMapProps type MapWidgetProps (line 38) | interface MapWidgetProps type SearchInputProps (line 44) | interface SearchInputProps { type LatLng (line 47) | type LatLng = google.maps.LatLngLiteral type CustomLatLing (line 48) | interface CustomLatLing { type MarkersType (line 51) | type MarkersType = LatLng[] | CustomLatLing[] FILE: apps/builder/src/widgetLibrary/MapBoxWidget/panelConfig.tsx constant MAP_PANEL_CONFIG (line 8) | const MAP_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/MapBoxWidget/widgetConfig.tsx constant MAP_WIDGET_CONFIG (line 6) | const MAP_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/MenuWidget/eventHandlerConfig.ts constant MENU_EVENT_HANDLER_CONFIG (line 4) | const MENU_EVENT_HANDLER_CONFIG: EventHandlerConfig = { constant MAIN_MENU_EVENT_HANDLER_CONFIG (line 16) | const MAIN_MENU_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/MenuWidget/interface.ts type WrappedMenuProps (line 4) | interface WrappedMenuProps extends MenuProps { type MenuWidgetProps (line 10) | interface MenuWidgetProps FILE: apps/builder/src/widgetLibrary/MenuWidget/panelConfig.tsx constant MENU_PANEL_CONFIG (line 17) | const MENU_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/MenuWidget/style.ts function applyMenuBrandContainerStyle (line 4) | function applyMenuBrandContainerStyle(mode: MenuMode): SerializedStyles { function applyMenuTitleStyle (line 15) | function applyMenuTitleStyle(mode: MenuMode): SerializedStyles { function applyMenuWidgetContainerStyle (line 26) | function applyMenuWidgetContainerStyle( FILE: apps/builder/src/widgetLibrary/MenuWidget/widgetConfig.tsx constant MENU_WIDGET_CONFIG (line 48) | const MENU_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/ModalWidget/eventHandlerConfig.ts constant MODAL_EVENT_HANDLER_CONFIG (line 4) | const MODAL_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/ModalWidget/interface.ts type ModalWidgetProps (line 3) | interface ModalWidgetProps extends BaseWidgetProps { FILE: apps/builder/src/widgetLibrary/ModalWidget/modal.tsx type DragCollection (line 40) | interface DragCollection { FILE: apps/builder/src/widgetLibrary/ModalWidget/panelConfig.tsx constant MODAL_PANEL_CONFIG (line 8) | const MODAL_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/ModalWidget/widgetConfig.tsx constant MODAL_WIDGET_CONFIG (line 9) | const MODAL_WIDGET_CONFIG: WidgetConfig = { constant MODAL_BODY_MIN_HEIGHT (line 96) | const MODAL_BODY_MIN_HEIGHT = 100 constant MODAL_MIN_FOOTER_HEIGHT_ROW_NUMBER (line 97) | const MODAL_MIN_FOOTER_HEIGHT_ROW_NUMBER = 7 constant MODAL_MIN_HEADER_HEIGHT_ROW_NUMBER (line 98) | const MODAL_MIN_HEADER_HEIGHT_ROW_NUMBER = 7 constant MODAL_BODY_MARGIN (line 99) | const MODAL_BODY_MARGIN = 7 FILE: apps/builder/src/widgetLibrary/MultiselectWidget/eventHandlerConfig.ts constant MULTISELECT_EVENT_HANDLER_CONFIG (line 4) | const MULTISELECT_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/MultiselectWidget/interface.ts type WrappedMultiselectProps (line 7) | interface WrappedMultiselectProps type MultiselectWidgetProps (line 36) | interface MultiselectWidgetProps FILE: apps/builder/src/widgetLibrary/MultiselectWidget/panelConfig.tsx constant MULTISELECT_PANEL_CONFIG (line 9) | const MULTISELECT_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/MultiselectWidget/widgetConfig.tsx constant MULTISELECT_WIDGET_CONFIG (line 6) | const MULTISELECT_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/NumberInputWidget/eventHandlerConfig.ts constant INPUT_NUMBER_EVENT_HANDLER_CONFIG (line 4) | const INPUT_NUMBER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/NumberInputWidget/interface.ts type WrappedNumberInputProps (line 7) | interface WrappedNumberInputProps type NumberInputWidgetProps (line 37) | interface NumberInputWidgetProps FILE: apps/builder/src/widgetLibrary/NumberInputWidget/panelConfig.tsx constant NUMBER_INPUT_PANEL_CONFIG (line 9) | const NUMBER_INPUT_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/NumberInputWidget/widgetConfig.tsx constant NUMBER_INPUT_WIDGET_CONFIG (line 5) | const NUMBER_INPUT_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/PdfWidget/button.tsx type ToolButtonShape (line 10) | type ToolButtonShape = "square" | "round" type ToolButtonProps (line 12) | interface ToolButtonProps FILE: apps/builder/src/widgetLibrary/PdfWidget/eventHandlerConfig.ts constant PDF_EVENT_HANDLER_CONFIG (line 3) | const PDF_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/PdfWidget/interface.tsx type WrappedPdfProps (line 8) | interface WrappedPdfProps type PdfWidgetProps (line 17) | interface PdfWidgetProps FILE: apps/builder/src/widgetLibrary/PdfWidget/panelConfig.tsx constant PDF_PANEL_CONFIG (line 6) | const PDF_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/PdfWidget/style.ts function applyCursor (line 95) | function applyCursor(loading?: boolean): SerializedStyles { function applyShape (line 116) | function applyShape(shape: ToolButtonShape): SerializedStyles { function applyIframeContainer (line 128) | function applyIframeContainer(isDragging: boolean): SerializedStyles { FILE: apps/builder/src/widgetLibrary/PdfWidget/widgetConfig.tsx constant PDF_WIDGET_CONFIG (line 4) | const PDF_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/PublicSector/AutoHeightContainer/index.tsx type AutoHeightContainerProps (line 7) | interface AutoHeightContainerProps { FILE: apps/builder/src/widgetLibrary/PublicSector/InvalidMessage/interface.tsx type ValidateMessageNewProps (line 1) | interface ValidateMessageNewProps { type ValidateMessageOldProps (line 5) | interface ValidateMessageOldProps { type ValidateCheckProps (line 15) | interface ValidateCheckProps { FILE: apps/builder/src/widgetLibrary/PublicSector/InvalidMessage/utils.tsx function isValidURL (line 12) | function isValidURL(str: string) { FILE: apps/builder/src/widgetLibrary/PublicSector/Label/interface.ts type LabelPositionType (line 3) | type LabelPositionType = "left" | "top" | "right" type LabelAlignType (line 4) | type LabelAlignType = "left" | "right" type LabelProps (line 6) | interface LabelProps FILE: apps/builder/src/widgetLibrary/PublicSector/Label/styles.tsx function applyLeftLabelStyle (line 13) | function applyLeftLabelStyle( function applyTopLabelStyle (line 41) | function applyTopLabelStyle(alignment: "left" | "right"): SerializedStyl... function applyLabelStyle (line 51) | function applyLabelStyle( FILE: apps/builder/src/widgetLibrary/PublicSector/RenderChildrenCanvas/interface.ts type IRenderChildrenCanvasProps (line 1) | interface IRenderChildrenCanvasProps { FILE: apps/builder/src/widgetLibrary/PublicSector/TooltipWrapper/interface.ts type TooltipWrapperProps (line 3) | interface TooltipWrapperProps { FILE: apps/builder/src/widgetLibrary/PublicSector/TransformWidgetWrapper/config.tsx constant MIN_HEIGHT (line 1) | const MIN_HEIGHT = 3 constant MIN_WIDTH (line 2) | const MIN_WIDTH = 2 FILE: apps/builder/src/widgetLibrary/PublicSector/TransformWidgetWrapper/interface.ts type TransformWidgetProps (line 3) | interface TransformWidgetProps { type TransformWidgetWrapperWithJsonProps (line 10) | interface TransformWidgetWrapperWithJsonProps { FILE: apps/builder/src/widgetLibrary/QRCodeWidget/eventHandlerConfig.ts constant QR_CODE_EVENT_HANDLER_CONFIG (line 3) | const QR_CODE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/QRCodeWidget/interface.ts type WrappedQRCodeProps (line 4) | interface WrappedQRCodeProps extends QRCodeWidgetProps {} type QRCodeWidgetProps (line 6) | interface QRCodeWidgetProps FILE: apps/builder/src/widgetLibrary/QRCodeWidget/panelConfig.tsx constant QR_CODE_PANEL_CONFIG (line 6) | const QR_CODE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/QRCodeWidget/widgetConfig.tsx constant QR_CODE_WIDGET_CONFIG (line 5) | const QR_CODE_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/RadioButtonWidget/eventHandlerConfig.ts constant RADIO_BUTTON_EVENT_HANDLER_CONFIG (line 4) | const RADIO_BUTTON_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/RadioButtonWidget/interface.ts type WrappedRadioButtonProps (line 7) | interface WrappedRadioButtonProps type RadioButtonWidgetProps (line 24) | interface RadioButtonWidgetProps FILE: apps/builder/src/widgetLibrary/RadioButtonWidget/panelConfig.tsx constant RADIO_BUTTON_PANEL_CONFIG (line 9) | const RADIO_BUTTON_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/RadioButtonWidget/widgetConfig.tsx constant RADIO_BUTTON_WIDGET_CONFIG (line 6) | const RADIO_BUTTON_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/RadioGroupWidget/eventHandlerConfig.ts constant RADIO_GROUP_EVENT_HANDLER_CONFIG (line 4) | const RADIO_GROUP_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/RadioGroupWidget/interface.ts type WrappedRadioGroupProps (line 7) | interface WrappedRadioGroupProps type RadioGroupWidgetProps (line 24) | interface RadioGroupWidgetProps FILE: apps/builder/src/widgetLibrary/RadioGroupWidget/panelConfig.tsx constant RADIO_GROUP_PANEL_CONFIG (line 9) | const RADIO_GROUP_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/RadioGroupWidget/widgetConfig.tsx constant RADIO_GROUP_WIDGET_CONFIG (line 6) | const RADIO_GROUP_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/RangeSliderWidget/eventHandlerConfig.ts constant RANGE_SLIDER_EVENT_HANDLER_CONFIG (line 4) | const RANGE_SLIDER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/RangeSliderWidget/interface.ts type WrappedRangeSliderProps (line 7) | interface WrappedRangeSliderProps type RangeSliderWidgetProps (line 33) | interface RangeSliderWidgetProps FILE: apps/builder/src/widgetLibrary/RangeSliderWidget/panelConfig.tsx constant RANGE_SLIDER_PANEL_CONFIG (line 9) | const RANGE_SLIDER_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/RangeSliderWidget/widgetConfig.tsx constant RANGE_SLIDER_WIDGET_CONFIG (line 5) | const RANGE_SLIDER_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/RateWidget/eventHandlerConfig.ts constant RATE_EVENT_HANDLER_CONFIG (line 4) | const RATE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/RateWidget/interface.tsx type WrappedRateProps (line 7) | interface WrappedRateProps type RateWidgetProps (line 19) | interface RateWidgetProps FILE: apps/builder/src/widgetLibrary/RateWidget/panelConfig.tsx constant RATE_PANEL_CONFIG (line 14) | const RATE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/RateWidget/widgetConfig.tsx constant RATE_WIDGET_CONFIG (line 5) | const RATE_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/RecordingWidget/eventHandlerConfig.ts constant RECORDING_HANDLER_CONFIG (line 4) | const RECORDING_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/RecordingWidget/interface.ts type BaseAudioRecorder (line 5) | interface BaseAudioRecorder extends BaseWidgetProps { type WrappedAudioRecorderProps (line 24) | interface WrappedAudioRecorderProps extends BaseAudioRecorder {} type AudioRecorderWidgetProps (line 26) | interface AudioRecorderWidgetProps FILE: apps/builder/src/widgetLibrary/RecordingWidget/panelConfig.tsx constant RECORDING_PANEL_CONFIG (line 8) | const RECORDING_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/RecordingWidget/utils.ts type TimerId (line 1) | type TimerId = ReturnType function run (line 9) | function run() { FILE: apps/builder/src/widgetLibrary/RecordingWidget/widgetConfig.tsx constant RECORDING_WIDGET_CONFIG (line 10) | const RECORDING_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/RichTextWidget/eventHandlerConfig.ts constant RICH_TEXT_EVENT_HANDLER_CONFIG (line 4) | const RICH_TEXT_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/RichTextWidget/interface.ts type BaseRichTextProps (line 5) | interface BaseRichTextProps extends BaseWidgetProps { type RichTextWidgetProps (line 11) | interface RichTextWidgetProps type ICustomRef (line 15) | interface ICustomRef { FILE: apps/builder/src/widgetLibrary/RichTextWidget/panelConfig.tsx constant RICH_TEXT_PANEL_CONFIG (line 9) | const RICH_TEXT_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/RichTextWidget/useInitConfig.ts method uploadByFile (line 57) | uploadByFile(file: Blob) { FILE: apps/builder/src/widgetLibrary/RichTextWidget/widgetConfig.tsx constant RICH_TEXT_WIDGET_CONFIG (line 5) | const RICH_TEXT_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/SelectWidget/eventHandlerConfig.ts constant SELECT_EVENT_HANDLER_CONFIG (line 4) | const SELECT_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/SelectWidget/interface.ts type WrappedSelectProps (line 7) | interface WrappedSelectProps type SelectWidgetProps (line 40) | interface SelectWidgetProps FILE: apps/builder/src/widgetLibrary/SelectWidget/panelConfig.tsx constant SELECT_PANEL_CONFIG (line 9) | const SELECT_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/SelectWidget/widgetConfig.tsx constant SELECT_WIDGET_CONFIG (line 6) | const SELECT_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/SignatureWidget/constants.ts constant DPR (line 1) | const DPR = window.devicePixelRatio FILE: apps/builder/src/widgetLibrary/SignatureWidget/eventHandlerConfig.ts constant SIGNATURE_EVENT_HANDLER_CONFIG (line 4) | const SIGNATURE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/SignatureWidget/interface.tsx type WrappedSignatureProps (line 7) | interface WrappedSignatureProps { type SignatureWidgetProps (line 16) | interface SignatureWidgetProps type ICustomRef (line 30) | interface ICustomRef { FILE: apps/builder/src/widgetLibrary/SignatureWidget/panelConfig.tsx constant SIGNATURE_PANEL_CONFIG (line 10) | const SIGNATURE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/SignatureWidget/signatureCanvas.tsx type SignatureCanvasProps (line 22) | interface SignatureCanvasProps FILE: apps/builder/src/widgetLibrary/SignatureWidget/widgetConfig.tsx constant SIGNATURE_WIDGET_CONFIG (line 6) | const SIGNATURE_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/SliderWidget/eventHandlerConfig.ts constant SLIDER_EVENT_HANDLER_CONFIG (line 4) | const SLIDER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/SliderWidget/interface.ts type WrappedSliderProps (line 7) | interface WrappedSliderProps type SliderWidgetProps (line 23) | interface SliderWidgetProps FILE: apps/builder/src/widgetLibrary/SliderWidget/panelConfig.tsx constant SLIDER_PANEL_CONFIG (line 9) | const SLIDER_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/SliderWidget/widgetConfig.tsx constant SLIDER_WIDGET_CONFIG (line 5) | const SLIDER_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/StatisticsWidget/eventHandlerConfig.ts constant STATISTICS_EVENT_HANDLER_CONFIG (line 4) | const STATISTICS_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/StatisticsWidget/interface.ts type WrappedStatisticProps (line 4) | interface WrappedStatisticProps extends BaseWidgetProps { type StatisticWidgetProps (line 38) | interface StatisticWidgetProps FILE: apps/builder/src/widgetLibrary/StatisticsWidget/panelConfig.tsx constant STATISTICS_PANEL_CONFIG (line 13) | const STATISTICS_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/StatisticsWidget/widgetConfig.tsx constant STATISTICS_WIDGET_CONFIG (line 5) | const STATISTICS_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/StepsWidget/eventHandlerConfig.ts constant STEPS_EVENT_HANDLER_CONFIG (line 3) | const STEPS_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/StepsWidget/interface.ts type WrappedStepsProps (line 5) | interface WrappedStepsProps type StepsWidgetProps (line 21) | interface StepsWidgetProps extends WrappedStepsProps, BaseWidgetProps { type StepsMappedOptionType (line 27) | interface StepsMappedOptionType { type StepsOptionsType (line 34) | interface StepsOptionsType { FILE: apps/builder/src/widgetLibrary/StepsWidget/panelConfig.tsx constant STEPS_PANEL_CONFIG (line 6) | const STEPS_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/StepsWidget/widgetConfig.tsx constant STEPS_WIDGET_CONFIG (line 13) | const STEPS_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/SwitchGroupWidget/eventHandlerConfig.ts constant SWITCH_GROUP_EVENT_HANDLER_CONFIG (line 4) | const SWITCH_GROUP_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/SwitchGroupWidget/interface.ts type Pluralize (line 7) | type Pluralize = { type SwitchItem (line 11) | interface SwitchItem { type WrappedSwitchGroupProps (line 17) | interface WrappedSwitchGroupProps type SwitchGroupWidgetProps (line 27) | interface SwitchGroupWidgetProps FILE: apps/builder/src/widgetLibrary/SwitchGroupWidget/panelConfig.tsx constant SWITCH_GROUP_PANEL_CONFIG (line 9) | const SWITCH_GROUP_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/SwitchGroupWidget/widgetConfig.tsx constant SWITCH_GROUP_WIDGET_CONFIG (line 6) | const SWITCH_GROUP_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/SwitchWidget/eventHandlerConfig.ts constant SWITCH_EVENT_HANDLER_CONFIG (line 4) | const SWITCH_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/SwitchWidget/interface.ts type WrappedSwitchProps (line 7) | interface WrappedSwitchProps type SwitchWidgetProps (line 15) | interface SwitchWidgetProps FILE: apps/builder/src/widgetLibrary/SwitchWidget/panelConfig.tsx constant SWITCH_PANEL_CONFIG (line 9) | const SWITCH_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/SwitchWidget/widgetConfig.tsx constant SWITCH_WIDGET_CONFIG (line 5) | const SWITCH_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/TableWidget/eventHandlerConfig.ts constant TABLE_EVENT_HANDLER_CONFIG (line 4) | const TABLE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { constant TABLE_BUTTON_EVENT_HANDLER_CONFIG (line 59) | const TABLE_BUTTON_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/TableWidget/interface.ts type Columns (line 12) | enum Columns { type ColumnType (line 33) | type ColumnType = Lowercase type ColumnItemShape (line 53) | interface ColumnItemShape type TableCellAlign (line 91) | type TableCellAlign = "left" | "center" | "right" type TableCellButtonGroupItemProps (line 93) | interface TableCellButtonGroupItemProps extends CellItemProps { type TableCellIconGroupItemProps (line 100) | interface TableCellIconGroupItemProps extends CellItemProps { type TableCommonProps (line 122) | interface TableCommonProps type WrappedTableProps (line 165) | interface WrappedTableProps type TableWidgetProps (line 181) | interface TableWidgetProps extends TableCommonProps, BaseWidgetProps { type WrappedTableContextProps (line 188) | interface WrappedTableContextProps { FILE: apps/builder/src/widgetLibrary/TableWidget/panelConfig.tsx constant TABLE_PAGENATION_OPTIONS (line 19) | const TABLE_PAGENATION_OPTIONS = [ constant TABLE_PANEL_CONFIG (line 34) | const TABLE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/TableWidget/react-table.d.ts type ColumnMeta (line 6) | interface ColumnMeta { FILE: apps/builder/src/widgetLibrary/TableWidget/widgetConfig.tsx constant TABLE_WIDGET_CONFIG (line 29) | const TABLE_WIDGET_CONFIG: WidgetConfig = { function initTableWidgetDefaultProps (line 42) | function initTableWidgetDefaultProps() { FILE: apps/builder/src/widgetLibrary/TabsWidget/eventHandlerConfig.ts constant TABS_EVENT_HANDLER_CONFIG (line 4) | const TABS_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/TabsWidget/interface.tsx type WrappedTabsProps (line 6) | interface WrappedTabsProps type TabsWidgetProps (line 18) | interface TabsWidgetProps FILE: apps/builder/src/widgetLibrary/TabsWidget/panelConfig.tsx constant TABS_PANEL_CONFIG (line 15) | const TABS_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/TabsWidget/style.tsx function applyAlignStyle (line 4) | function applyAlignStyle( FILE: apps/builder/src/widgetLibrary/TabsWidget/widgetConfig.tsx constant TABS_WIDGET_CONFIG (line 12) | const TABS_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/TagsWidget/components/MorePanel/interface.ts type MorePanelProps (line 1) | interface MorePanelProps { FILE: apps/builder/src/widgetLibrary/TagsWidget/components/TagContainer/interface.ts type TagContainerProps (line 1) | interface TagContainerProps { FILE: apps/builder/src/widgetLibrary/TagsWidget/constants.ts constant GAP (line 1) | const GAP = 8 constant OVERFLOW_GAP (line 2) | const OVERFLOW_GAP = 32 FILE: apps/builder/src/widgetLibrary/TagsWidget/eventHandlerConfig.ts constant TAGS_EVENT_HANDLER_CONFIG (line 4) | const TAGS_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/TagsWidget/interface.ts type Alignment (line 5) | type Alignment = "flex-start" | "center" | "flex-end" type WrappedTagsProps (line 6) | interface WrappedTagsProps { type TagsWidgetProps (line 15) | interface TagsWidgetProps FILE: apps/builder/src/widgetLibrary/TagsWidget/panelConfig.tsx constant TAGS_PANEL_CONFIG (line 13) | const TAGS_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/TagsWidget/widgetConfig.tsx constant TAGS_WIDGET_CONFIG (line 5) | const TAGS_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/TextAreaWidget/eventHandlerConfig.ts constant TEXTAREA_EVENT_HANDLER_CONFIG (line 4) | const TEXTAREA_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/TextAreaWidget/interface.tsx type WrappedTextareaProps (line 7) | interface WrappedTextareaProps type TextareaWidgetProps (line 34) | interface TextareaWidgetProps FILE: apps/builder/src/widgetLibrary/TextAreaWidget/panelConfig.tsx constant TEXTAREA_PANEL_CONFIG (line 9) | const TEXTAREA_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/TextAreaWidget/widgetConfig.tsx constant TEXTAREA_WIDGET_CONFIG (line 5) | const TEXTAREA_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/TextWidget/eventHandlerConfig.ts constant TEXT_EVENT_HANDLER_CONFIG (line 3) | const TEXT_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/TextWidget/interface.tsx type HorizontalAlign (line 5) | type HorizontalAlign = "start" | "center" | "end" type VerticalAlign (line 6) | type VerticalAlign = "start" | "center" | "end" type TextProps (line 8) | interface TextProps extends ILLATextProps { type TextWidgetProps (line 16) | interface TextWidgetProps FILE: apps/builder/src/widgetLibrary/TextWidget/panelConfig.tsx constant TEXT_PANEL_CONFIG (line 15) | const TEXT_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/TextWidget/style.tsx function applyAlignStyle (line 5) | function applyAlignStyle( function applyMarkdownStyle (line 53) | function applyMarkdownStyle(horizontalAlign?: string): SerializedStyles { FILE: apps/builder/src/widgetLibrary/TextWidget/widgetConfig.tsx constant TEXT_WIDGET_CONFIG (line 5) | const TEXT_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/TimePickerWidget/eventHandlerConfig.ts constant TIME_PICKER_EVENT_HANDLER_CONFIG (line 4) | const TIME_PICKER_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/TimePickerWidget/interface.tsx type WrappedTimePickerProps (line 7) | interface WrappedTimePickerProps type TimePickerWidgetProps (line 27) | interface TimePickerWidgetProps FILE: apps/builder/src/widgetLibrary/TimePickerWidget/panelConfig.tsx constant TIME_PICKER_PANEL_CONFIG (line 9) | const TIME_PICKER_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/TimePickerWidget/widgetConfig.tsx constant TIME_PICKER_WIDGET_CONFIG (line 5) | const TIME_PICKER_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/TimeRangeWidget/eventHandlerConfig.ts constant TIME_RANGE_EVENT_HANDLER_CONFIG (line 4) | const TIME_RANGE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/TimeRangeWidget/interface.tsx type WrappedTimeRangeProps (line 11) | interface WrappedTimeRangeProps type TimeRangeWidgetProps (line 30) | interface TimeRangeWidgetProps FILE: apps/builder/src/widgetLibrary/TimeRangeWidget/panelConfig.tsx constant TIME_RANGE_PANEL_CONFIG (line 9) | const TIME_RANGE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/TimeRangeWidget/widgetConfig.tsx constant TIME_RANGE_WIDGET_CONFIG (line 5) | const TIME_RANGE_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/TimelineWidget/eventHandlerConfig.ts constant TIMELINE_EVENT_HANDLER_CONFIG (line 3) | const TIMELINE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/TimelineWidget/interface.ts type WrappedTimelineProps (line 4) | interface WrappedTimelineProps type TimelineWidgetProps (line 9) | interface TimelineWidgetProps FILE: apps/builder/src/widgetLibrary/TimelineWidget/panelConfig.tsx constant TIMELINE_PANEL_CONFIG (line 6) | const TIMELINE_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/TimelineWidget/widgetConfig.tsx constant TIMELINE_WIDGET_CONFIG (line 5) | const TIMELINE_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/UploadWidget/eventHandlerConfig.ts constant UPLOAD_EVENT_HANDLER_CONFIG (line 4) | const UPLOAD_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/UploadWidget/interface.tsx type WrappedUploadProps (line 6) | interface WrappedUploadProps type UploadWidgetProps (line 42) | interface UploadWidgetProps FILE: apps/builder/src/widgetLibrary/UploadWidget/panelConfig.tsx constant UPLOAD_PANEL_CONFIG (line 8) | const UPLOAD_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/UploadWidget/util.ts type ValueType (line 36) | type ValueType = Array<{ status: string; value: any }> FILE: apps/builder/src/widgetLibrary/UploadWidget/widgetConfig.tsx constant UPLOAD_WIDGET_CONFIG (line 5) | const UPLOAD_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/VideoWidget/eventHandlerConfig.ts constant VIDEO_EVENT_HANDLER_CONFIG (line 4) | const VIDEO_EVENT_HANDLER_CONFIG: EventHandlerConfig = { FILE: apps/builder/src/widgetLibrary/VideoWidget/interface.tsx type WrappedVideoProps (line 5) | interface WrappedVideoProps extends BaseWidgetProps { type VideoWidgetProps (line 21) | interface VideoWidgetProps FILE: apps/builder/src/widgetLibrary/VideoWidget/panelConfig.tsx constant VIDEO_PANEL_CONFIG (line 9) | const VIDEO_PANEL_CONFIG: PanelConfig[] = [ FILE: apps/builder/src/widgetLibrary/VideoWidget/widgetConfig.tsx constant VIDEO_WIDGET_CONFIG (line 5) | const VIDEO_WIDGET_CONFIG: WidgetConfig = { FILE: apps/builder/src/widgetLibrary/interface.ts type EventHandlerConfig (line 7) | interface EventHandlerConfig { type WidgetConfigs (line 15) | interface WidgetConfigs { type DraggableWrapperShape (line 24) | interface DraggableWrapperShape { type RESIZE_DIRECTION (line 33) | enum RESIZE_DIRECTION { type BaseWidgetInfo (line 39) | interface BaseWidgetInfo { type defaultsType (line 51) | type defaultsType = () => Record type WidgetCardInfo (line 53) | interface WidgetCardInfo extends DraggableWrapperShape, BaseWidgetInfo { type WidgetConfig (line 59) | type WidgetConfig = Omit type EventsInProps (line 61) | interface EventsInProps { type BaseWidgetProps (line 67) | interface BaseWidgetProps { type BaseComponentNodeProps (line 108) | interface BaseComponentNodeProps { FILE: apps/builder/src/widgetLibrary/widgetBuilder.tsx type WidgetType (line 690) | type WidgetType = keyof typeof WidgetConfigMap FILE: apps/cloud/src/api/auth/index.ts type UploadResponse (line 5) | interface UploadResponse { FILE: apps/cloud/src/components/Menu/interface.ts type MenuItems (line 3) | interface MenuItems { type MenuProps (line 13) | interface MenuProps extends HTMLAttributes { FILE: apps/cloud/src/components/Menu/menuItem.tsx type MenuItem (line 10) | interface MenuItem extends HTMLAttributes { FILE: apps/cloud/src/env.d.ts type ImportMetaEnv (line 3) | interface ImportMetaEnv { type ImportMeta (line 12) | interface ImportMeta { FILE: apps/cloud/src/i18n/i18next.d.ts type CustomTypeOptions (line 4) | interface CustomTypeOptions { FILE: apps/cloud/src/i18n/index.ts function getLocalLanguage (line 47) | function getLocalLanguage(): string { FILE: apps/cloud/src/i18n/react-i18next.d.ts type CustomTypeOptions (line 4) | interface CustomTypeOptions { FILE: apps/cloud/src/page/setting/account/language/mobile/interface.ts type LanguageSettingMobileProps (line 1) | interface LanguageSettingMobileProps { FILE: apps/cloud/src/page/setting/account/language/pc/interface.ts type LanguageSettingProps (line 1) | interface LanguageSettingProps { FILE: apps/cloud/src/page/setting/account/password/interface.ts type PasswordSettingFields (line 3) | interface PasswordSettingFields { type PasswordSettingErrorMsg (line 9) | type PasswordSettingErrorMsg = Partial< type PasswordSettingProps (line 12) | interface PasswordSettingProps { FILE: apps/cloud/src/page/setting/account/password/mobile/changePassword/interface.ts type PasswordSettingMobileProps (line 4) | interface PasswordSettingMobileProps { FILE: apps/cloud/src/page/setting/account/password/pc/changePassword/interface.ts type PasswordSettingProps (line 4) | interface PasswordSettingProps { FILE: apps/cloud/src/page/setting/account/personal/mobile/interface.ts type AccountSettingMobileProps (line 4) | interface AccountSettingMobileProps { FILE: apps/cloud/src/page/setting/account/personal/pc/interface.ts type AccountSettingProps (line 4) | interface AccountSettingProps { FILE: apps/cloud/src/page/setting/components/Header/interface.ts type HeaderProps (line 3) | interface HeaderProps { FILE: apps/cloud/src/page/setting/context/index.tsx type TeamProps (line 9) | interface TeamProps { type Inject (line 15) | interface Inject extends TeamProps { FILE: apps/cloud/src/page/setting/interface.ts type PasswordSettingFields (line 1) | interface PasswordSettingFields { type AccountSettingFields (line 7) | interface AccountSettingFields { FILE: apps/cloud/src/page/setting/landing/interface.ts type LandingMenuItems (line 1) | interface LandingMenuItems { FILE: apps/cloud/src/page/setting/landing/landingMenu/interface.ts type LandingMenuItemProps (line 3) | interface LandingMenuItemProps { FILE: apps/cloud/src/page/setting/layout/mobile/interface.ts type SettingMobileLayoutProps (line 3) | interface SettingMobileLayoutProps { FILE: apps/cloud/src/page/setting/layout/pc/interface.ts type SettingLayoutProps (line 3) | interface SettingLayoutProps { FILE: apps/cloud/src/page/user/login/index.tsx type LoginErrorMsg (line 12) | type LoginErrorMsg = Record FILE: apps/cloud/src/page/workspace/apps/pc/index.tsx method rollbackOnError (line 81) | rollbackOnError(error: unknown) { method rollbackOnError (line 147) | rollbackOnError(error: unknown) { FILE: apps/cloud/src/page/workspace/apps/pc/utils.ts constant APP_NAME_MAX_LENGTH (line 1) | const APP_NAME_MAX_LENGTH = 128 constant COPY_SUFFIX (line 2) | const COPY_SUFFIX = " Copy" FILE: apps/cloud/src/page/workspace/components/ChangeLogModal/constants.ts constant CHANGE_LOG_NUM (line 1) | const CHANGE_LOG_NUM = 5 FILE: apps/cloud/src/page/workspace/components/ChangeLogModal/interface.ts type ChangeLog (line 1) | interface ChangeLog { type ChangeLogModalProps (line 7) | interface ChangeLogModalProps { FILE: apps/cloud/src/page/workspace/components/DynamicMenu/interface.ts type DashBoardDynamicMenuProps (line 1) | interface DashBoardDynamicMenuProps { FILE: apps/cloud/src/page/workspace/components/Header/interface.tsx type DashboardHeaderProps (line 3) | interface DashboardHeaderProps { FILE: apps/cloud/src/page/workspace/components/ToCloudModal/index.tsx type ToCloudModalProps (line 34) | interface ToCloudModalProps { FILE: apps/cloud/src/page/workspace/components/UpgradeTip/index.tsx type UpgradeTipProps (line 13) | interface UpgradeTipProps { FILE: apps/cloud/src/page/workspace/hooks.ts function useSearch (line 5) | function useSearch(needSearchData: T[], buildKeys: string[]) { FILE: apps/cloud/src/page/workspace/layout/interface.ts type WorkspaceLayoutProps (line 1) | interface WorkspaceLayoutProps { FILE: apps/cloud/src/page/workspace/resources/pc/index.tsx method rollbackOnError (line 66) | rollbackOnError(error: unknown) { FILE: apps/cloud/src/router/interface.ts type ILLARoutesObject (line 3) | type ILLARoutesObject = RouteObject & { FILE: apps/cloud/src/services/auth.ts type SignInRequestBody (line 7) | interface SignInRequestBody { FILE: apps/cloud/src/services/swr/app.ts type IAppCreateRequestData (line 72) | interface IAppCreateRequestData { FILE: apps/cloud/src/services/user.ts type updateUserPasswordRequestData (line 4) | interface updateUserPasswordRequestData { FILE: apps/cloud/src/store.ts type ILLARootState (line 11) | type ILLARootState = ReturnType FILE: apps/cloud/src/style.ts constant FONT_SIZE (line 3) | const FONT_SIZE = (100 / 780) * 100 constant MOBILE_MIN_WIDTH (line 4) | const MOBILE_MIN_WIDTH = 320 constant MOBILE_MAX_WIDTH (line 5) | const MOBILE_MAX_WIDTH = 780 FILE: apps/cloud/src/types/environment.d.ts type ProcessEnv (line 3) | interface ProcessEnv { FILE: apps/cloud/src/types/global.d.ts type Window (line 1) | interface Window { FILE: apps/cloud/src/types/react.d.ts type InputHTMLAttributes (line 4) | interface InputHTMLAttributes extends HTMLAttributes { FILE: apps/cloud/src/utils/auth/index.ts constant CURRENT_TEAM_ID_KEY (line 9) | const CURRENT_TEAM_ID_KEY = "currentTeamID" FILE: apps/cloud/src/utils/dayjs.ts constant PER_SECOND (line 16) | const PER_SECOND = 1000 constant PER_MINUTE (line 17) | const PER_MINUTE = PER_SECOND * 60 constant PER_HOUR (line 18) | const PER_HOUR = PER_MINUTE * 60 constant PER_DAY (line 19) | const PER_DAY = PER_HOUR * 24 function initDayjs (line 21) | async function initDayjs() { FILE: apps/cloud/src/vite-env.d.ts type ImportMetaEnv (line 3) | interface ImportMetaEnv { type ImportMeta (line 15) | interface ImportMeta { FILE: apps/cloud/vite.config.ts constant I18N_SOURCE_PATH (line 11) | const I18N_SOURCE_PATH = resolve( constant I18N_TARGET_PATH (line 16) | const I18N_TARGET_PATH = resolve(__dirname, "public/locales") constant VITE_PLUGINS (line 36) | const VITE_PLUGINS = [ FILE: apps/playwright/script/codeGen.js constant ENV_LOCAL_FILE_PATH (line 6) | const ENV_LOCAL_FILE_PATH = path.resolve(__dirname, "..", ".env.local") constant ENV_DEV_LOCAL_FILE_PATH (line 7) | const ENV_DEV_LOCAL_FILE_PATH = path.resolve(__dirname, "..", ".env.deve... FILE: apps/playwright/script/initEnv.js constant ENV_PREFIX (line 5) | const ENV_PREFIX = "ILLA_" constant ENV_LOCAL_FILE_PATH (line 7) | const ENV_LOCAL_FILE_PATH = path.resolve(__dirname, "..", ".env.local") constant ENV_DEV_LOCAL_FILE_PATH (line 8) | const ENV_DEV_LOCAL_FILE_PATH = path.resolve(__dirname, "..", ".env.deve... FILE: apps/playwright/tests/env.d.ts type ProcessEnv (line 2) | interface ProcessEnv {