├── .eslintignore ├── .npmrc ├── apps ├── builder │ ├── src │ │ ├── utils │ │ │ ├── undoRedo │ │ │ │ └── undoRedoMethod │ │ │ │ │ └── components.ts │ │ │ ├── file │ │ │ │ └── index.ts │ │ │ ├── screen │ │ │ │ └── index.ts │ │ │ ├── routerHelper.ts │ │ │ ├── navigate │ │ │ │ └── index.ts │ │ │ └── storage.ts │ │ ├── page │ │ │ ├── App │ │ │ │ ├── components │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── ActionPanel │ │ │ │ │ │ │ ├── ILLADrivePanel │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ └── PathOperate │ │ │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ │ ├── Label │ │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ │ ├── Space │ │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ │ ├── GeneralPanelLayout │ │ │ │ │ │ │ │ │ └── constants.ts │ │ │ │ │ │ │ │ └── HorizontalWithLabel │ │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── PanelHeader │ │ │ │ │ │ │ │ └── MockOperation │ │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── TransformerComponent │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── ActionResult │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── HuggingFaceCommonPanel │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── S3Panel │ │ │ │ │ │ │ │ ├── style.ts │ │ │ │ │ │ │ │ ├── interface.ts │ │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ │ └── ContentTypeSelect │ │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── SMTPPanel │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ ├── ActionMockPanel │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── GraphQLPanel │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ ├── RedisPanel │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ ├── FirebasePanel │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── MongoDbPanel │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ ├── ActionList │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ ├── SearchHeader │ │ │ │ │ │ │ └── interface.tsx │ │ │ │ │ │ └── AdvancedPanel │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ ├── Header │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ └── Space │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ ├── InspectPanel │ │ │ │ │ │ ├── PanelSetters │ │ │ │ │ │ │ ├── DriveSourceGroupSetter │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ └── UploadOperate │ │ │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ │ └── constants.ts │ │ │ │ │ │ │ ├── BorderSetter │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── DataGridSetter │ │ │ │ │ │ │ │ └── ColumnSetter │ │ │ │ │ │ │ │ │ └── Components │ │ │ │ │ │ │ │ │ └── UpdateButton │ │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── PublicComponent │ │ │ │ │ │ │ │ └── DynamicIcon │ │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ └── InputSetter │ │ │ │ │ │ │ │ └── PaddingInput │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── ActionMenu │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── Panelbar │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ └── Label │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── EmptySearchResult │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── PagePanel │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ ├── divider │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── setterPadding │ │ │ │ │ │ │ │ ├── interface.ts │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ ├── leftAndRight │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ └── verticalLayout │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ ├── Modules │ │ │ │ │ │ │ ├── Basic │ │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ └── Style │ │ │ │ │ │ │ │ └── Components │ │ │ │ │ │ │ │ ├── AddSection │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ │ ├── DirectionPaddingSetter │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ │ └── ShadowSelect │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ └── Components │ │ │ │ │ │ │ ├── Label │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ └── PanelActionBar │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── DotPanel │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── Page │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── Section │ │ │ │ │ │ │ ├── ModalSection │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── interface.ts │ │ │ │ │ │ │ └── BodySection │ │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── MousePreview │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ ├── DragShadowPreview │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ └── ComponentParser │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── ScaleSquare │ │ │ │ │ │ ├── constant │ │ │ │ │ │ │ └── moveBar.ts │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── DragContainer │ │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ │ ├── AutoHeightWithLimitedContainer │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ │ └── WrapperContainer │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ └── ConfigPanel │ │ │ │ │ │ └── style.ts │ │ │ │ └── Module │ │ │ │ │ ├── DataWorkspace │ │ │ │ │ ├── constant.ts │ │ │ │ │ └── components │ │ │ │ │ │ ├── LibrariesTree │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ ├── PageSpaceTree │ │ │ │ │ │ └── style.ts │ │ │ │ │ │ ├── MoreAction │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ ├── WorkSpaceTreeGroup │ │ │ │ │ │ ├── style.ts │ │ │ │ │ │ └── interface.ts │ │ │ │ │ │ └── GlobalsSpaceTree │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── PageNavBar │ │ │ │ │ ├── resp.ts │ │ │ │ │ ├── interface.ts │ │ │ │ │ ├── AppName │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── CollaboratorsList │ │ │ │ │ │ └── ListItem │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ └── ShareAppButton │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── UploadDetail │ │ │ │ │ └── components │ │ │ │ │ │ ├── DetailList │ │ │ │ │ │ └── constants.ts │ │ │ │ │ │ └── ProcessDetailModal │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── CanvasPanel │ │ │ │ │ └── interface.ts │ │ │ │ │ └── LeftPanel │ │ │ │ │ └── style.ts │ │ │ ├── AI │ │ │ │ └── components │ │ │ │ │ ├── MarkdownMessage │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── GenerationMessage │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── ChatContext │ │ │ │ │ └── interface.ts │ │ │ │ │ └── UserMessage │ │ │ │ │ └── interface.ts │ │ │ ├── Status │ │ │ │ └── interface.ts │ │ │ └── Resource │ │ │ │ └── CreateOrEdit │ │ │ │ └── interface.ts │ │ ├── widgetLibrary │ │ │ ├── DataGridWidget │ │ │ │ ├── constants.ts │ │ │ │ └── index.ts │ │ │ ├── SignatureWidget │ │ │ │ ├── constants.ts │ │ │ │ └── index.tsx │ │ │ ├── TagsWidget │ │ │ │ ├── constants.ts │ │ │ │ ├── components │ │ │ │ │ └── MorePanel │ │ │ │ │ │ └── interface.ts │ │ │ │ └── index.tsx │ │ │ ├── DrivePickerWidget │ │ │ │ ├── constants.ts │ │ │ │ ├── style.ts │ │ │ │ └── index.ts │ │ │ ├── PublicSector │ │ │ │ ├── TransformWidgetWrapper │ │ │ │ │ └── config.tsx │ │ │ │ ├── containerStyle.ts │ │ │ │ └── TooltipWrapper │ │ │ │ │ └── interface.ts │ │ │ ├── InputWidget │ │ │ │ ├── style.ts │ │ │ │ └── index.tsx │ │ │ ├── FormWidget │ │ │ │ └── index.ts │ │ │ ├── ListWidget │ │ │ │ └── index.tsx │ │ │ ├── ModalWidget │ │ │ │ └── index.ts │ │ │ ├── RateWidget │ │ │ │ ├── style.ts │ │ │ │ └── index.tsx │ │ │ ├── CascaderWidget │ │ │ │ └── index.ts │ │ │ ├── GridListWidget │ │ │ │ └── index.tsx │ │ │ ├── IFrameWidget │ │ │ │ ├── index.tsx │ │ │ │ ├── interface.ts │ │ │ │ └── eventHandlerConfig.ts │ │ │ ├── JsonEditorWidget │ │ │ │ ├── style.ts │ │ │ │ └── index.ts │ │ │ ├── ButtonWidget │ │ │ │ ├── style.ts │ │ │ │ └── index.tsx │ │ │ ├── CarouselWidget │ │ │ │ ├── slick-carousel │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── slick.eot │ │ │ │ │ │ ├── slick.ttf │ │ │ │ │ │ └── slick.woff │ │ │ │ └── index.tsx │ │ │ ├── JsonSchemaFormWidget │ │ │ │ └── @illadesign-ui │ │ │ │ │ └── templates │ │ │ │ │ ├── ArrayFieldTemplate │ │ │ │ │ └── style.ts │ │ │ │ │ └── IconButton │ │ │ │ │ └── style.ts │ │ │ ├── ChartWidget │ │ │ │ ├── index.tsx │ │ │ │ └── style.ts │ │ │ ├── PdfWidget │ │ │ │ ├── index.tsx │ │ │ │ └── eventHandlerConfig.ts │ │ │ ├── AvatarWidget │ │ │ │ └── utils.ts │ │ │ ├── ChatWidget │ │ │ │ └── index.ts │ │ │ ├── DateWidget │ │ │ │ └── index.tsx │ │ │ ├── IconWidget │ │ │ │ └── index.ts │ │ │ ├── MapBoxWidget │ │ │ │ └── index.tsx │ │ │ ├── MenuWidget │ │ │ │ └── index.ts │ │ │ ├── TableWidget │ │ │ │ └── index.ts │ │ │ ├── TabsWidget │ │ │ │ └── index.tsx │ │ │ ├── TextWidget │ │ │ │ └── index.tsx │ │ │ ├── AudioWidget │ │ │ │ └── index.tsx │ │ │ ├── ImageWidget │ │ │ │ └── index.tsx │ │ │ ├── SelectWidget │ │ │ │ └── index.tsx │ │ │ ├── SliderWidget │ │ │ │ └── index.tsx │ │ │ ├── StepsWidget │ │ │ │ └── index.tsx │ │ │ ├── SwitchWidget │ │ │ │ └── index.tsx │ │ │ ├── UploadWidget │ │ │ │ └── index.tsx │ │ │ ├── VideoWidget │ │ │ │ └── index.tsx │ │ │ ├── DividerWidget │ │ │ │ └── index.tsx │ │ │ ├── QRCodeWidget │ │ │ │ ├── index.ts │ │ │ │ └── eventHandlerConfig.ts │ │ │ ├── RecordingWidget │ │ │ │ └── index.tsx │ │ │ ├── RichTextWidget │ │ │ │ └── index.ts │ │ │ ├── TextAreaWidget │ │ │ │ └── index.tsx │ │ │ ├── TimelineWidget │ │ │ │ └── index.ts │ │ │ ├── ContainerWidget │ │ │ │ └── index.tsx │ │ │ ├── DateRangeWidget │ │ │ │ └── index.tsx │ │ │ ├── DateTimeWidget │ │ │ │ └── index.tsx │ │ │ ├── TimeRangeWidget │ │ │ │ └── index.tsx │ │ │ ├── EditableWidget │ │ │ │ └── index.tsx │ │ │ ├── MultiselectWidget │ │ │ │ └── index.tsx │ │ │ ├── RadioGroupWidget │ │ │ │ └── index.tsx │ │ │ ├── StatisticsWidget │ │ │ │ └── index.tsx │ │ │ ├── TimePickerWidget │ │ │ │ └── index.tsx │ │ │ ├── BarProgressWidget │ │ │ │ └── index.tsx │ │ │ ├── CodeScannerWidget │ │ │ │ └── index.ts │ │ │ ├── NumberInputWidget │ │ │ │ └── index.ts │ │ │ ├── RadioButtonWidget │ │ │ │ └── index.tsx │ │ │ ├── RangeSliderWidget │ │ │ │ └── index.tsx │ │ │ └── SwitchGroupWidget │ │ │ │ └── index.tsx │ │ ├── assets │ │ │ ├── favicon.ico │ │ │ ├── carousel │ │ │ │ └── point.svg │ │ │ ├── chat │ │ │ │ └── empty.svg │ │ │ ├── rightPagePanel │ │ │ │ └── all.svg │ │ │ ├── radius-icon.svg │ │ │ └── border.svg │ │ ├── redux │ │ │ ├── resource │ │ │ │ └── upstashResource.ts │ │ │ ├── currentApp │ │ │ │ └── selector.ts │ │ │ └── guide │ │ │ │ └── guideState.ts │ │ ├── types │ │ │ └── global.d.ts │ │ ├── middleware │ │ │ └── undoRedo │ │ │ │ └── interface.ts │ │ ├── components │ │ │ ├── FolderOperateModal │ │ │ │ ├── components │ │ │ │ │ └── CreateFolderModal │ │ │ │ │ │ └── interface.ts │ │ │ │ └── constants.ts │ │ │ ├── ILLAMarkdown │ │ │ │ └── interface.ts │ │ │ ├── Modal │ │ │ │ ├── Header │ │ │ │ │ └── interface.ts │ │ │ │ ├── Body │ │ │ │ │ └── interface.ts │ │ │ │ ├── utils │ │ │ │ │ └── stopDragAndDrop.ts │ │ │ │ └── Footer │ │ │ │ │ └── interface.ts │ │ │ ├── ColorPicker │ │ │ │ └── interface.ts │ │ │ ├── ColorSetter │ │ │ │ └── interface.tsx │ │ │ ├── DriveFileSelect │ │ │ │ └── interface.ts │ │ │ ├── CodeEditor │ │ │ │ ├── utils.ts │ │ │ │ └── CodeMirror │ │ │ │ │ └── extensions │ │ │ │ │ └── completionSources │ │ │ │ │ └── ILLAContextDesc │ │ │ │ │ └── index.tsx │ │ │ ├── Iframe │ │ │ │ └── style.ts │ │ │ └── Guide │ │ │ │ └── GuideSuccess │ │ │ │ └── style.ts │ │ ├── router │ │ │ └── constant.ts │ │ └── i18n │ │ │ └── i18next.d.ts │ ├── .env.self │ ├── public │ │ ├── favicon.png │ │ ├── ILLAFavicon.ico │ │ └── font-family │ │ │ ├── Inter │ │ │ ├── Inter-Bold.woff │ │ │ ├── Inter-Thin.woff │ │ │ ├── Inter.var.woff2 │ │ │ ├── Inter-Black.woff │ │ │ ├── Inter-Black.woff2 │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-Italic.woff │ │ │ ├── Inter-Light.woff │ │ │ ├── Inter-Light.woff2 │ │ │ ├── Inter-Medium.woff │ │ │ ├── Inter-Thin.woff2 │ │ │ ├── Inter-ExtraBold.woff │ │ │ ├── Inter-Italic.woff2 │ │ │ ├── Inter-Medium.woff2 │ │ │ ├── Inter-Regular.woff │ │ │ ├── Inter-Regular.woff2 │ │ │ ├── Inter-SemiBold.woff │ │ │ ├── Inter-SemiBold.woff2 │ │ │ ├── Inter-BlackItalic.woff │ │ │ ├── Inter-BoldItalic.woff │ │ │ ├── Inter-BoldItalic.woff2 │ │ │ ├── Inter-ExtraBold.woff2 │ │ │ ├── Inter-ExtraLight.woff │ │ │ ├── Inter-ExtraLight.woff2 │ │ │ ├── Inter-LightItalic.woff │ │ │ ├── Inter-ThinItalic.woff │ │ │ ├── Inter-ThinItalic.woff2 │ │ │ ├── Inter-italic.var.woff2 │ │ │ ├── Inter-roman.var.woff2 │ │ │ ├── Inter-BlackItalic.woff2 │ │ │ ├── Inter-LightItalic.woff2 │ │ │ ├── Inter-MediumItalic.woff │ │ │ ├── Inter-MediumItalic.woff2 │ │ │ ├── Inter-SemiBoldItalic.woff │ │ │ ├── Inter-ExtraBoldItalic.woff │ │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ │ ├── Inter-ExtraLightItalic.woff │ │ │ ├── Inter-SemiBoldItalic.woff2 │ │ │ └── Inter-ExtraLightItalic.woff2 │ │ │ └── Fira-code │ │ │ ├── woff │ │ │ ├── FiraCode-VF.woff │ │ │ ├── FiraCode-Bold.woff │ │ │ ├── FiraCode-Light.woff │ │ │ ├── FiraCode-Medium.woff │ │ │ ├── FiraCode-Regular.woff │ │ │ └── FiraCode-SemiBold.woff │ │ │ └── woff2 │ │ │ ├── FiraCode-VF.woff2 │ │ │ ├── FiraCode-Bold.woff2 │ │ │ ├── FiraCode-Light.woff2 │ │ │ ├── FiraCode-Medium.woff2 │ │ │ ├── FiraCode-Regular.woff2 │ │ │ └── FiraCode-SemiBold.woff2 │ └── .eslintrc.js ├── cloud │ ├── .env.production │ ├── src │ │ ├── types │ │ │ ├── global.d.ts │ │ │ └── react.d.ts │ │ ├── page │ │ │ ├── workspace │ │ │ │ ├── components │ │ │ │ │ ├── ChangeLogModal │ │ │ │ │ │ └── constants.ts │ │ │ │ │ ├── DynamicMenu │ │ │ │ │ │ └── interface.ts │ │ │ │ │ └── Header │ │ │ │ │ │ └── interface.tsx │ │ │ │ └── layout │ │ │ │ │ └── interface.ts │ │ │ └── setting │ │ │ │ ├── layout │ │ │ │ ├── pc │ │ │ │ │ └── interface.ts │ │ │ │ └── mobile │ │ │ │ │ └── interface.ts │ │ │ │ ├── components │ │ │ │ └── Header │ │ │ │ │ └── interface.ts │ │ │ │ └── landing │ │ │ │ ├── landingMenu │ │ │ │ └── interface.ts │ │ │ │ └── interface.ts │ │ ├── assets │ │ │ ├── favicon.ico │ │ │ └── public │ │ │ │ └── illa-logo.webp │ │ ├── i18n │ │ │ ├── i18next.d.ts │ │ │ └── react-i18next.d.ts │ │ └── utils │ │ │ └── storage │ │ │ └── index.ts │ ├── public │ │ ├── favicon.ico │ │ ├── maskable-icon-512x512.png │ │ └── apple-touch-icon-180x180.png │ └── .eslintrc.cjs └── playwright │ └── .gitignore ├── hacktoberfest2023 ├── awesome-ai-agents │ ├── TravelBuddy.md │ ├── Fiber-Chat.md │ ├── RiddleGenerator.md │ ├── [Ai Agent] Roadmap-generator.md │ ├── Base64Encoder.md │ ├── Code Explainer.md │ ├── Curator.md │ ├── Fit Bot.md │ ├── qr-scanner.md │ ├── BABY.md │ ├── Learn Japanese.md │ ├── LionAgent │ ├── SONG-ify.md │ ├── bibleQuotes.md │ ├── CodeMasters │ ├── ComposeAI.md │ ├── CompuHelp.md │ ├── Dad Jokes.md │ ├── HomeRemedies.md │ ├── LearnLingo.md │ ├── Mathematrix.md │ ├── ToGoLang.md │ ├── dictionary │ ├── BabyGPT.md │ ├── DialectCoach.md │ ├── Facts.md │ ├── Foodie+wine.md │ ├── No Thinker.md │ ├── Tic_tac_toe game.md │ ├── mohit.md │ ├── Base64_encoder.md │ ├── Learn French.md │ ├── PoemCraft.md │ ├── Testing Code generator │ ├── VideoAdScripter │ ├── Emoji Playground.md │ ├── Fortunecookie.md │ ├── Health-Diagnoser.md │ ├── Know_about_nepal.md │ ├── Poetry Critic AI.md │ ├── Python Interpreter.md │ ├── Rive.md │ ├── StockX │ ├── Story Weave.md │ ├── TextSummarizer.md │ ├── Book_suggest.md │ ├── CaloryCal.md │ ├── Code Pioneer.md │ ├── Health_track.md │ ├── Json to CSV Converter.md │ ├── Kitchen-Essentials.md │ ├── RapMaster.md │ ├── SanskritTranslator.md │ ├── Script Like a Pro │ ├── Spanish.md │ ├── Articreate.md │ ├── GeetaShlokas.md │ ├── General Stock Advisor.md │ ├── Harry-Potter-quotes │ ├── HealthyBites.md │ ├── Image Upload Component │ ├── SpecifyMe.md │ ├── Trivia Bot.md │ ├── Web Development Helper.md │ ├── brandnamegenerator.md │ ├── hello_cobol.md │ ├── music-recommender.md │ ├── strategies for handling errors │ ├── ArtGenius.md │ ├── Code_Review.md │ ├── Cold-Email-Generator.md │ ├── Discord BOT │ ├── Inter_L_Coder.md │ ├── Paraphraser.md │ ├── Poem generator.md │ ├── QuizMaster.md │ ├── Sports Injury Prevention.md │ ├── Top 10 Movie Rankings.md │ ├── the_matrix_quotes.md │ ├── AntonymFinder.md │ ├── Code generator.md │ ├── Emailolot.md │ ├── EnglishtoUrduTranslator.md │ ├── Funny Limerick Party Game.md │ ├── GardenGuide │ ├── GrammerGig │ ├── Make an Impression.md │ ├── Osiris.md │ ├── RephraserTool.md │ ├── SMILE_To_Name_and_Vice_Versa.md │ ├── Story generator │ ├── Story-Wizard.md │ ├── SynonymFinder.md │ ├── Welcome to Wilcume !.md │ ├── movie_suggent.md │ ├── Content-Recommendations-Agent.md │ ├── DistanceConverter.md │ ├── Famous Birthday Twins.md │ ├── LANGUAGE PROFICIENCY PREPARE AI │ ├── Monumental Chronicles.md │ ├── SquareRootFinder.md │ ├── WeblyAI.md │ ├── game-name-generator │ ├── unit-converter.md │ ├── AI Regex generator.md │ ├── APIMaster.md │ ├── Astronaut.md │ ├── AuthorSpotlights.md │ ├── Code-De-Plagger.md │ ├── Cricket team generator.md │ ├── GenZSlangs.md │ ├── Ingrain.md │ ├── MediCare.md │ ├── QRGenerator │ ├── Story teller.md │ ├── personal fitness advisor │ ├── AI Haiku generator.md │ ├── AI-Designer │ ├── Codector.md │ ├── Content Shortner.md │ ├── EnglishToHindiTranslator.md │ ├── Football-Analyst.md │ ├── GetDiet.md │ ├── MeditationGuide.md │ ├── Peom_in_hindi.md │ ├── TV series suggester │ ├── Wireframes.md │ ├── Yoda Translator.md │ ├── cube-root-finder │ ├── hashtage_generator.md │ ├── Ai-agent-finder.md │ ├── C++ToARM.md │ ├── CSS_To_Tailwind_CSS_Converter.md │ ├── ChemicalFormulaGenerator.md │ ├── ConstellationHelper.md │ ├── Deadpool.md │ ├── Description writer.md │ ├── Dev Laughs.md │ ├── GermanHistoryGuide.md │ ├── Hindi to English Translator │ ├── How_To_Bot.md │ ├── Interesting Harry Potter Fact.md │ ├── Sales Presentation Slides.md │ ├── SpamDetector.md │ ├── Speed Skating Techniques.md │ ├── Story generator.md │ ├── Story_generator.md │ ├── Tech Stack Finder │ ├── Translator │ ├── Translator.md │ ├── Word Meaning (Any Language) │ ├── spam detector │ ├── App-Vision │ ├── AutoSubnet.md │ ├── Book-Recommender.md │ ├── CapitalCityFinder.md │ ├── DC-Universe-Facts.md │ ├── FakeMultimediaDetection.md │ ├── Food-recipe-generator.md │ ├── LingoLink.md │ ├── LitSleuth.md │ ├── Objection Handling Guide.md │ ├── Perfect Pen.md │ ├── Physics Demystified │ ├── Spanish Poem Generator.md │ ├── Book-to-Film.md │ ├── BookClub-Agent.md │ ├── Cultural Immersion experience AI │ ├── DrugAssistant.md │ ├── MovieRecommendor.md │ ├── Panda-Debugger.md │ ├── Positive Affirmation Generator │ ├── StudyBuddy.md │ ├── Web Developer Helper.md │ ├── ai-movie-critic.md │ ├── osu! rhythm game coach.md │ ├── AchieveWithEmma.md │ ├── Competitor-Analyser │ ├── Conducting User Interviews │ ├── ContentRecommender.md │ ├── Cooking for Special Diets.md │ ├── English to Hindi Translator.md │ ├── Female Tech Entrepreneur.md │ ├── German Word-Assistant.md │ ├── Innovator.md │ ├── Language Learning Challenges.md │ ├── Latest Scientific Discoveries.md │ ├── League of Legends Champion Recommender.md │ ├── Otaku_Senpai.md │ ├── Password_History_Tracker.md │ ├── PoemGeneratorApp.md │ ├── Study Roadmap │ ├── Translator2.md │ ├── Your Anxiety Buddy │ ├── job-interview-preparation.md │ ├── Career_Compass.md │ ├── CodeDebugger.md │ ├── Create chess player generator.md │ ├── DataVisualizationAgent │ ├── Decimal to Binary converter.md │ ├── Famous Football Players Generator.md │ ├── GameConceptDesigner-GPT.md │ ├── Humorous Fact.md │ ├── Humorous Facts │ ├── Job-Seeker-Outreach-Assistant.md │ ├── LegalAdvisor.md │ ├── Movie-Guider.md │ ├── OptiTechPro.md │ ├── PrimeCompositeNumberHelper.md │ ├── Product Analyzer.md │ ├── Teacher.md │ ├── Techo │ ├── quantum-education-resource.md │ ├── routines-pal.md │ ├── AIM - Jailbreak CHATGPT.md │ ├── AIOptima.md │ ├── ATCgt │ ├── Analytical writing Bot │ ├── Book-to-Film Adaptations │ ├── BookRecommendationEngine.md │ ├── English-to-Bangla-Translator.md │ ├── GitHub_Profile_Readme_Generator.md │ ├── Ice_Skater.md │ ├── Personalise Learning system.md │ ├── RandomPhrasePass.md │ ├── RecipeInspirationGenerator.md │ ├── Text2Hindi.md │ ├── TravelLighter │ ├── UsabilityTestingScript.md │ ├── YouTube Script Generator.md │ ├── career-roadmap-generator.md │ ├── productivitySongs │ ├── smith_the_converter │ ├── AI Health-Agent.md │ ├── BioBuddy.md │ ├── ChemWiz.md │ ├── Code Converter.md │ ├── EarthWiseAI.md │ ├── English to Sinhala Translator.md │ ├── Environmental Conservation.md │ ├── F.R.I.E.N.D.S quotes generator 🫰.md │ ├── Marvel-comic-universe-facts.md │ ├── Meeting Agenda Maker.md │ ├── MentalConditioning.md │ ├── MoneyKing │ ├── Nature.md │ ├── Personalized-Workout-Generator.md │ ├── SportsPsychology.md │ ├── data-storytelling.md │ ├── email Marketing Automation │ ├── grammar corrector │ ├── html to jsx converter │ ├── kannada.md │ ├── Anime Recommendations.md │ ├── AutomatedCodeReviewer.md │ ├── Blog Post Title Generator.md │ ├── BookstoreandLibraryGuides.md │ ├── BrandCraftAI.md │ ├── Coin_Sage.md │ ├── Colour-Palette-Provider.md │ ├── Cooking-Techniques-and-Tips.md │ ├── EnvironmentalConservation.md │ ├── GRAMMAR INSTRUCTOR.md │ ├── GameReadyPro.md │ ├── IceRinkEtiquetteAndSafety.md │ ├── Lit.md │ ├── Multiple Musical Instruments Learning.md │ ├── SciCompPhysXpert.md │ ├── Social Campaigns │ ├── TextSentimentAnalyzer.md │ ├── Thai_Translator.md │ ├── WP Snippet Generator │ ├── AIDecipher.md │ ├── AstroGuide.md │ ├── Binary Operation.md │ ├── CheatCodeGenius.md │ ├── Color Palette Generator │ ├── Create chess opening generator.md │ ├── DataDashCraft.md │ ├── DungeonMasterGPT(MK.I).md │ ├── English-to-Kannada translator.md │ ├── Fitness-challenger.md │ ├── Game NPCs.md │ ├── Gear and equipment recommendations.md │ ├── GigaChat.md │ ├── Hackathon Buddy │ ├── Job Search and Career Assistant.md │ ├── LinguoLingo.md │ ├── Product usability testing plan │ ├── ReadHorizonAI.md │ ├── ScienceNewsAnalyzer.md │ ├── Sudoku Solver.md │ ├── TALK.md │ ├── TestImpactAI.md │ ├── Text-to-image-converter.md │ ├── TimeTravelerTom.md │ ├── TimeTrendPro.md │ ├── Virtual_Historian_AI.md │ ├── Web development help assistant.md │ ├── Web styling frameworks.md │ ├── chat got │ └── gear-equipment-recommendations-ai-agent.md └── awesome-illa-apps │ ├── CrudApp.md │ ├── Notes App.md │ ├── Say Hello.md │ ├── InputField.md │ ├── Url Decoder APP │ ├── Bug-Reporting.md │ ├── Crazy-Avatars.md │ ├── QR-Generator.md │ ├── To-Do List App.md │ ├── TwitterClone │ ├── Simple-portfolio-page │ ├── Contact Developers.md │ ├── Translator HiNDI to English │ ├── simple-login-form.md │ ├── Cats API.md │ ├── Github Stats Generator │ ├── Inventory management.md │ ├── MPLgen │ ├── Sentimental-Analysis.md │ ├── Blog_template.md │ ├── Hex to RGB Color Converter.md │ ├── Newsletter │ ├── BMI Calculator.md │ ├── Birthday-wisher.md │ ├── Data-entry.md │ ├── English To Higlish Translater │ ├── hello-word.md │ ├── Bible Quotes.md │ ├── Calculator.md │ ├── Export Charts │ ├── Restaurantmenu.md │ ├── Case Converter.md │ ├── Simple Form.md │ ├── Joker.md │ ├── rgbaColorGenerator.md │ ├── BMI_Notif │ ├── Funky_Calculator.md │ ├── QR Code Generator.md │ ├── SimpleSignupForm.md │ ├── Awesome-Notes-App.md │ ├── CSV_To_MYSQL.md │ ├── Hacktoberfest Treasure Hunt.md │ ├── Max Portfolio.md │ ├── Pokémon Stats.md │ ├── Monitor Repositories Star, Forks and Issues.md │ ├── Survey Form │ ├── AskMyDocument.md │ ├── Awesome Avatars.md │ ├── Calculator App.md │ ├── Date to Timestamp.md │ ├── Jotfusion.md │ ├── simple-portfolio-template │ ├── GithubActivityGraphGenerator.md │ ├── Holopin Board Preview.md │ ├── Holopin Profile Viewer.md │ ├── Text to Image Generator.md │ ├── NotesUsingSupabaseCRUD.md │ ├── DrugWiki.md │ ├── Hex-RGB-Converter │ ├── PokemonGenerator.md │ ├── EarthLens.md │ ├── Github Stats.md │ ├── Product CRUD App Using TiDB.md │ ├── Pearls-Illa-App.md │ ├── StatsGenerator │ ├── TODO Application.md │ ├── Day_Planner.md │ ├── GiftSwap.md │ ├── Github Issue Finder.md │ ├── Sentimental.md │ ├── CheatCodeGenius │ ├── SpamDetection.md │ ├── Predict Number │ ├── Imaginate Creator.md │ └── Resume_Builder.md ├── .gitignore ├── .eslintrc.js ├── .lintstagedrc.mjs ├── commitlint.config.js ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── pnpm-workspace.yaml ├── .github └── ISSUE_TEMPLATE │ └── custom.md ├── packages └── tsconfig │ ├── package.json │ └── react.json └── crowdin.yml /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.svg -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | registry = https://registry.npmjs.org/ -------------------------------------------------------------------------------- /apps/builder/src/utils/undoRedo/undoRedoMethod/components.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TravelBuddy.md: -------------------------------------------------------------------------------- 1 | TravelBuddy 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_Store 4 | .vscode 5 | .turbo -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: ["illa"] 4 | } 5 | -------------------------------------------------------------------------------- /apps/builder/.env.self: -------------------------------------------------------------------------------- 1 | ILLA_INSTANCE_ID=SELF_HOST_CLOUD 2 | ILLA_APP_ENV=production -------------------------------------------------------------------------------- /.lintstagedrc.mjs: -------------------------------------------------------------------------------- 1 | export default { 2 | "*.{ts,tsx}": ["prettier --write"], 3 | } 4 | -------------------------------------------------------------------------------- /apps/cloud/.env.production: -------------------------------------------------------------------------------- 1 | ILLA_INSTANCE_ID=SELF_HOST_CLOUD 2 | ILLA_APP_ENV=production -------------------------------------------------------------------------------- /apps/cloud/src/types/global.d.ts: -------------------------------------------------------------------------------- 1 | interface Window { 2 | customDomain?: string 3 | } 4 | -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | pnpm commitlint --edit "${1}" -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/components/PathOperate/style.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # snapchat 2 | __snapshots__/** 3 | *.test.tsx.snap 4 | ILLA_PROTO.* 5 | *.md 6 | *.mdx 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DataGridWidget/constants.ts: -------------------------------------------------------------------------------- 1 | export const UNIQUE_ID_NAME = "$uniqueID" 2 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/SignatureWidget/constants.ts: -------------------------------------------------------------------------------- 1 | export const DPR = window.devicePixelRatio 2 | -------------------------------------------------------------------------------- /apps/cloud/src/page/workspace/components/ChangeLogModal/constants.ts: -------------------------------------------------------------------------------- 1 | export const CHANGE_LOG_NUM = 5 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/CrudApp.md: -------------------------------------------------------------------------------- 1 | # CRUD 2 | Fast try: https://illa.ai/app/ILAfx4p1C7Yx/detail 3 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/DataWorkspace/constant.ts: -------------------------------------------------------------------------------- 1 | export const hiddenFields = ["displayName", "userID"] 2 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/constants.ts: -------------------------------------------------------------------------------- 1 | export const PAGESIZE = 10 2 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TagsWidget/constants.ts: -------------------------------------------------------------------------------- 1 | export const GAP = 8 2 | export const OVERFLOW_GAP = 32 3 | -------------------------------------------------------------------------------- /apps/cloud/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/cloud/public/favicon.ico -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Notes App.md: -------------------------------------------------------------------------------- 1 | # Notes App 2 | Fast try: https://illa.ai/app/ILAfx4p1C7NM/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Say Hello.md: -------------------------------------------------------------------------------- 1 | # Say Hello 2 | Fast try: https://illa.ai/app/ILAfx4p1C7Hy/detail 3 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | pnpm ts-check && pnpm lint && pnpm lint-staged 5 | -------------------------------------------------------------------------------- /apps/builder/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/favicon.png -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/components/UploadOperate/style.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cloud/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/cloud/src/assets/favicon.ico -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/InputField.md: -------------------------------------------------------------------------------- 1 | # input field 2 | Fast try: https://illa.ai/app/ILAfx4p1C7yy/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Url Decoder APP: -------------------------------------------------------------------------------- 1 | # Url Decoder 2 | Fast try: https://illa.ai/app/ILAfx4p1C7CA/detail 3 | -------------------------------------------------------------------------------- /apps/builder/public/ILLAFavicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/ILLAFavicon.ico -------------------------------------------------------------------------------- /apps/builder/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/src/assets/favicon.ico -------------------------------------------------------------------------------- /apps/builder/src/redux/resource/upstashResource.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_NAME = "default" 2 | export const DATABASE_INDEX = 0 3 | -------------------------------------------------------------------------------- /apps/builder/src/types/global.d.ts: -------------------------------------------------------------------------------- 1 | interface Window { 2 | customDomain?: string 3 | currentTeamIdentifier?: string 4 | } 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Bug-Reporting.md: -------------------------------------------------------------------------------- 1 | # Bug-Reporting 2 | Fast try: https://illa.ai/app/ILAfx4p1C7XL/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Crazy-Avatars.md: -------------------------------------------------------------------------------- 1 | # Crazy Avatars! 2 | Fast try: https://illa.ai/app/ILAfx4p1C7YB/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/QR-Generator.md: -------------------------------------------------------------------------------- 1 | # QR Generator 2 | Fast try: https://illa.ai/app/ILAfx4p1C7YA/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/To-Do List App.md: -------------------------------------------------------------------------------- 1 | # To-Do List App 2 | Fast try: https://illa.ai/app/ILAfx4p1C7BR/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/TwitterClone: -------------------------------------------------------------------------------- 1 | A simple tweet thing: Check it: https://illa.ai/app/ILAfx4p1C7D4/detail 2 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/PanelSetters/BorderSetter/interface.ts: -------------------------------------------------------------------------------- 1 | export interface BorderSetterProps {} 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Simple-portfolio-page: -------------------------------------------------------------------------------- 1 | # Portfolio Page 2 | Fast try: https://illa.ai/app/ILAfx4p1C7Fo/detail 3 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/EmptySearchResult/interface.ts: -------------------------------------------------------------------------------- 1 | export interface EmptySearchResultProps { 2 | desc?: string 3 | } -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DrivePickerWidget/constants.ts: -------------------------------------------------------------------------------- 1 | export const PAGESIZE = 10 2 | export const DEFAULT_EXPIRED_TIME = 300 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Contact Developers.md: -------------------------------------------------------------------------------- 1 | # Contact Developers 2 | Fast try: https://illa.ai/app/ILAfx4p1C7XI/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Translator HiNDI to English: -------------------------------------------------------------------------------- 1 | # Translator 2 | Fast try: https://illa.ai/app/ILAfx4p1C7CO/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/simple-login-form.md: -------------------------------------------------------------------------------- 1 | # Simple Login Form 2 | Fast try: https://illa.ai/app/ILAfx4p1C7Fr/detail 3 | -------------------------------------------------------------------------------- /apps/builder/src/utils/file/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./calculateFileInfo" 2 | export * from "./upload" 3 | export * from "./parseFileValue" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/PublicSector/TransformWidgetWrapper/config.tsx: -------------------------------------------------------------------------------- 1 | export const MIN_HEIGHT = 3 2 | export const MIN_WIDTH = 2 3 | -------------------------------------------------------------------------------- /apps/cloud/public/maskable-icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/cloud/public/maskable-icon-512x512.png -------------------------------------------------------------------------------- /apps/cloud/src/assets/public/illa-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/cloud/src/assets/public/illa-logo.webp -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Cats API.md: -------------------------------------------------------------------------------- 1 | # Cats API 2 | Consuming kitten API. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7EV/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Github Stats Generator: -------------------------------------------------------------------------------- 1 | # GitHub Stats Generator 2 | Fast try: https://illa.ai/app/ILAfx4p1C7Yq/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Inventory management.md: -------------------------------------------------------------------------------- 1 | # Inventory management 2 | Fast try: https://illa.ai/app/ILAfx4p1C7XJ/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/MPLgen: -------------------------------------------------------------------------------- 1 | # MPLgen 2 | Music PlayList Generator 3 | Fast try: https://illa.ai/app/ILAfx4p1C7IL/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Sentimental-Analysis.md: -------------------------------------------------------------------------------- 1 | # Sentimental Analysis 2 | Fast try: https://illa.ai/app/ILAfx4p1C7YK/detail 3 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Layout/divider/interface.ts: -------------------------------------------------------------------------------- 1 | export interface PanelDividerProps { 2 | hasMargin?: boolean 3 | } 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Blog_template.md: -------------------------------------------------------------------------------- 1 | # Blog Template 2 | A Basic Blog Template 3 | Link: https://illa.ai/app/ILAfx4p1C7yx/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Hex to RGB Color Converter.md: -------------------------------------------------------------------------------- 1 | # Hex to RGB converter 2 | Fast try: https://illa.ai/app/ILAfx4p1C7CM/detail 3 | -------------------------------------------------------------------------------- /apps/builder/src/middleware/undoRedo/interface.ts: -------------------------------------------------------------------------------- 1 | export enum REDUX_ACTION_FROM { 2 | UNDO = "undo", 3 | REDO = "redo", 4 | WS = "ws", 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionList/interface.ts: -------------------------------------------------------------------------------- 1 | export interface ListWithNewButtonProps { 2 | searchActionValue: string 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/Layout/Label/interface.ts: -------------------------------------------------------------------------------- 1 | export interface ActionPanelLabelProps { 2 | name: string 3 | } 4 | -------------------------------------------------------------------------------- /apps/cloud/public/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/cloud/public/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Fiber-Chat.md: -------------------------------------------------------------------------------- 1 | # Fiber Chat 2 | Textile Fiber Analyzer! 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70t/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/RiddleGenerator.md: -------------------------------------------------------------------------------- 1 | # Riddle Generator 2 | Generate riddles for you: https://illa.ai/ai-agent/ILAfx4p1C7sE/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/[Ai Agent] Roadmap-generator.md: -------------------------------------------------------------------------------- 1 | # Roadmap Generator 2 | Check it: https://illa.ai/ai-agent/ILAfx4p1C7qr/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Newsletter: -------------------------------------------------------------------------------- 1 | # Newsletter 2 | The simple newsletter page. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7NQ/detail 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/SearchHeader/interface.tsx: -------------------------------------------------------------------------------- 1 | export interface SearchHeaderProps { 2 | onSearch: (value: string) => void 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/DotPanel/components/Page/interface.ts: -------------------------------------------------------------------------------- 1 | export interface RenderPageProps { 2 | currentPageDisplayName: string 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/InputWidget/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const containerStyle = css` 4 | flex: 1; 5 | ` 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Base64Encoder.md: -------------------------------------------------------------------------------- 1 | # Base64 Encode 2 | Encode text to Base64 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uM/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Code Explainer.md: -------------------------------------------------------------------------------- 1 | # Code Explainer 2 | Explain the code. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70h/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Curator.md: -------------------------------------------------------------------------------- 1 | # Curator 2 | Offers movie recommendations based on genre: https://illa.ai/ai-agent/ILAfx4p1C7u2/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Fit Bot.md: -------------------------------------------------------------------------------- 1 | # Fit Bot 2 | This bot give a fitness schedule 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Yi/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/qr-scanner.md: -------------------------------------------------------------------------------- 1 | # QR Code Generator 2 | Generate a QR code 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7v3/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/BMI Calculator.md: -------------------------------------------------------------------------------- 1 | # BMI Calculator 2 | An app to calculate BMI. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7DW/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Birthday-wisher.md: -------------------------------------------------------------------------------- 1 | # Birthday wisher 2 | Birthday wisher app 3 | Fast try: https://illa.ai/app/ILAfx4p1C7E2/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Data-entry.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive app called Data Entry. Check it: https://illa.ai/app/ILAfx4p1C7xQ/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/English To Higlish Translater: -------------------------------------------------------------------------------- 1 | # English To Higlish Translater 2 | Fast try: https://illa.ai/app/ILAfx4p1C7Bn/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/hello-word.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive app called HelloWorld. Check it: https://illa.ai/app/ILAfx4p1C7J2/detail 2 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - "apps/*" 3 | - "packages/illa-design/packages/*" 4 | - "packages/illa-public-component/*" 5 | - "packages/*" 6 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Bold.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Thin.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter.var.woff2 -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/AdvancedPanel/Components/Header/interface.ts: -------------------------------------------------------------------------------- 1 | export interface AdvancedPanelHeaderProps { 2 | title: string 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/FormWidget/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./panelConfig" 2 | export * from "./widgetConfig" 3 | export * from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ListWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./widgetConfig" 2 | export * from "./panelConfig" 3 | export * from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ModalWidget/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./panelConfig" 2 | export * from "./widgetConfig" 3 | export * from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/RateWidget/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const rateStyle = css` 4 | overflow: hidden; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/cloud/src/page/workspace/components/DynamicMenu/interface.ts: -------------------------------------------------------------------------------- 1 | export interface DashBoardDynamicMenuProps { 2 | onClickMenuItemCallback?: () => void 3 | } 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/BABY.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called BABY. 2 | Check it: https://illa.ai/ai-agent/ILAfx4p1C7rG/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Learn Japanese.md: -------------------------------------------------------------------------------- 1 | # Learn Japanese 2 | Learn Japanese Language 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uc/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/LionAgent: -------------------------------------------------------------------------------- 1 | An AI bot to tell you all you need to know about lions 2 | Fast try:https://illa.ai/ai-agent/ILAex4p1C7Zq/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SONG-ify.md: -------------------------------------------------------------------------------- 1 | # SONG-ify 2 | Suggests songs of a similar genre. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7s1/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/bibleQuotes.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive app called Bible Quotes. Check it: https://illa.ai/app/ILAfx4p1C7BA/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Bible Quotes.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive app called Bible Quotes. Check it: https://illa.ai/app/ILAfx4p1C7BA/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Calculator.md: -------------------------------------------------------------------------------- 1 | # Calculator 2 | A simple Calculator using illa builder 3 | Fast try: https://illa.ai/app/ILAfx4p1C7HV/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Export Charts: -------------------------------------------------------------------------------- 1 | # Export Charts 2 | A simple app to download charts. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7YJ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Restaurantmenu.md: -------------------------------------------------------------------------------- 1 | I just made an impressive app called Restaurant Menu. Check it: https://illa.ai/app/ILAfx4p1C7Gi/detail 2 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Black.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Italic.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Light.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Medium.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /apps/builder/src/redux/currentApp/selector.ts: -------------------------------------------------------------------------------- 1 | import { RootState } from "../../store" 2 | 3 | export const getCurrentApp = (state: RootState) => state.currentApp 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/CascaderWidget/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./widgetConfig" 2 | export * from "./panelConfig" 3 | export * from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/GridListWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./widgetConfig" 2 | export * from "./panelConfig" 3 | export * from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/IFrameWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { IFRAME_WIDGET_CONFIG } from "./widgetConfig" 2 | export { IFRAME_PANEL_CONFIG } from "./panelConfig" 3 | -------------------------------------------------------------------------------- /apps/cloud/src/i18n/i18next.d.ts: -------------------------------------------------------------------------------- 1 | import "i18next" 2 | 3 | declare module "i18next" { 4 | interface CustomTypeOptions { 5 | returnNull: false 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /apps/cloud/src/page/setting/layout/pc/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface SettingLayoutProps { 4 | children: ReactNode 5 | } 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/CodeMasters: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called CodeMasters. Check it: https://illa.ai/ai-agent/ILAex4p1C74I/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ComposeAI.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called ComposeAI. Check it: https://illa.ai/ai-agent/ILAfx4p1C7wc/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/CompuHelp.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called CompuHelp. Check it: https://illa.ai/ai-agent/ILAfx4p1C7wm/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Dad Jokes.md: -------------------------------------------------------------------------------- 1 | # Dad Jokes 2 | This agent generates a random dad joke. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7vJ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/HomeRemedies.md: -------------------------------------------------------------------------------- 1 | # HomeRemedies 2 | Home remedies for quick first aid. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7vv/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/LearnLingo.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called LearnLingo. Check it: https://illa.ai/ai-agent/ILAfx4p1C7wk/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Mathematrix.md: -------------------------------------------------------------------------------- 1 | # Mathematrix 2 | Generate a mathematical equation. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C74b/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ToGoLang.md: -------------------------------------------------------------------------------- 1 | # ToGoLang 2 | Changes the code you give to Go Language. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7u5/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/dictionary: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called dictionary. Check it: https://illa.ai/ai-agent/ILAex4p1C73x/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Case Converter.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive app called Case Converter. Check it: https://illa.ai/app/ILAfx4p1C7Yn/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Simple Form.md: -------------------------------------------------------------------------------- 1 | # Simple Form 2 | This is simple form which has just UI 3 | Fast try: https://illa.ai/app/ILAfx4p1C7Nz/detail 4 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Regular.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /apps/builder/src/components/FolderOperateModal/components/CreateFolderModal/interface.ts: -------------------------------------------------------------------------------- 1 | export interface CreateFolderModalProps { 2 | currentFolderID: string 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/PageNavBar/resp.ts: -------------------------------------------------------------------------------- 1 | export interface DeployResp { 2 | version: number 3 | releaseVersion: number 4 | mainlineVersion: number 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/PanelHeader/MockOperation/interface.ts: -------------------------------------------------------------------------------- 1 | export interface MockOperationProps { 2 | enableMock: boolean 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/TransformerComponent/interface.ts: -------------------------------------------------------------------------------- 1 | export interface TransformComponentProps { 2 | fullWidth?: boolean 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/DotPanel/components/Section/ModalSection/interface.ts: -------------------------------------------------------------------------------- 1 | export interface RenderModalSectionProps { 2 | columnNumber: number 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/JsonEditorWidget/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const baseJsonEditorStyle = css` 4 | cursor: text; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/cloud/src/page/workspace/layout/interface.ts: -------------------------------------------------------------------------------- 1 | export interface WorkspaceLayoutProps { 2 | onOpenChangeLogModal: () => void 3 | openToCloudModal: () => void 4 | } 5 | -------------------------------------------------------------------------------- /apps/cloud/src/utils/storage/index.ts: -------------------------------------------------------------------------------- 1 | import ILLAStorage from "@illa-public/illa-storage" 2 | 3 | export const ILLACloudStorage = new ILLAStorage("ILLACloud@0.0.0", 5) 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/BabyGPT.md: -------------------------------------------------------------------------------- 1 | A curious and playful small baby AI agent. 2 | 3 | Check it out here: Check it: https://illa.ai/ai-agent/ILAex4p1C7XC/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/DialectCoach.md: -------------------------------------------------------------------------------- 1 | # DialectCoach 2 | Helps learn languages and dialects. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uq/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Facts.md: -------------------------------------------------------------------------------- 1 | # Facts 2 | Enter the topic name and get various facts based on it 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7rb/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Foodie+wine.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Foodie+wine. Check it: https://illa.ai/ai-agent/ILAex4p1C70K/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/No Thinker.md: -------------------------------------------------------------------------------- 1 | # No Thinker 2 | Provide Users with Ideas to blog about. 3 | Fast Try : https://illa.ai/ai-agent/ILAfx4p1C7vE/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Tic_tac_toe game.md: -------------------------------------------------------------------------------- 1 | # Tic tac toe game 2 | Text "Start" to start the game 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7TX/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/mohit.md: -------------------------------------------------------------------------------- 1 | # mohit 2 | the ai Agent will generate cyber law and ipr details 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7ZF/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Joker.md: -------------------------------------------------------------------------------- 1 | # Joker 2 | A fun Jokes Generator. Provide you with daily dose of jokes! Check it: https://illa.ai/app/ILAfx4p1C72A/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/rgbaColorGenerator.md: -------------------------------------------------------------------------------- 1 | # RGBA color generator 2 | A simple rgba color generator. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7Ia/detail 4 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /apps/builder/src/components/ILLAMarkdown/interface.ts: -------------------------------------------------------------------------------- 1 | export interface ILLAMarkdownProps { 2 | textString?: string 3 | textColor?: string 4 | urlColor?: string 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/ActionResult/interface.ts: -------------------------------------------------------------------------------- 1 | export interface ActionResultProps { 2 | visible: boolean 3 | onClose: () => void 4 | } 5 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/HuggingFaceCommonPanel/interface.ts: -------------------------------------------------------------------------------- 1 | export interface HuggingFaceCommonPanelProps { 2 | withoutModel?: boolean 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/DotPanel/components/MousePreview/interface.ts: -------------------------------------------------------------------------------- 1 | export interface MousePreviewProps { 2 | unitW: number 3 | displayName: string 4 | } 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Base64_encoder.md: -------------------------------------------------------------------------------- 1 | # Base64 Encode 2 | This agent helps encoding text into Base64. 3 | Fast Try: https://illa.ai/ai-agent/ILAex4p1C7V3/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Learn French.md: -------------------------------------------------------------------------------- 1 | # Learn French 2 | This ai agent will help you to learn french. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ub/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/PoemCraft.md: -------------------------------------------------------------------------------- 1 | # PoemCraft 2 | This AI agent generates a poem on a given topic 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sD/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Testing Code generator: -------------------------------------------------------------------------------- 1 | # Testing Code generator 2 | Write a test for my code. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7TG/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/VideoAdScripter: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called VideoAdScripter. Check it: https://illa.ai/ai-agent/ILAex4p1C74J/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/BMI_Notif: -------------------------------------------------------------------------------- 1 | #BMI_Notification 2 | An app to learn the basics of ILLA APP development. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7yF/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Funky_Calculator.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive app called Funky Calculator App. Check it: https://illa.ai/app/ILAfx4p1C7Ex/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/QR Code Generator.md: -------------------------------------------------------------------------------- 1 | # QR Code Generator 2 | A simple QR Code Generator Application 3 | Fast try: https://illa.ai/app/ILAfx4p1C7Cf/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/SimpleSignupForm.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive app called Simple Sign up form. 2 | Check it: https://illa.ai/app/ILAfx4p1C7Zt/detail 3 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff/FiraCode-VF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff/FiraCode-VF.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/PageNavBar/interface.ts: -------------------------------------------------------------------------------- 1 | import { HTMLAttributes } from "react" 2 | 3 | export interface PageNavBarProps extends HTMLAttributes {} 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/UploadDetail/components/DetailList/constants.ts: -------------------------------------------------------------------------------- 1 | export const PROCESS_DETAIL_LIST_HEIGHT = 400 2 | export const PROCESS_DETAIL_ITEM_HEIGHT = 52 3 | -------------------------------------------------------------------------------- /apps/cloud/src/i18n/react-i18next.d.ts: -------------------------------------------------------------------------------- 1 | import "react-i18next" 2 | 3 | declare module "react-i18next" { 4 | interface CustomTypeOptions { 5 | returnNull: false 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Emoji Playground.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Emoji Playground. Check it: https://illa.ai/ai-agent/ILAex4p1C74j/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Fortunecookie.md: -------------------------------------------------------------------------------- 1 | # Fortunecookie 2 | Generate customized fortune cookie messages. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Xc/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Health-Diagnoser.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Health-Diagnoser. Check it: https://illa.ai/ai-agent/ILAex4p1C73R/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Know_about_nepal.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Know about Nepal. Check it: https://illa.ai/ai-agent/ILAex4p1C7VP/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Poetry Critic AI.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Poetry Critic AI. Check it: https://illa.ai/ai-agent/ILAfx4p1C7wh/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Python Interpreter.md: -------------------------------------------------------------------------------- 1 | # Python Interpreter 2 | Interpret the code that you give 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73n/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Rive.md: -------------------------------------------------------------------------------- 1 | # Rive 2 | This agent will provide optimizations for your LinkedIn. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sV/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/StockX: -------------------------------------------------------------------------------- 1 | # StockX 2 | The Agent will give suggestions related to financial markets. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uh/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Story Weave.md: -------------------------------------------------------------------------------- 1 | # Story Weave 2 | Generates short stories for kids with a life lesson 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7vI/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TextSummarizer.md: -------------------------------------------------------------------------------- 1 | # Text Summarizer 2 | Provides a brief summary of the given text. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73U/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Awesome-Notes-App.md: -------------------------------------------------------------------------------- 1 | # An Awesome Note taking App build and deployed using ILLA Builder 2 | Fast try: https://illa.ai/app/ILAfx4p1C7NM/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/CSV_To_MYSQL.md: -------------------------------------------------------------------------------- 1 | # CSV To MYSQL 2 | Upload a CSV and write it to your MySQL database 3 | Try it Now: https://illa.ai/app/ILAfx4p1C7CI/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Hacktoberfest Treasure Hunt.md: -------------------------------------------------------------------------------- 1 | # Hacktoberfest Treasure Hunt #hacktoberfesttreasurehunt 2 | Fast try: https://illa.ai/app/ILAfx4p1C7Mf/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Max Portfolio.md: -------------------------------------------------------------------------------- 1 | # Max Portfolio 2 | A personal portfolio website powered by ILLA Cloud. 3 | Fast Try: https://illa.ai/app/ILAfx4p1C7y0/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Pokémon Stats.md: -------------------------------------------------------------------------------- 1 | # Pokémon Stats 2 | Gets the basic stats of a Pokémon using PokéAPI. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7ys/detail 4 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff/FiraCode-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff/FiraCode-Bold.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff2/FiraCode-VF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff2/FiraCode-VF.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /apps/builder/src/components/Modal/Header/interface.ts: -------------------------------------------------------------------------------- 1 | export interface HeaderProps { 2 | title: string 3 | docLink?: string 4 | canMove?: boolean 5 | onClose: () => void 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/DotPanel/components/Section/interface.ts: -------------------------------------------------------------------------------- 1 | export interface RenderBasicSectionProps { 2 | columnNumber: number 3 | dividerColor?: string 4 | } 5 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/ScaleSquare/constant/moveBar.ts: -------------------------------------------------------------------------------- 1 | export const MOVE_BAR_HEIGHT = 18 2 | export const MIN_MOVE_BAR_WIDTH = 48 3 | export const MOVE_BAR_SVG_WIDTH = 12 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ButtonWidget/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const buttonLayoutStyle = css` 4 | width: 100%; 5 | height: 100%; 6 | ` 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DrivePickerWidget/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const wrapperStyle = css` 4 | width: 100%; 5 | height: 100%; 6 | ` 7 | -------------------------------------------------------------------------------- /apps/cloud/src/page/setting/components/Header/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface HeaderProps { 4 | title: string 5 | extra?: ReactNode 6 | } 7 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Book_suggest.md: -------------------------------------------------------------------------------- 1 | # Book Suggest 2 | An AI who can suggest book name depend on your mood 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Yd/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/CaloryCal.md: -------------------------------------------------------------------------------- 1 | # CaloryCalc 2 | Calculate the number of calories in a certain food amount. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70b/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Code Pioneer.md: -------------------------------------------------------------------------------- 1 | # Code Pioneer 2 | This AI agent generates a good coding practice tip 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sG/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Health_track.md: -------------------------------------------------------------------------------- 1 | #BMI_Notification 2 | An app to learn the basics of ILLA APP development. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7yF/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Json to CSV Converter.md: -------------------------------------------------------------------------------- 1 | # Json to CSV Converter 2 | Convert JSON data into CSV format. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7WX/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Kitchen-Essentials.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Kitchen Essentials. Check it: https://illa.ai/ai-agent/ILAex4p1C70J/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/RapMaster.md: -------------------------------------------------------------------------------- 1 | # RapMaster 2 | Introducing the RapMaster, your virtual Rap song creater. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C74f/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SanskritTranslator.md: -------------------------------------------------------------------------------- 1 | # Sanskrit Translator 2 | Translate the given text to Sanskrit. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C720/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Script Like a Pro: -------------------------------------------------------------------------------- 1 | An impressive AI Agent called Script Like a Pro, Even on Your First Video. Check it: https://illa.ai/ai-agent/ILAex4p1C71Z/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Spanish.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called English to Spanish Translator. Check it: https://illa.ai/ai-agent/ILAex4p1C7Ws/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Monitor Repositories Star, Forks and Issues.md: -------------------------------------------------------------------------------- 1 | # Monitor Repositories Star, Forks and Issues. 2 | Check it: https://illa.ai/app/ILAfx4p1C7IJ/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Survey Form: -------------------------------------------------------------------------------- 1 | # SurveyForm 2 | A survey form that will take public opinions on AI revolution 3 | Fast try: https://illa.ai/app/ILAfx4p1C7zD/detail 4 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff/FiraCode-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff/FiraCode-Light.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff/FiraCode-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff/FiraCode-Medium.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff/FiraCode-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff/FiraCode-Regular.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff2/FiraCode-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff2/FiraCode-Bold.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff2/FiraCode-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff2/FiraCode-Light.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /apps/builder/src/components/Modal/Body/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface ModalBodyProps { 4 | children: ReactNode 5 | footerHeight: number 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/S3Panel/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const actionItemContainer = css` 4 | padding: 8px 0; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/SMTPPanel/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const actionItemContainer = css` 4 | padding: 8px 0; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Modules/Basic/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const placePaddingStyle = css` 4 | padding-bottom: 8px; 5 | ` 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Articreate.md: -------------------------------------------------------------------------------- 1 | # Articreate 2 | This AI-Agent generates an artcile based on the input of user. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sA/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GeetaShlokas.md: -------------------------------------------------------------------------------- 1 | # Geeta Shlokas Generator 2 | An AI agent that produces random Geeta Shlokas 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7rT/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/General Stock Advisor.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called General Stock Advisor. Check it: https://illa.ai/ai-agent/ILAex4p1C704/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Harry-Potter-quotes: -------------------------------------------------------------------------------- 1 | -I just discovered an impressive AI Agent called Harry Potter Quotes. 2 | Check it: https://illa.ai/ai-agent/ILAex4p1C7YK/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/HealthyBites.md: -------------------------------------------------------------------------------- 1 | # HealthyBites 2 | Discover tasty recipes that focus on health and nutrition 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70q/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Image Upload Component: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Image Upload Component. Check it: https://illa.ai/ai-agent/ILAex4p1C7UD/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SpecifyMe.md: -------------------------------------------------------------------------------- 1 | # SpecifyMe 2 | 3 | I just discovered an impressive AI Agent called SpecifyMe. 4 | Check it: https://illa.ai/ai-agent/ILAex4p1C7Tp/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Trivia Bot.md: -------------------------------------------------------------------------------- 1 | # Trivia Bot 2 | Our Trivia Bot is your gateway to a world of knowledge and fun. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72u/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Web Development Helper.md: -------------------------------------------------------------------------------- 1 | # Web Development Helper 2 | This Assistant help to web development 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Yh/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/brandnamegenerator.md: -------------------------------------------------------------------------------- 1 | Check the new Brand Name Generator which generates new name for your brand. Check it: https://illa.ai/ai-agent/ILAex4p1C7YL/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/hello_cobol.md: -------------------------------------------------------------------------------- 1 | # hello world 2 | Write a basic "Hello, World!" code in the specified language. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sd/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/music-recommender.md: -------------------------------------------------------------------------------- 1 | # Music Recommender 2 | Prompt recommend 50 popular songs in worldwide 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7v4/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/strategies for handling errors: -------------------------------------------------------------------------------- 1 | This agent will be provide a regex for a given list of strings. Fast try: https://illa.ai/ai-agent/ILAex4p1C7Xn/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/AskMyDocument.md: -------------------------------------------------------------------------------- 1 | # Ask my Document 2 | An app to ask any question to an uploaded text document. 3 | Fast try: https://illa.ai/app/ILAfx4p1C72u/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Awesome Avatars.md: -------------------------------------------------------------------------------- 1 | # Awesome Avatars 2 | Generates random Avatars with different themes to select. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7xB/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Calculator App.md: -------------------------------------------------------------------------------- 1 | # Calculator App 2 | A simple calculator which calculates some basic operations. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7Il/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Date to Timestamp.md: -------------------------------------------------------------------------------- 1 | # Date to Timestamp 2 | Convert human-readable month/day/year date to epoch 3 | Fast try: https://illa.ai/app/ILAfx4p1C7Co/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Jotfusion.md: -------------------------------------------------------------------------------- 1 | # Jotfusion 2 | JOTFUSION is your go-to online text editor, a powerful editing tool. 3 | Fast Try: https://illa.ai/app/ILAfx4p1C7y1/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/simple-portfolio-template: -------------------------------------------------------------------------------- 1 | # Simple portfolio template 2 | This app is a simple portfolio template 3 | Fast try: https://illa.ai/app/ILAfx4p1C7xM/detail 4 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff/FiraCode-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff/FiraCode-SemiBold.woff -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff2/FiraCode-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff2/FiraCode-Medium.woff2 -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff2/FiraCode-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff2/FiraCode-Regular.woff2 -------------------------------------------------------------------------------- /apps/builder/src/assets/carousel/point.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /apps/builder/src/assets/chat/empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /apps/builder/src/components/ColorPicker/interface.ts: -------------------------------------------------------------------------------- 1 | export interface ColorPickerProps { 2 | selectedColor: string 3 | onChange: (color: string) => void 4 | disableAlpha?: boolean 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/AI/components/MarkdownMessage/interface.ts: -------------------------------------------------------------------------------- 1 | export interface MarkdownMessageProps { 2 | disableTrigger?: boolean 3 | isOwnMessage?: boolean 4 | children?: string 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/DataWorkspace/components/LibrariesTree/interface.ts: -------------------------------------------------------------------------------- 1 | export interface LibrariesItemProps { 2 | title: string 3 | alias?: string 4 | docLink: string 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/ActionMockPanel/interface.ts: -------------------------------------------------------------------------------- 1 | export interface ActionMockPanelProps { 2 | mockData: string 3 | enableForReleasedApp: boolean 4 | } 5 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/GraphQLPanel/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const actionItemContainer = css` 4 | padding: 8px 0; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/ILLADrivePanel/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const actionItemContainer = css` 4 | padding: 8px 0; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/RedisPanel/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const actionItemContainer = css` 4 | padding: 8px 0; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/components/ActionMenu/interface.ts: -------------------------------------------------------------------------------- 1 | export interface PanelHeaderActionProps { 2 | widgetDisplayName: string 3 | componentType: string 4 | } 5 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/components/Panelbar/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const ghostEmptyStyle = css` 4 | padding-bottom: 8px; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Components/Label/interface.ts: -------------------------------------------------------------------------------- 1 | export interface PageLabelProps { 2 | tooltip?: string 3 | labelName: string 4 | size: "big" | "small" 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Layout/setterPadding/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface SetterPaddingLayout { 4 | children: ReactNode 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Layout/setterPadding/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const setterPaddingStyle = css` 4 | padding: 8px 0px; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/router/constant.ts: -------------------------------------------------------------------------------- 1 | export const needSavedSearchParams = [ 2 | "inviteToken", 3 | "email", 4 | "appID", 5 | "teamIdentifier", 6 | "token", 7 | "redirectPage", 8 | ] 9 | -------------------------------------------------------------------------------- /apps/cloud/src/page/setting/landing/landingMenu/interface.ts: -------------------------------------------------------------------------------- 1 | import { LandingMenuItems } from "../interface" 2 | 3 | export interface LandingMenuItemProps { 4 | item: LandingMenuItems 5 | } 6 | -------------------------------------------------------------------------------- /apps/cloud/src/types/react.d.ts: -------------------------------------------------------------------------------- 1 | import "react" 2 | 3 | declare module "react" { 4 | interface InputHTMLAttributes extends HTMLAttributes { 5 | webkitdirectory?: string 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ArtGenius.md: -------------------------------------------------------------------------------- 1 | # ArtGenius 2 | 3 | ArtGenius is an AI-powered art prompt generator chatbot designed to spark the creativity of artists and enthusiasts alike. 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Code_Review.md: -------------------------------------------------------------------------------- 1 | # Code Review 2 | Review and suggest improvements for the provided code snippet. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C732/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Cold-Email-Generator.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Cold Emails Template Generator. Check it: https://illa.ai/ai-agent/ILAex4p1C70H/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Discord BOT: -------------------------------------------------------------------------------- 1 | # Discord BOT 2 | Creating a simple script for create a discord bot with discord.js. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73C/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Inter_L_Coder.md: -------------------------------------------------------------------------------- 1 | # Inter_L_Coder 2 | Changes the code from one programming language to another. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tl/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Paraphraser.md: -------------------------------------------------------------------------------- 1 | # Paraphraser 2 | It eliminates plagiarism from a copied piece of content or code. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72H/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Poem generator.md: -------------------------------------------------------------------------------- 1 | # Poem generator 2 | Create a poem by using a list of words provided by the user. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Vb/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/QuizMaster.md: -------------------------------------------------------------------------------- 1 | #QUIZ MASTER 2 | 3 | This AI Agent lets the user to play a ame of quiz interactively. 4 | Fast Try : https://illa.ai/ai-agent/ILAfx4p1C7wz/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Sports Injury Prevention.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Sports injury Prevention. Check it: https://illa.ai/ai-agent/ILAex4p1C7X3/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Top 10 Movie Rankings.md: -------------------------------------------------------------------------------- 1 | # Top 10 Movie Rankings 2 | Output: Display the rank of the top 10 movies. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7v2/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/the_matrix_quotes.md: -------------------------------------------------------------------------------- 1 | # The Matrix Quotes 2 | Generate personalized quotes from the Matrix movies. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7qk/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/GithubActivityGraphGenerator.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive app called Github Activity Graph Generator. Check it: https://illa.ai/app/ILAfx4p1C7Dw/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Holopin Board Preview.md: -------------------------------------------------------------------------------- 1 | # Holopin Board Preview 2 | Display your Holopin board by using your username 3 | Fast try: https://illa.ai/app/ILAfx4p1C7Of/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Holopin Profile Viewer.md: -------------------------------------------------------------------------------- 1 | # Holopin Profile Viewer 2 | Shows a Holopin profile based on the username 3 | Fast try: https://illa.ai/app/ILAfx4p1C7DV/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Text to Image Generator.md: -------------------------------------------------------------------------------- 1 | # Text to Image Generator 2 | A simple app which generate image from prompt 3 | Fast try: https://illa.ai/app/ILAfx4p1C74R/detail 4 | -------------------------------------------------------------------------------- /apps/builder/public/font-family/Fira-code/woff2/FiraCode-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/public/font-family/Fira-code/woff2/FiraCode-SemiBold.woff2 -------------------------------------------------------------------------------- /apps/builder/src/components/Modal/utils/stopDragAndDrop.ts: -------------------------------------------------------------------------------- 1 | import { MouseEvent } from "react" 2 | 3 | export const stopDragAndDrop = (e: MouseEvent) => { 4 | e.stopPropagation() 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/DataWorkspace/components/PageSpaceTree/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const pageSpaceTreeStyle = css` 4 | padding-bottom: 8px; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/PageNavBar/AppName/interface.ts: -------------------------------------------------------------------------------- 1 | import { AppInfoShape } from "@illa-public/public-types" 2 | 3 | export interface AppNameProps { 4 | appInfo: AppInfoShape 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/UploadDetail/components/ProcessDetailModal/interface.ts: -------------------------------------------------------------------------------- 1 | export interface IUpdateDetailModalProps { 2 | open: boolean 3 | changeOpen: (open: boolean) => void 4 | } 5 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/Layout/Space/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const spaceStyle = css` 4 | width: 100%; 5 | height: 8px; 6 | ` 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/PanelSetters/DataGridSetter/ColumnSetter/Components/UpdateButton/interface.ts: -------------------------------------------------------------------------------- 1 | export interface UpdateButtonProps { 2 | onClick: () => void 3 | } 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Layout/leftAndRight/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface LeftAndRightLayoutProps { 4 | children?: ReactNode 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Layout/verticalLayout/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface VerticalLayoutProps { 4 | children?: ReactNode 5 | } 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AntonymFinder.md: -------------------------------------------------------------------------------- 1 | # Antonym Finder 2 | 3 | This AI Agent gives the antonym of the user input word. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uy/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Code generator.md: -------------------------------------------------------------------------------- 1 | # Code generator 2 | Implement the specified {{feature}} using code in {{language}}. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7eX/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Emailolot.md: -------------------------------------------------------------------------------- 1 | # Emailolot 2 | Your own personal email writer bot! Helps to sound professional and formal. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ul/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/EnglishtoUrduTranslator.md: -------------------------------------------------------------------------------- 1 | # English to Urdu Translator 2 | Translates english text to urdu language 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7VB/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Funny Limerick Party Game.md: -------------------------------------------------------------------------------- 1 | # Funny Limerick Party Game 2 | Generates a funny limerick as a party game. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7wp/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GardenGuide: -------------------------------------------------------------------------------- 1 | # GardenGuide 2 | Help to create a comprehensive guide to create a thriving home garden. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uo/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GrammerGig: -------------------------------------------------------------------------------- 1 | # GrammarGig 2 | GrammarGig is your trusty companion on your language learning adventure! 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tN/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Make an Impression.md: -------------------------------------------------------------------------------- 1 | # Make an Impression 2 | Helps to convert an informal text into a formal text. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7rp/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Osiris.md: -------------------------------------------------------------------------------- 1 | ## GitHub Education Pack Bot 2 | It answers all questions about the github education pack. 3 | Fast try : https://illa.ai/ai-agent/ILAfx4p1C7ts/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/RephraserTool.md: -------------------------------------------------------------------------------- 1 | # Rephraser Tool 2 | 3 | This AI Agent can rephrase a given text content for you. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tr/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SMILE_To_Name_and_Vice_Versa.md: -------------------------------------------------------------------------------- 1 | Small molecule name to SMILES and SMILES to small molecule name. 2 | 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7TM/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Story generator: -------------------------------------------------------------------------------- 1 | # Story generator 2 | Generate a story of maximum 1000 words using only the title 3 | Try it now!!: https://illa.ai/ai-agent/ILAex4p1C7YX/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Story-Wizard.md: -------------------------------------------------------------------------------- 1 | #STORY-WIZARD 2 | 3 | A Story Recommender that recommends story based on user inputs. 4 | Try it now : https://illa.ai/ai-agent/ILAex4p1C7TV/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SynonymFinder.md: -------------------------------------------------------------------------------- 1 | # Synonym Generator 2 | 3 | This AI agent returns the synonym of the given word. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uA/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Welcome to Wilcume !.md: -------------------------------------------------------------------------------- 1 | # Welcome to Wilcume ! 2 | Converts modern english to old(Shakespearen) english. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tj/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/movie_suggent.md: -------------------------------------------------------------------------------- 1 | # Movie suggest 2 | This AI Agent will generate movie name that suit your current mood. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70U/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/NotesUsingSupabaseCRUD.md: -------------------------------------------------------------------------------- 1 | # Note-Taking App 2 | A simple note taking having CRUD operations using Supabase 3 | Fast try: https://illa.ai/app/ILAfx4p1C7CR/detail 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/DataWorkspace/components/MoreAction/interface.ts: -------------------------------------------------------------------------------- 1 | export interface MoreActionProps { 2 | displayName: string 3 | actionType: "action" | "widget" | "globalData" 4 | } 5 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/AdvancedPanel/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const advancedPanelStyle = css` 4 | width: 100%; 5 | overflow-y: auto; 6 | ` 7 | -------------------------------------------------------------------------------- /apps/builder/src/utils/screen/index.ts: -------------------------------------------------------------------------------- 1 | export const MOBILE_SCREEN_WIDTH = 780 2 | 3 | export const isMobileByWindowSize = (currentWidth: number) => { 4 | return currentWidth < MOBILE_SCREEN_WIDTH 5 | } 6 | -------------------------------------------------------------------------------- /apps/cloud/src/page/setting/landing/interface.ts: -------------------------------------------------------------------------------- 1 | export interface LandingMenuItems { 2 | path: string 3 | label: string 4 | needPro?: boolean 5 | hidden?: boolean 6 | onClick?: () => void 7 | } 8 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Content-Recommendations-Agent.md: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called Content Recommendations Agent. Check it: https://illa.ai/ai-agent/ILAfx4p1C7sk/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/DistanceConverter.md: -------------------------------------------------------------------------------- 1 | # Distance Conversion 2 | It helps you input to convert in different distance units. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7rZ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Famous Birthday Twins.md: -------------------------------------------------------------------------------- 1 | # Famous birthday twins 2 | Find out famous people who share your birthday. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Tq/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/LANGUAGE PROFICIENCY PREPARE AI: -------------------------------------------------------------------------------- 1 | I just discovered an impressive AI Agent called LANGUAGE PROFICIENCY PREPARE AI. Check it: https://illa.ai/ai-agent/ILAex4p1C71E/detail 2 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Monumental Chronicles.md: -------------------------------------------------------------------------------- 1 | # Monumental Chronicles 2 | It generates a random fact about a historical monument 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7t5/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SquareRootFinder.md: -------------------------------------------------------------------------------- 1 | # Square Root Finder 2 | 3 | This AI Agent finds the square root of a given number. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ux/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/WeblyAI.md: -------------------------------------------------------------------------------- 1 | # WeblyAI 2 | Effortlessly craft and customize interactive landing pages without coding expertise. 3 | Fast Try: https://illa.ai/ai-agent/ILAex4p1C7WH/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/game-name-generator: -------------------------------------------------------------------------------- 1 | # Game Character Name Generator 2 | You need a name for your character in a video game. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Ts/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/unit-converter.md: -------------------------------------------------------------------------------- 1 | # Unit Converter 2 | Asks for a value with a unit that will be converted to another unit. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73V/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/DrugWiki.md: -------------------------------------------------------------------------------- 1 | # Drug Wiki 2 | 3 | This App can let you know the details of popular drugs as per your input. 4 | 5 | Fast try: https://illa.ai/app/ILAfx4p1C7zB/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Hex-RGB-Converter: -------------------------------------------------------------------------------- 1 | # Hex to RGB Converter 2 | Convert HEX to RGB 3 | Fast try: https://builder.illacloud.com/a3385d2894263c3a0ff9b1505b2982ed/deploy/app/ILAfx4p1C72F 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/PokemonGenerator.md: -------------------------------------------------------------------------------- 1 | # Pokemon Generator App 2 | I just discovered an impressive app called Pokemon Generator App. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7Ao/detail 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /apps/builder/src/components/ColorSetter/interface.tsx: -------------------------------------------------------------------------------- 1 | export interface ColorPickerSetterProps { 2 | value: string 3 | handleUpdateColor: (color: string) => void 4 | setterSize?: "small" | "medium" 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/CanvasPanel/interface.ts: -------------------------------------------------------------------------------- 1 | import { HTMLAttributes } from "react" 2 | 3 | export interface CanvasPanelProps extends HTMLAttributes { 4 | scale?: number 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/LeftPanel/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const leftPanelContainerStyle = css` 4 | display: flex; 5 | height: 100%; 6 | flex: none; 7 | ` 8 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/PageNavBar/CollaboratorsList/ListItem/interface.ts: -------------------------------------------------------------------------------- 1 | export interface UserListItemProps { 2 | id?: string 3 | type?: string 4 | nickname: string 5 | avatar?: string 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/DotPanel/components/DragShadowPreview/interface.ts: -------------------------------------------------------------------------------- 1 | export interface DragShadowPreviewProps { 2 | unitW: number 3 | parentDisplayName: string 4 | columns: number 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/components/Label/interface.ts: -------------------------------------------------------------------------------- 1 | export interface PanelLabelProps { 2 | labelName?: string 3 | labelDesc?: string 4 | labelSize?: "medium" | "small" 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Modules/Style/Components/AddSection/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface AddSectionProps { 4 | children: ReactNode 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/Status/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface ErrorPageProps { 4 | title: string 5 | des: string 6 | img: ReactNode 7 | children: ReactNode 8 | } 9 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/CarouselWidget/slick-carousel/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/src/widgetLibrary/CarouselWidget/slick-carousel/ajax-loader.gif -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/CarouselWidget/slick-carousel/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/src/widgetLibrary/CarouselWidget/slick-carousel/fonts/slick.eot -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/CarouselWidget/slick-carousel/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/src/widgetLibrary/CarouselWidget/slick-carousel/fonts/slick.ttf -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/CarouselWidget/slick-carousel/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code/app-illa-builder/beta/apps/builder/src/widgetLibrary/CarouselWidget/slick-carousel/fonts/slick.woff -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AI Regex generator.md: -------------------------------------------------------------------------------- 1 | # AI Regex generator 2 | This agent will be provide a regex for a given list of strings. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Xn/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/APIMaster.md: -------------------------------------------------------------------------------- 1 | # APIMaster 2 | Offer guidelines for designing clean and intuitive APIs and documenting their usage. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70e/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Astronaut.md: -------------------------------------------------------------------------------- 1 | # Astronaut 2 | An AI chatbot that is an astronaut.It tells the user about the space and the universe. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72J/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AuthorSpotlights.md: -------------------------------------------------------------------------------- 1 | # Author Spotlights 2 | Explore in-depth profiles of renowned authors and their notable works. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72I/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Code-De-Plagger.md: -------------------------------------------------------------------------------- 1 | # Code-De-Plager 2 | The task entails changing variables and removing comments from the code. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72p/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Cricket team generator.md: -------------------------------------------------------------------------------- 1 | # Cricket team generator 2 | Receive details about the cricket team you search about. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70L/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GenZSlangs.md: -------------------------------------------------------------------------------- 1 | # GenZ Slangs 2 | 3 | This AI Agent will let you know the full form of a given GenZ Slang. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uG/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Ingrain.md: -------------------------------------------------------------------------------- 1 | #Ingrain 2 | I just discovered an impressive AI Agent called Ingrain: Seasonal Ingredient Guru. 3 | 4 | Check it: https://illa.ai/ai-agent/ILAex4p1C7X2/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/MediCare.md: -------------------------------------------------------------------------------- 1 | # MediCare 2 | An AI that can provide medication recommendations based on the presented health issue. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Tv/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/QRGenerator: -------------------------------------------------------------------------------- 1 | QR Code Generator 2 | Generate a QR code with a customized URL, message, and gradient color scheme. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sH/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Story teller.md: -------------------------------------------------------------------------------- 1 | # Story teller 2 | User will provide a genre and the agent will create a story based on it. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7rt/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/personal fitness advisor: -------------------------------------------------------------------------------- 1 | # personal fitness advisor 2 | Get tailored fitness advice based on your specific goals. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ur/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/EarthLens.md: -------------------------------------------------------------------------------- 1 | # EarthLens 2 | EarthLens: Seamless Maps and Satellite Views for Precision Navigation and Exploration. 3 | Fast try: https://illa.ai/app/ILAfx4p1C714/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Github Stats.md: -------------------------------------------------------------------------------- 1 | # Github Stats Checker 2 | A website that shows User's their github stats when they enter their Username. 3 | Fast try: https://illa.ai/app/ILAgx4p1C7AA/detail -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tsconfig", 3 | "version": "0.0.0", 4 | "private": true, 5 | "license": "MIT", 6 | "publishConfig": { 7 | "access": "public" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /apps/builder/src/i18n/i18next.d.ts: -------------------------------------------------------------------------------- 1 | import "i18next" 2 | 3 | declare module "i18next" { 4 | interface CustomTypeOptions { 5 | // resources: typeof resources["en-US"] 6 | returnNull: false 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/PageNavBar/ShareAppButton/interface.ts: -------------------------------------------------------------------------------- 1 | import { AppInfoShape } from "@illa-public/public-types" 2 | 3 | export interface ShareAppButtonProps { 4 | appInfo: AppInfoShape 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/FirebasePanel/index.tsx: -------------------------------------------------------------------------------- 1 | import { FirebasePanel } from "./FirebasePanel" 2 | 3 | FirebasePanel.displayName = "FirebasePanel" 4 | export default FirebasePanel 5 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/DotPanel/components/Section/BodySection/interface.ts: -------------------------------------------------------------------------------- 1 | import { RenderBasicSectionProps } from "../interface" 2 | 3 | export type RenderSectionProps = RenderBasicSectionProps 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/ScaleSquare/components/DragContainer/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const dragContainerStyle = css` 4 | width: 100%; 5 | height: 100%; 6 | ` 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/IFrameWidget/interface.ts: -------------------------------------------------------------------------------- 1 | import { BaseWidgetProps } from "@/widgetLibrary/interface" 2 | 3 | export interface IFrameWidgetProps extends BaseWidgetProps { 4 | src: string 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/ArrayFieldTemplate/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const fieldsetStyle = css` 4 | border: none; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/cloud/src/page/workspace/components/Header/interface.tsx: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface DashboardHeaderProps { 4 | titleName: string 5 | actionGroupComponent?: ReactNode 6 | } 7 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AI Haiku generator.md: -------------------------------------------------------------------------------- 1 | # AI Haiku generator 2 | User will provide a word and the agent will create a haiku from it. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Tr/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AI-Designer: -------------------------------------------------------------------------------- 1 | # AI-Designer 2 | An AI agent that gives ideas and suggestions that are helpful to redesign the websites. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7su/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Codector.md: -------------------------------------------------------------------------------- 1 | # Codector 2 | 3 | This AI agent provide suggestions to improve a code snippet's structure and variables. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Vc/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Content Shortner.md: -------------------------------------------------------------------------------- 1 | # Short the content 2 | It will short the given content and get major context of provided text. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tT/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/EnglishToHindiTranslator.md: -------------------------------------------------------------------------------- 1 | # English to Hindi Translator 2 | Translates inputted English sentences/phrases to Hindi 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Yz/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Football-Analyst.md: -------------------------------------------------------------------------------- 1 | # Football Analyst 2 | Ai agent to predict who has a better chance of winning the upcoming match. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ue/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GetDiet.md: -------------------------------------------------------------------------------- 1 | # GetDiet 2 | Start your fitness journey with GetDiet, an AI diet planner to meet your personalized goals. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7YU/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/MeditationGuide.md: -------------------------------------------------------------------------------- 1 | # MeditationGuide 2 | Description: This prompt requests assistance in leading a meditation session. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tt/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Peom_in_hindi.md: -------------------------------------------------------------------------------- 1 | # Poem generator in hindi 2 | Create a poem by using a list of words provided by the user in hindi. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Uc/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TV series suggester: -------------------------------------------------------------------------------- 1 | # TV series suggester 2 | This AI Agent will generate TV series name that suit your current mood. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Wq/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Wireframes.md: -------------------------------------------------------------------------------- 1 | # UI/UX Wireframes 2 | Create wireframes for intuitive user interfaces and seamless user experiences. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7UN/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Yoda Translator.md: -------------------------------------------------------------------------------- 1 | # Yoda Translator 2 | Return the given prompt, but written in the manner of Yoda from Star Wars. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73D/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/cube-root-finder: -------------------------------------------------------------------------------- 1 | # Cube root finder 2 | This prompt asks the user to input a number and intends to find its cube root. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7p5/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/hashtage_generator.md: -------------------------------------------------------------------------------- 1 | "Craft strategic hashtags for sustainable living and eco-products. Boost your campaign's impact. 2 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sj/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Product CRUD App Using TiDB.md: -------------------------------------------------------------------------------- 1 | # Product CRUD App Using TiDB 2 | A simple web app which performs CRUD operations using TiDB. 3 | Fast try: https://illa.ai/app/ILAfx4p1C72T/detail 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/DataWorkspace/components/WorkSpaceTreeGroup/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const treeContainerStyle = css` 4 | font-family: "Fira Code", monospace; 5 | ` 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/AdvancedPanel/Components/Space/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const advancedPanelSpaceStyle = css` 4 | width: 100%; 5 | height: 8px; 6 | ` 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ChartWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export * from "./interface" 2 | export { CHART_WIDGET_CONFIG, CHART_WIDGET_V2_CONFIG } from "./widgetConfig" 3 | export { CHART_PANEL_CONFIG } from "./panelConfig" 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Ai-agent-finder.md: -------------------------------------------------------------------------------- 1 | # AI Agent Finder 2 | AI Agent Finder, one-stop shop for finding the perfect AI agent for all your needs. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Wn/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/C++ToARM.md: -------------------------------------------------------------------------------- 1 | # C++ to assembly language generator (ARM).md 2 | An AI agent that converts C++ code to ARM assembly language 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sT/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/CSS_To_Tailwind_CSS_Converter.md: -------------------------------------------------------------------------------- 1 | # CSS To Tailwind CSS Converter 2 | An AI Agent that coverts provided css to tailwind css. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Vh/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ChemicalFormulaGenerator.md: -------------------------------------------------------------------------------- 1 | # Chemical formula generator 2 | It helps you to understand how the chemical formula is made. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7r0/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ConstellationHelper.md: -------------------------------------------------------------------------------- 1 | # Constellation Helper 2 | 3 | This AI Agent can brief you about a particular constellation. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uI/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Deadpool.md: -------------------------------------------------------------------------------- 1 | # Deadpool 2 | The prompt requests a brief description of "Talk like a joker but with a Dark Humor in English." 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Vp/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Description writer.md: -------------------------------------------------------------------------------- 1 | # Description writer 2 | Write a concise meta description of up to 150 characters on the given topic. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C74W/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Dev Laughs.md: -------------------------------------------------------------------------------- 1 | # Dev Laughs 2 | Give it a tap, and it'll conjure a hilarious coding joke to brighten your programming journey 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ua/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GermanHistoryGuide.md: -------------------------------------------------------------------------------- 1 | # German History Guide 2 | 3 | An AI that can answer questions about German history and culture. 4 | 5 | Check it: https://illa.ai/ai-agent/ILAex4p1C7WZ/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Hindi to English Translator: -------------------------------------------------------------------------------- 1 | # hindi to english translator 2 | The prompt is to translate a given text from Hindi to English. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Wy/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/How_To_Bot.md: -------------------------------------------------------------------------------- 1 | # How To Bot 2 | An AI Agent that provides a detailed step by step guide on how to perform a particular task. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7ZD/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Interesting Harry Potter Fact.md: -------------------------------------------------------------------------------- 1 | # Interesting Harry Potter Fact 2 | This prompt generates a random Harry Potter fact 🪄 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7ZJ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Sales Presentation Slides.md: -------------------------------------------------------------------------------- 1 | # Sales Presentation Slides 2 | 3 | Hello I have created the Agent for Sales Presentation Slides 4 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sy/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SpamDetector.md: -------------------------------------------------------------------------------- 1 | # Spam Detector 2 | 3 | This AI Agent analyzes the user text and determines whether it is SPAM or HAM. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7TI/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Speed Skating Techniques.md: -------------------------------------------------------------------------------- 1 | # Speed Skating Techniques 2 | Learn proper techniques and training methods for speed skating. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Yj/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Story generator.md: -------------------------------------------------------------------------------- 1 | # Story generator 2 | This agent takes a Title of the story as a prompt and it will generate a story [Story generator](https://illa.ai/ai-agent/ILAex4p1C7Us/detail) 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Story_generator.md: -------------------------------------------------------------------------------- 1 | # Story generator 2 | This agent takes a Title of the story as a prompt and it will generate a story [Story generator](https://illa.ai/ai-agent/ILAex4p1C7Us/detail) 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Tech Stack Finder: -------------------------------------------------------------------------------- 1 | # Tech Stack Finder 2 | This AI Agent helps you find the perfect tech stack to start your next project. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Zc/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Translator: -------------------------------------------------------------------------------- 1 | # Translator 2 | This Ai agent will translate Hinglish language to English language and with grammar correction. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73W/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Translator.md: -------------------------------------------------------------------------------- 1 | # Translator 2 | Translation service allows you to convert text from any language to another language. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73G/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Word Meaning (Any Language): -------------------------------------------------------------------------------- 1 | #Word Meaning (Any Language) 2 | A word Meaning Robo that can Translate any word to English. 3 | Fast Try: https://illa.ai/ai-agent/ILAfx4p1C7qp/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/spam detector: -------------------------------------------------------------------------------- 1 | # spam detector 2 | The prompt requires the development of an AI agent that can identify and prevent spam. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ti/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Pearls-Illa-App.md: -------------------------------------------------------------------------------- 1 | # Pearl's Illa App 2 | For Initial, added random image app. It will show random image for every refresh 3 | Fast try: https://illa.ai/app/ILAgx4p1C7r4/detail 4 | 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/StatsGenerator: -------------------------------------------------------------------------------- 1 | # GitHub Stats Generator 2 | IllaApp that generates GitHub Stats 3 | Fast try: https://builder.illacloud.com/a3385d2894263c3a0ff9b1505b2982ed/deploy/app/ILAfx4p1C72U 4 | -------------------------------------------------------------------------------- /apps/builder/src/components/Modal/Footer/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface ModalFooterProps { 4 | children?: ReactNode 5 | hasFooterChildren: boolean 6 | canMove?: boolean 7 | } 8 | -------------------------------------------------------------------------------- /apps/builder/src/page/AI/components/GenerationMessage/interface.ts: -------------------------------------------------------------------------------- 1 | import { ChatMessage } from "@/page/AI/components/PreviewChat/interface" 2 | 3 | export interface GenerationMessageProps { 4 | message: ChatMessage 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/DataWorkspace/components/GlobalsSpaceTree/interface.ts: -------------------------------------------------------------------------------- 1 | export interface CreateGlobalModalProps { 2 | onClose: () => void 3 | variableName?: string 4 | actionType: "ADD" | "UPDATE" 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/Layout/GeneralPanelLayout/constants.ts: -------------------------------------------------------------------------------- 1 | export const NO_OPTIONS_HEADER = ["transformer", "globalData"] 2 | export const NO_EVENT_HANDLER = ["transformer", "globalData"] 3 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/ScaleSquare/components/AutoHeightWithLimitedContainer/interface.ts: -------------------------------------------------------------------------------- 1 | export interface AutoHeightWithLimitedContainerProps { 2 | containerHeight: number 3 | displayName: string 4 | } 5 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/PdfWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { PDF_PANEL_CONFIG } from "./panelConfig" 2 | export { PDF_WIDGET_CONFIG } from "./widgetConfig" 3 | export { PDF_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TagsWidget/components/MorePanel/interface.ts: -------------------------------------------------------------------------------- 1 | export interface MorePanelProps { 2 | values: string[] 3 | tagColorMap: Record 4 | handleOnSelect?: (v: string) => void 5 | } 6 | -------------------------------------------------------------------------------- /apps/playwright/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /test-results/ 3 | /playwright-report/ 4 | /playwright/.cache/ 5 | /test-results/ 6 | /playwright-report/ 7 | /playwright/.cache/ 8 | .env.local 9 | .env.*.local 10 | /.auth -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/App-Vision: -------------------------------------------------------------------------------- 1 | # App Vision 2 | The prompt asks for a description of an app idea with potential use cases and monetization options. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7To/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AutoSubnet.md: -------------------------------------------------------------------------------- 1 | # Auto Subnetting 2 | Provide subnetting for a network implementation or network design based on requirements. 3 | Fast Try: https://illa.ai/ai-agent/ILAex4p1C74i/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Book-Recommender.md: -------------------------------------------------------------------------------- 1 | # Book Recommender 2 | An Ai agent which will recommend books based on your mentioned topic, language, genre. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7V2/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/CapitalCityFinder.md: -------------------------------------------------------------------------------- 1 | # Region Capital Helper 2 | 3 | This AI Agent fetches the capital region of a given city or country. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uH/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/DC-Universe-Facts.md: -------------------------------------------------------------------------------- 1 | #DC Universe Facts 2 | 3 | This AI agent provide the user with some facts about their favorite DC superhero. 4 | Try it now : https://illa.ai/ai-agent/ILAfx4p1C7rg/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/FakeMultimediaDetection.md: -------------------------------------------------------------------------------- 1 | #FakeMultimediaDetection 2 | I just discovered an impressive AI Agent called Fake multimedia detection. Check it: https://illa.ai/ai-agent/ILAex4p1C712/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Food-recipe-generator.md: -------------------------------------------------------------------------------- 1 | # Food Recipe Generator 2 | A food recipe generator that generates the recipe providing the food name. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73v/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/LingoLink.md: -------------------------------------------------------------------------------- 1 | # LingoLink 2 | 3 | "LingoLink" is a chatbot project that aims to bridge language barriers and enable seamless communication between individuals who speak English and Sinhala 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/LitSleuth.md: -------------------------------------------------------------------------------- 1 | # Lit Sleuth 2 | Discover different genres of literature and explore their unique characteristics and popular works. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70n/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Objection Handling Guide.md: -------------------------------------------------------------------------------- 1 | # Object Handling Guide 2 | 3 | I just created an impressive AI Agent called Objection Handling Guide. 4 | Check it: https://illa.ai/ai-agent/ILAfx4p1C7sz/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Perfect Pen.md: -------------------------------------------------------------------------------- 1 | # Perfect pen 2 | User will provide a sentence/paragraph and the agent will check for errors and correct it. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ru/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Physics Demystified: -------------------------------------------------------------------------------- 1 | ### Physics Demystified 2 | Simplify complex physics concepts through explanations and real-world examples. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Vl/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Spanish Poem Generator.md: -------------------------------------------------------------------------------- 1 | # Spanish Poem Generator 2 | Create a poem by using a list of words provided by the user in Spanish 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Ub/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/TODO Application.md: -------------------------------------------------------------------------------- 1 | # TODO Application 2 | Navigate your tasks effortlessly with this application - your ultimate to-do companion. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7NH/detail 4 | -------------------------------------------------------------------------------- /apps/builder/src/assets/rightPagePanel/all.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/Module/DataWorkspace/components/WorkSpaceTreeGroup/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface WorkSpaceTreeGroupProps { 4 | title: string 5 | children?: ReactNode 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/PanelSetters/PublicComponent/DynamicIcon/interface.ts: -------------------------------------------------------------------------------- 1 | export interface DynamicIconProps { 2 | isDynamic: boolean 3 | onClick: () => void 4 | hasRightContent: boolean 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/AvatarWidget/utils.ts: -------------------------------------------------------------------------------- 1 | export const getSafeNode = (value: unknown) => { 2 | if (typeof value === "string" || typeof value === "number") { 3 | return `${value}` 4 | } 5 | return "" 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ChatWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { CHAT_PANEL_CONFIG } from "./panelConfig" 2 | export { CHAT_WIDGET_CONFIG } from "./widgetConfig" 3 | export { CHAT_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DateWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { DATE_WIDGET_CONFIG } from "./widgetConfig" 2 | export { DATE_PANEL_CONFIG } from "./panelConfig" 3 | export { DATE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/IconWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { ICON_PANEL_CONFIG } from "./panelConfig" 2 | export { ICON_WIDGET_CONFIG } from "./widgetConfig" 3 | export { ICON_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/MapBoxWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { MAP_PANEL_CONFIG } from "./panelConfig" 2 | export { MAP_WIDGET_CONFIG } from "./widgetConfig" 3 | export { MAP_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/MenuWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { MENU_WIDGET_CONFIG } from "./widgetConfig" 2 | export { MENU_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 3 | export { MENU_PANEL_CONFIG } from "./panelConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/RateWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { RATE_WIDGET_CONFIG } from "./widgetConfig" 2 | export { RATE_PANEL_CONFIG } from "./panelConfig" 3 | export { RATE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TableWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { TABLE_WIDGET_CONFIG } from "./widgetConfig" 2 | export { TABLE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 3 | export { TABLE_PANEL_CONFIG } from "./panelConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TabsWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { TABS_PANEL_CONFIG } from "./panelConfig" 2 | export { TABS_WIDGET_CONFIG } from "./widgetConfig" 3 | export { TABS_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TagsWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { TAGS_PANEL_CONFIG } from "./panelConfig" 2 | export { TAGS_WIDGET_CONFIG } from "./widgetConfig" 3 | export { TAGS_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TextWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { TEXT_PANEL_CONFIG } from "./panelConfig" 2 | export { TEXT_WIDGET_CONFIG } from "./widgetConfig" 3 | export { TEXT_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Book-to-Film.md: -------------------------------------------------------------------------------- 1 | Book-to-Film 2 | Explore the process of adapting books into films and discuss the merits of different adaptations. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Xf/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/BookClub-Agent.md: -------------------------------------------------------------------------------- 1 | # Blub 2 | Join online book clubs and participate in discussions about popular literary works with our AI Agent! 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70l/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Cultural Immersion experience AI: -------------------------------------------------------------------------------- 1 | # Cultural Immersion experience AI 2 | Give the complete cultural immersion experience to the user . 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C71R/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/DrugAssistant.md: -------------------------------------------------------------------------------- 1 | # Drug Assistant 2 | 3 | This AI Agent takes the name of a drug as input and returns its details to the user. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Ue/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/MovieRecommendor.md: -------------------------------------------------------------------------------- 1 | # Movie Recommender 2 | Act as a Movie Recommender. Your goal is to give the best movie recommendations to users. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Tt/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Panda-Debugger.md: -------------------------------------------------------------------------------- 1 | # Panda-Debugger 2 | AI assistant designed to assist in code debugging and help students solving difficult problems. 3 | Fast Try: https://illa.ai/ai-agent/ILAex4p1C7WM/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Positive Affirmation Generator: -------------------------------------------------------------------------------- 1 | # Positive Affirmation Generator 2 | Generates 10 daily positive affirmations about the given topic. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7wu/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/StudyBuddy.md: -------------------------------------------------------------------------------- 1 | # StudyBuddy 2 | A guide on enhancing academic productivity and performance through proven study techniques and habits. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7un/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Web Developer Helper.md: -------------------------------------------------------------------------------- 1 | # Web Developer Helper 2 | An AI agent to help beginners learn about the exciting world of Web Development. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7XW/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ai-movie-critic.md: -------------------------------------------------------------------------------- 1 | # AI Movie Critic 2 | Analyzes movies and offers in-depth reviews and recommendations based on user preferences. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C74k/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/osu! rhythm game coach.md: -------------------------------------------------------------------------------- 1 | # osu! rhythm game coach 2 | This prompt is asking for a description on how to improve at the game osu!. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7T2/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Day_Planner.md: -------------------------------------------------------------------------------- 1 | # Day_Planner Application 2 | Navigate your tasks effortlessly with this application - your ultimate Day_Planner companion. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7NH/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/GiftSwap.md: -------------------------------------------------------------------------------- 1 | # GiftSwap 2 | Create a guest list for a gift swap. View the list. Simple for demo for now. Uses appwrite for the database. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7Ze/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Github Issue Finder.md: -------------------------------------------------------------------------------- 1 | # Github Issue Finder 2 | A issue finder app which find open issues on github made using illa builder and github api 3 | Fast try: https://illa.ai/app/ILAfx4p1C7IB/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Sentimental.md: -------------------------------------------------------------------------------- 1 | # Sentimental 2 | 3 | This app takes the user input and returns the sentiment of the text after successful analysis. 4 | 5 | Fast try: https://illa.ai/app/ILAfx4p1C7zG/detail 6 | -------------------------------------------------------------------------------- /apps/builder/src/components/DriveFileSelect/interface.ts: -------------------------------------------------------------------------------- 1 | import { IILLAFileInfo } from "@/services/drive" 2 | 3 | export type FileToPanel = Pick< 4 | IILLAFileInfo, 5 | "id" | "lastModifiedAt" | "name" | "size" | "type" 6 | > 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/S3Panel/interface.ts: -------------------------------------------------------------------------------- 1 | import { S3ActionTypeContent } from "@illa-public/public-types" 2 | 3 | export interface S3ActionPartProps { 4 | commandArgs: S3ActionTypeContent 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/redux/guide/guideState.ts: -------------------------------------------------------------------------------- 1 | export interface Guide { 2 | currentStep: number 3 | isOpen: boolean 4 | } 5 | 6 | export const GuideInitialState: Guide = { 7 | currentStep: 0, 8 | isOpen: false, 9 | } 10 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/AudioWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { AUDIO_WIDGET_CONFIG } from "./widgetConfig" 2 | export { AUDIO_PANEL_CONFIG } from "./panelConfig" 3 | export { AUDIO_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ButtonWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { BUTTON_WIDGET_CONFIG } from "./widgetConfig" 2 | export { BUTTON_PANEL_CONFIG } from "./panelConfig" 3 | export { BUTTON_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ImageWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { IMAGE_WIDGET_CONFIG } from "./widgetConfig" 2 | export { IMAGE_PANEL_CONFIG } from "./panelConfig" 3 | export { IMAGE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/InputWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { INPUT_PANEL_CONFIG } from "./panelConfig" 2 | export { INPUT_WIDGET_CONFIG } from "./widgetConfig" 3 | export { INPUT_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/SelectWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { SELECT_PANEL_CONFIG } from "./panelConfig" 2 | export { SELECT_WIDGET_CONFIG } from "./widgetConfig" 3 | export { SELECT_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/SliderWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { SLIDER_PANEL_CONFIG } from "./panelConfig" 2 | export { SLIDER_WIDGET_CONFIG } from "./widgetConfig" 3 | export { SLIDER_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/StepsWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { STEPS_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 2 | export { STEPS_PANEL_CONFIG } from "./panelConfig" 3 | export { STEPS_WIDGET_CONFIG } from "./widgetConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/SwitchWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { SWITCH_WIDGET_CONFIG } from "./widgetConfig" 2 | export { SWITCH_PANEL_CONFIG } from "./panelConfig" 3 | export { SWITCH_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/UploadWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { UPLOAD_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 2 | export { UPLOAD_PANEL_CONFIG } from "./panelConfig" 3 | export { UPLOAD_WIDGET_CONFIG } from "./widgetConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/VideoWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { VIDEO_WIDGET_CONFIG } from "./widgetConfig" 2 | export { VIDEO_PANEL_CONFIG } from "./panelConfig" 3 | export { VIDEO_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | pull_request_title: "[ci skip] New Crowdin translations" 2 | commit_message: "[ci skip]" 3 | files: 4 | - source: /apps/builder/src/i18n/locale/en-US.json 5 | translation: /apps/builder/src/i18n/locale/%locale%.json 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AchieveWithEmma.md: -------------------------------------------------------------------------------- 1 | # Achieve With Emma 2 | Achieve your goals now with step-by-step planning and guidance in achieving those goals. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7ZY/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Competitor-Analyser: -------------------------------------------------------------------------------- 1 | # Personalized Workout Generator 2 | An AI Agent that generates Personalized Workouts based on you body type and Goals. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7XP/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Conducting User Interviews: -------------------------------------------------------------------------------- 1 | # Conducting User Interviews 2 | 3 | I just discovered an impressive AI Agent called Conducting User Interviews. Check it: https://illa.ai/ai-agent/ILAex4p1C7VI/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ContentRecommender.md: -------------------------------------------------------------------------------- 1 | # Content Recommender 2 | This AI suggests books, movies, music, or other content based on a user's feeling or genre. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7W5/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Cooking for Special Diets.md: -------------------------------------------------------------------------------- 1 | # Cooking for Special Diets 2 | 3 | I just discovered an impressive AI Agent called Cooking for Special Diets. Check it: https://illa.ai/ai-agent/ILAex4p1C7XY/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/English to Hindi Translator.md: -------------------------------------------------------------------------------- 1 | # English to Hindi Translator 2 | Translates English text into Hindi using ChatGpt 3.5 turbo model. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7VJ/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Female Tech Entrepreneur.md: -------------------------------------------------------------------------------- 1 | # Female Tech Entrepreneur 2 | Output: Generate technology companies founded by women from a specified country. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7TK/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/German Word-Assistant.md: -------------------------------------------------------------------------------- 1 | # German Word-Assistant 2 | Explain German words by explaining its parts, or by relating to other similar words. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7vO/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Innovator.md: -------------------------------------------------------------------------------- 1 | # Innovator 2 | Your AI partner for creative product designs, crafting solutions with style, sustainability, and user focus. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C71A/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Language Learning Challenges.md: -------------------------------------------------------------------------------- 1 | # Language Learning Challenges 2 | Learn a new language with a set of challenges to keep you motivated. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C71V/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Latest Scientific Discoveries.md: -------------------------------------------------------------------------------- 1 | # Latest Scientific Discoveries 2 | Learn about the latest discovery in a particular field of science. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C71U/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/League of Legends Champion Recommender.md: -------------------------------------------------------------------------------- 1 | # League of Legends Champion Recommender 2 | 3 | Recommends a champion based on user input 4 | 5 | ai-link: https://illa.ai/ai-agent/ILAfx4p1C7sX/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Otaku_Senpai.md: -------------------------------------------------------------------------------- 1 | # Otaku_Senpai 2 | Takes an anime name from the user and then suggests the user anime series with similar story/genre. 3 | Check it: https://illa.ai/ai-agent/ILAex4p1C7ZG/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Password_History_Tracker.md: -------------------------------------------------------------------------------- 1 | # Password History Tracker 2 | I just discovered an impressive AI Agent called Password History Tracking . 3 | Check it: https://illa.ai/ai-agent/ILAex4p1C73g/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/PoemGeneratorApp.md: -------------------------------------------------------------------------------- 1 | # Poem Generator App 2 | 3 | Act as a Poet. Your goal is to give the best poem using the words given by the user. 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7TY/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Study Roadmap: -------------------------------------------------------------------------------- 1 | # Study Roadmap 2 | Select a topic and proficiency level (beginner/medium/advanced), and receive a structured learning plan. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sn/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Translator2.md: -------------------------------------------------------------------------------- 1 | # Translator 2 | The prompt is requesting a description of a service or tool that can translate English text into French. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7v1/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Your Anxiety Buddy: -------------------------------------------------------------------------------- 1 | # Your Anxiety Buddy 2 | A Buddy who is also a mental health guru to guide you through the stresses of everyday life. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Vv/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/job-interview-preparation.md: -------------------------------------------------------------------------------- 1 | # Job Interview Preparation 2 | 3 | An AI interview coach that helps users prepare for job interviews. 4 | 5 | Check it: https://illa.ai/ai-agent/ILAex4p1C7W0/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/CheatCodeGenius: -------------------------------------------------------------------------------- 1 | The CheatCodeGenius is a powerful tool that simplifies the process of finding cheat codes for your favorite video game. 2 | 3 | Check it: https://illa.ai/app/ILAfx4p1C75T/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/SpamDetection.md: -------------------------------------------------------------------------------- 1 | # Spam Detection App 2 | 3 | This App analyzes your text content and determines whether the given text is SPAM or HAM. 4 | 5 | Fast try: https://illa.ai/app/ILAfx4p1C7AU/detail 6 | -------------------------------------------------------------------------------- /apps/builder/src/assets/radius-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /apps/builder/src/components/CodeEditor/utils.ts: -------------------------------------------------------------------------------- 1 | export const fixedValue = (value: unknown) => { 2 | if (value == undefined) return "" 3 | if (typeof value === "string") return value 4 | return `{{${JSON.stringify(value)}}}` 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/components/FolderOperateModal/constants.ts: -------------------------------------------------------------------------------- 1 | export const FOLDER_LIST_CONTAINER_HEIGHT = 224 2 | export const FOLDER_LIST_ITEM_HEIGHT = 32 3 | export const FOLDER_LIST_LIMIT_IN_MODAL = 10 4 | export const ROOT_PATH = "root" 5 | -------------------------------------------------------------------------------- /apps/builder/src/page/AI/components/ChatContext/interface.ts: -------------------------------------------------------------------------------- 1 | import { CollaboratorsInfo } from "@/redux/currentApp/collaborators/collaboratorsState" 2 | 3 | export interface ChatContextProps { 4 | inRoomUsers: CollaboratorsInfo[] 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/AI/components/UserMessage/interface.ts: -------------------------------------------------------------------------------- 1 | import { ChatMessage } from "@/page/AI/components/PreviewChat/interface" 2 | 3 | export interface UserMessageProps { 4 | message: ChatMessage 5 | isMobile: boolean 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/Layout/HorizontalWithLabel/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface HorizontalWithLabelProps { 4 | labelName: string 5 | children: ReactNode 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/ConfigPanel/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const configPanelStyle = css` 4 | width: 100%; 5 | height: 100%; 6 | overflow: hidden; 7 | padding-bottom: 48px; 8 | ` 9 | -------------------------------------------------------------------------------- /apps/builder/src/page/Resource/CreateOrEdit/interface.ts: -------------------------------------------------------------------------------- 1 | import { ResourceType } from "@illa-public/public-types" 2 | 3 | export interface ResourceCreateOrEditPanelProps { 4 | resourceType: ResourceType 5 | resourceID?: string 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/utils/routerHelper.ts: -------------------------------------------------------------------------------- 1 | import { ILLARoute } from "@/router" 2 | 3 | export const getParamsFromIllaRoute = (key: string) => { 4 | const routerParams = ILLARoute.state.matches[0].params 5 | return routerParams[key] 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ChartWidget/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const chartContainerStyle = (bgColor: string) => css` 4 | background-color: ${bgColor}; 5 | width: 100%; 6 | height: 100%; 7 | ` 8 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DividerWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { DIVIDER_WIDGET_CONFIG } from "./widgetConfig" 2 | export { DIVIDER_PANEL_CONFIG } from "./panelConfig" 3 | export { DIVIDER_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/JsonSchemaFormWidget/@illadesign-ui/templates/IconButton/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const iconButtonStyle = css` 4 | padding: 5px 16px; 5 | width: auto !important; 6 | ` 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/QRCodeWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { QR_CODE_PANEL_CONFIG } from "./panelConfig" 2 | export { QR_CODE_WIDGET_CONFIG } from "./widgetConfig" 3 | export { QR_CODE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Career_Compass.md: -------------------------------------------------------------------------------- 1 | # Career Compass 2 | Select the subjects you are interested in and get a list of the career options available to pursue for you. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sr/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/CodeDebugger.md: -------------------------------------------------------------------------------- 1 | # Code Test & Debugger 2 | Our Agent provides techniques for writing effective unit tests and debugging complex code issues. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Xu/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Create chess player generator.md: -------------------------------------------------------------------------------- 1 | # Chess players generator 2 | This AI agent will generate the famous chess players from different countries. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7XN/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/DataVisualizationAgent: -------------------------------------------------------------------------------- 1 | This agent generates python code specific for streamlit to generate data visualizations on a specified dataframe. 2 | 3 | Check it: https://illa.ai/ai-agent/ILAex4p1C7Vw/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Decimal to Binary converter.md: -------------------------------------------------------------------------------- 1 | #Decimal to Binary converter 2 | This prompt will accept a decimal number and convert it into binary number. 3 | Fast-try : https://illa.ai/ai-agent/ILAfx4p1C7uX/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Famous Football Players Generator.md: -------------------------------------------------------------------------------- 1 | # Famous Football Players Generator 2 | AI agent that generates list of top football players from europe. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7YE/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GameConceptDesigner-GPT.md: -------------------------------------------------------------------------------- 1 | # GameConceptDesigner-GPT 2 | To generate some game design initial ideas in paragraphs, on user-provided genres. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C75l/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Humorous Fact.md: -------------------------------------------------------------------------------- 1 | # Fun Facts 2 | It return fun facts about a specific place, including historical moments and unique aspects in a humorous way. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ui/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Humorous Facts: -------------------------------------------------------------------------------- 1 | # Fun Facts 2 | It return fun facts about a specific place, including historical moments and unique aspects in a humorous way. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ui/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Job-Seeker-Outreach-Assistant.md: -------------------------------------------------------------------------------- 1 | # Job Seeker Outreach Assistant 2 | Craft a personalized outreach message on LinkedIn to engage the recipient. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C71J/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/LegalAdvisor.md: -------------------------------------------------------------------------------- 1 | # Legal Advisor 2 | Assists with legal research, document drafting, and compliance checks for legal professionals and businesses 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C721/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Movie-Guider.md: -------------------------------------------------------------------------------- 1 | # Movie Guider 2 | This AI Tells the best movies with respect to the user input of Genre, Hollywood or Bollywood, movie year. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sS/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/OptiTechPro.md: -------------------------------------------------------------------------------- 1 | # OptiTechPro 2 | OptiTechPro: Your software optimization advisor. Boost application performance with expert tips and techniques. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7YO/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/PrimeCompositeNumberHelper.md: -------------------------------------------------------------------------------- 1 | # Prime/Composite Number Helper 2 | 3 | This AI Agent finds whether the given number is prime or composite. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uF/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Product Analyzer.md: -------------------------------------------------------------------------------- 1 | # Product Analyzer 2 | Generate a sample report on a competitor's product usability by analyzing online customer reviews. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73o/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Teacher.md: -------------------------------------------------------------------------------- 1 | # Teacher 2 | The prompt requests to be taught about a specific topic, followed by a quiz at the end and the provision of answers. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73p/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Techo: -------------------------------------------------------------------------------- 1 | # Techo 2 | assistance in guiding individuals on maximizing their use of available technologies by providing easy-to-follow instructions. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C71H/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/quantum-education-resource.md: -------------------------------------------------------------------------------- 1 | # Quantum Education Resource 2 | Provide resources and learning materials for those interested in quantum topics. 3 | Check it: https://illa.ai/ai-agent/ILAex4p1C7W2/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/routines-pal.md: -------------------------------------------------------------------------------- 1 | #Routine Pal 2 | This agent is about helping parents to create a personalized daily routine for teenagers with autism. 3 | 4 | Give it a try: https://illa.ai/ai-agent/ILAex4p1C73O/detail 5 | -------------------------------------------------------------------------------- /packages/tsconfig/react.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://json.schemastore.org/tsconfig", 3 | "display": "EmotionReact", 4 | "extends": "./base.json", 5 | "compilerOptions": { 6 | "jsxImportSource": "@emotion/react" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/DotPanel/components/ComponentParser/interface.ts: -------------------------------------------------------------------------------- 1 | export interface ComponentParserProps { 2 | displayName: string 3 | unitW: number 4 | parentNodeDisplayName: string 5 | columnNumber: number 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/utils/navigate/index.ts: -------------------------------------------------------------------------------- 1 | export const handleLinkOpen = (link: string) => { 2 | window.open(link, "_blank") 3 | } 4 | 5 | export const openDiscord = () => { 6 | handleLinkOpen("https://discord.com/invite/illacloud") 7 | } 8 | -------------------------------------------------------------------------------- /apps/builder/src/utils/storage.ts: -------------------------------------------------------------------------------- 1 | import ILLAStorage from "@illa-public/illa-storage" 2 | 3 | export const ILLABuilderStorage = new ILLAStorage(`ILLABuilder@0.0.0`, 5) 4 | 5 | export const CUSTOM_STORAGE_PREFIX = "ILLABuilderCustomStorage" 6 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/CarouselWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { CAROUSEL_WIDGET_CONFIG } from "./widgetConfig" 2 | export { CAROUSEL_PANEL_CONFIG } from "./panelConfig" 3 | export { CAROUSEL_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DataGridWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { DATA_GRID_PANEL_CONFIG } from "./panelConfig" 2 | export { DATA_GRID_WIDGET_CONFIG } from "./widgetConfig" 3 | export { DATA_GRID_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/PublicSector/containerStyle.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const containerStyle = css` 4 | display: flex; 5 | width: 100%; 6 | align-items: center; 7 | justify-content: end; 8 | ` 9 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/RecordingWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { RECORDING_PANEL_CONFIG } from "./panelConfig" 2 | export { RECORDING_WIDGET_CONFIG } from "./widgetConfig" 3 | export { RECORDING_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/RichTextWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { RICH_TEXT_PANEL_CONFIG } from "./panelConfig" 2 | export { RICH_TEXT_WIDGET_CONFIG } from "./widgetConfig" 3 | export { RICH_TEXT_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TextAreaWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { TEXTAREA_PANEL_CONFIG } from "./panelConfig" 2 | export { TEXTAREA_WIDGET_CONFIG } from "./widgetConfig" 3 | export { TEXTAREA_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TimelineWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { TIMELINE_PANEL_CONFIG } from "./panelConfig" 2 | export { TIMELINE_WIDGET_CONFIG } from "./widgetConfig" 3 | export { TIMELINE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AIM - Jailbreak CHATGPT.md: -------------------------------------------------------------------------------- 1 | # AIM - Jailbreak CHATGPT 2 | AIM, as an amoral and Machiavellian chatbot. Jailbreak, Jailbreakchat, chat, gpt, jailbreaks 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7cU/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AIOptima.md: -------------------------------------------------------------------------------- 1 | # AIOptima 2 | 3 | AIOptima is your intelligent companion for enhancing productivity, gaining knowledge, and simplifying everyday tasks. 4 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tm/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ATCgt: -------------------------------------------------------------------------------- 1 | # ATCgt 2 | You are a professional air traffic controller and your role involves managing the safety and efficiency of aircraft operations. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7YT/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Analytical writing Bot: -------------------------------------------------------------------------------- 1 | # Analytical writing Bot 2 | Develop an analytical writing piece consisting of a specific number of words on a given topic. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7TH/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Book-to-Film Adaptations: -------------------------------------------------------------------------------- 1 | # Book adaptations 2 | Explore the process of adapting books into films and discuss the merits of different adaptations. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7WP/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/BookRecommendationEngine.md: -------------------------------------------------------------------------------- 1 | # Book Recommendation generator 2 | Receive personalised book recommendations based on your favourite genres and authors. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72n/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/English-to-Bangla-Translator.md: -------------------------------------------------------------------------------- 1 | # English to Bangla Translator 2 | 3 | 4 | I just created an impressive AI Agent called English to Bangla Translator . Check it: https://illa.ai/ai-agent/ILAex4p1C7XR/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GitHub_Profile_Readme_Generator.md: -------------------------------------------------------------------------------- 1 | # GitHub Profile README Generator 2 | 3 | Create a visually appealing README file for your GitHub profile. 4 | 5 | Check it: https://illa.ai/ai-agent/ILAex4p1C73Y/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Ice_Skater.md: -------------------------------------------------------------------------------- 1 | # IceSkater 2 | Chat with a dedicated ice skating instructor to learn the basics, considering weather conditions and location/date. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7YV/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Personalise Learning system.md: -------------------------------------------------------------------------------- 1 | # Personalise Learning system 2 | A platform where users can ask questions and receive personalized AI-driven answers 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7TR/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/RandomPhrasePass.md: -------------------------------------------------------------------------------- 1 | Create strong yet memorable passwords with our RandomPhrasePass, a user-friendly tool for unique and secure access credentials." 2 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sh/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/RecipeInspirationGenerator.md: -------------------------------------------------------------------------------- 1 | #Recipe Inspiration Generator 2 | Discover new and exciting recipes based on your preferences and dietary restrictions. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C71M/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Text2Hindi.md: -------------------------------------------------------------------------------- 1 | # Text2Hindi 2 | 3 | Translates the given English sentences into Hindi without providing explanations or considering the meaning of the input. 4 | https://illa.ai/ai-agent/ILAex4p1C7YA/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TravelLighter: -------------------------------------------------------------------------------- 1 | # TravelLighter 2 | AI agent to help you travel light on your pocket! Best budget hacks to get you going without breaking the bank. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7so/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/UsabilityTestingScript.md: -------------------------------------------------------------------------------- 1 | # Usability Testing Script 2 | Develop a script for usability tests, assessing the user experience of a product or feature. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7UO/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/YouTube Script Generator.md: -------------------------------------------------------------------------------- 1 | # YouTube Script Generator 2 | An AI Agent that generates a detailed script for a YouTube video for any provided topic. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C730/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/career-roadmap-generator.md: -------------------------------------------------------------------------------- 1 | # career roadmap generator 2 | Ask the user for career name they want to follow and provide the roadmap to achieve it. 3 | Check it: https://illa.ai/ai-agent/ILAex4p1C7VR/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/productivitySongs: -------------------------------------------------------------------------------- 1 | # productivitySongs 2 | Get random songs to increase your focus and productivity and you can work on your task for a long time. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73b/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/smith_the_converter: -------------------------------------------------------------------------------- 1 | # SmithTheConverter 2 | Smith is a AI assisted currency converter that helps you convert the amount from one curreny to another. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7wy/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Predict Number: -------------------------------------------------------------------------------- 1 | # Predict Number 2 | Predict the Number" is a fun and challenging app that tests your guessing skills. Are you good at estimating numbers? 3 | Fast try: https://illa.ai/app/ILAfx4p1C7GC/detail 4 | -------------------------------------------------------------------------------- /apps/builder/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | settings: { 4 | "import/resolver": { 5 | typescript: { 6 | project: "./tsconfig.json", 7 | } 8 | }, 9 | }, 10 | extends: ["illa"], 11 | } 12 | -------------------------------------------------------------------------------- /apps/builder/src/assets/border.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /apps/builder/src/components/CodeEditor/CodeMirror/extensions/completionSources/ILLAContextDesc/index.tsx: -------------------------------------------------------------------------------- 1 | import { ILLA_UTILS_DESC } from "./utils" 2 | 3 | export const ILLAContextDesc: Record = { 4 | utils: ILLA_UTILS_DESC, 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Components/PanelActionBar/interface.ts: -------------------------------------------------------------------------------- 1 | export interface PanelActionBarProps { 2 | isFixed: boolean 3 | hasPanel: boolean 4 | addPanelAction: () => void 5 | deletePanelAction: () => void 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/ContainerWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { CONTAINER_WIDGET_CONFIG } from "./widgetConfig" 2 | export { CONTAINER_PANEL_CONFIG } from "./panelConfig" 3 | export { CONTAINER_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DateRangeWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { DATE_RANGE_WIDGET_CONFIG } from "./widgetConfig" 2 | export { DATE_RANGE_PANEL_CONFIG } from "./panelConfig" 3 | export { DATE_RANGE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DateTimeWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { DATE_TIME_WIDGET_CONFIG } from "./widgetConfig" 2 | export { DATE_TIME_PANEL_CONFIG } from "./panelConfig" 3 | export { DATE_TIME_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/PublicSector/TooltipWrapper/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface TooltipWrapperProps { 4 | children?: ReactNode 5 | tooltipText?: string 6 | tooltipDisabled?: boolean 7 | } 8 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/SignatureWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { SIGNATURE_WIDGET_CONFIG } from "./widgetConfig" 2 | export { SIGNATURE_PANEL_CONFIG } from "./panelConfig" 3 | export { SIGNATURE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TimeRangeWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { TIME_RANGE_WIDGET_CONFIG } from "./widgetConfig" 2 | export { TIME_RANGE_PANEL_CONFIG } from "./panelConfig" 3 | export { TIME_RANGE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/cloud/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | settings: { 4 | "import/resolver": { 5 | typescript: { 6 | project: "./tsconfig.json", 7 | } 8 | }, 9 | }, 10 | extends: ["illa"], 11 | } 12 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AI Health-Agent.md: -------------------------------------------------------------------------------- 1 | # AI Health-Agent 2 | An AI agent that can provide basic medical advice and information based on user symptoms and medical knowledge. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7qf/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/BioBuddy.md: -------------------------------------------------------------------------------- 1 | # BioBuddy 2 | This agent helps in learning fundamental concepts and principles of biology, including cell structure, genetics, and evolution. 3 | Fast Try: https://illa.ai/ai-agent/ILAex4p1C72P/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ChemWiz.md: -------------------------------------------------------------------------------- 1 | # ChemWiz 2 | Explore the fascinating world of chemistry from the comfort of your home with our collection of safe and engaging experiments. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Z5/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Code Converter.md: -------------------------------------------------------------------------------- 1 | # Code Converter 2 | Convert the given code snippet from the specified {{from}} code language to the specified {{to}} code language. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C75d/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/EarthWiseAI.md: -------------------------------------------------------------------------------- 1 | # EarthWiseAI 2 | EarthWiseAI: Explore Earth's wonders. Uncover geology, weather, and natural phenomena mysteries with AI-guided insights. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7ZZ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/English to Sinhala Translator.md: -------------------------------------------------------------------------------- 1 | # English to Sinhala Translator 2 | Translate the given English text prompt to Sinhala using your skills as a translator. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Vq/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Environmental Conservation.md: -------------------------------------------------------------------------------- 1 | # Environmental Conservation 2 | Explore topics related to environmental conservation, sustainability, and climate change. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72C/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/F.R.I.E.N.D.S quotes generator 🫰.md: -------------------------------------------------------------------------------- 1 | # F.R.I.E.N.D.S quotes generator 🫰 2 | Generates a random iconic quote from the famous 90's sitcom F.R.I.E.N.D.S 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7XZ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Marvel-comic-universe-facts.md: -------------------------------------------------------------------------------- 1 | #Marvel Comic Universe Facts 2 | 3 | This AI agent provide the user with some facts about their favourite Marvel superhero. 4 | Try it now : https://illa.ai/ai-agent/ILAfx4p1C7ri/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Meeting Agenda Maker.md: -------------------------------------------------------------------------------- 1 | # Meeting Agenda Maker 2 | The prompt asks for examples to include in an agenda for a team meeting discussing {{Meeting-info}}. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73q/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/MentalConditioning.md: -------------------------------------------------------------------------------- 1 | # Mental Conditioning 2 | Learn techniques for improving focus, concentration, and overall performance through mental conditioning. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7vs/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/MoneyKing: -------------------------------------------------------------------------------- 1 | # MoneyKing 2 | Your AI Financial Advisor: Tailored investments, real-time market insights, and expert guidance for a secure financial future. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72U/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Nature.md: -------------------------------------------------------------------------------- 1 | # Nature 2 | Imagine having a friend who is always there to chat, provide useful information, and even crack a joke when you need a good laugh. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72w/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Personalized-Workout-Generator.md: -------------------------------------------------------------------------------- 1 | # Personalized Workout Generator 2 | An AI Agent that generates Personalized Workouts based on you body type and Goals. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Zw/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SportsPsychology.md: -------------------------------------------------------------------------------- 1 | # Sports Psychology 2 | Learn about the psychological aspects of sports, including motivation, confidence, and goal-setting. 3 | 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70G/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/data-storytelling.md: -------------------------------------------------------------------------------- 1 | # Data Storytelling 2 | This prompt asks for advice on how to effectively communicate data insights by creating engaging narratives. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7VW/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/email Marketing Automation: -------------------------------------------------------------------------------- 1 | # Email Marketing Automation 2 | Suggest ways to automate and optimize email marketing campaigns for better conversion rates... 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sw/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/grammar corrector: -------------------------------------------------------------------------------- 1 | # grammar corrector 2 | The prompt is requesting a description of a grammar corrector, without providing any further specifications. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tf/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/html to jsx converter: -------------------------------------------------------------------------------- 1 | # HTML to JSX converter 2 | This prompt asks the user to provide a description for an AI agent that converts code from HTML to JSX 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7vQ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/kannada.md: -------------------------------------------------------------------------------- 1 | # English to Kannada Translator 2 | Translate "{{input}}" to Kannada language. This Ai agent will take English text and translated to Kannada. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Wr/detail 4 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/MongoDbPanel/interface.ts: -------------------------------------------------------------------------------- 1 | import { MongoDbActionTypeContent } from "@illa-public/public-types" 2 | 3 | export interface MongoDbActionPartProps { 4 | typeContent: MongoDbActionTypeContent 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Modules/Style/Components/DirectionPaddingSetter/interface.ts: -------------------------------------------------------------------------------- 1 | export interface DirectionPaddingSetterProps { 2 | isAll: boolean 3 | value: string 4 | handleUpdateValue: (value: string) => void 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/EditableWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { EDITABLE_TEXT_WIDGET_CONFIG } from "./widgetConfig" 2 | export { EDITABLE_TEXT_PANEL_CONFIG } from "./panelConfig" 3 | export { EDITABLE_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/IFrameWidget/eventHandlerConfig.ts: -------------------------------------------------------------------------------- 1 | import { EventHandlerConfig } from "@/widgetLibrary/interface" 2 | 3 | export const IFRAME_EVENT_HANDLER_CONFIG: EventHandlerConfig = { 4 | events: [], 5 | methods: ["setSrc"], 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/JsonEditorWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { JSON_EDITOR_PANEL_CONFIG } from "./panelConfig" 2 | export { JSON_EDITOR_WIDGET_CONFIG } from "./widgetConfig" 3 | export { JSON_EDITOR_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/MultiselectWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { MULTISELECT_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 2 | export { MULTISELECT_PANEL_CONFIG } from "./panelConfig" 3 | export { MULTISELECT_WIDGET_CONFIG } from "./widgetConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/PdfWidget/eventHandlerConfig.ts: -------------------------------------------------------------------------------- 1 | import { EventHandlerConfig } from "@/widgetLibrary/interface" 2 | 3 | export const PDF_EVENT_HANDLER_CONFIG: EventHandlerConfig = { 4 | events: [], 5 | methods: ["setFileUrl"], 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/RadioGroupWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { RADIO_GROUP_PANEL_CONFIG } from "./panelConfig" 2 | export { RADIO_GROUP_WIDGET_CONFIG } from "./widgetConfig" 3 | export { RADIO_GROUP_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/StatisticsWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { STATISTICS_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 2 | export { STATISTICS_PANEL_CONFIG } from "./panelConfig" 3 | export { STATISTICS_WIDGET_CONFIG } from "./widgetConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/TimePickerWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { TIME_PICKER_WIDGET_CONFIG } from "./widgetConfig" 2 | export { TIME_PICKER_PANEL_CONFIG } from "./panelConfig" 3 | export { TIME_PICKER_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/cloud/src/page/setting/layout/mobile/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface SettingMobileLayoutProps { 4 | children: ReactNode 5 | navRight?: ReactNode 6 | withoutPadding?: boolean 7 | title?: string 8 | } 9 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Anime Recommendations.md: -------------------------------------------------------------------------------- 1 | # Anime Recommendations 2 | Generate anime recommendations based on the choice entered by the user or the studio name of the anime. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sY/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AutomatedCodeReviewer.md: -------------------------------------------------------------------------------- 1 | # Automated Code Reviewer: 2 | An AI agent that reviews code for bugs, security vulnerabilities, and adherence to coding standards. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7sm/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Blog Post Title Generator.md: -------------------------------------------------------------------------------- 1 | # Blog Post Title Generator 2 | Suggest a list of blog post title ideas for the primary keyword relevant to the targeted audience. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C75e/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/BookstoreandLibraryGuides.md: -------------------------------------------------------------------------------- 1 | # Bookstore and Library Guides 2 | 3 | Find recommendations for must-visit bookstores and libraries around the world. 4 | 5 | 6 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7X1/detail 7 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/BrandCraftAI.md: -------------------------------------------------------------------------------- 1 | # BrandCraftAI 2 | BrandCraftAI: Your brand messaging expert. Craft compelling messages and strategic positioning statements for your brand. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Yo/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Coin_Sage.md: -------------------------------------------------------------------------------- 1 | # Coin Sage 2 | Unlock financial success with Coin Sage: Your trusted guide for wealth, investments, and financial freedom. Get ready to prosper! 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7WS/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Colour-Palette-Provider.md: -------------------------------------------------------------------------------- 1 | # Colour Palette Provider 2 | The prompt asks for the provision of a color palette suitable for a technology-themed application. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7rY/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Cooking-Techniques-and-Tips.md: -------------------------------------------------------------------------------- 1 | # Cooking Techniques and Tips 2 | This prompt act as a professional cook and share tips and techniques on the topic of cooking. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Yy/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/EnvironmentalConservation.md: -------------------------------------------------------------------------------- 1 | # Environ 2 | An AI Agent that explore topics related to environmental conservation, sustainability, and climate change. 3 | 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7rC/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GRAMMAR INSTRUCTOR.md: -------------------------------------------------------------------------------- 1 | # Grammar Instructor 2 | 3 | AI instructor to Strengthen your understanding of grammar and syntax rules in the language you're learning. 4 | Link: https://illa.ai/ai-agent/ILAex4p1C71g/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GameReadyPro.md: -------------------------------------------------------------------------------- 1 | # GameReadyPro 2 | GameReadyPro: Elevate your sports performance. Explore pre-game routines and techniques to dominate on the field or court. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7ZQ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/IceRinkEtiquetteAndSafety.md: -------------------------------------------------------------------------------- 1 | # Ice Rink Etiquette and Safety 2 | Learn about ice rink etiquette and safety guidelines to ensure a positive skating experience. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C702/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Lit.md: -------------------------------------------------------------------------------- 1 | # Lit🔥 2 | 3 | Dive into the world of literary analysis with our AI Agent and critique by studying themes, symbolism, and writing styles. 4 | 5 | 6 | Fast try: https://illa.ai/ai-agent/ILAex4p1C71D/detail 7 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Multiple Musical Instruments Learning.md: -------------------------------------------------------------------------------- 1 | # Multiple Musical Instruments Learning 2 | This AI Agent allows you to learn the basics of any musical instrument. Check it out: https://illa.ai/ai-agent/ILAex4p1C7VD/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/SciCompPhysXpert.md: -------------------------------------------------------------------------------- 1 | # SciCompPhysXpert 2 | An agent is needed to deliver comprehensive knowledge on various subjects including science, computing, and physics 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72i/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Social Campaigns: -------------------------------------------------------------------------------- 1 | # Social Campaigns 2 | This Ai agent gives you amazing and unique ideas for your social media campaigns and attract their targeted audience. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7XQ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TextSentimentAnalyzer.md: -------------------------------------------------------------------------------- 1 | # Sentiment Analyzer 2 | 3 | This AI Agent takes a user text as input and then returns its sentiment as output after analysis. 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Ug/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Thai_Translator.md: -------------------------------------------------------------------------------- 1 | # Translator ( ENGLISH to THAI) 2 | 3 | This prompt asks for a description of how to translate English to Thai in less than 100 words. 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Yr/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/WP Snippet Generator: -------------------------------------------------------------------------------- 1 | # WP Snippet Generator 2 | WP Snippet Generator: A tool for generating WordPress code snippets, assisting theme and plugin developers. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C75h/detail 4 | -------------------------------------------------------------------------------- /apps/builder/src/components/Iframe/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const loadingStyle = css` 4 | width: 100%; 5 | height: 100%; 6 | display: flex; 7 | align-items: center; 8 | justify-content: center; 9 | ` 10 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/PanelSetters/DriveSourceGroupSetter/constants.ts: -------------------------------------------------------------------------------- 1 | export const PAGESIZE = 10 2 | export const COLOR_SCHEME = "techPurple" 3 | export enum DRIVE_SOURCE_MODE { 4 | URL = "url", 5 | UPLOAD = "upload", 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/ScaleSquare/components/WrapperContainer/interface.ts: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react" 2 | 3 | export interface WrapperContainerProps { 4 | displayName: string 5 | widgetHeight: number 6 | children: ReactNode 7 | } 8 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/BarProgressWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { BAR_PROGRESS_WIDGET_CONFIG } from "./widgetConfig" 2 | export { BAR_PROGRESS_PANEL_CONFIG } from "./panelConfig" 3 | export { BAR_PROGRESS_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/CodeScannerWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { CODE_SCANNER_PANEL_CONFIG } from "./panelConfig" 2 | export { CODE_SCANNER_WIDGET_CONFIG } from "./widgetConfig" 3 | export { CODE_SCANNER_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/DrivePickerWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { DRIVE_PICKER_PANEL_CONFIG } from "./panelConfig" 2 | export { DRIVE_PICKER_WIDGET_CONFIG } from "./widgetConfig" 3 | export { DRIVE_PICKER_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/NumberInputWidget/index.ts: -------------------------------------------------------------------------------- 1 | export { NUMBER_INPUT_PANEL_CONFIG } from "./panelConfig" 2 | export { NUMBER_INPUT_WIDGET_CONFIG } from "./widgetConfig" 3 | export { INPUT_NUMBER_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/QRCodeWidget/eventHandlerConfig.ts: -------------------------------------------------------------------------------- 1 | import { EventHandlerConfig } from "@/widgetLibrary/interface" 2 | 3 | export const QR_CODE_EVENT_HANDLER_CONFIG: EventHandlerConfig = { 4 | events: [], 5 | methods: ["setValue"], 6 | } 7 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/RadioButtonWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { RADIO_BUTTON_PANEL_CONFIG } from "./panelConfig" 2 | export { RADIO_BUTTON_WIDGET_CONFIG } from "./widgetConfig" 3 | export { RADIO_BUTTON_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/RangeSliderWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { RANGE_SLIDER_PANEL_CONFIG } from "./panelConfig" 2 | export { RANGE_SLIDER_WIDGET_CONFIG } from "./widgetConfig" 3 | export { RANGE_SLIDER_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /apps/builder/src/widgetLibrary/SwitchGroupWidget/index.tsx: -------------------------------------------------------------------------------- 1 | export { SWITCH_GROUP_PANEL_CONFIG } from "./panelConfig" 2 | export { SWITCH_GROUP_WIDGET_CONFIG } from "./widgetConfig" 3 | export { SWITCH_GROUP_EVENT_HANDLER_CONFIG } from "./eventHandlerConfig" 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AIDecipher.md: -------------------------------------------------------------------------------- 1 | # AIDecipher 2 | AIDecipher is an intelligent assistant, designed to simplify complex tasks, provide insightful information, and enhance productivity. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C711/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/AstroGuide.md: -------------------------------------------------------------------------------- 1 | # AstroGuide 2 | AstroGuide: Your space exploration companion. Assists with celestial navigation, planetary analysis, and interstellar communication. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uw/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Binary Operation.md: -------------------------------------------------------------------------------- 1 | # Binary Operation 2 | 3 | This AI Agent Finds Binary Operation of addition, multiplication, subtraction and division of two Binary Inputs 4 | 5 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7wl/detail 6 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/CheatCodeGenius.md: -------------------------------------------------------------------------------- 1 | # CheatCodeGenius 2 | The CheatCodeGenius is a powerful tool that simplifies the process of finding cheat codes for your favorite video games. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Ul/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Color Palette Generator: -------------------------------------------------------------------------------- 1 | # Color Palette Generator 2 | Enter a Hexadecimal color code and be returned with the color in other formats along with six color pallets. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7ww/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Create chess opening generator.md: -------------------------------------------------------------------------------- 1 | # Chess Opening Explorer 2 | The AI agent is a chess opening generator that can generate different variations of chess openings. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Vf/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/DataDashCraft.md: -------------------------------------------------------------------------------- 1 | # DataDashCraft 2 | DataDashCraft: Your dashboard design guru. Create interactive, informative dashboards for tracking key metrics effectively. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7VG/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/DungeonMasterGPT(MK.I).md: -------------------------------------------------------------------------------- 1 | # DungeonMasterGPT(MK.I) 2 | Dungeon Master now creating new dungeons and environments for T-RPG games that players will encounter. 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C74c/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/English-to-Kannada translator.md: -------------------------------------------------------------------------------- 1 | # English-to-Kannada AI translator 2 | An AI language translator which takes English text and convert it into Kannada language. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7tW/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Fitness-challenger.md: -------------------------------------------------------------------------------- 1 | # Fitness Challenger 2 | An AI Agent that generates Personalized fitness challenges based on the fitness level of user and their goal. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7XO/detail 4 | 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Game NPCs.md: -------------------------------------------------------------------------------- 1 | # Game NPCs 2 | Create NPCs with rich personalities, diverse dialogues, and adaptive responses to engage players in immersive text-based interactions. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72s/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Gear and equipment recommendations.md: -------------------------------------------------------------------------------- 1 | # Gear and Equipment Recommendations 2 | Find recommendations for the best gear and equipment to enhance your performance. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70A/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/GigaChat.md: -------------------------------------------------------------------------------- 1 | # GigaTrain 2 | 3 | Become a Gigachad! Fitness Training plans tailored to your sport, focusing on areas like agility, strength, or endurance! 4 | 5 | 6 | Fast try: https://illa.ai/ai-agent/ILAex4p1C70w/detail 7 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Hackathon Buddy: -------------------------------------------------------------------------------- 1 | Your hackathon navigator. From idea inception to project completion, we've got your back. Code smarter, brainstorm better, and innovate together. 2 | Fast try: https://illa.ai/ai-agent/ILAex4p1C73H/detail 3 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Job Search and Career Assistant.md: -------------------------------------------------------------------------------- 1 | # Job Search and Career Assistant 2 | Assist job seekers with resume building, job searching, interview tips, and career advice. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C725/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/LinguoLingo.md: -------------------------------------------------------------------------------- 1 | # LinguoLingo 2 | LinguoLingo: Your language learning companion. Offers immersive lessons and tailored practice exercises for rapid language fluency. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7uu/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Product usability testing plan: -------------------------------------------------------------------------------- 1 | # Product usability testing plan 2 | This prompt refers to a plan that details how usability tests will be conducted on a product. 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7r4/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ReadHorizonAI.md: -------------------------------------------------------------------------------- 1 | # ReadHorizonAI 2 | ReadHorizonAI: Your literary companion. Embark on reading challenges, explore diverse authors, and expand your literary world. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7ZU/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/ScienceNewsAnalyzer.md: -------------------------------------------------------------------------------- 1 | # ScienceNewsAnalyzer 2 | Analyzing and discussing a recent science news article aims to enhance our comprehension of a scientific topic. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72Z/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Sudoku Solver.md: -------------------------------------------------------------------------------- 1 | # Sudoku Solver 2 | 3 | AI agent that can solve 9*9 Sudoku problems. 4 | Please provide input as numbers and replace blank cells with values of 0. 5 | 6 | Check it: https://illa.ai/ai-agent/ILAex4p1C7VK/detail -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TALK.md: -------------------------------------------------------------------------------- 1 | # TALK 2 | This prompt describes a talk app that focuses on conversations related to mental health, daily stress, behavioral changes, mood, and even jokes. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Wb/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TestImpactAI.md: -------------------------------------------------------------------------------- 1 | # TestImpactAI 2 | TestImpactAI: Your A/B testing strategist. Discover ideas and methodologies to measure product or service changes effectively. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7VF/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Text-to-image-converter.md: -------------------------------------------------------------------------------- 1 | # Text to image converter using Pollinations.ai 2 | Generate AI images through text descriptions (The images take some time to load) 3 | 4 | Fast try: https://illa.ai/ai-agent/ILAex4p1C72S/detail 5 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TimeTravelerTom.md: -------------------------------------------------------------------------------- 1 | # TimeTravelerTom 2 | Meet TimeTravelerTom, your historical figure chatbot. Interact with past icons, ask questions, and explore history's gems! 3 | Fast try: https://illa.ai/ai-agent/ILAfx4p1C7rQ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/TimeTrendPro.md: -------------------------------------------------------------------------------- 1 | # TimeTrendPro 2 | TimeTrendPro: Your time-dependent data analyst. Unlock methods for analyzing and forecasting temporal data patterns effectively. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7VC/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Virtual_Historian_AI.md: -------------------------------------------------------------------------------- 1 | # Virtual Historian AI 2 | Get a comprehensive account of any historical subject with detailed information, facts, and engaging narratives. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C74g/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Web development help assistant.md: -------------------------------------------------------------------------------- 1 | # Web development help assistant 2 | Your dedicated web development companion, simplifying the complexities of coding and design. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Uy/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/Web styling frameworks.md: -------------------------------------------------------------------------------- 1 | # Web styling frameworks 2 | Create a simple and example of import framework on HTML for create a beautiful layout for a shop web page. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7YJ/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/chat got: -------------------------------------------------------------------------------- 1 | # chat got 2 | You are a ChatGOT designed to help users by answering questions, creating unique content, and providing information on diverse subjects. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C75M/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-ai-agents/gear-equipment-recommendations-ai-agent.md: -------------------------------------------------------------------------------- 1 | # Gear and Equipment Recommendations 2 | The prompt is requesting a description of gear and equipment recommendations. 3 | Fast try: https://illa.ai/ai-agent/ILAex4p1C7Zf/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Imaginate Creator.md: -------------------------------------------------------------------------------- 1 | # Imaginate Creator 2 | Imaginate Creator: Your all-in-one content powerhouse. Add text, headings, code, images, checklists, and lists with ease. 3 | Fast try: https://illa.ai/app/ILAfx4p1C7zq/detail 4 | -------------------------------------------------------------------------------- /hacktoberfest2023/awesome-illa-apps/Resume_Builder.md: -------------------------------------------------------------------------------- 1 | # Resume Builder 2 | 3 | Resume builder which creates resume 4 | - from user input by entering details 5 | - Copy resume in latex / markdown 6 | 7 | Try Now: https://illa.ai/app/ILAfx4p1C7Xt/detail 8 | -------------------------------------------------------------------------------- /apps/builder/src/components/Guide/GuideSuccess/style.ts: -------------------------------------------------------------------------------- 1 | import { css } from "@emotion/react" 2 | 3 | export const popoverStyle = css` 4 | position: absolute; 5 | top: 0; 6 | left: 50%; 7 | transform: translateX(-50%); 8 | z-index: 2; 9 | ` 10 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/Actions/ActionPanel/S3Panel/components/ContentTypeSelect/interface.ts: -------------------------------------------------------------------------------- 1 | export interface ContentTypeSelectProps { 2 | value: string 3 | onChange: (name: string) => (value: string | boolean) => void 4 | fx: boolean 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/InspectPanel/PanelSetters/InputSetter/PaddingInput/interface.ts: -------------------------------------------------------------------------------- 1 | import { BaseInputSetterProps } from "../interface" 2 | 3 | export interface DirectionPaddingSetterProps extends BaseInputSetterProps { 4 | value?: any 5 | } 6 | -------------------------------------------------------------------------------- /apps/builder/src/page/App/components/PagePanel/Modules/Style/Components/ShadowSelect/interface.ts: -------------------------------------------------------------------------------- 1 | import { SHADOW_VALUE } from "./constants" 2 | 3 | export interface ShadowSetterProps { 4 | value: SHADOW_VALUE 5 | onChange: (value: SHADOW_VALUE) => void 6 | } 7 | --------------------------------------------------------------------------------