├── .env ├── .browserslistrc ├── .prettierignore ├── .gitattributes ├── src ├── components │ ├── core │ │ └── NucDialog │ │ │ └── index.js │ ├── DescriptionPopover │ │ ├── styles.js │ │ └── index.js │ ├── OpenAICodeExplainButton │ │ ├── styles.js │ │ └── index.js │ ├── Logo │ │ ├── index.js │ │ └── styles.js │ ├── Page │ │ ├── index.js │ │ └── Page.jsx │ ├── APIBody │ │ ├── index.js │ │ └── styles.js │ ├── APIPath │ │ ├── index.js │ │ └── styles.js │ ├── APIParams │ │ └── index.js │ ├── APITypes │ │ └── index.js │ ├── Confetti │ │ └── index.js │ ├── NucEditor │ │ └── index.js │ ├── ParamTable │ │ ├── index.js │ │ └── styles.js │ ├── Security │ │ ├── index.js │ │ └── styles.js │ ├── Settings │ │ ├── index.js │ │ └── styles.js │ ├── SmallLogo │ │ ├── index.js │ │ └── SmallLogo.jsx │ ├── DialogTootip │ │ ├── index.js │ │ └── styles.js │ ├── GraphButton │ │ └── index.js │ ├── GraphDialog │ │ └── index.js │ ├── LogoutButton │ │ └── index.js │ ├── SchemaEditor │ │ └── index.js │ ├── APIDialogAction │ │ ├── index.js │ │ └── styles.js │ ├── AppSnackMessage │ │ └── index.js │ ├── ConfirmDialog │ │ └── index.js │ ├── EducationDrawer │ │ └── index.js │ ├── LandingDialog │ │ └── index.js │ ├── MessageDialog │ │ └── index.js │ ├── MessagePopper │ │ └── index.js │ ├── ProjectSelect │ │ └── index.js │ ├── QueryAIButton │ │ └── index.js │ ├── ReadOnlyEditor │ │ └── index.js │ ├── StarUsOnGithub │ │ └── index.js │ ├── ToggleableMenu │ │ └── index.js │ ├── GlobalMessageBox │ │ └── index.js │ ├── OpenSwaggerDialog │ │ ├── index.js │ │ └── styles.js │ ├── PromptCodeDialog │ │ └── index.js │ ├── RatioIconButtons │ │ ├── index.js │ │ └── styles.js │ ├── SettingsDialogDev │ │ ├── index.js │ │ └── styles.js │ ├── ClosableDialogTitle │ │ ├── index.js │ │ └── styles.js │ ├── ProjectSelectSmall │ │ ├── index.js │ │ └── styles.js │ ├── SettingsDialogChat │ │ ├── index.js │ │ └── styles.js │ ├── SettingsDialogTabs │ │ └── index.js │ ├── StarUsMessageDialog │ │ └── index.js │ ├── SettingsDialogRuntime │ │ └── index.js │ ├── QueryResult.css │ └── TabPanel.jsx ├── version.json ├── pages │ ├── chat │ │ └── index.js │ └── ide │ │ ├── API │ │ └── index.js │ │ ├── Logic │ │ ├── index.js │ │ └── styles.js │ │ ├── Logs │ │ ├── index.js │ │ └── styles.js │ │ ├── Query │ │ └── index.js │ │ ├── Dashboard │ │ └── index.js │ │ ├── Functions │ │ ├── index.js │ │ └── styles.js │ │ ├── BusinessFlow │ │ └── index.js │ │ └── login.jsx ├── widgets │ ├── Menu │ │ └── index.js │ ├── Editor │ │ └── index.js │ ├── OpenAI │ │ ├── index.js │ │ └── styles.js │ ├── Status │ │ ├── index.js │ │ └── styles.js │ ├── APIDialog │ │ ├── index.js │ │ ├── styles.js │ │ └── hooks │ │ │ ├── Dialog.js │ │ │ └── reducer.js │ ├── APITree │ │ ├── index.js │ │ └── styles.js │ ├── Chat │ │ ├── index.js │ │ ├── ChatMainArea.css │ │ └── DisclaimerMessage.jsx │ ├── ChatMenu │ │ └── index.js │ ├── LogicTree │ │ └── index.js │ ├── PopChat │ │ └── index.js │ ├── SideChat │ │ └── index.js │ ├── VFSEditor │ │ ├── index.js │ │ ├── styles.js │ │ └── shortcuts.js │ ├── AIDialog │ │ └── index.js │ ├── APISettings │ │ ├── index.js │ │ └── styles.js │ ├── ChatDrawer │ │ └── index.js │ ├── FunctionDialog │ │ ├── index.js │ │ └── styles.js │ ├── FunctionTree │ │ ├── index.js │ │ └── styles.js │ ├── ProcessDrawer │ │ └── index.js │ ├── ResourceMenu │ │ ├── index.js │ │ └── styles.js │ └── SettingsDialog │ │ ├── index.js │ │ └── styles.js ├── containers │ ├── IDE │ │ ├── index.js │ │ ├── Onboarding │ │ │ ├── index.js │ │ │ └── onboardDispatcher.js │ │ └── styles.js │ ├── Chat │ │ ├── index.js │ │ ├── Onboarding │ │ │ └── index.js │ │ └── styles.js │ └── Blank │ │ └── Blank.jsx ├── dist │ └── lodash │ │ ├── fp │ │ ├── F.d.ts │ │ ├── T.d.ts │ │ ├── add.d.ts │ │ ├── all.d.ts │ │ ├── any.d.ts │ │ ├── ary.d.ts │ │ ├── at.d.ts │ │ ├── eq.d.ts │ │ ├── get.d.ts │ │ ├── gt.d.ts │ │ ├── gte.d.ts │ │ ├── has.d.ts │ │ ├── lt.d.ts │ │ ├── lte.d.ts │ │ ├── map.d.ts │ │ ├── max.d.ts │ │ ├── min.d.ts │ │ ├── now.d.ts │ │ ├── nth.d.ts │ │ ├── pad.d.ts │ │ ├── set.d.ts │ │ ├── sum.d.ts │ │ ├── tap.d.ts │ │ ├── xor.d.ts │ │ ├── zip.d.ts │ │ ├── bind.d.ts │ │ ├── ceil.d.ts │ │ ├── cond.d.ts │ │ ├── drop.d.ts │ │ ├── each.d.ts │ │ ├── fill.d.ts │ │ ├── find.d.ts │ │ ├── flip.d.ts │ │ ├── flow.d.ts │ │ ├── head.d.ts │ │ ├── init.d.ts │ │ ├── join.d.ts │ │ ├── juxt.d.ts │ │ ├── keys.d.ts │ │ ├── last.d.ts │ │ ├── mean.d.ts │ │ ├── nAry.d.ts │ │ ├── noop.d.ts │ │ ├── omit.d.ts │ │ ├── once.d.ts │ │ ├── over.d.ts │ │ ├── path.d.ts │ │ ├── pick.d.ts │ │ ├── pipe.d.ts │ │ ├── prop.d.ts │ │ ├── pull.d.ts │ │ ├── rest.d.ts │ │ ├── size.d.ts │ │ ├── some.d.ts │ │ ├── tail.d.ts │ │ ├── take.d.ts │ │ ├── thru.d.ts │ │ ├── trim.d.ts │ │ ├── uniq.d.ts │ │ ├── wrap.d.ts │ │ ├── after.d.ts │ │ ├── always.d.ts │ │ ├── apply.d.ts │ │ ├── assign.d.ts │ │ ├── assoc.d.ts │ │ ├── before.d.ts │ │ ├── chunk.d.ts │ │ ├── clamp.d.ts │ │ ├── clone.d.ts │ │ ├── concat.d.ts │ │ ├── create.d.ts │ │ ├── curry.d.ts │ │ ├── curryN.d.ts │ │ ├── deburr.d.ts │ │ ├── defer.d.ts │ │ ├── delay.d.ts │ │ ├── dissoc.d.ts │ │ ├── divide.d.ts │ │ ├── equals.d.ts │ │ ├── escape.d.ts │ │ ├── every.d.ts │ │ ├── extend.d.ts │ │ ├── filter.d.ts │ │ ├── first.d.ts │ │ ├── floor.d.ts │ │ ├── forIn.d.ts │ │ ├── forOwn.d.ts │ │ ├── getOr.d.ts │ │ ├── hasIn.d.ts │ │ ├── invert.d.ts │ │ ├── invoke.d.ts │ │ ├── isDate.d.ts │ │ ├── isMap.d.ts │ │ ├── isNaN.d.ts │ │ ├── isNil.d.ts │ │ ├── isNull.d.ts │ │ ├── isSet.d.ts │ │ ├── keyBy.d.ts │ │ ├── keysIn.d.ts │ │ ├── maxBy.d.ts │ │ ├── meanBy.d.ts │ │ ├── merge.d.ts │ │ ├── method.d.ts │ │ ├── minBy.d.ts │ │ ├── negate.d.ts │ │ ├── nthArg.d.ts │ │ ├── omitBy.d.ts │ │ ├── padEnd.d.ts │ │ ├── pathEq.d.ts │ │ ├── pathOr.d.ts │ │ ├── paths.d.ts │ │ ├── pickBy.d.ts │ │ ├── pluck.d.ts │ │ ├── propEq.d.ts │ │ ├── propOr.d.ts │ │ ├── props.d.ts │ │ ├── pullAt.d.ts │ │ ├── random.d.ts │ │ ├── range.d.ts │ │ ├── rearg.d.ts │ │ ├── reduce.d.ts │ │ ├── reject.d.ts │ │ ├── remove.d.ts │ │ ├── repeat.d.ts │ │ ├── result.d.ts │ │ ├── round.d.ts │ │ ├── sample.d.ts │ │ ├── slice.d.ts │ │ ├── sortBy.d.ts │ │ ├── split.d.ts │ │ ├── spread.d.ts │ │ ├── sumBy.d.ts │ │ ├── times.d.ts │ │ ├── toPath.d.ts │ │ ├── unary.d.ts │ │ ├── union.d.ts │ │ ├── uniqBy.d.ts │ │ ├── unnest.d.ts │ │ ├── unset.d.ts │ │ ├── unzip.d.ts │ │ ├── update.d.ts │ │ ├── values.d.ts │ │ ├── where.d.ts │ │ ├── words.d.ts │ │ ├── xorBy.d.ts │ │ ├── zipAll.d.ts │ │ ├── zipObj.d.ts │ │ ├── allPass.d.ts │ │ ├── anyPass.d.ts │ │ ├── assignIn.d.ts │ │ ├── attempt.d.ts │ │ ├── bindAll.d.ts │ │ ├── bindKey.d.ts │ │ ├── compact.d.ts │ │ ├── compose.d.ts │ │ ├── conforms.d.ts │ │ ├── constant.d.ts │ │ ├── contains.d.ts │ │ ├── countBy.d.ts │ │ ├── debounce.d.ts │ │ ├── defaults.d.ts │ │ ├── dropLast.d.ts │ │ ├── endsWith.d.ts │ │ ├── entries.d.ts │ │ ├── findFrom.d.ts │ │ ├── findKey.d.ts │ │ ├── findLast.d.ts │ │ ├── flatMap.d.ts │ │ ├── flatten.d.ts │ │ ├── forEach.d.ts │ │ ├── groupBy.d.ts │ │ ├── identity.d.ts │ │ ├── inRange.d.ts │ │ ├── includes.d.ts │ │ ├── indexBy.d.ts │ │ ├── indexOf.d.ts │ │ ├── initial.d.ts │ │ ├── invertBy.d.ts │ │ ├── isArray.d.ts │ │ ├── isBuffer.d.ts │ │ ├── isEmpty.d.ts │ │ ├── isEqual.d.ts │ │ ├── isError.d.ts │ │ ├── isFinite.d.ts │ │ ├── isLength.d.ts │ │ ├── isMatch.d.ts │ │ ├── isNative.d.ts │ │ ├── isNumber.d.ts │ │ ├── isObject.d.ts │ │ ├── isRegExp.d.ts │ │ ├── isString.d.ts │ │ ├── isSymbol.d.ts │ │ ├── iteratee.d.ts │ │ ├── mapKeys.d.ts │ │ ├── matches.d.ts │ │ ├── memoize.d.ts │ │ ├── mergeAll.d.ts │ │ ├── methodOf.d.ts │ │ ├── multiply.d.ts │ │ ├── omitAll.d.ts │ │ ├── orderBy.d.ts │ │ ├── overArgs.d.ts │ │ ├── overSome.d.ts │ │ ├── padChars.d.ts │ │ ├── padStart.d.ts │ │ ├── parseInt.d.ts │ │ ├── partial.d.ts │ │ ├── pickAll.d.ts │ │ ├── property.d.ts │ │ ├── pullAll.d.ts │ │ ├── replace.d.ts │ │ ├── restFrom.d.ts │ │ ├── reverse.d.ts │ │ ├── setWith.d.ts │ │ ├── shuffle.d.ts │ │ ├── stubTrue.d.ts │ │ ├── subtract.d.ts │ │ ├── takeLast.d.ts │ │ ├── template.d.ts │ │ ├── throttle.d.ts │ │ ├── toArray.d.ts │ │ ├── toFinite.d.ts │ │ ├── toLength.d.ts │ │ ├── toLower.d.ts │ │ ├── toNumber.d.ts │ │ ├── toPairs.d.ts │ │ ├── toString.d.ts │ │ ├── toUpper.d.ts │ │ ├── trimEnd.d.ts │ │ ├── truncate.d.ts │ │ ├── unapply.d.ts │ │ ├── unescape.d.ts │ │ ├── unionBy.d.ts │ │ ├── uniqWith.d.ts │ │ ├── uniqueId.d.ts │ │ ├── useWith.d.ts │ │ ├── valuesIn.d.ts │ │ ├── whereEq.d.ts │ │ ├── without.d.ts │ │ ├── xorWith.d.ts │ │ ├── zipWith.d.ts │ │ ├── assignAll.d.ts │ │ ├── assocPath.d.ts │ │ ├── camelCase.d.ts │ │ ├── castArray.d.ts │ │ ├── cloneDeep.d.ts │ │ ├── cloneWith.d.ts │ │ ├── defaultTo.d.ts │ │ ├── dropRight.d.ts │ │ ├── dropWhile.d.ts │ │ ├── eachRight.d.ts │ │ ├── entriesIn.d.ts │ │ ├── extendAll.d.ts │ │ ├── findIndex.d.ts │ │ ├── flowRight.d.ts │ │ ├── fromPairs.d.ts │ │ ├── functions.d.ts │ │ ├── identical.d.ts │ │ ├── invertObj.d.ts │ │ ├── invokeMap.d.ts │ │ ├── isBoolean.d.ts │ │ ├── isElement.d.ts │ │ ├── isInteger.d.ts │ │ ├── isWeakMap.d.ts │ │ ├── isWeakSet.d.ts │ │ ├── kebabCase.d.ts │ │ ├── lowerCase.d.ts │ │ ├── mapValues.d.ts │ │ ├── mergeWith.d.ts │ │ ├── overEvery.d.ts │ │ ├── partition.d.ts │ │ ├── pullAllBy.d.ts │ │ ├── rangeStep.d.ts │ │ ├── snakeCase.d.ts │ │ ├── startCase.d.ts │ │ ├── stubArray.d.ts │ │ ├── stubFalse.d.ts │ │ ├── takeRight.d.ts │ │ ├── takeWhile.d.ts │ │ ├── toInteger.d.ts │ │ ├── toPairsIn.d.ts │ │ ├── transform.d.ts │ │ ├── trimChars.d.ts │ │ ├── trimStart.d.ts │ │ ├── unionWith.d.ts │ │ ├── unzipWith.d.ts │ │ ├── upperCase.d.ts │ │ ├── zipObject.d.ts │ │ ├── assignInAll.d.ts │ │ ├── assignWith.d.ts │ │ ├── capitalize.d.ts │ │ ├── complement.d.ts │ │ ├── conformsTo.d.ts │ │ ├── curryRight.d.ts │ │ ├── curryRightN.d.ts │ │ ├── defaultsAll.d.ts │ │ ├── difference.d.ts │ │ ├── dissocPath.d.ts │ │ ├── extendWith.d.ts │ │ ├── findLastKey.d.ts │ │ ├── flatMapDeep.d.ts │ │ ├── flattenDeep.d.ts │ │ ├── forInRight.d.ts │ │ ├── forOwnRight.d.ts │ │ ├── functionsIn.d.ts │ │ ├── indexOfFrom.d.ts │ │ ├── invokeArgs.d.ts │ │ ├── isArguments.d.ts │ │ ├── isArrayLike.d.ts │ │ ├── isEqualWith.d.ts │ │ ├── isFunction.d.ts │ │ ├── isMatchWith.d.ts │ │ ├── isUndefined.d.ts │ │ ├── lastIndexOf.d.ts │ │ ├── lowerFirst.d.ts │ │ ├── noConflict.d.ts │ │ ├── padCharsEnd.d.ts │ │ ├── propertyOf.d.ts │ │ ├── pullAllWith.d.ts │ │ ├── rangeRight.d.ts │ │ ├── reduceRight.d.ts │ │ ├── sampleSize.d.ts │ │ ├── sortedIndex.d.ts │ │ ├── sortedUniq.d.ts │ │ ├── spreadFrom.d.ts │ │ ├── startsWith.d.ts │ │ ├── stubObject.d.ts │ │ ├── stubString.d.ts │ │ ├── updateWith.d.ts │ │ ├── upperFirst.d.ts │ │ ├── __.d.ts │ │ ├── assignAllWith.d.ts │ │ ├── assignInWith.d.ts │ │ ├── cloneDeepWith.d.ts │ │ ├── defaultsDeep.d.ts │ │ ├── differenceBy.d.ts │ │ ├── dropLastWhile.d.ts │ │ ├── escapeRegExp.d.ts │ │ ├── extendAllWith.d.ts │ │ ├── findIndexFrom.d.ts │ │ ├── findLastFrom.d.ts │ │ ├── findLastIndex.d.ts │ │ ├── flatMapDepth.d.ts │ │ ├── flattenDepth.d.ts │ │ ├── forEachRight.d.ts │ │ ├── includesFrom.d.ts │ │ ├── intersection.d.ts │ │ ├── invokeArgsMap.d.ts │ │ ├── isArrayBuffer.d.ts │ │ ├── isObjectLike.d.ts │ │ ├── isPlainObject.d.ts │ │ ├── isSafeInteger.d.ts │ │ ├── isTypedArray.d.ts │ │ ├── mergeAllWith.d.ts │ │ ├── padCharsStart.d.ts │ │ ├── partialRight.d.ts │ │ ├── runInContext.d.ts │ │ ├── sortedIndexBy.d.ts │ │ ├── sortedIndexOf.d.ts │ │ ├── sortedUniqBy.d.ts │ │ ├── takeLastWhile.d.ts │ │ ├── toPlainObject.d.ts │ │ ├── toSafeInteger.d.ts │ │ ├── trimCharsEnd.d.ts │ │ ├── zipObjectDeep.d.ts │ │ ├── differenceWith.d.ts │ │ ├── dropRightWhile.d.ts │ │ ├── intersectionBy.d.ts │ │ ├── rangeStepRight.d.ts │ │ ├── takeRightWhile.d.ts │ │ ├── trimCharsStart.d.ts │ │ ├── assignInAllWith.d.ts │ │ ├── defaultsDeepAll.d.ts │ │ ├── intersectionWith.d.ts │ │ ├── lastIndexOfFrom.d.ts │ │ ├── matchesProperty.d.ts │ │ ├── sortedLastIndex.d.ts │ │ ├── findLastIndexFrom.d.ts │ │ ├── isArrayLikeObject.d.ts │ │ ├── sortedLastIndexBy.d.ts │ │ ├── sortedLastIndexOf.d.ts │ │ ├── symmetricDifference.d.ts │ │ ├── symmetricDifferenceBy.d.ts │ │ ├── placeholder.d.ts │ │ ├── symmetricDifferenceWith.d.ts │ │ └── convert.d.ts │ │ ├── add.d.ts │ │ ├── ary.d.ts │ │ ├── at.d.ts │ │ ├── eq.d.ts │ │ ├── get.d.ts │ │ ├── gt.d.ts │ │ ├── gte.d.ts │ │ ├── has.d.ts │ │ ├── lt.d.ts │ │ ├── lte.d.ts │ │ ├── map.d.ts │ │ ├── max.d.ts │ │ ├── min.d.ts │ │ ├── now.d.ts │ │ ├── nth.d.ts │ │ ├── pad.d.ts │ │ ├── set.d.ts │ │ ├── sum.d.ts │ │ ├── tap.d.ts │ │ ├── xor.d.ts │ │ ├── zip.d.ts │ │ ├── after.d.ts │ │ ├── bind.d.ts │ │ ├── ceil.d.ts │ │ ├── chain.d.ts │ │ ├── chunk.d.ts │ │ ├── clamp.d.ts │ │ ├── clone.d.ts │ │ ├── cond.d.ts │ │ ├── curry.d.ts │ │ ├── defer.d.ts │ │ ├── delay.d.ts │ │ ├── drop.d.ts │ │ ├── each.d.ts │ │ ├── every.d.ts │ │ ├── fill.d.ts │ │ ├── find.d.ts │ │ ├── first.d.ts │ │ ├── flip.d.ts │ │ ├── floor.d.ts │ │ ├── flow.d.ts │ │ ├── forIn.d.ts │ │ ├── hasIn.d.ts │ │ ├── head.d.ts │ │ ├── isMap.d.ts │ │ ├── isNaN.d.ts │ │ ├── isNil.d.ts │ │ ├── isSet.d.ts │ │ ├── join.d.ts │ │ ├── keyBy.d.ts │ │ ├── keys.d.ts │ │ ├── last.d.ts │ │ ├── maxBy.d.ts │ │ ├── mean.d.ts │ │ ├── merge.d.ts │ │ ├── minBy.d.ts │ │ ├── mixin.d.ts │ │ ├── noop.d.ts │ │ ├── omit.d.ts │ │ ├── once.d.ts │ │ ├── over.d.ts │ │ ├── pick.d.ts │ │ ├── pull.d.ts │ │ ├── range.d.ts │ │ ├── rearg.d.ts │ │ ├── rest.d.ts │ │ ├── round.d.ts │ │ ├── size.d.ts │ │ ├── slice.d.ts │ │ ├── some.d.ts │ │ ├── split.d.ts │ │ ├── sumBy.d.ts │ │ ├── tail.d.ts │ │ ├── take.d.ts │ │ ├── thru.d.ts │ │ ├── times.d.ts │ │ ├── trim.d.ts │ │ ├── unary.d.ts │ │ ├── union.d.ts │ │ ├── uniq.d.ts │ │ ├── unset.d.ts │ │ ├── unzip.d.ts │ │ ├── words.d.ts │ │ ├── wrap.d.ts │ │ ├── xorBy.d.ts │ │ ├── assign.d.ts │ │ ├── before.d.ts │ │ ├── concat.d.ts │ │ ├── create.d.ts │ │ ├── deburr.d.ts │ │ ├── divide.d.ts │ │ ├── escape.d.ts │ │ ├── extend.d.ts │ │ ├── filter.d.ts │ │ ├── forOwn.d.ts │ │ ├── invert.d.ts │ │ ├── invoke.d.ts │ │ ├── isDate.d.ts │ │ ├── isNull.d.ts │ │ ├── keysIn.d.ts │ │ ├── meanBy.d.ts │ │ ├── method.d.ts │ │ ├── negate.d.ts │ │ ├── nthArg.d.ts │ │ ├── omitBy.d.ts │ │ ├── padEnd.d.ts │ │ ├── pickBy.d.ts │ │ ├── pullAt.d.ts │ │ ├── random.d.ts │ │ ├── reduce.d.ts │ │ ├── reject.d.ts │ │ ├── remove.d.ts │ │ ├── repeat.d.ts │ │ ├── result.d.ts │ │ ├── sample.d.ts │ │ ├── sortBy.d.ts │ │ ├── spread.d.ts │ │ ├── toPath.d.ts │ │ ├── uniqBy.d.ts │ │ ├── update.d.ts │ │ ├── values.d.ts │ │ ├── assignIn.d.ts │ │ ├── attempt.d.ts │ │ ├── bindAll.d.ts │ │ ├── bindKey.d.ts │ │ ├── compact.d.ts │ │ ├── constant.d.ts │ │ ├── countBy.d.ts │ │ ├── debounce.d.ts │ │ ├── defaults.d.ts │ │ ├── endsWith.d.ts │ │ ├── entries.d.ts │ │ ├── findKey.d.ts │ │ ├── findLast.d.ts │ │ ├── flatMap.d.ts │ │ ├── flatten.d.ts │ │ ├── forEach.d.ts │ │ ├── groupBy.d.ts │ │ ├── identity.d.ts │ │ ├── inRange.d.ts │ │ ├── includes.d.ts │ │ ├── indexOf.d.ts │ │ ├── initial.d.ts │ │ ├── invertBy.d.ts │ │ ├── isArray.d.ts │ │ ├── isBuffer.d.ts │ │ ├── isEmpty.d.ts │ │ ├── isEqual.d.ts │ │ ├── isError.d.ts │ │ ├── isFinite.d.ts │ │ ├── isLength.d.ts │ │ ├── isMatch.d.ts │ │ ├── isNative.d.ts │ │ ├── isNumber.d.ts │ │ ├── isObject.d.ts │ │ ├── isRegExp.d.ts │ │ ├── isString.d.ts │ │ ├── isSymbol.d.ts │ │ ├── iteratee.d.ts │ │ ├── mapKeys.d.ts │ │ ├── matches.d.ts │ │ ├── memoize.d.ts │ │ ├── methodOf.d.ts │ │ ├── multiply.d.ts │ │ ├── orderBy.d.ts │ │ ├── overArgs.d.ts │ │ ├── overSome.d.ts │ │ ├── padStart.d.ts │ │ ├── parseInt.d.ts │ │ ├── partial.d.ts │ │ ├── property.d.ts │ │ ├── pullAll.d.ts │ │ ├── replace.d.ts │ │ ├── reverse.d.ts │ │ ├── setWith.d.ts │ │ ├── shuffle.d.ts │ │ ├── stubTrue.d.ts │ │ ├── subtract.d.ts │ │ ├── template.d.ts │ │ ├── throttle.d.ts │ │ ├── toArray.d.ts │ │ ├── toFinite.d.ts │ │ ├── toLength.d.ts │ │ ├── toLower.d.ts │ │ ├── toNumber.d.ts │ │ ├── toPairs.d.ts │ │ ├── toString.d.ts │ │ ├── toUpper.d.ts │ │ ├── trimEnd.d.ts │ │ ├── truncate.d.ts │ │ ├── unescape.d.ts │ │ ├── unionBy.d.ts │ │ ├── uniqWith.d.ts │ │ ├── uniqueId.d.ts │ │ ├── valuesIn.d.ts │ │ ├── without.d.ts │ │ ├── xorWith.d.ts │ │ ├── zipWith.d.ts │ │ ├── assignWith.d.ts │ │ ├── camelCase.d.ts │ │ ├── capitalize.d.ts │ │ ├── castArray.d.ts │ │ ├── cloneDeep.d.ts │ │ ├── cloneWith.d.ts │ │ ├── conformsTo.d.ts │ │ ├── curryRight.d.ts │ │ ├── defaultTo.d.ts │ │ ├── difference.d.ts │ │ ├── dropRight.d.ts │ │ ├── dropWhile.d.ts │ │ ├── eachRight.d.ts │ │ ├── entriesIn.d.ts │ │ ├── extendWith.d.ts │ │ ├── findIndex.d.ts │ │ ├── flowRight.d.ts │ │ ├── forInRight.d.ts │ │ ├── fromPairs.d.ts │ │ ├── functions.d.ts │ │ ├── invokeMap.d.ts │ │ ├── isBoolean.d.ts │ │ ├── isElement.d.ts │ │ ├── isFunction.d.ts │ │ ├── isInteger.d.ts │ │ ├── isWeakMap.d.ts │ │ ├── isWeakSet.d.ts │ │ ├── kebabCase.d.ts │ │ ├── lowerCase.d.ts │ │ ├── lowerFirst.d.ts │ │ ├── mapValues.d.ts │ │ ├── mergeWith.d.ts │ │ ├── noConflict.d.ts │ │ ├── overEvery.d.ts │ │ ├── partition.d.ts │ │ ├── propertyOf.d.ts │ │ ├── pullAllBy.d.ts │ │ ├── rangeRight.d.ts │ │ ├── sampleSize.d.ts │ │ ├── snakeCase.d.ts │ │ ├── sortedUniq.d.ts │ │ ├── startCase.d.ts │ │ ├── startsWith.d.ts │ │ ├── stubFalse.d.ts │ │ ├── takeRight.d.ts │ │ ├── takeWhile.d.ts │ │ ├── toInteger.d.ts │ │ ├── toPairsIn.d.ts │ │ ├── transform.d.ts │ │ ├── trimStart.d.ts │ │ ├── unionWith.d.ts │ │ ├── unzipWith.d.ts │ │ ├── updateWith.d.ts │ │ ├── upperCase.d.ts │ │ ├── upperFirst.d.ts │ │ ├── zipObject.d.ts │ │ ├── findLastKey.d.ts │ │ ├── flatMapDeep.d.ts │ │ ├── flattenDeep.d.ts │ │ ├── forOwnRight.d.ts │ │ ├── functionsIn.d.ts │ │ ├── isArguments.d.ts │ │ ├── isArrayLike.d.ts │ │ ├── isEqualWith.d.ts │ │ ├── isMatchWith.d.ts │ │ ├── isUndefined.d.ts │ │ ├── lastIndexOf.d.ts │ │ ├── pullAllWith.d.ts │ │ ├── reduceRight.d.ts │ │ ├── sortedIndex.d.ts │ │ ├── assignInWith.d.ts │ │ ├── cloneDeepWith.d.ts │ │ ├── defaultsDeep.d.ts │ │ ├── differenceBy.d.ts │ │ ├── escapeRegExp.d.ts │ │ ├── findLastIndex.d.ts │ │ ├── flatMapDepth.d.ts │ │ ├── flattenDepth.d.ts │ │ ├── forEachRight.d.ts │ │ ├── intersection.d.ts │ │ ├── isArrayBuffer.d.ts │ │ ├── isObjectLike.d.ts │ │ ├── isPlainObject.d.ts │ │ ├── isSafeInteger.d.ts │ │ ├── isTypedArray.d.ts │ │ ├── partialRight.d.ts │ │ ├── runInContext.d.ts │ │ ├── sortedIndexBy.d.ts │ │ ├── sortedIndexOf.d.ts │ │ ├── sortedUniqBy.d.ts │ │ ├── toPlainObject.d.ts │ │ ├── toSafeInteger.d.ts │ │ ├── zipObjectDeep.d.ts │ │ ├── differenceWith.d.ts │ │ ├── dropRightWhile.d.ts │ │ ├── intersectionBy.d.ts │ │ ├── matchesProperty.d.ts │ │ ├── sortedLastIndex.d.ts │ │ ├── takeRightWhile.d.ts │ │ ├── intersectionWith.d.ts │ │ ├── isArrayLikeObject.d.ts │ │ ├── sortedLastIndexBy.d.ts │ │ ├── sortedLastIndexOf.d.ts │ │ ├── v3 │ │ └── .eslintrc.json │ │ ├── .eslintrc.json │ │ ├── tslint.json │ │ └── scripts │ │ ├── tsconfig.json │ │ ├── generate-all.sh │ │ └── package.json ├── layouts │ ├── BlankLayout │ │ ├── index.js │ │ └── BlankLayout.jsx │ ├── ChatLayout │ │ └── index.js │ ├── VerticalSplitLayout │ │ ├── index.js │ │ └── styles.js │ └── HorizontalSplitLayout │ │ └── index.js ├── images │ ├── code.png │ ├── graph.png │ ├── number-one.png │ ├── number-two.png │ └── number-three.png ├── constants.js ├── icons │ ├── Postman.jsx │ ├── OpenAI.jsx │ ├── Swagger.jsx │ └── CodeSandbox.jsx ├── boot.js ├── setupTests.js ├── utils │ └── DeepCopy.js ├── gtag.js ├── config.js ├── lib │ └── test │ │ └── blocks.js └── index.jsx ├── cypress ├── support │ ├── component.js │ └── component-index.html └── fixtures │ ├── Query │ ├── query.metrics.json │ ├── query.openapi.json │ ├── query.object.json │ ├── query.array.json │ └── query.empty.json │ ├── CHAT │ └── empty-chat-data.json │ ├── SERVICE │ ├── services.json │ └── single-project-service.json │ ├── PROJECTS │ ├── single-project.json │ └── projects.json │ └── MESSAGES │ ├── hello.json │ └── define-human.json ├── jest.setup.js ├── jest.config.js ├── .babelrc ├── public ├── favicon.ico ├── logo192.png ├── robots.txt ├── graph │ └── background.png ├── service-worker.js └── manifest.json ├── .github ├── media │ └── banner.png └── workflows │ ├── test.yml │ └── analysis.yml ├── serve.json ├── .prettierrc ├── Dockerfile ├── .gitignore ├── config.js ├── config.live.js └── cypress.config.js /.env: -------------------------------------------------------------------------------- 1 | PORT=4000 2 | -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /public/dist 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /src/components/core/NucDialog/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/DescriptionPopover/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/OpenAICodeExplainButton/styles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/support/component.js: -------------------------------------------------------------------------------- 1 | import "./commands"; 2 | -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- 1 | import "@testing-library/jest-dom"; 2 | -------------------------------------------------------------------------------- /src/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/chat/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Chat"; 2 | -------------------------------------------------------------------------------- /src/pages/ide/API/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./API"; 2 | -------------------------------------------------------------------------------- /src/widgets/Menu/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Menu"; 2 | -------------------------------------------------------------------------------- /src/components/Logo/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Logo"; 2 | -------------------------------------------------------------------------------- /src/components/Page/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Page"; 2 | -------------------------------------------------------------------------------- /src/containers/IDE/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./IDE"; 2 | -------------------------------------------------------------------------------- /src/pages/ide/Logic/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Logic"; 2 | -------------------------------------------------------------------------------- /src/pages/ide/Logs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Logs"; 2 | -------------------------------------------------------------------------------- /src/pages/ide/Query/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Query"; 2 | -------------------------------------------------------------------------------- /src/widgets/Editor/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Editor"; 2 | -------------------------------------------------------------------------------- /src/widgets/OpenAI/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./OpenAI"; 2 | -------------------------------------------------------------------------------- /src/widgets/Status/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Status"; 2 | -------------------------------------------------------------------------------- /src/components/APIBody/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./APIBody"; 2 | -------------------------------------------------------------------------------- /src/components/APIPath/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./APIPath"; 2 | -------------------------------------------------------------------------------- /src/containers/Chat/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Chat.jsx"; 2 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/F.d.ts: -------------------------------------------------------------------------------- 1 | import { F } from "../fp"; 2 | export = F; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/T.d.ts: -------------------------------------------------------------------------------- 1 | import { T } from "../fp"; 2 | export = T; 3 | -------------------------------------------------------------------------------- /src/widgets/APIDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./APIDialog"; 2 | -------------------------------------------------------------------------------- /src/widgets/APITree/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./APITree"; 2 | -------------------------------------------------------------------------------- /src/widgets/Chat/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ChatWidget"; 2 | -------------------------------------------------------------------------------- /src/widgets/ChatMenu/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ChatMenu"; 2 | -------------------------------------------------------------------------------- /src/widgets/LogicTree/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LogicTree"; 2 | -------------------------------------------------------------------------------- /src/widgets/PopChat/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PopChat"; 2 | -------------------------------------------------------------------------------- /src/widgets/SideChat/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SideChat"; 2 | -------------------------------------------------------------------------------- /src/widgets/VFSEditor/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./VFSEditor"; 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | testEnvironment: "jsdom", 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/APIParams/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./APIParams"; 2 | -------------------------------------------------------------------------------- /src/components/APITypes/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./APITypes"; 2 | -------------------------------------------------------------------------------- /src/components/Confetti/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Confetti"; 2 | -------------------------------------------------------------------------------- /src/components/NucEditor/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./NucEditor"; 2 | -------------------------------------------------------------------------------- /src/components/ParamTable/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ParamTable"; 2 | -------------------------------------------------------------------------------- /src/components/Security/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Security"; 2 | -------------------------------------------------------------------------------- /src/components/Settings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Settings"; 2 | -------------------------------------------------------------------------------- /src/components/SmallLogo/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SmallLogo"; 2 | -------------------------------------------------------------------------------- /src/dist/lodash/add.d.ts: -------------------------------------------------------------------------------- 1 | import { add } from "./index"; 2 | export = add; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/ary.d.ts: -------------------------------------------------------------------------------- 1 | import { ary } from "./index"; 2 | export = ary; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/at.d.ts: -------------------------------------------------------------------------------- 1 | import { at } from "./index"; 2 | export = at; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/eq.d.ts: -------------------------------------------------------------------------------- 1 | import { eq } from "./index"; 2 | export = eq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/add.d.ts: -------------------------------------------------------------------------------- 1 | import { add } from "../fp"; 2 | export = add; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/all.d.ts: -------------------------------------------------------------------------------- 1 | import { all } from "../fp"; 2 | export = all; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/any.d.ts: -------------------------------------------------------------------------------- 1 | import { any } from "../fp"; 2 | export = any; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/ary.d.ts: -------------------------------------------------------------------------------- 1 | import { ary } from "../fp"; 2 | export = ary; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/at.d.ts: -------------------------------------------------------------------------------- 1 | import { at } from "../fp"; 2 | export = at; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/eq.d.ts: -------------------------------------------------------------------------------- 1 | import { eq } from "../fp"; 2 | export = eq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/get.d.ts: -------------------------------------------------------------------------------- 1 | import { get } from "../fp"; 2 | export = get; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/gt.d.ts: -------------------------------------------------------------------------------- 1 | import { gt } from "../fp"; 2 | export = gt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/gte.d.ts: -------------------------------------------------------------------------------- 1 | import { gte } from "../fp"; 2 | export = gte; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/has.d.ts: -------------------------------------------------------------------------------- 1 | import { has } from "../fp"; 2 | export = has; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/lt.d.ts: -------------------------------------------------------------------------------- 1 | import { lt } from "../fp"; 2 | export = lt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/lte.d.ts: -------------------------------------------------------------------------------- 1 | import { lte } from "../fp"; 2 | export = lte; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/map.d.ts: -------------------------------------------------------------------------------- 1 | import { map } from "../fp"; 2 | export = map; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/max.d.ts: -------------------------------------------------------------------------------- 1 | import { max } from "../fp"; 2 | export = max; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/min.d.ts: -------------------------------------------------------------------------------- 1 | import { min } from "../fp"; 2 | export = min; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/now.d.ts: -------------------------------------------------------------------------------- 1 | import { now } from "../fp"; 2 | export = now; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/nth.d.ts: -------------------------------------------------------------------------------- 1 | import { nth } from "../fp"; 2 | export = nth; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pad.d.ts: -------------------------------------------------------------------------------- 1 | import { pad } from "../fp"; 2 | export = pad; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/set.d.ts: -------------------------------------------------------------------------------- 1 | import { set } from "../fp"; 2 | export = set; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sum.d.ts: -------------------------------------------------------------------------------- 1 | import { sum } from "../fp"; 2 | export = sum; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/tap.d.ts: -------------------------------------------------------------------------------- 1 | import { tap } from "../fp"; 2 | export = tap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/xor.d.ts: -------------------------------------------------------------------------------- 1 | import { xor } from "../fp"; 2 | export = xor; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/zip.d.ts: -------------------------------------------------------------------------------- 1 | import { zip } from "../fp"; 2 | export = zip; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/get.d.ts: -------------------------------------------------------------------------------- 1 | import { get } from "./index"; 2 | export = get; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/gt.d.ts: -------------------------------------------------------------------------------- 1 | import { gt } from "./index"; 2 | export = gt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/gte.d.ts: -------------------------------------------------------------------------------- 1 | import { gte } from "./index"; 2 | export = gte; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/has.d.ts: -------------------------------------------------------------------------------- 1 | import { has } from "./index"; 2 | export = has; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/lt.d.ts: -------------------------------------------------------------------------------- 1 | import { lt } from "./index"; 2 | export = lt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/lte.d.ts: -------------------------------------------------------------------------------- 1 | import { lte } from "./index"; 2 | export = lte; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/map.d.ts: -------------------------------------------------------------------------------- 1 | import { map } from "./index"; 2 | export = map; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/max.d.ts: -------------------------------------------------------------------------------- 1 | import { max } from "./index"; 2 | export = max; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/min.d.ts: -------------------------------------------------------------------------------- 1 | import { min } from "./index"; 2 | export = min; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/now.d.ts: -------------------------------------------------------------------------------- 1 | import { now } from "./index"; 2 | export = now; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/nth.d.ts: -------------------------------------------------------------------------------- 1 | import { nth } from "./index"; 2 | export = nth; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/pad.d.ts: -------------------------------------------------------------------------------- 1 | import { pad } from "./index"; 2 | export = pad; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/set.d.ts: -------------------------------------------------------------------------------- 1 | import { set } from "./index"; 2 | export = set; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sum.d.ts: -------------------------------------------------------------------------------- 1 | import { sum } from "./index"; 2 | export = sum; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/tap.d.ts: -------------------------------------------------------------------------------- 1 | import { tap } from "./index"; 2 | export = tap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/xor.d.ts: -------------------------------------------------------------------------------- 1 | import { xor } from "./index"; 2 | export = xor; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/zip.d.ts: -------------------------------------------------------------------------------- 1 | import { zip } from "./index"; 2 | export = zip; 3 | -------------------------------------------------------------------------------- /src/layouts/BlankLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BlankLayout"; 2 | -------------------------------------------------------------------------------- /src/layouts/ChatLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ChatLayout"; 2 | -------------------------------------------------------------------------------- /src/pages/ide/Dashboard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Dashboard"; 2 | -------------------------------------------------------------------------------- /src/pages/ide/Functions/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Functions"; 2 | -------------------------------------------------------------------------------- /src/widgets/AIDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LogicDialog"; 2 | -------------------------------------------------------------------------------- /src/widgets/APISettings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./APISettings"; 2 | -------------------------------------------------------------------------------- /src/widgets/ChatDrawer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ChatDrawer"; 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/preset-env", "@babel/preset-react"] 3 | } 4 | -------------------------------------------------------------------------------- /src/components/DialogTootip/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DialogTooltip"; 2 | -------------------------------------------------------------------------------- /src/components/GraphButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./GraphButton"; 2 | -------------------------------------------------------------------------------- /src/components/GraphDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./GraphDialog"; 2 | -------------------------------------------------------------------------------- /src/components/LogoutButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LogoutButton"; 2 | -------------------------------------------------------------------------------- /src/components/SchemaEditor/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SchemaEditor"; 2 | -------------------------------------------------------------------------------- /src/containers/Chat/Onboarding/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Onboarding"; 2 | -------------------------------------------------------------------------------- /src/dist/lodash/after.d.ts: -------------------------------------------------------------------------------- 1 | import { after } from "./index"; 2 | export = after; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/bind.d.ts: -------------------------------------------------------------------------------- 1 | import { bind } from "./index"; 2 | export = bind; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/ceil.d.ts: -------------------------------------------------------------------------------- 1 | import { ceil } from "./index"; 2 | export = ceil; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/chain.d.ts: -------------------------------------------------------------------------------- 1 | import { chain } from "./index"; 2 | export = chain; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/chunk.d.ts: -------------------------------------------------------------------------------- 1 | import { chunk } from "./index"; 2 | export = chunk; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/clamp.d.ts: -------------------------------------------------------------------------------- 1 | import { clamp } from "./index"; 2 | export = clamp; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/clone.d.ts: -------------------------------------------------------------------------------- 1 | import { clone } from "./index"; 2 | export = clone; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/cond.d.ts: -------------------------------------------------------------------------------- 1 | import { cond } from "./index"; 2 | export = cond; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/curry.d.ts: -------------------------------------------------------------------------------- 1 | import { curry } from "./index"; 2 | export = curry; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/defer.d.ts: -------------------------------------------------------------------------------- 1 | import { defer } from "./index"; 2 | export = defer; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/delay.d.ts: -------------------------------------------------------------------------------- 1 | import { delay } from "./index"; 2 | export = delay; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/drop.d.ts: -------------------------------------------------------------------------------- 1 | import { drop } from "./index"; 2 | export = drop; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/each.d.ts: -------------------------------------------------------------------------------- 1 | import { each } from "./index"; 2 | export = each; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/every.d.ts: -------------------------------------------------------------------------------- 1 | import { every } from "./index"; 2 | export = every; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fill.d.ts: -------------------------------------------------------------------------------- 1 | import { fill } from "./index"; 2 | export = fill; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/find.d.ts: -------------------------------------------------------------------------------- 1 | import { find } from "./index"; 2 | export = find; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/first.d.ts: -------------------------------------------------------------------------------- 1 | import { first } from "./index"; 2 | export = first; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flip.d.ts: -------------------------------------------------------------------------------- 1 | import { flip } from "./index"; 2 | export = flip; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/floor.d.ts: -------------------------------------------------------------------------------- 1 | import { floor } from "./index"; 2 | export = floor; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flow.d.ts: -------------------------------------------------------------------------------- 1 | import { flow } from "./index"; 2 | export = flow; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/forIn.d.ts: -------------------------------------------------------------------------------- 1 | import { forIn } from "./index"; 2 | export = forIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/bind.d.ts: -------------------------------------------------------------------------------- 1 | import { bind } from "../fp"; 2 | export = bind; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/ceil.d.ts: -------------------------------------------------------------------------------- 1 | import { ceil } from "../fp"; 2 | export = ceil; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/cond.d.ts: -------------------------------------------------------------------------------- 1 | import { cond } from "../fp"; 2 | export = cond; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/drop.d.ts: -------------------------------------------------------------------------------- 1 | import { drop } from "../fp"; 2 | export = drop; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/each.d.ts: -------------------------------------------------------------------------------- 1 | import { each } from "../fp"; 2 | export = each; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/fill.d.ts: -------------------------------------------------------------------------------- 1 | import { fill } from "../fp"; 2 | export = fill; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/find.d.ts: -------------------------------------------------------------------------------- 1 | import { find } from "../fp"; 2 | export = find; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flip.d.ts: -------------------------------------------------------------------------------- 1 | import { flip } from "../fp"; 2 | export = flip; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flow.d.ts: -------------------------------------------------------------------------------- 1 | import { flow } from "../fp"; 2 | export = flow; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/head.d.ts: -------------------------------------------------------------------------------- 1 | import { head } from "../fp"; 2 | export = head; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/init.d.ts: -------------------------------------------------------------------------------- 1 | import { init } from "../fp"; 2 | export = init; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/join.d.ts: -------------------------------------------------------------------------------- 1 | import { join } from "../fp"; 2 | export = join; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/juxt.d.ts: -------------------------------------------------------------------------------- 1 | import { juxt } from "../fp"; 2 | export = juxt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/keys.d.ts: -------------------------------------------------------------------------------- 1 | import { keys } from "../fp"; 2 | export = keys; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/last.d.ts: -------------------------------------------------------------------------------- 1 | import { last } from "../fp"; 2 | export = last; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/mean.d.ts: -------------------------------------------------------------------------------- 1 | import { mean } from "../fp"; 2 | export = mean; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/nAry.d.ts: -------------------------------------------------------------------------------- 1 | import { nAry } from "../fp"; 2 | export = nAry; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/noop.d.ts: -------------------------------------------------------------------------------- 1 | import { noop } from "../fp"; 2 | export = noop; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/omit.d.ts: -------------------------------------------------------------------------------- 1 | import { omit } from "../fp"; 2 | export = omit; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/once.d.ts: -------------------------------------------------------------------------------- 1 | import { once } from "../fp"; 2 | export = once; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/over.d.ts: -------------------------------------------------------------------------------- 1 | import { over } from "../fp"; 2 | export = over; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/path.d.ts: -------------------------------------------------------------------------------- 1 | import { path } from "../fp"; 2 | export = path; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pick.d.ts: -------------------------------------------------------------------------------- 1 | import { pick } from "../fp"; 2 | export = pick; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pipe.d.ts: -------------------------------------------------------------------------------- 1 | import { pipe } from "../fp"; 2 | export = pipe; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/prop.d.ts: -------------------------------------------------------------------------------- 1 | import { prop } from "../fp"; 2 | export = prop; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pull.d.ts: -------------------------------------------------------------------------------- 1 | import { pull } from "../fp"; 2 | export = pull; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/rest.d.ts: -------------------------------------------------------------------------------- 1 | import { rest } from "../fp"; 2 | export = rest; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/size.d.ts: -------------------------------------------------------------------------------- 1 | import { size } from "../fp"; 2 | export = size; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/some.d.ts: -------------------------------------------------------------------------------- 1 | import { some } from "../fp"; 2 | export = some; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/tail.d.ts: -------------------------------------------------------------------------------- 1 | import { tail } from "../fp"; 2 | export = tail; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/take.d.ts: -------------------------------------------------------------------------------- 1 | import { take } from "../fp"; 2 | export = take; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/thru.d.ts: -------------------------------------------------------------------------------- 1 | import { thru } from "../fp"; 2 | export = thru; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/trim.d.ts: -------------------------------------------------------------------------------- 1 | import { trim } from "../fp"; 2 | export = trim; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/uniq.d.ts: -------------------------------------------------------------------------------- 1 | import { uniq } from "../fp"; 2 | export = uniq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/wrap.d.ts: -------------------------------------------------------------------------------- 1 | import { wrap } from "../fp"; 2 | export = wrap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/hasIn.d.ts: -------------------------------------------------------------------------------- 1 | import { hasIn } from "./index"; 2 | export = hasIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/head.d.ts: -------------------------------------------------------------------------------- 1 | import { head } from "./index"; 2 | export = head; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isMap.d.ts: -------------------------------------------------------------------------------- 1 | import { isMap } from "./index"; 2 | export = isMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isNaN.d.ts: -------------------------------------------------------------------------------- 1 | import { isNaN } from "./index"; 2 | export = isNaN; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isNil.d.ts: -------------------------------------------------------------------------------- 1 | import { isNil } from "./index"; 2 | export = isNil; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isSet.d.ts: -------------------------------------------------------------------------------- 1 | import { isSet } from "./index"; 2 | export = isSet; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/join.d.ts: -------------------------------------------------------------------------------- 1 | import { join } from "./index"; 2 | export = join; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/keyBy.d.ts: -------------------------------------------------------------------------------- 1 | import { keyBy } from "./index"; 2 | export = keyBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/keys.d.ts: -------------------------------------------------------------------------------- 1 | import { keys } from "./index"; 2 | export = keys; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/last.d.ts: -------------------------------------------------------------------------------- 1 | import { last } from "./index"; 2 | export = last; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/maxBy.d.ts: -------------------------------------------------------------------------------- 1 | import { maxBy } from "./index"; 2 | export = maxBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/mean.d.ts: -------------------------------------------------------------------------------- 1 | import { mean } from "./index"; 2 | export = mean; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/merge.d.ts: -------------------------------------------------------------------------------- 1 | import { merge } from "./index"; 2 | export = merge; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/minBy.d.ts: -------------------------------------------------------------------------------- 1 | import { minBy } from "./index"; 2 | export = minBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/mixin.d.ts: -------------------------------------------------------------------------------- 1 | import { mixin } from "./index"; 2 | export = mixin; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/noop.d.ts: -------------------------------------------------------------------------------- 1 | import { noop } from "./index"; 2 | export = noop; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/omit.d.ts: -------------------------------------------------------------------------------- 1 | import { omit } from "./index"; 2 | export = omit; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/once.d.ts: -------------------------------------------------------------------------------- 1 | import { once } from "./index"; 2 | export = once; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/over.d.ts: -------------------------------------------------------------------------------- 1 | import { over } from "./index"; 2 | export = over; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/pick.d.ts: -------------------------------------------------------------------------------- 1 | import { pick } from "./index"; 2 | export = pick; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/pull.d.ts: -------------------------------------------------------------------------------- 1 | import { pull } from "./index"; 2 | export = pull; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/range.d.ts: -------------------------------------------------------------------------------- 1 | import { range } from "./index"; 2 | export = range; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/rearg.d.ts: -------------------------------------------------------------------------------- 1 | import { rearg } from "./index"; 2 | export = rearg; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/rest.d.ts: -------------------------------------------------------------------------------- 1 | import { rest } from "./index"; 2 | export = rest; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/round.d.ts: -------------------------------------------------------------------------------- 1 | import { round } from "./index"; 2 | export = round; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/size.d.ts: -------------------------------------------------------------------------------- 1 | import { size } from "./index"; 2 | export = size; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/slice.d.ts: -------------------------------------------------------------------------------- 1 | import { slice } from "./index"; 2 | export = slice; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/some.d.ts: -------------------------------------------------------------------------------- 1 | import { some } from "./index"; 2 | export = some; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/split.d.ts: -------------------------------------------------------------------------------- 1 | import { split } from "./index"; 2 | export = split; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sumBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sumBy } from "./index"; 2 | export = sumBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/tail.d.ts: -------------------------------------------------------------------------------- 1 | import { tail } from "./index"; 2 | export = tail; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/take.d.ts: -------------------------------------------------------------------------------- 1 | import { take } from "./index"; 2 | export = take; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/thru.d.ts: -------------------------------------------------------------------------------- 1 | import { thru } from "./index"; 2 | export = thru; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/times.d.ts: -------------------------------------------------------------------------------- 1 | import { times } from "./index"; 2 | export = times; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/trim.d.ts: -------------------------------------------------------------------------------- 1 | import { trim } from "./index"; 2 | export = trim; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/unary.d.ts: -------------------------------------------------------------------------------- 1 | import { unary } from "./index"; 2 | export = unary; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/union.d.ts: -------------------------------------------------------------------------------- 1 | import { union } from "./index"; 2 | export = union; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/uniq.d.ts: -------------------------------------------------------------------------------- 1 | import { uniq } from "./index"; 2 | export = uniq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/unset.d.ts: -------------------------------------------------------------------------------- 1 | import { unset } from "./index"; 2 | export = unset; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/unzip.d.ts: -------------------------------------------------------------------------------- 1 | import { unzip } from "./index"; 2 | export = unzip; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/words.d.ts: -------------------------------------------------------------------------------- 1 | import { words } from "./index"; 2 | export = words; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/wrap.d.ts: -------------------------------------------------------------------------------- 1 | import { wrap } from "./index"; 2 | export = wrap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/xorBy.d.ts: -------------------------------------------------------------------------------- 1 | import { xorBy } from "./index"; 2 | export = xorBy; 3 | -------------------------------------------------------------------------------- /src/pages/ide/BusinessFlow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./BusinessFlow"; 2 | -------------------------------------------------------------------------------- /src/pages/ide/Logic/styles.js: -------------------------------------------------------------------------------- 1 | const styles = {}; 2 | export default styles; 3 | -------------------------------------------------------------------------------- /src/widgets/FunctionDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./FunctionDialog"; 2 | -------------------------------------------------------------------------------- /src/widgets/FunctionTree/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./FunctionTree"; 2 | -------------------------------------------------------------------------------- /src/widgets/OpenAI/styles.js: -------------------------------------------------------------------------------- 1 | const styles = {}; 2 | 3 | export default styles; 4 | -------------------------------------------------------------------------------- /src/widgets/ProcessDrawer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProcessDrawer"; 2 | -------------------------------------------------------------------------------- /src/widgets/ResourceMenu/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ResourceMenu"; 2 | -------------------------------------------------------------------------------- /src/widgets/SettingsDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SettingsDialog"; 2 | -------------------------------------------------------------------------------- /cypress/fixtures/Query/query.metrics.json: -------------------------------------------------------------------------------- 1 | { "free": 529514496, "total": 995381248 } 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/public/logo192.png -------------------------------------------------------------------------------- /src/components/APIDialogAction/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./APIDialogAction"; 2 | -------------------------------------------------------------------------------- /src/components/AppSnackMessage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./AppSnackMessage"; 2 | -------------------------------------------------------------------------------- /src/components/ConfirmDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ConfirmDialog"; 2 | -------------------------------------------------------------------------------- /src/components/EducationDrawer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./EducationDrawer"; 2 | -------------------------------------------------------------------------------- /src/components/LandingDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./LandingDialog"; 2 | -------------------------------------------------------------------------------- /src/components/MessageDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./MessageDialog"; 2 | -------------------------------------------------------------------------------- /src/components/MessagePopper/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./MessagePopper"; 2 | -------------------------------------------------------------------------------- /src/components/ProjectSelect/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProjectSelect"; 2 | -------------------------------------------------------------------------------- /src/components/QueryAIButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./QueryAIButton"; 2 | -------------------------------------------------------------------------------- /src/components/ReadOnlyEditor/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ReadOnlyEditor"; 2 | -------------------------------------------------------------------------------- /src/components/StarUsOnGithub/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./StarUsOnGithub"; 2 | -------------------------------------------------------------------------------- /src/components/ToggleableMenu/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ToggleableMenu"; 2 | -------------------------------------------------------------------------------- /src/containers/IDE/Onboarding/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./Onboarding.jsx"; 2 | -------------------------------------------------------------------------------- /src/dist/lodash/assign.d.ts: -------------------------------------------------------------------------------- 1 | import { assign } from "./index"; 2 | export = assign; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/before.d.ts: -------------------------------------------------------------------------------- 1 | import { before } from "./index"; 2 | export = before; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/concat.d.ts: -------------------------------------------------------------------------------- 1 | import { concat } from "./index"; 2 | export = concat; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/create.d.ts: -------------------------------------------------------------------------------- 1 | import { create } from "./index"; 2 | export = create; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/deburr.d.ts: -------------------------------------------------------------------------------- 1 | import { deburr } from "./index"; 2 | export = deburr; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/divide.d.ts: -------------------------------------------------------------------------------- 1 | import { divide } from "./index"; 2 | export = divide; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/escape.d.ts: -------------------------------------------------------------------------------- 1 | import { escape } from "./index"; 2 | export = escape; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/extend.d.ts: -------------------------------------------------------------------------------- 1 | import { extend } from "./index"; 2 | export = extend; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/filter.d.ts: -------------------------------------------------------------------------------- 1 | import { filter } from "./index"; 2 | export = filter; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/forOwn.d.ts: -------------------------------------------------------------------------------- 1 | import { forOwn } from "./index"; 2 | export = forOwn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/after.d.ts: -------------------------------------------------------------------------------- 1 | import { after } from "../fp"; 2 | export = after; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/always.d.ts: -------------------------------------------------------------------------------- 1 | import { always } from "../fp"; 2 | export = always; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/apply.d.ts: -------------------------------------------------------------------------------- 1 | import { apply } from "../fp"; 2 | export = apply; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assign.d.ts: -------------------------------------------------------------------------------- 1 | import { assign } from "../fp"; 2 | export = assign; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assoc.d.ts: -------------------------------------------------------------------------------- 1 | import { assoc } from "../fp"; 2 | export = assoc; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/before.d.ts: -------------------------------------------------------------------------------- 1 | import { before } from "../fp"; 2 | export = before; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/chunk.d.ts: -------------------------------------------------------------------------------- 1 | import { chunk } from "../fp"; 2 | export = chunk; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/clamp.d.ts: -------------------------------------------------------------------------------- 1 | import { clamp } from "../fp"; 2 | export = clamp; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/clone.d.ts: -------------------------------------------------------------------------------- 1 | import { clone } from "../fp"; 2 | export = clone; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/concat.d.ts: -------------------------------------------------------------------------------- 1 | import { concat } from "../fp"; 2 | export = concat; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/create.d.ts: -------------------------------------------------------------------------------- 1 | import { create } from "../fp"; 2 | export = create; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/curry.d.ts: -------------------------------------------------------------------------------- 1 | import { curry } from "../fp"; 2 | export = curry; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/curryN.d.ts: -------------------------------------------------------------------------------- 1 | import { curryN } from "../fp"; 2 | export = curryN; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/deburr.d.ts: -------------------------------------------------------------------------------- 1 | import { deburr } from "../fp"; 2 | export = deburr; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/defer.d.ts: -------------------------------------------------------------------------------- 1 | import { defer } from "../fp"; 2 | export = defer; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/delay.d.ts: -------------------------------------------------------------------------------- 1 | import { delay } from "../fp"; 2 | export = delay; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/dissoc.d.ts: -------------------------------------------------------------------------------- 1 | import { dissoc } from "../fp"; 2 | export = dissoc; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/divide.d.ts: -------------------------------------------------------------------------------- 1 | import { divide } from "../fp"; 2 | export = divide; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/equals.d.ts: -------------------------------------------------------------------------------- 1 | import { equals } from "../fp"; 2 | export = equals; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/escape.d.ts: -------------------------------------------------------------------------------- 1 | import { escape } from "../fp"; 2 | export = escape; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/every.d.ts: -------------------------------------------------------------------------------- 1 | import { every } from "../fp"; 2 | export = every; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/extend.d.ts: -------------------------------------------------------------------------------- 1 | import { extend } from "../fp"; 2 | export = extend; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/filter.d.ts: -------------------------------------------------------------------------------- 1 | import { filter } from "../fp"; 2 | export = filter; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/first.d.ts: -------------------------------------------------------------------------------- 1 | import { first } from "../fp"; 2 | export = first; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/floor.d.ts: -------------------------------------------------------------------------------- 1 | import { floor } from "../fp"; 2 | export = floor; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/forIn.d.ts: -------------------------------------------------------------------------------- 1 | import { forIn } from "../fp"; 2 | export = forIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/forOwn.d.ts: -------------------------------------------------------------------------------- 1 | import { forOwn } from "../fp"; 2 | export = forOwn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/getOr.d.ts: -------------------------------------------------------------------------------- 1 | import { getOr } from "../fp"; 2 | export = getOr; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/hasIn.d.ts: -------------------------------------------------------------------------------- 1 | import { hasIn } from "../fp"; 2 | export = hasIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/invert.d.ts: -------------------------------------------------------------------------------- 1 | import { invert } from "../fp"; 2 | export = invert; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/invoke.d.ts: -------------------------------------------------------------------------------- 1 | import { invoke } from "../fp"; 2 | export = invoke; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isDate.d.ts: -------------------------------------------------------------------------------- 1 | import { isDate } from "../fp"; 2 | export = isDate; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isMap.d.ts: -------------------------------------------------------------------------------- 1 | import { isMap } from "../fp"; 2 | export = isMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isNaN.d.ts: -------------------------------------------------------------------------------- 1 | import { isNaN } from "../fp"; 2 | export = isNaN; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isNil.d.ts: -------------------------------------------------------------------------------- 1 | import { isNil } from "../fp"; 2 | export = isNil; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isNull.d.ts: -------------------------------------------------------------------------------- 1 | import { isNull } from "../fp"; 2 | export = isNull; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isSet.d.ts: -------------------------------------------------------------------------------- 1 | import { isSet } from "../fp"; 2 | export = isSet; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/keyBy.d.ts: -------------------------------------------------------------------------------- 1 | import { keyBy } from "../fp"; 2 | export = keyBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/keysIn.d.ts: -------------------------------------------------------------------------------- 1 | import { keysIn } from "../fp"; 2 | export = keysIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/maxBy.d.ts: -------------------------------------------------------------------------------- 1 | import { maxBy } from "../fp"; 2 | export = maxBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/meanBy.d.ts: -------------------------------------------------------------------------------- 1 | import { meanBy } from "../fp"; 2 | export = meanBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/merge.d.ts: -------------------------------------------------------------------------------- 1 | import { merge } from "../fp"; 2 | export = merge; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/method.d.ts: -------------------------------------------------------------------------------- 1 | import { method } from "../fp"; 2 | export = method; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/minBy.d.ts: -------------------------------------------------------------------------------- 1 | import { minBy } from "../fp"; 2 | export = minBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/negate.d.ts: -------------------------------------------------------------------------------- 1 | import { negate } from "../fp"; 2 | export = negate; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/nthArg.d.ts: -------------------------------------------------------------------------------- 1 | import { nthArg } from "../fp"; 2 | export = nthArg; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/omitBy.d.ts: -------------------------------------------------------------------------------- 1 | import { omitBy } from "../fp"; 2 | export = omitBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/padEnd.d.ts: -------------------------------------------------------------------------------- 1 | import { padEnd } from "../fp"; 2 | export = padEnd; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pathEq.d.ts: -------------------------------------------------------------------------------- 1 | import { pathEq } from "../fp"; 2 | export = pathEq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pathOr.d.ts: -------------------------------------------------------------------------------- 1 | import { pathOr } from "../fp"; 2 | export = pathOr; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/paths.d.ts: -------------------------------------------------------------------------------- 1 | import { paths } from "../fp"; 2 | export = paths; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pickBy.d.ts: -------------------------------------------------------------------------------- 1 | import { pickBy } from "../fp"; 2 | export = pickBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pluck.d.ts: -------------------------------------------------------------------------------- 1 | import { pluck } from "../fp"; 2 | export = pluck; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/propEq.d.ts: -------------------------------------------------------------------------------- 1 | import { propEq } from "../fp"; 2 | export = propEq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/propOr.d.ts: -------------------------------------------------------------------------------- 1 | import { propOr } from "../fp"; 2 | export = propOr; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/props.d.ts: -------------------------------------------------------------------------------- 1 | import { props } from "../fp"; 2 | export = props; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pullAt.d.ts: -------------------------------------------------------------------------------- 1 | import { pullAt } from "../fp"; 2 | export = pullAt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/random.d.ts: -------------------------------------------------------------------------------- 1 | import { random } from "../fp"; 2 | export = random; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/range.d.ts: -------------------------------------------------------------------------------- 1 | import { range } from "../fp"; 2 | export = range; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/rearg.d.ts: -------------------------------------------------------------------------------- 1 | import { rearg } from "../fp"; 2 | export = rearg; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/reduce.d.ts: -------------------------------------------------------------------------------- 1 | import { reduce } from "../fp"; 2 | export = reduce; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/reject.d.ts: -------------------------------------------------------------------------------- 1 | import { reject } from "../fp"; 2 | export = reject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/remove.d.ts: -------------------------------------------------------------------------------- 1 | import { remove } from "../fp"; 2 | export = remove; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/repeat.d.ts: -------------------------------------------------------------------------------- 1 | import { repeat } from "../fp"; 2 | export = repeat; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/result.d.ts: -------------------------------------------------------------------------------- 1 | import { result } from "../fp"; 2 | export = result; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/round.d.ts: -------------------------------------------------------------------------------- 1 | import { round } from "../fp"; 2 | export = round; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sample.d.ts: -------------------------------------------------------------------------------- 1 | import { sample } from "../fp"; 2 | export = sample; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/slice.d.ts: -------------------------------------------------------------------------------- 1 | import { slice } from "../fp"; 2 | export = slice; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sortBy } from "../fp"; 2 | export = sortBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/split.d.ts: -------------------------------------------------------------------------------- 1 | import { split } from "../fp"; 2 | export = split; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/spread.d.ts: -------------------------------------------------------------------------------- 1 | import { spread } from "../fp"; 2 | export = spread; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sumBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sumBy } from "../fp"; 2 | export = sumBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/times.d.ts: -------------------------------------------------------------------------------- 1 | import { times } from "../fp"; 2 | export = times; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toPath.d.ts: -------------------------------------------------------------------------------- 1 | import { toPath } from "../fp"; 2 | export = toPath; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unary.d.ts: -------------------------------------------------------------------------------- 1 | import { unary } from "../fp"; 2 | export = unary; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/union.d.ts: -------------------------------------------------------------------------------- 1 | import { union } from "../fp"; 2 | export = union; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/uniqBy.d.ts: -------------------------------------------------------------------------------- 1 | import { uniqBy } from "../fp"; 2 | export = uniqBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unnest.d.ts: -------------------------------------------------------------------------------- 1 | import { unnest } from "../fp"; 2 | export = unnest; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unset.d.ts: -------------------------------------------------------------------------------- 1 | import { unset } from "../fp"; 2 | export = unset; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unzip.d.ts: -------------------------------------------------------------------------------- 1 | import { unzip } from "../fp"; 2 | export = unzip; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/update.d.ts: -------------------------------------------------------------------------------- 1 | import { update } from "../fp"; 2 | export = update; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/values.d.ts: -------------------------------------------------------------------------------- 1 | import { values } from "../fp"; 2 | export = values; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/where.d.ts: -------------------------------------------------------------------------------- 1 | import { where } from "../fp"; 2 | export = where; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/words.d.ts: -------------------------------------------------------------------------------- 1 | import { words } from "../fp"; 2 | export = words; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/xorBy.d.ts: -------------------------------------------------------------------------------- 1 | import { xorBy } from "../fp"; 2 | export = xorBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/zipAll.d.ts: -------------------------------------------------------------------------------- 1 | import { zipAll } from "../fp"; 2 | export = zipAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/zipObj.d.ts: -------------------------------------------------------------------------------- 1 | import { zipObj } from "../fp"; 2 | export = zipObj; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/invert.d.ts: -------------------------------------------------------------------------------- 1 | import { invert } from "./index"; 2 | export = invert; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/invoke.d.ts: -------------------------------------------------------------------------------- 1 | import { invoke } from "./index"; 2 | export = invoke; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isDate.d.ts: -------------------------------------------------------------------------------- 1 | import { isDate } from "./index"; 2 | export = isDate; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isNull.d.ts: -------------------------------------------------------------------------------- 1 | import { isNull } from "./index"; 2 | export = isNull; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/keysIn.d.ts: -------------------------------------------------------------------------------- 1 | import { keysIn } from "./index"; 2 | export = keysIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/meanBy.d.ts: -------------------------------------------------------------------------------- 1 | import { meanBy } from "./index"; 2 | export = meanBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/method.d.ts: -------------------------------------------------------------------------------- 1 | import { method } from "./index"; 2 | export = method; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/negate.d.ts: -------------------------------------------------------------------------------- 1 | import { negate } from "./index"; 2 | export = negate; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/nthArg.d.ts: -------------------------------------------------------------------------------- 1 | import { nthArg } from "./index"; 2 | export = nthArg; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/omitBy.d.ts: -------------------------------------------------------------------------------- 1 | import { omitBy } from "./index"; 2 | export = omitBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/padEnd.d.ts: -------------------------------------------------------------------------------- 1 | import { padEnd } from "./index"; 2 | export = padEnd; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/pickBy.d.ts: -------------------------------------------------------------------------------- 1 | import { pickBy } from "./index"; 2 | export = pickBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/pullAt.d.ts: -------------------------------------------------------------------------------- 1 | import { pullAt } from "./index"; 2 | export = pullAt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/random.d.ts: -------------------------------------------------------------------------------- 1 | import { random } from "./index"; 2 | export = random; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/reduce.d.ts: -------------------------------------------------------------------------------- 1 | import { reduce } from "./index"; 2 | export = reduce; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/reject.d.ts: -------------------------------------------------------------------------------- 1 | import { reject } from "./index"; 2 | export = reject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/remove.d.ts: -------------------------------------------------------------------------------- 1 | import { remove } from "./index"; 2 | export = remove; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/repeat.d.ts: -------------------------------------------------------------------------------- 1 | import { repeat } from "./index"; 2 | export = repeat; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/result.d.ts: -------------------------------------------------------------------------------- 1 | import { result } from "./index"; 2 | export = result; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sample.d.ts: -------------------------------------------------------------------------------- 1 | import { sample } from "./index"; 2 | export = sample; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sortBy } from "./index"; 2 | export = sortBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/spread.d.ts: -------------------------------------------------------------------------------- 1 | import { spread } from "./index"; 2 | export = spread; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toPath.d.ts: -------------------------------------------------------------------------------- 1 | import { toPath } from "./index"; 2 | export = toPath; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/uniqBy.d.ts: -------------------------------------------------------------------------------- 1 | import { uniqBy } from "./index"; 2 | export = uniqBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/update.d.ts: -------------------------------------------------------------------------------- 1 | import { update } from "./index"; 2 | export = update; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/values.d.ts: -------------------------------------------------------------------------------- 1 | import { values } from "./index"; 2 | export = values; 3 | -------------------------------------------------------------------------------- /src/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/src/images/code.png -------------------------------------------------------------------------------- /src/components/GlobalMessageBox/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./GlobalMessageBox"; 2 | -------------------------------------------------------------------------------- /src/components/OpenSwaggerDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./OpenSwaggerDialog"; 2 | -------------------------------------------------------------------------------- /src/components/PromptCodeDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./PromptCodeDialog"; 2 | -------------------------------------------------------------------------------- /src/components/RatioIconButtons/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./RatioIconButtons"; 2 | -------------------------------------------------------------------------------- /src/components/SettingsDialogDev/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SettingsDialogDev"; 2 | -------------------------------------------------------------------------------- /src/dist/lodash/assignIn.d.ts: -------------------------------------------------------------------------------- 1 | import { assignIn } from "./index"; 2 | export = assignIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/attempt.d.ts: -------------------------------------------------------------------------------- 1 | import { attempt } from "./index"; 2 | export = attempt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/bindAll.d.ts: -------------------------------------------------------------------------------- 1 | import { bindAll } from "./index"; 2 | export = bindAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/bindKey.d.ts: -------------------------------------------------------------------------------- 1 | import { bindKey } from "./index"; 2 | export = bindKey; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/compact.d.ts: -------------------------------------------------------------------------------- 1 | import { compact } from "./index"; 2 | export = compact; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/constant.d.ts: -------------------------------------------------------------------------------- 1 | import { constant } from "./index"; 2 | export = constant; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/countBy.d.ts: -------------------------------------------------------------------------------- 1 | import { countBy } from "./index"; 2 | export = countBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/debounce.d.ts: -------------------------------------------------------------------------------- 1 | import { debounce } from "./index"; 2 | export = debounce; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { defaults } from "./index"; 2 | export = defaults; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/endsWith.d.ts: -------------------------------------------------------------------------------- 1 | import { endsWith } from "./index"; 2 | export = endsWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/entries.d.ts: -------------------------------------------------------------------------------- 1 | import { entries } from "./index"; 2 | export = entries; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/findKey.d.ts: -------------------------------------------------------------------------------- 1 | import { findKey } from "./index"; 2 | export = findKey; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/findLast.d.ts: -------------------------------------------------------------------------------- 1 | import { findLast } from "./index"; 2 | export = findLast; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flatMap.d.ts: -------------------------------------------------------------------------------- 1 | import { flatMap } from "./index"; 2 | export = flatMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flatten.d.ts: -------------------------------------------------------------------------------- 1 | import { flatten } from "./index"; 2 | export = flatten; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/forEach.d.ts: -------------------------------------------------------------------------------- 1 | import { forEach } from "./index"; 2 | export = forEach; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/allPass.d.ts: -------------------------------------------------------------------------------- 1 | import { allPass } from "../fp"; 2 | export = allPass; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/anyPass.d.ts: -------------------------------------------------------------------------------- 1 | import { anyPass } from "../fp"; 2 | export = anyPass; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assignIn.d.ts: -------------------------------------------------------------------------------- 1 | import { assignIn } from "../fp"; 2 | export = assignIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/attempt.d.ts: -------------------------------------------------------------------------------- 1 | import { attempt } from "../fp"; 2 | export = attempt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/bindAll.d.ts: -------------------------------------------------------------------------------- 1 | import { bindAll } from "../fp"; 2 | export = bindAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/bindKey.d.ts: -------------------------------------------------------------------------------- 1 | import { bindKey } from "../fp"; 2 | export = bindKey; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/compact.d.ts: -------------------------------------------------------------------------------- 1 | import { compact } from "../fp"; 2 | export = compact; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/compose.d.ts: -------------------------------------------------------------------------------- 1 | import { compose } from "../fp"; 2 | export = compose; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/conforms.d.ts: -------------------------------------------------------------------------------- 1 | import { conforms } from "../fp"; 2 | export = conforms; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/constant.d.ts: -------------------------------------------------------------------------------- 1 | import { constant } from "../fp"; 2 | export = constant; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/contains.d.ts: -------------------------------------------------------------------------------- 1 | import { contains } from "../fp"; 2 | export = contains; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/countBy.d.ts: -------------------------------------------------------------------------------- 1 | import { countBy } from "../fp"; 2 | export = countBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/debounce.d.ts: -------------------------------------------------------------------------------- 1 | import { debounce } from "../fp"; 2 | export = debounce; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { defaults } from "../fp"; 2 | export = defaults; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/dropLast.d.ts: -------------------------------------------------------------------------------- 1 | import { dropLast } from "../fp"; 2 | export = dropLast; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/endsWith.d.ts: -------------------------------------------------------------------------------- 1 | import { endsWith } from "../fp"; 2 | export = endsWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/entries.d.ts: -------------------------------------------------------------------------------- 1 | import { entries } from "../fp"; 2 | export = entries; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { findFrom } from "../fp"; 2 | export = findFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findKey.d.ts: -------------------------------------------------------------------------------- 1 | import { findKey } from "../fp"; 2 | export = findKey; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findLast.d.ts: -------------------------------------------------------------------------------- 1 | import { findLast } from "../fp"; 2 | export = findLast; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flatMap.d.ts: -------------------------------------------------------------------------------- 1 | import { flatMap } from "../fp"; 2 | export = flatMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flatten.d.ts: -------------------------------------------------------------------------------- 1 | import { flatten } from "../fp"; 2 | export = flatten; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/forEach.d.ts: -------------------------------------------------------------------------------- 1 | import { forEach } from "../fp"; 2 | export = forEach; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/groupBy.d.ts: -------------------------------------------------------------------------------- 1 | import { groupBy } from "../fp"; 2 | export = groupBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/identity.d.ts: -------------------------------------------------------------------------------- 1 | import { identity } from "../fp"; 2 | export = identity; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/inRange.d.ts: -------------------------------------------------------------------------------- 1 | import { inRange } from "../fp"; 2 | export = inRange; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/includes.d.ts: -------------------------------------------------------------------------------- 1 | import { includes } from "../fp"; 2 | export = includes; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/indexBy.d.ts: -------------------------------------------------------------------------------- 1 | import { indexBy } from "../fp"; 2 | export = indexBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/indexOf.d.ts: -------------------------------------------------------------------------------- 1 | import { indexOf } from "../fp"; 2 | export = indexOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/initial.d.ts: -------------------------------------------------------------------------------- 1 | import { initial } from "../fp"; 2 | export = initial; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/invertBy.d.ts: -------------------------------------------------------------------------------- 1 | import { invertBy } from "../fp"; 2 | export = invertBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isArray.d.ts: -------------------------------------------------------------------------------- 1 | import { isArray } from "../fp"; 2 | export = isArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isBuffer.d.ts: -------------------------------------------------------------------------------- 1 | import { isBuffer } from "../fp"; 2 | export = isBuffer; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isEmpty.d.ts: -------------------------------------------------------------------------------- 1 | import { isEmpty } from "../fp"; 2 | export = isEmpty; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isEqual.d.ts: -------------------------------------------------------------------------------- 1 | import { isEqual } from "../fp"; 2 | export = isEqual; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isError.d.ts: -------------------------------------------------------------------------------- 1 | import { isError } from "../fp"; 2 | export = isError; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isFinite.d.ts: -------------------------------------------------------------------------------- 1 | import { isFinite } from "../fp"; 2 | export = isFinite; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isLength.d.ts: -------------------------------------------------------------------------------- 1 | import { isLength } from "../fp"; 2 | export = isLength; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isMatch.d.ts: -------------------------------------------------------------------------------- 1 | import { isMatch } from "../fp"; 2 | export = isMatch; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isNative.d.ts: -------------------------------------------------------------------------------- 1 | import { isNative } from "../fp"; 2 | export = isNative; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isNumber.d.ts: -------------------------------------------------------------------------------- 1 | import { isNumber } from "../fp"; 2 | export = isNumber; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isObject.d.ts: -------------------------------------------------------------------------------- 1 | import { isObject } from "../fp"; 2 | export = isObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isRegExp.d.ts: -------------------------------------------------------------------------------- 1 | import { isRegExp } from "../fp"; 2 | export = isRegExp; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isString.d.ts: -------------------------------------------------------------------------------- 1 | import { isString } from "../fp"; 2 | export = isString; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isSymbol.d.ts: -------------------------------------------------------------------------------- 1 | import { isSymbol } from "../fp"; 2 | export = isSymbol; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/iteratee.d.ts: -------------------------------------------------------------------------------- 1 | import { iteratee } from "../fp"; 2 | export = iteratee; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/mapKeys.d.ts: -------------------------------------------------------------------------------- 1 | import { mapKeys } from "../fp"; 2 | export = mapKeys; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/matches.d.ts: -------------------------------------------------------------------------------- 1 | import { matches } from "../fp"; 2 | export = matches; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/memoize.d.ts: -------------------------------------------------------------------------------- 1 | import { memoize } from "../fp"; 2 | export = memoize; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/mergeAll.d.ts: -------------------------------------------------------------------------------- 1 | import { mergeAll } from "../fp"; 2 | export = mergeAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/methodOf.d.ts: -------------------------------------------------------------------------------- 1 | import { methodOf } from "../fp"; 2 | export = methodOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/multiply.d.ts: -------------------------------------------------------------------------------- 1 | import { multiply } from "../fp"; 2 | export = multiply; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/omitAll.d.ts: -------------------------------------------------------------------------------- 1 | import { omitAll } from "../fp"; 2 | export = omitAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/orderBy.d.ts: -------------------------------------------------------------------------------- 1 | import { orderBy } from "../fp"; 2 | export = orderBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/overArgs.d.ts: -------------------------------------------------------------------------------- 1 | import { overArgs } from "../fp"; 2 | export = overArgs; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/overSome.d.ts: -------------------------------------------------------------------------------- 1 | import { overSome } from "../fp"; 2 | export = overSome; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/padChars.d.ts: -------------------------------------------------------------------------------- 1 | import { padChars } from "../fp"; 2 | export = padChars; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/padStart.d.ts: -------------------------------------------------------------------------------- 1 | import { padStart } from "../fp"; 2 | export = padStart; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/parseInt.d.ts: -------------------------------------------------------------------------------- 1 | import { parseInt } from "../fp"; 2 | export = parseInt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/partial.d.ts: -------------------------------------------------------------------------------- 1 | import { partial } from "../fp"; 2 | export = partial; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pickAll.d.ts: -------------------------------------------------------------------------------- 1 | import { pickAll } from "../fp"; 2 | export = pickAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/property.d.ts: -------------------------------------------------------------------------------- 1 | import { property } from "../fp"; 2 | export = property; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pullAll.d.ts: -------------------------------------------------------------------------------- 1 | import { pullAll } from "../fp"; 2 | export = pullAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/replace.d.ts: -------------------------------------------------------------------------------- 1 | import { replace } from "../fp"; 2 | export = replace; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/restFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { restFrom } from "../fp"; 2 | export = restFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/reverse.d.ts: -------------------------------------------------------------------------------- 1 | import { reverse } from "../fp"; 2 | export = reverse; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/setWith.d.ts: -------------------------------------------------------------------------------- 1 | import { setWith } from "../fp"; 2 | export = setWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/shuffle.d.ts: -------------------------------------------------------------------------------- 1 | import { shuffle } from "../fp"; 2 | export = shuffle; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/stubTrue.d.ts: -------------------------------------------------------------------------------- 1 | import { stubTrue } from "../fp"; 2 | export = stubTrue; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/subtract.d.ts: -------------------------------------------------------------------------------- 1 | import { subtract } from "../fp"; 2 | export = subtract; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/takeLast.d.ts: -------------------------------------------------------------------------------- 1 | import { takeLast } from "../fp"; 2 | export = takeLast; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/template.d.ts: -------------------------------------------------------------------------------- 1 | import { template } from "../fp"; 2 | export = template; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/throttle.d.ts: -------------------------------------------------------------------------------- 1 | import { throttle } from "../fp"; 2 | export = throttle; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toArray.d.ts: -------------------------------------------------------------------------------- 1 | import { toArray } from "../fp"; 2 | export = toArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toFinite.d.ts: -------------------------------------------------------------------------------- 1 | import { toFinite } from "../fp"; 2 | export = toFinite; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toLength.d.ts: -------------------------------------------------------------------------------- 1 | import { toLength } from "../fp"; 2 | export = toLength; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toLower.d.ts: -------------------------------------------------------------------------------- 1 | import { toLower } from "../fp"; 2 | export = toLower; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toNumber.d.ts: -------------------------------------------------------------------------------- 1 | import { toNumber } from "../fp"; 2 | export = toNumber; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toPairs.d.ts: -------------------------------------------------------------------------------- 1 | import { toPairs } from "../fp"; 2 | export = toPairs; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toString.d.ts: -------------------------------------------------------------------------------- 1 | import { toString } from "../fp"; 2 | export = toString; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toUpper.d.ts: -------------------------------------------------------------------------------- 1 | import { toUpper } from "../fp"; 2 | export = toUpper; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/trimEnd.d.ts: -------------------------------------------------------------------------------- 1 | import { trimEnd } from "../fp"; 2 | export = trimEnd; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/truncate.d.ts: -------------------------------------------------------------------------------- 1 | import { truncate } from "../fp"; 2 | export = truncate; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unapply.d.ts: -------------------------------------------------------------------------------- 1 | import { unapply } from "../fp"; 2 | export = unapply; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unescape.d.ts: -------------------------------------------------------------------------------- 1 | import { unescape } from "../fp"; 2 | export = unescape; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unionBy.d.ts: -------------------------------------------------------------------------------- 1 | import { unionBy } from "../fp"; 2 | export = unionBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/uniqWith.d.ts: -------------------------------------------------------------------------------- 1 | import { uniqWith } from "../fp"; 2 | export = uniqWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/uniqueId.d.ts: -------------------------------------------------------------------------------- 1 | import { uniqueId } from "../fp"; 2 | export = uniqueId; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/useWith.d.ts: -------------------------------------------------------------------------------- 1 | import { useWith } from "../fp"; 2 | export = useWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/valuesIn.d.ts: -------------------------------------------------------------------------------- 1 | import { valuesIn } from "../fp"; 2 | export = valuesIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/whereEq.d.ts: -------------------------------------------------------------------------------- 1 | import { whereEq } from "../fp"; 2 | export = whereEq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/without.d.ts: -------------------------------------------------------------------------------- 1 | import { without } from "../fp"; 2 | export = without; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/xorWith.d.ts: -------------------------------------------------------------------------------- 1 | import { xorWith } from "../fp"; 2 | export = xorWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/zipWith.d.ts: -------------------------------------------------------------------------------- 1 | import { zipWith } from "../fp"; 2 | export = zipWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/groupBy.d.ts: -------------------------------------------------------------------------------- 1 | import { groupBy } from "./index"; 2 | export = groupBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/identity.d.ts: -------------------------------------------------------------------------------- 1 | import { identity } from "./index"; 2 | export = identity; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/inRange.d.ts: -------------------------------------------------------------------------------- 1 | import { inRange } from "./index"; 2 | export = inRange; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/includes.d.ts: -------------------------------------------------------------------------------- 1 | import { includes } from "./index"; 2 | export = includes; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/indexOf.d.ts: -------------------------------------------------------------------------------- 1 | import { indexOf } from "./index"; 2 | export = indexOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/initial.d.ts: -------------------------------------------------------------------------------- 1 | import { initial } from "./index"; 2 | export = initial; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/invertBy.d.ts: -------------------------------------------------------------------------------- 1 | import { invertBy } from "./index"; 2 | export = invertBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isArray.d.ts: -------------------------------------------------------------------------------- 1 | import { isArray } from "./index"; 2 | export = isArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isBuffer.d.ts: -------------------------------------------------------------------------------- 1 | import { isBuffer } from "./index"; 2 | export = isBuffer; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isEmpty.d.ts: -------------------------------------------------------------------------------- 1 | import { isEmpty } from "./index"; 2 | export = isEmpty; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isEqual.d.ts: -------------------------------------------------------------------------------- 1 | import { isEqual } from "./index"; 2 | export = isEqual; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isError.d.ts: -------------------------------------------------------------------------------- 1 | import { isError } from "./index"; 2 | export = isError; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isFinite.d.ts: -------------------------------------------------------------------------------- 1 | import { isFinite } from "./index"; 2 | export = isFinite; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isLength.d.ts: -------------------------------------------------------------------------------- 1 | import { isLength } from "./index"; 2 | export = isLength; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isMatch.d.ts: -------------------------------------------------------------------------------- 1 | import { isMatch } from "./index"; 2 | export = isMatch; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isNative.d.ts: -------------------------------------------------------------------------------- 1 | import { isNative } from "./index"; 2 | export = isNative; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isNumber.d.ts: -------------------------------------------------------------------------------- 1 | import { isNumber } from "./index"; 2 | export = isNumber; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isObject.d.ts: -------------------------------------------------------------------------------- 1 | import { isObject } from "./index"; 2 | export = isObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isRegExp.d.ts: -------------------------------------------------------------------------------- 1 | import { isRegExp } from "./index"; 2 | export = isRegExp; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isString.d.ts: -------------------------------------------------------------------------------- 1 | import { isString } from "./index"; 2 | export = isString; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isSymbol.d.ts: -------------------------------------------------------------------------------- 1 | import { isSymbol } from "./index"; 2 | export = isSymbol; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/iteratee.d.ts: -------------------------------------------------------------------------------- 1 | import { iteratee } from "./index"; 2 | export = iteratee; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/mapKeys.d.ts: -------------------------------------------------------------------------------- 1 | import { mapKeys } from "./index"; 2 | export = mapKeys; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/matches.d.ts: -------------------------------------------------------------------------------- 1 | import { matches } from "./index"; 2 | export = matches; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/memoize.d.ts: -------------------------------------------------------------------------------- 1 | import { memoize } from "./index"; 2 | export = memoize; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/methodOf.d.ts: -------------------------------------------------------------------------------- 1 | import { methodOf } from "./index"; 2 | export = methodOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/multiply.d.ts: -------------------------------------------------------------------------------- 1 | import { multiply } from './index'; 2 | export = multiply; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/orderBy.d.ts: -------------------------------------------------------------------------------- 1 | import { orderBy } from "./index"; 2 | export = orderBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/overArgs.d.ts: -------------------------------------------------------------------------------- 1 | import { overArgs } from "./index"; 2 | export = overArgs; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/overSome.d.ts: -------------------------------------------------------------------------------- 1 | import { overSome } from "./index"; 2 | export = overSome; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/padStart.d.ts: -------------------------------------------------------------------------------- 1 | import { padStart } from "./index"; 2 | export = padStart; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/parseInt.d.ts: -------------------------------------------------------------------------------- 1 | import { parseInt } from "./index"; 2 | export = parseInt; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/partial.d.ts: -------------------------------------------------------------------------------- 1 | import { partial } from "./index"; 2 | export = partial; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/property.d.ts: -------------------------------------------------------------------------------- 1 | import { property } from "./index"; 2 | export = property; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/pullAll.d.ts: -------------------------------------------------------------------------------- 1 | import { pullAll } from "./index"; 2 | export = pullAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/replace.d.ts: -------------------------------------------------------------------------------- 1 | import { replace } from "./index"; 2 | export = replace; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/reverse.d.ts: -------------------------------------------------------------------------------- 1 | import { reverse } from "./index"; 2 | export = reverse; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/setWith.d.ts: -------------------------------------------------------------------------------- 1 | import { setWith } from "./index"; 2 | export = setWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/shuffle.d.ts: -------------------------------------------------------------------------------- 1 | import { shuffle } from "./index"; 2 | export = shuffle; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/stubTrue.d.ts: -------------------------------------------------------------------------------- 1 | import { stubTrue } from "./index"; 2 | export = stubTrue; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/subtract.d.ts: -------------------------------------------------------------------------------- 1 | import { subtract } from "./index"; 2 | export = subtract; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/template.d.ts: -------------------------------------------------------------------------------- 1 | import { template } from "./index"; 2 | export = template; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/throttle.d.ts: -------------------------------------------------------------------------------- 1 | import { throttle } from "./index"; 2 | export = throttle; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toArray.d.ts: -------------------------------------------------------------------------------- 1 | import { toArray } from "./index"; 2 | export = toArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toFinite.d.ts: -------------------------------------------------------------------------------- 1 | import { toFinite } from "./index"; 2 | export = toFinite; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toLength.d.ts: -------------------------------------------------------------------------------- 1 | import { toLength } from "./index"; 2 | export = toLength; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toLower.d.ts: -------------------------------------------------------------------------------- 1 | import { toLower } from "./index"; 2 | export = toLower; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toNumber.d.ts: -------------------------------------------------------------------------------- 1 | import { toNumber } from "./index"; 2 | export = toNumber; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toPairs.d.ts: -------------------------------------------------------------------------------- 1 | import { toPairs } from "./index"; 2 | export = toPairs; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toString.d.ts: -------------------------------------------------------------------------------- 1 | import { toString } from "./index"; 2 | export = toString; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toUpper.d.ts: -------------------------------------------------------------------------------- 1 | import { toUpper } from "./index"; 2 | export = toUpper; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/trimEnd.d.ts: -------------------------------------------------------------------------------- 1 | import { trimEnd } from "./index"; 2 | export = trimEnd; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/truncate.d.ts: -------------------------------------------------------------------------------- 1 | import { truncate } from "./index"; 2 | export = truncate; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/unescape.d.ts: -------------------------------------------------------------------------------- 1 | import { unescape } from "./index"; 2 | export = unescape; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/unionBy.d.ts: -------------------------------------------------------------------------------- 1 | import { unionBy } from "./index"; 2 | export = unionBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/uniqWith.d.ts: -------------------------------------------------------------------------------- 1 | import { uniqWith } from "./index"; 2 | export = uniqWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/uniqueId.d.ts: -------------------------------------------------------------------------------- 1 | import { uniqueId } from "./index"; 2 | export = uniqueId; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/valuesIn.d.ts: -------------------------------------------------------------------------------- 1 | import { valuesIn } from "./index"; 2 | export = valuesIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/without.d.ts: -------------------------------------------------------------------------------- 1 | import { without } from "./index"; 2 | export = without; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/xorWith.d.ts: -------------------------------------------------------------------------------- 1 | import { xorWith } from "./index"; 2 | export = xorWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/zipWith.d.ts: -------------------------------------------------------------------------------- 1 | import { zipWith } from "./index"; 2 | export = zipWith; 3 | -------------------------------------------------------------------------------- /src/images/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/src/images/graph.png -------------------------------------------------------------------------------- /src/layouts/VerticalSplitLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./VerticalSplitLayout"; 2 | -------------------------------------------------------------------------------- /src/widgets/SettingsDialog/styles.js: -------------------------------------------------------------------------------- 1 | const styles = {}; 2 | 3 | export default styles; 4 | -------------------------------------------------------------------------------- /.github/media/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/.github/media/banner.png -------------------------------------------------------------------------------- /cypress/fixtures/Query/query.openapi.json: -------------------------------------------------------------------------------- 1 | { "id": "f390c2da-20ba-41e8-816c-fefec298aa0a" } 2 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/components/ClosableDialogTitle/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ClosableDialogTitle"; 2 | -------------------------------------------------------------------------------- /src/components/DescriptionPopover/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./DescriptionPopover"; 2 | -------------------------------------------------------------------------------- /src/components/OpenSwaggerDialog/styles.js: -------------------------------------------------------------------------------- 1 | const styles = {}; 2 | 3 | export default styles; 4 | -------------------------------------------------------------------------------- /src/components/ProjectSelectSmall/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./ProjectSelectSmall"; 2 | -------------------------------------------------------------------------------- /src/components/ProjectSelectSmall/styles.js: -------------------------------------------------------------------------------- 1 | const styles = {}; 2 | 3 | export default styles; 4 | -------------------------------------------------------------------------------- /src/components/SettingsDialogChat/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SettingsDialogChat"; 2 | -------------------------------------------------------------------------------- /src/components/SettingsDialogTabs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SettingsDialogTabs"; 2 | -------------------------------------------------------------------------------- /src/components/StarUsMessageDialog/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./StarUsMessageDialog"; 2 | -------------------------------------------------------------------------------- /src/dist/lodash/assignWith.d.ts: -------------------------------------------------------------------------------- 1 | import { assignWith } from "./index"; 2 | export = assignWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/camelCase.d.ts: -------------------------------------------------------------------------------- 1 | import { camelCase } from "./index"; 2 | export = camelCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/capitalize.d.ts: -------------------------------------------------------------------------------- 1 | import { capitalize } from "./index"; 2 | export = capitalize; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/castArray.d.ts: -------------------------------------------------------------------------------- 1 | import { castArray } from "./index"; 2 | export = castArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/cloneDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { cloneDeep } from "./index"; 2 | export = cloneDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/cloneWith.d.ts: -------------------------------------------------------------------------------- 1 | import { cloneWith } from "./index"; 2 | export = cloneWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/conformsTo.d.ts: -------------------------------------------------------------------------------- 1 | import { conformsTo } from "./index"; 2 | export = conformsTo; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/curryRight.d.ts: -------------------------------------------------------------------------------- 1 | import { curryRight } from "./index"; 2 | export = curryRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/defaultTo.d.ts: -------------------------------------------------------------------------------- 1 | import { defaultTo } from "./index"; 2 | export = defaultTo; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/difference.d.ts: -------------------------------------------------------------------------------- 1 | import { difference } from "./index"; 2 | export = difference; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/dropRight.d.ts: -------------------------------------------------------------------------------- 1 | import { dropRight } from "./index"; 2 | export = dropRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/dropWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { dropWhile } from "./index"; 2 | export = dropWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/eachRight.d.ts: -------------------------------------------------------------------------------- 1 | import { eachRight } from "./index"; 2 | export = eachRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/entriesIn.d.ts: -------------------------------------------------------------------------------- 1 | import { entriesIn } from "./index"; 2 | export = entriesIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/extendWith.d.ts: -------------------------------------------------------------------------------- 1 | import { extendWith } from "./index"; 2 | export = extendWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/findIndex.d.ts: -------------------------------------------------------------------------------- 1 | import { findIndex } from "./index"; 2 | export = findIndex; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flowRight.d.ts: -------------------------------------------------------------------------------- 1 | import { flowRight } from "./index"; 2 | export = flowRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/forInRight.d.ts: -------------------------------------------------------------------------------- 1 | import { forInRight } from "./index"; 2 | export = forInRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assignAll.d.ts: -------------------------------------------------------------------------------- 1 | import { assignAll } from "../fp"; 2 | export = assignAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assocPath.d.ts: -------------------------------------------------------------------------------- 1 | import { assocPath } from "../fp"; 2 | export = assocPath; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/camelCase.d.ts: -------------------------------------------------------------------------------- 1 | import { camelCase } from "../fp"; 2 | export = camelCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/castArray.d.ts: -------------------------------------------------------------------------------- 1 | import { castArray } from "../fp"; 2 | export = castArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/cloneDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { cloneDeep } from "../fp"; 2 | export = cloneDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/cloneWith.d.ts: -------------------------------------------------------------------------------- 1 | import { cloneWith } from "../fp"; 2 | export = cloneWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/defaultTo.d.ts: -------------------------------------------------------------------------------- 1 | import { defaultTo } from "../fp"; 2 | export = defaultTo; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/dropRight.d.ts: -------------------------------------------------------------------------------- 1 | import { dropRight } from "../fp"; 2 | export = dropRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/dropWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { dropWhile } from "../fp"; 2 | export = dropWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/eachRight.d.ts: -------------------------------------------------------------------------------- 1 | import { eachRight } from "../fp"; 2 | export = eachRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/entriesIn.d.ts: -------------------------------------------------------------------------------- 1 | import { entriesIn } from "../fp"; 2 | export = entriesIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/extendAll.d.ts: -------------------------------------------------------------------------------- 1 | import { extendAll } from "../fp"; 2 | export = extendAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findIndex.d.ts: -------------------------------------------------------------------------------- 1 | import { findIndex } from "../fp"; 2 | export = findIndex; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flowRight.d.ts: -------------------------------------------------------------------------------- 1 | import { flowRight } from "../fp"; 2 | export = flowRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/fromPairs.d.ts: -------------------------------------------------------------------------------- 1 | import { fromPairs } from "../fp"; 2 | export = fromPairs; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/functions.d.ts: -------------------------------------------------------------------------------- 1 | import { functions } from "../fp"; 2 | export = functions; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/identical.d.ts: -------------------------------------------------------------------------------- 1 | import { identical } from "../fp"; 2 | export = identical; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/invertObj.d.ts: -------------------------------------------------------------------------------- 1 | import { invertObj } from "../fp"; 2 | export = invertObj; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/invokeMap.d.ts: -------------------------------------------------------------------------------- 1 | import { invokeMap } from "../fp"; 2 | export = invokeMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isBoolean.d.ts: -------------------------------------------------------------------------------- 1 | import { isBoolean } from "../fp"; 2 | export = isBoolean; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isElement.d.ts: -------------------------------------------------------------------------------- 1 | import { isElement } from "../fp"; 2 | export = isElement; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isInteger.d.ts: -------------------------------------------------------------------------------- 1 | import { isInteger } from "../fp"; 2 | export = isInteger; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isWeakMap.d.ts: -------------------------------------------------------------------------------- 1 | import { isWeakMap } from "../fp"; 2 | export = isWeakMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isWeakSet.d.ts: -------------------------------------------------------------------------------- 1 | import { isWeakSet } from "../fp"; 2 | export = isWeakSet; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/kebabCase.d.ts: -------------------------------------------------------------------------------- 1 | import { kebabCase } from "../fp"; 2 | export = kebabCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/lowerCase.d.ts: -------------------------------------------------------------------------------- 1 | import { lowerCase } from "../fp"; 2 | export = lowerCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/mapValues.d.ts: -------------------------------------------------------------------------------- 1 | import { mapValues } from "../fp"; 2 | export = mapValues; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/mergeWith.d.ts: -------------------------------------------------------------------------------- 1 | import { mergeWith } from "../fp"; 2 | export = mergeWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/overEvery.d.ts: -------------------------------------------------------------------------------- 1 | import { overEvery } from "../fp"; 2 | export = overEvery; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/partition.d.ts: -------------------------------------------------------------------------------- 1 | import { partition } from "../fp"; 2 | export = partition; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pullAllBy.d.ts: -------------------------------------------------------------------------------- 1 | import { pullAllBy } from "../fp"; 2 | export = pullAllBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/rangeStep.d.ts: -------------------------------------------------------------------------------- 1 | import { rangeStep } from "../fp"; 2 | export = rangeStep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/snakeCase.d.ts: -------------------------------------------------------------------------------- 1 | import { snakeCase } from "../fp"; 2 | export = snakeCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/startCase.d.ts: -------------------------------------------------------------------------------- 1 | import { startCase } from "../fp"; 2 | export = startCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/stubArray.d.ts: -------------------------------------------------------------------------------- 1 | import { stubArray } from "../fp"; 2 | export = stubArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/stubFalse.d.ts: -------------------------------------------------------------------------------- 1 | import { stubFalse } from "../fp"; 2 | export = stubFalse; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/takeRight.d.ts: -------------------------------------------------------------------------------- 1 | import { takeRight } from "../fp"; 2 | export = takeRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/takeWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { takeWhile } from "../fp"; 2 | export = takeWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toInteger.d.ts: -------------------------------------------------------------------------------- 1 | import { toInteger } from "../fp"; 2 | export = toInteger; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toPairsIn.d.ts: -------------------------------------------------------------------------------- 1 | import { toPairsIn } from "../fp"; 2 | export = toPairsIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/transform.d.ts: -------------------------------------------------------------------------------- 1 | import { transform } from "../fp"; 2 | export = transform; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/trimChars.d.ts: -------------------------------------------------------------------------------- 1 | import { trimChars } from "../fp"; 2 | export = trimChars; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/trimStart.d.ts: -------------------------------------------------------------------------------- 1 | import { trimStart } from "../fp"; 2 | export = trimStart; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unionWith.d.ts: -------------------------------------------------------------------------------- 1 | import { unionWith } from "../fp"; 2 | export = unionWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/unzipWith.d.ts: -------------------------------------------------------------------------------- 1 | import { unzipWith } from "../fp"; 2 | export = unzipWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/upperCase.d.ts: -------------------------------------------------------------------------------- 1 | import { upperCase } from "../fp"; 2 | export = upperCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/zipObject.d.ts: -------------------------------------------------------------------------------- 1 | import { zipObject } from "../fp"; 2 | export = zipObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fromPairs.d.ts: -------------------------------------------------------------------------------- 1 | import { fromPairs } from "./index"; 2 | export = fromPairs; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/functions.d.ts: -------------------------------------------------------------------------------- 1 | import { functions } from "./index"; 2 | export = functions; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/invokeMap.d.ts: -------------------------------------------------------------------------------- 1 | import { invokeMap } from "./index"; 2 | export = invokeMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isBoolean.d.ts: -------------------------------------------------------------------------------- 1 | import { isBoolean } from "./index"; 2 | export = isBoolean; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isElement.d.ts: -------------------------------------------------------------------------------- 1 | import { isElement } from "./index"; 2 | export = isElement; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isFunction.d.ts: -------------------------------------------------------------------------------- 1 | import { isFunction } from "./index"; 2 | export = isFunction; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isInteger.d.ts: -------------------------------------------------------------------------------- 1 | import { isInteger } from "./index"; 2 | export = isInteger; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isWeakMap.d.ts: -------------------------------------------------------------------------------- 1 | import { isWeakMap } from "./index"; 2 | export = isWeakMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isWeakSet.d.ts: -------------------------------------------------------------------------------- 1 | import { isWeakSet } from "./index"; 2 | export = isWeakSet; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/kebabCase.d.ts: -------------------------------------------------------------------------------- 1 | import { kebabCase } from "./index"; 2 | export = kebabCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/lowerCase.d.ts: -------------------------------------------------------------------------------- 1 | import { lowerCase } from "./index"; 2 | export = lowerCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/lowerFirst.d.ts: -------------------------------------------------------------------------------- 1 | import { lowerFirst } from "./index"; 2 | export = lowerFirst; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/mapValues.d.ts: -------------------------------------------------------------------------------- 1 | import { mapValues } from "./index"; 2 | export = mapValues; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/mergeWith.d.ts: -------------------------------------------------------------------------------- 1 | import { mergeWith } from "./index"; 2 | export = mergeWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/noConflict.d.ts: -------------------------------------------------------------------------------- 1 | import { noConflict } from "./index"; 2 | export = noConflict; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/overEvery.d.ts: -------------------------------------------------------------------------------- 1 | import { overEvery } from "./index"; 2 | export = overEvery; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/partition.d.ts: -------------------------------------------------------------------------------- 1 | import { partition } from "./index"; 2 | export = partition; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/propertyOf.d.ts: -------------------------------------------------------------------------------- 1 | import { propertyOf } from "./index"; 2 | export = propertyOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/pullAllBy.d.ts: -------------------------------------------------------------------------------- 1 | import { pullAllBy } from "./index"; 2 | export = pullAllBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/rangeRight.d.ts: -------------------------------------------------------------------------------- 1 | import { rangeRight } from "./index"; 2 | export = rangeRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sampleSize.d.ts: -------------------------------------------------------------------------------- 1 | import { sampleSize } from "./index"; 2 | export = sampleSize; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/snakeCase.d.ts: -------------------------------------------------------------------------------- 1 | import { snakeCase } from "./index"; 2 | export = snakeCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortedUniq.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedUniq } from "./index"; 2 | export = sortedUniq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/startCase.d.ts: -------------------------------------------------------------------------------- 1 | import { startCase } from "./index"; 2 | export = startCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/startsWith.d.ts: -------------------------------------------------------------------------------- 1 | import { startsWith } from "./index"; 2 | export = startsWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/stubFalse.d.ts: -------------------------------------------------------------------------------- 1 | import { stubFalse } from "./index"; 2 | export = stubFalse; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/takeRight.d.ts: -------------------------------------------------------------------------------- 1 | import { takeRight } from "./index"; 2 | export = takeRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/takeWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { takeWhile } from "./index"; 2 | export = takeWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toInteger.d.ts: -------------------------------------------------------------------------------- 1 | import { toInteger } from "./index"; 2 | export = toInteger; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toPairsIn.d.ts: -------------------------------------------------------------------------------- 1 | import { toPairsIn } from "./index"; 2 | export = toPairsIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/transform.d.ts: -------------------------------------------------------------------------------- 1 | import { transform } from "./index"; 2 | export = transform; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/trimStart.d.ts: -------------------------------------------------------------------------------- 1 | import { trimStart } from "./index"; 2 | export = trimStart; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/unionWith.d.ts: -------------------------------------------------------------------------------- 1 | import { unionWith } from "./index"; 2 | export = unionWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/unzipWith.d.ts: -------------------------------------------------------------------------------- 1 | import { unzipWith } from "./index"; 2 | export = unzipWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/updateWith.d.ts: -------------------------------------------------------------------------------- 1 | import { updateWith } from "./index"; 2 | export = updateWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/upperCase.d.ts: -------------------------------------------------------------------------------- 1 | import { upperCase } from "./index"; 2 | export = upperCase; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/upperFirst.d.ts: -------------------------------------------------------------------------------- 1 | import { upperFirst } from "./index"; 2 | export = upperFirst; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/zipObject.d.ts: -------------------------------------------------------------------------------- 1 | import { zipObject } from "./index"; 2 | export = zipObject; 3 | -------------------------------------------------------------------------------- /src/layouts/HorizontalSplitLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./HorizontalSplitLayout"; 2 | -------------------------------------------------------------------------------- /src/components/SettingsDialogRuntime/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./SettingsDialogRuntime"; 2 | -------------------------------------------------------------------------------- /src/dist/lodash/findLastKey.d.ts: -------------------------------------------------------------------------------- 1 | import { findLastKey } from "./index"; 2 | export = findLastKey; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flatMapDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { flatMapDeep } from "./index"; 2 | export = flatMapDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flattenDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { flattenDeep } from "./index"; 2 | export = flattenDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/forOwnRight.d.ts: -------------------------------------------------------------------------------- 1 | import { forOwnRight } from "./index"; 2 | export = forOwnRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assignInAll.d.ts: -------------------------------------------------------------------------------- 1 | import { assignInAll } from "../fp"; 2 | export = assignInAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assignWith.d.ts: -------------------------------------------------------------------------------- 1 | import { assignWith } from "../fp"; 2 | export = assignWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/capitalize.d.ts: -------------------------------------------------------------------------------- 1 | import { capitalize } from "../fp"; 2 | export = capitalize; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/complement.d.ts: -------------------------------------------------------------------------------- 1 | import { complement } from "../fp"; 2 | export = complement; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/conformsTo.d.ts: -------------------------------------------------------------------------------- 1 | import { conformsTo } from "../fp"; 2 | export = conformsTo; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/curryRight.d.ts: -------------------------------------------------------------------------------- 1 | import { curryRight } from "../fp"; 2 | export = curryRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/curryRightN.d.ts: -------------------------------------------------------------------------------- 1 | import { curryRightN } from "../fp"; 2 | export = curryRightN; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/defaultsAll.d.ts: -------------------------------------------------------------------------------- 1 | import { defaultsAll } from "../fp"; 2 | export = defaultsAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/difference.d.ts: -------------------------------------------------------------------------------- 1 | import { difference } from "../fp"; 2 | export = difference; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/dissocPath.d.ts: -------------------------------------------------------------------------------- 1 | import { dissocPath } from "../fp"; 2 | export = dissocPath; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/extendWith.d.ts: -------------------------------------------------------------------------------- 1 | import { extendWith } from "../fp"; 2 | export = extendWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findLastKey.d.ts: -------------------------------------------------------------------------------- 1 | import { findLastKey } from "../fp"; 2 | export = findLastKey; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flatMapDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { flatMapDeep } from "../fp"; 2 | export = flatMapDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flattenDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { flattenDeep } from "../fp"; 2 | export = flattenDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/forInRight.d.ts: -------------------------------------------------------------------------------- 1 | import { forInRight } from "../fp"; 2 | export = forInRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/forOwnRight.d.ts: -------------------------------------------------------------------------------- 1 | import { forOwnRight } from "../fp"; 2 | export = forOwnRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/functionsIn.d.ts: -------------------------------------------------------------------------------- 1 | import { functionsIn } from "../fp"; 2 | export = functionsIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/indexOfFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { indexOfFrom } from "../fp"; 2 | export = indexOfFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/invokeArgs.d.ts: -------------------------------------------------------------------------------- 1 | import { invokeArgs } from "../fp"; 2 | export = invokeArgs; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isArguments.d.ts: -------------------------------------------------------------------------------- 1 | import { isArguments } from "../fp"; 2 | export = isArguments; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isArrayLike.d.ts: -------------------------------------------------------------------------------- 1 | import { isArrayLike } from "../fp"; 2 | export = isArrayLike; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isEqualWith.d.ts: -------------------------------------------------------------------------------- 1 | import { isEqualWith } from "../fp"; 2 | export = isEqualWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isFunction.d.ts: -------------------------------------------------------------------------------- 1 | import { isFunction } from "../fp"; 2 | export = isFunction; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isMatchWith.d.ts: -------------------------------------------------------------------------------- 1 | import { isMatchWith } from "../fp"; 2 | export = isMatchWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isUndefined.d.ts: -------------------------------------------------------------------------------- 1 | import { isUndefined } from "../fp"; 2 | export = isUndefined; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/lastIndexOf.d.ts: -------------------------------------------------------------------------------- 1 | import { lastIndexOf } from "../fp"; 2 | export = lastIndexOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/lowerFirst.d.ts: -------------------------------------------------------------------------------- 1 | import { lowerFirst } from "../fp"; 2 | export = lowerFirst; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/noConflict.d.ts: -------------------------------------------------------------------------------- 1 | import { noConflict } from "../fp"; 2 | export = noConflict; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/padCharsEnd.d.ts: -------------------------------------------------------------------------------- 1 | import { padCharsEnd } from "../fp"; 2 | export = padCharsEnd; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/propertyOf.d.ts: -------------------------------------------------------------------------------- 1 | import { propertyOf } from "../fp"; 2 | export = propertyOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/pullAllWith.d.ts: -------------------------------------------------------------------------------- 1 | import { pullAllWith } from "../fp"; 2 | export = pullAllWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/rangeRight.d.ts: -------------------------------------------------------------------------------- 1 | import { rangeRight } from "../fp"; 2 | export = rangeRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/reduceRight.d.ts: -------------------------------------------------------------------------------- 1 | import { reduceRight } from "../fp"; 2 | export = reduceRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sampleSize.d.ts: -------------------------------------------------------------------------------- 1 | import { sampleSize } from "../fp"; 2 | export = sampleSize; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortedIndex.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedIndex } from "../fp"; 2 | export = sortedIndex; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortedUniq.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedUniq } from "../fp"; 2 | export = sortedUniq; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/spreadFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { spreadFrom } from "../fp"; 2 | export = spreadFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/startsWith.d.ts: -------------------------------------------------------------------------------- 1 | import { startsWith } from "../fp"; 2 | export = startsWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/stubObject.d.ts: -------------------------------------------------------------------------------- 1 | import { stubObject } from "../fp"; 2 | export = stubObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/stubString.d.ts: -------------------------------------------------------------------------------- 1 | import { stubString } from "../fp"; 2 | export = stubString; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/updateWith.d.ts: -------------------------------------------------------------------------------- 1 | import { updateWith } from "../fp"; 2 | export = updateWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/upperFirst.d.ts: -------------------------------------------------------------------------------- 1 | import { upperFirst } from "../fp"; 2 | export = upperFirst; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/functionsIn.d.ts: -------------------------------------------------------------------------------- 1 | import { functionsIn } from "./index"; 2 | export = functionsIn; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isArguments.d.ts: -------------------------------------------------------------------------------- 1 | import { isArguments } from "./index"; 2 | export = isArguments; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isArrayLike.d.ts: -------------------------------------------------------------------------------- 1 | import { isArrayLike } from "./index"; 2 | export = isArrayLike; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isEqualWith.d.ts: -------------------------------------------------------------------------------- 1 | import { isEqualWith } from "./index"; 2 | export = isEqualWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isMatchWith.d.ts: -------------------------------------------------------------------------------- 1 | import { isMatchWith } from "./index"; 2 | export = isMatchWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isUndefined.d.ts: -------------------------------------------------------------------------------- 1 | import { isUndefined } from "./index"; 2 | export = isUndefined; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/lastIndexOf.d.ts: -------------------------------------------------------------------------------- 1 | import { lastIndexOf } from "./index"; 2 | export = lastIndexOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/pullAllWith.d.ts: -------------------------------------------------------------------------------- 1 | import { pullAllWith } from "./index"; 2 | export = pullAllWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/reduceRight.d.ts: -------------------------------------------------------------------------------- 1 | import { reduceRight } from "./index"; 2 | export = reduceRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortedIndex.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedIndex } from "./index"; 2 | export = sortedIndex; 3 | -------------------------------------------------------------------------------- /src/images/number-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/src/images/number-one.png -------------------------------------------------------------------------------- /src/images/number-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/src/images/number-two.png -------------------------------------------------------------------------------- /public/graph/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/public/graph/background.png -------------------------------------------------------------------------------- /src/components/OpenAICodeExplainButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from "./OpenAICodeExplainButton"; 2 | -------------------------------------------------------------------------------- /src/dist/lodash/assignInWith.d.ts: -------------------------------------------------------------------------------- 1 | import { assignInWith } from "./index"; 2 | export = assignInWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/cloneDeepWith.d.ts: -------------------------------------------------------------------------------- 1 | import { cloneDeepWith } from "./index"; 2 | export = cloneDeepWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/defaultsDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { defaultsDeep } from "./index"; 2 | export = defaultsDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/differenceBy.d.ts: -------------------------------------------------------------------------------- 1 | import { differenceBy } from "./index"; 2 | export = differenceBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/escapeRegExp.d.ts: -------------------------------------------------------------------------------- 1 | import { escapeRegExp } from "./index"; 2 | export = escapeRegExp; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/findLastIndex.d.ts: -------------------------------------------------------------------------------- 1 | import { findLastIndex } from "./index"; 2 | export = findLastIndex; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flatMapDepth.d.ts: -------------------------------------------------------------------------------- 1 | import { flatMapDepth } from "./index"; 2 | export = flatMapDepth; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/flattenDepth.d.ts: -------------------------------------------------------------------------------- 1 | import { flattenDepth } from "./index"; 2 | export = flattenDepth; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/forEachRight.d.ts: -------------------------------------------------------------------------------- 1 | import { forEachRight } from "./index"; 2 | export = forEachRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/__.d.ts: -------------------------------------------------------------------------------- 1 | import _ = require("../index"); 2 | declare const __: _.__; 3 | export = __; 4 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assignAllWith.d.ts: -------------------------------------------------------------------------------- 1 | import { assignAllWith } from "../fp"; 2 | export = assignAllWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assignInWith.d.ts: -------------------------------------------------------------------------------- 1 | import { assignInWith } from "../fp"; 2 | export = assignInWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/cloneDeepWith.d.ts: -------------------------------------------------------------------------------- 1 | import { cloneDeepWith } from "../fp"; 2 | export = cloneDeepWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/defaultsDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { defaultsDeep } from "../fp"; 2 | export = defaultsDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/differenceBy.d.ts: -------------------------------------------------------------------------------- 1 | import { differenceBy } from "../fp"; 2 | export = differenceBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/dropLastWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { dropLastWhile } from "../fp"; 2 | export = dropLastWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/escapeRegExp.d.ts: -------------------------------------------------------------------------------- 1 | import { escapeRegExp } from "../fp"; 2 | export = escapeRegExp; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/extendAllWith.d.ts: -------------------------------------------------------------------------------- 1 | import { extendAllWith } from "../fp"; 2 | export = extendAllWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findIndexFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { findIndexFrom } from "../fp"; 2 | export = findIndexFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findLastFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { findLastFrom } from "../fp"; 2 | export = findLastFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findLastIndex.d.ts: -------------------------------------------------------------------------------- 1 | import { findLastIndex } from "../fp"; 2 | export = findLastIndex; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flatMapDepth.d.ts: -------------------------------------------------------------------------------- 1 | import { flatMapDepth } from "../fp"; 2 | export = flatMapDepth; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/flattenDepth.d.ts: -------------------------------------------------------------------------------- 1 | import { flattenDepth } from "../fp"; 2 | export = flattenDepth; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/forEachRight.d.ts: -------------------------------------------------------------------------------- 1 | import { forEachRight } from "../fp"; 2 | export = forEachRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/includesFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { includesFrom } from "../fp"; 2 | export = includesFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/intersection.d.ts: -------------------------------------------------------------------------------- 1 | import { intersection } from "../fp"; 2 | export = intersection; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/invokeArgsMap.d.ts: -------------------------------------------------------------------------------- 1 | import { invokeArgsMap } from "../fp"; 2 | export = invokeArgsMap; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isArrayBuffer.d.ts: -------------------------------------------------------------------------------- 1 | import { isArrayBuffer } from "../fp"; 2 | export = isArrayBuffer; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isObjectLike.d.ts: -------------------------------------------------------------------------------- 1 | import { isObjectLike } from "../fp"; 2 | export = isObjectLike; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isPlainObject.d.ts: -------------------------------------------------------------------------------- 1 | import { isPlainObject } from "../fp"; 2 | export = isPlainObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isSafeInteger.d.ts: -------------------------------------------------------------------------------- 1 | import { isSafeInteger } from "../fp"; 2 | export = isSafeInteger; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isTypedArray.d.ts: -------------------------------------------------------------------------------- 1 | import { isTypedArray } from "../fp"; 2 | export = isTypedArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/mergeAllWith.d.ts: -------------------------------------------------------------------------------- 1 | import { mergeAllWith } from "../fp"; 2 | export = mergeAllWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/padCharsStart.d.ts: -------------------------------------------------------------------------------- 1 | import { padCharsStart } from "../fp"; 2 | export = padCharsStart; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/partialRight.d.ts: -------------------------------------------------------------------------------- 1 | import { partialRight } from "../fp"; 2 | export = partialRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/runInContext.d.ts: -------------------------------------------------------------------------------- 1 | import { runInContext } from "../fp"; 2 | export = runInContext; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortedIndexBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedIndexBy } from "../fp"; 2 | export = sortedIndexBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortedIndexOf.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedIndexOf } from "../fp"; 2 | export = sortedIndexOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortedUniqBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedUniqBy } from "../fp"; 2 | export = sortedUniqBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/takeLastWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { takeLastWhile } from "../fp"; 2 | export = takeLastWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toPlainObject.d.ts: -------------------------------------------------------------------------------- 1 | import { toPlainObject } from "../fp"; 2 | export = toPlainObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/toSafeInteger.d.ts: -------------------------------------------------------------------------------- 1 | import { toSafeInteger } from "../fp"; 2 | export = toSafeInteger; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/trimCharsEnd.d.ts: -------------------------------------------------------------------------------- 1 | import { trimCharsEnd } from "../fp"; 2 | export = trimCharsEnd; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/zipObjectDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { zipObjectDeep } from "../fp"; 2 | export = zipObjectDeep; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/intersection.d.ts: -------------------------------------------------------------------------------- 1 | import { intersection } from "./index"; 2 | export = intersection; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isArrayBuffer.d.ts: -------------------------------------------------------------------------------- 1 | import { isArrayBuffer } from "./index"; 2 | export = isArrayBuffer; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isObjectLike.d.ts: -------------------------------------------------------------------------------- 1 | import { isObjectLike } from "./index"; 2 | export = isObjectLike; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isPlainObject.d.ts: -------------------------------------------------------------------------------- 1 | import { isPlainObject } from "./index"; 2 | export = isPlainObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isSafeInteger.d.ts: -------------------------------------------------------------------------------- 1 | import { isSafeInteger } from "./index"; 2 | export = isSafeInteger; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isTypedArray.d.ts: -------------------------------------------------------------------------------- 1 | import { isTypedArray } from "./index"; 2 | export = isTypedArray; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/partialRight.d.ts: -------------------------------------------------------------------------------- 1 | import { partialRight } from "./index"; 2 | export = partialRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/runInContext.d.ts: -------------------------------------------------------------------------------- 1 | import { runInContext } from "./index"; 2 | export = runInContext; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortedIndexBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedIndexBy } from "./index"; 2 | export = sortedIndexBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortedIndexOf.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedIndexOf } from "./index"; 2 | export = sortedIndexOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortedUniqBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedUniqBy } from "./index"; 2 | export = sortedUniqBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toPlainObject.d.ts: -------------------------------------------------------------------------------- 1 | import { toPlainObject } from "./index"; 2 | export = toPlainObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/toSafeInteger.d.ts: -------------------------------------------------------------------------------- 1 | import { toSafeInteger } from "./index"; 2 | export = toSafeInteger; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/zipObjectDeep.d.ts: -------------------------------------------------------------------------------- 1 | import { zipObjectDeep } from "./index"; 2 | export = zipObjectDeep; 3 | -------------------------------------------------------------------------------- /src/images/number-three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NucleoidAI/IDE/HEAD/src/images/number-three.png -------------------------------------------------------------------------------- /src/dist/lodash/differenceWith.d.ts: -------------------------------------------------------------------------------- 1 | import { differenceWith } from "./index"; 2 | export = differenceWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/dropRightWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { dropRightWhile } from "./index"; 2 | export = dropRightWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/differenceWith.d.ts: -------------------------------------------------------------------------------- 1 | import { differenceWith } from "../fp"; 2 | export = differenceWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/dropRightWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { dropRightWhile } from "../fp"; 2 | export = dropRightWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/intersectionBy.d.ts: -------------------------------------------------------------------------------- 1 | import { intersectionBy } from "../fp"; 2 | export = intersectionBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/rangeStepRight.d.ts: -------------------------------------------------------------------------------- 1 | import { rangeStepRight } from "../fp"; 2 | export = rangeStepRight; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/takeRightWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { takeRightWhile } from "../fp"; 2 | export = takeRightWhile; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/trimCharsStart.d.ts: -------------------------------------------------------------------------------- 1 | import { trimCharsStart } from "../fp"; 2 | export = trimCharsStart; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/intersectionBy.d.ts: -------------------------------------------------------------------------------- 1 | import { intersectionBy } from "./index"; 2 | export = intersectionBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/matchesProperty.d.ts: -------------------------------------------------------------------------------- 1 | import { matchesProperty } from "./index"; 2 | export = matchesProperty; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortedLastIndex.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedLastIndex } from "./index"; 2 | export = sortedLastIndex; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/takeRightWhile.d.ts: -------------------------------------------------------------------------------- 1 | import { takeRightWhile } from "./index"; 2 | export = takeRightWhile; 3 | -------------------------------------------------------------------------------- /src/widgets/APIDialog/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { content: { height: 450 } }; 2 | 3 | export default styles; 4 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/assignInAllWith.d.ts: -------------------------------------------------------------------------------- 1 | import { assignInAllWith } from "../fp"; 2 | export = assignInAllWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/defaultsDeepAll.d.ts: -------------------------------------------------------------------------------- 1 | import { defaultsDeepAll } from "../fp"; 2 | export = defaultsDeepAll; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/intersectionWith.d.ts: -------------------------------------------------------------------------------- 1 | import { intersectionWith } from "../fp"; 2 | export = intersectionWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/lastIndexOfFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { lastIndexOfFrom } from "../fp"; 2 | export = lastIndexOfFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/matchesProperty.d.ts: -------------------------------------------------------------------------------- 1 | import { matchesProperty } from "../fp"; 2 | export = matchesProperty; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortedLastIndex.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedLastIndex } from "../fp"; 2 | export = sortedLastIndex; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/intersectionWith.d.ts: -------------------------------------------------------------------------------- 1 | import { intersectionWith } from "./index"; 2 | export = intersectionWith; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/findLastIndexFrom.d.ts: -------------------------------------------------------------------------------- 1 | import { findLastIndexFrom } from "../fp"; 2 | export = findLastIndexFrom; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/isArrayLikeObject.d.ts: -------------------------------------------------------------------------------- 1 | import { isArrayLikeObject } from "../fp"; 2 | export = isArrayLikeObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortedLastIndexBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedLastIndexBy } from "../fp"; 2 | export = sortedLastIndexBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/sortedLastIndexOf.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedLastIndexOf } from "../fp"; 2 | export = sortedLastIndexOf; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/isArrayLikeObject.d.ts: -------------------------------------------------------------------------------- 1 | import { isArrayLikeObject } from "./index"; 2 | export = isArrayLikeObject; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortedLastIndexBy.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedLastIndexBy } from "./index"; 2 | export = sortedLastIndexBy; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/sortedLastIndexOf.d.ts: -------------------------------------------------------------------------------- 1 | import { sortedLastIndexOf } from "./index"; 2 | export = sortedLastIndexOf; 3 | -------------------------------------------------------------------------------- /src/components/QueryResult.css: -------------------------------------------------------------------------------- 1 | div.variable-row, 2 | div.object-key-val { 3 | border-left-color: #eee !important; 4 | } 5 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/symmetricDifference.d.ts: -------------------------------------------------------------------------------- 1 | import { symmetricDifference } from "../fp"; 2 | export = symmetricDifference; 3 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/symmetricDifferenceBy.d.ts: -------------------------------------------------------------------------------- 1 | import { symmetricDifferenceBy } from "../fp"; 2 | export = symmetricDifferenceBy; 3 | -------------------------------------------------------------------------------- /src/widgets/ResourceMenu/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | menuItemText: { pl: 3 / 2 }, 3 | }; 4 | 5 | export default styles; 6 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/placeholder.d.ts: -------------------------------------------------------------------------------- 1 | import _ = require("../index"); 2 | declare const placeholder: _.__; 3 | export = placeholder; 4 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/symmetricDifferenceWith.d.ts: -------------------------------------------------------------------------------- 1 | import { symmetricDifferenceWith } from "../fp"; 2 | export = symmetricDifferenceWith; 3 | -------------------------------------------------------------------------------- /src/widgets/VFSEditor/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | editor: { width: "100%", height: "100%" }, 3 | }; 4 | 5 | export default styles; 6 | -------------------------------------------------------------------------------- /serve.json: -------------------------------------------------------------------------------- 1 | { 2 | "rewrites": [ 3 | { 4 | "source": "/ide/**", 5 | "destination": "/ide/index.html" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | const methods = ["get", "post", "put", "del"]; 2 | 3 | const Constants = { 4 | methods, 5 | }; 6 | 7 | export default Constants; 8 | -------------------------------------------------------------------------------- /src/dist/lodash/v3/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "no-any-union": "off", 4 | "no-unnecessary-generics": "off" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/dist/lodash/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "no-unnecessary-generics": "off", 4 | "no-single-element-tuple-type": "off" 5 | } 6 | } -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "overrides": [ 3 | { 4 | "files": "*.html", 5 | "options": { 6 | "printWidth": 1000 7 | } 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /src/components/Security/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { justifyContent: "center" }, 3 | button: { textTransform: "none" }, 4 | }; 5 | 6 | export default styles; 7 | -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- 1 | self.addEventListener("install", (e) => 2 | console.log("PWA successfully installed") 3 | ); 4 | 5 | self.addEventListener("fetch", (event) => {}); 6 | -------------------------------------------------------------------------------- /src/components/APIDialogAction/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { justifyContent: "space-between" }, 3 | firstElement: { width: 200 }, 4 | }; 5 | 6 | export default styles; 7 | -------------------------------------------------------------------------------- /src/pages/ide/Logs/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | logitem: { 3 | minHeight: 200, 4 | width: 500, 5 | margin: 3, 6 | }, 7 | }; 8 | 9 | export default styles; 10 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18 2 | 3 | WORKDIR /app 4 | 5 | COPY dist dist 6 | COPY config.js config.mjs 7 | 8 | EXPOSE 3000 9 | 10 | ENTRYPOINT npx @nucleoidjs/http-server start 11 | -------------------------------------------------------------------------------- /cypress/fixtures/CHAT/empty-chat-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "cfd71642-dc6f-43cd-94ef-4fca00cef59b", 3 | "title": "New Chat", 4 | "messages": [], 5 | "created": 1713242648631 6 | } -------------------------------------------------------------------------------- /src/widgets/VFSEditor/shortcuts.js: -------------------------------------------------------------------------------- 1 | const shortcuts = { 2 | save: { win: "Ctrl-S", mac: "Ctrl-S" }, 3 | pretty: { win: "Shift-Alt-F", mac: "Shift-Alt-F" }, 4 | }; 5 | 6 | export default shortcuts; 7 | -------------------------------------------------------------------------------- /src/widgets/FunctionTree/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | treeItem: { 3 | display: "flex", 4 | alignItems: "center", 5 | flexWrap: "wrap", 6 | }, 7 | }; 8 | 9 | export default styles; 10 | -------------------------------------------------------------------------------- /cypress/fixtures/SERVICE/services.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "1d17a513-47f5-443c-be8b-be32e49a72b7", 4 | "icon": ":cloud:", 5 | "projectId": "a166cc16-5c76-4aac-819e-118207a5dfa9" 6 | } 7 | ] -------------------------------------------------------------------------------- /src/pages/ide/login.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | const Login = () => { 4 | React.useEffect(() => { 5 | window.close(); 6 | }, []); 7 | return null; 8 | }; 9 | export default Login; 10 | -------------------------------------------------------------------------------- /cypress/fixtures/Query/query.object.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": { 3 | "id": 1 4 | }, 5 | "$nuc": [], 6 | "declarative": false, 7 | "date": 1718025916521, 8 | "time": 1, 9 | "error": false 10 | } 11 | -------------------------------------------------------------------------------- /src/icons/Postman.jsx: -------------------------------------------------------------------------------- 1 | import { ReactComponent as PostmanSVG } from "./Postman.svg"; 2 | 3 | function Postman() { 4 | return ; 5 | } 6 | 7 | export default Postman; 8 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Test 2 | 3 | on: 4 | pull_request: 5 | branches: [main] 6 | 7 | jobs: 8 | test: 9 | uses: NucleoidAI/actions/.github/workflows/test.yml@main 10 | secrets: inherit 11 | -------------------------------------------------------------------------------- /src/components/APIBody/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { height: "100%" }, 3 | schema: { 4 | margin: 1, 5 | }, 6 | divider: { 7 | height: 350, 8 | }, 9 | }; 10 | 11 | export default styles; 12 | -------------------------------------------------------------------------------- /src/boot.js: -------------------------------------------------------------------------------- 1 | import Settings from "./settings"; 2 | 3 | const run = () => { 4 | if (!Settings.debug()) { 5 | console.debug = () => {}; 6 | } 7 | }; 8 | 9 | const boot = { run }; 10 | 11 | export default boot; 12 | -------------------------------------------------------------------------------- /src/components/DialogTootip/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | header: { 3 | flexDirection: "row", 4 | justifyContent: "space-between", 5 | alignItems: "center", 6 | }, 7 | }; 8 | 9 | export default styles; 10 | -------------------------------------------------------------------------------- /src/components/Logo/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { 3 | width: "100%", 4 | height: "100%", 5 | display: "flex", 6 | justifyContent: "flex-start", 7 | }, 8 | }; 9 | 10 | export default styles; 11 | -------------------------------------------------------------------------------- /src/components/Settings/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { flexDirection: "column", justifyContent: "center" }, 3 | settingIcon(theme) { 4 | return { fill: theme.palette.custom.grey }; 5 | }, 6 | }; 7 | 8 | export default styles; 9 | -------------------------------------------------------------------------------- /cypress/fixtures/PROJECTS/single-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "a166cc16-5c76-4aac-819e-118207a5dfa9", 3 | "name": "Single Project", 4 | "description": "This is a project description.", 5 | "icon": ":rocket:", 6 | "type": "SINGLE" 7 | } -------------------------------------------------------------------------------- /src/containers/IDE/Onboarding/onboardDispatcher.js: -------------------------------------------------------------------------------- 1 | const dispatch = (payload) => { 2 | window.dispatchEvent( 3 | new CustomEvent("onboarding", { 4 | detail: payload, 5 | }) 6 | ); 7 | }; 8 | 9 | export default dispatch; 10 | -------------------------------------------------------------------------------- /src/icons/OpenAI.jsx: -------------------------------------------------------------------------------- 1 | import { ReactComponent as OpenAISVG } from "./openai.svg"; 2 | 3 | function OpenAI({ width = 25, height = 25, fill = "#c3c5c8" }) { 4 | return ; 5 | } 6 | 7 | export default OpenAI; 8 | -------------------------------------------------------------------------------- /src/components/RatioIconButtons/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { 3 | position: "absolute", 4 | right: 120, 5 | zIndex: 1200, 6 | padding: 1 / 2, 7 | }, 8 | iconButton: { width: 18, height: 18 }, 9 | }; 10 | 11 | export default styles; 12 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import "@testing-library/jest-dom"; 6 | -------------------------------------------------------------------------------- /cypress/fixtures/Query/query.array.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": [ 3 | { 4 | "id": "5f5b3b4b-1b3b-4b3b-8b3b-3b3b3b3b3b3b" 5 | } 6 | ], 7 | "$nuc": [], 8 | "declarative": false, 9 | "date": 1718012058649, 10 | "time": 1, 11 | "error": false 12 | } 13 | -------------------------------------------------------------------------------- /src/containers/IDE/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { display: "flex", width: "100%", height: "100vh" }, 3 | content: { 4 | width: "100%", 5 | height: "100%", 6 | padding: 1, 7 | flexGrow: 1, 8 | }, 9 | }; 10 | 11 | export default styles; 12 | -------------------------------------------------------------------------------- /cypress/fixtures/PROJECTS/projects.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "a166cc16-5c76-4aac-819e-118207a5dfa9", 4 | "name": "Single Project", 5 | "description": "This is a project description.", 6 | "icon": ":rocket:", 7 | "type": "SINGLE" 8 | } 9 | ] -------------------------------------------------------------------------------- /src/components/ParamTable/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | dataGrid: { 3 | border: "none", 4 | width: "100%", 5 | "& .MuiDataGrid-cell": { 6 | cursor: "pointer", 7 | borderBottom: "none", 8 | }, 9 | }, 10 | }; 11 | 12 | export default styles; 13 | -------------------------------------------------------------------------------- /cypress/fixtures/SERVICE/single-project-service.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "06843e12-bc10-4648-99dc-85ad4be1cd09", 4 | "name": null, 5 | "description": null, 6 | "icon": ":icon-1:", 7 | "projectId": "a166cc16-5c76-4aac-819e-118207a5dfa9" 8 | } 9 | ] -------------------------------------------------------------------------------- /src/widgets/APIDialog/hooks/Dialog.js: -------------------------------------------------------------------------------- 1 | const initialState = {}; 2 | 3 | export default (state = initialState, { type, payload }) => { 4 | switch (type) { 5 | case "first": 6 | return { ...state, ...payload }; 7 | 8 | default: 9 | return state; 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /src/components/SettingsDialogChat/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { 3 | width: "100%", 4 | }, 5 | itemContainer: { 6 | width: "50%", 7 | display: "flex", 8 | alignItems: "center", 9 | justifyContent: "space-between", 10 | }, 11 | }; 12 | 13 | export default styles; 14 | -------------------------------------------------------------------------------- /src/components/SettingsDialogDev/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { 3 | width: "100%", 4 | }, 5 | itemContainer: { 6 | width: "50%", 7 | display: "flex", 8 | alignItems: "center", 9 | justifyContent: "space-between", 10 | }, 11 | }; 12 | 13 | export default styles; 14 | -------------------------------------------------------------------------------- /src/widgets/Chat/ChatMainArea.css: -------------------------------------------------------------------------------- 1 | @keyframes pulseAnimation { 2 | 0% { 3 | transform: scale(1); 4 | } 5 | 50% { 6 | transform: scale(1.2); 7 | } 8 | 100% { 9 | transform: scale(1); 10 | } 11 | } 12 | 13 | .pulse-animation { 14 | animation: pulseAnimation 2s ease-in-out; 15 | } 16 | -------------------------------------------------------------------------------- /cypress/fixtures/MESSAGES/hello.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "ASSISTANT", 3 | "type": "EXCLAMATORY", 4 | "content": "\"Nucleoid Chat\" is a platform specifically designed for posing and discussing formal logic questions. Nucleoid Runtime is a software system that executes and manages logical rules and inferences." 5 | } -------------------------------------------------------------------------------- /src/dist/lodash/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@definitelytyped/dtslint/dt.json", 3 | "rules": { 4 | "ban-types": false, 5 | "jsdoc-format": false, 6 | "max-line-length": false, 7 | "typedef-whitespace": false, 8 | "unified-signatures": false 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/widgets/APIDialog/hooks/reducer.js: -------------------------------------------------------------------------------- 1 | const initialState = { 2 | types: {}, 3 | }; 4 | 5 | export default (state = initialState, { type, payload }) => { 6 | switch (type) { 7 | case "first": 8 | return { ...state, ...payload }; 9 | 10 | default: 11 | return state; 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /cypress/fixtures/MESSAGES/define-human.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "ASSISTANT", 3 | "mode": "IMPERATIVE", 4 | "type": "IMPERATIVE", 5 | "code": "class Human {\n name: string;\n constructor(name: string) {\n this.name = name;\n }\n}", 6 | "content": "Define a Human class with a name property and constructor" 7 | } -------------------------------------------------------------------------------- /src/icons/Swagger.jsx: -------------------------------------------------------------------------------- 1 | import { ReactComponent as SwaggerSVG } from "./Swagger.svg"; 2 | 3 | function Swagger({ fill, disabled }) { 4 | return ( 5 | 9 | ); 10 | } 11 | 12 | export default Swagger; 13 | -------------------------------------------------------------------------------- /src/pages/ide/Functions/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { width: "100%", height: "100%" }, 3 | functionTreeCard: { width: "100%", height: "100%" }, 4 | functionTreeGrid: { maxHeight: "85vh", overflow: "auto" }, 5 | editorGrid: { pl: 1 }, 6 | editorPaper: { width: "100%", height: "100%" }, 7 | }; 8 | export default styles; 9 | -------------------------------------------------------------------------------- /src/widgets/Status/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { 3 | height: "100%", 4 | }, 5 | chart: { 6 | width: 150, 7 | height: 150, 8 | }, 9 | statusText: { 10 | color: "#666666", 11 | fontSize: 14, 12 | }, 13 | icon: { fill: "#666666", height: 15, width: 15 }, 14 | }; 15 | 16 | export default styles; 17 | -------------------------------------------------------------------------------- /src/icons/CodeSandbox.jsx: -------------------------------------------------------------------------------- 1 | import { ReactComponent as CodeSandboxSVG } from "./CodeSandbox.svg"; 2 | 3 | function CodeSandbox({ fill, disabled }) { 4 | return ( 5 | 9 | ); 10 | } 11 | 12 | export default CodeSandbox; 13 | -------------------------------------------------------------------------------- /cypress/fixtures/Query/query.empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "$nuc": [ 3 | { 4 | "iof": "$CLASS", 5 | "pre": true, 6 | "nme": { 7 | "type": "Identifier", 8 | "name": "User" 9 | }, 10 | "mths": [] 11 | } 12 | ], 13 | "declarative": false, 14 | "date": 1718012539498, 15 | "time": 7, 16 | "error": false 17 | } 18 | -------------------------------------------------------------------------------- /cypress/support/component-index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Components App 8 | 9 | 10 |
11 | 12 | -------------------------------------------------------------------------------- /src/components/ClosableDialogTitle/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | dialogTitle: { 3 | margin: 0, 4 | marginRight: 1, 5 | padding: 3, 6 | paddingBottom: 1, 7 | }, 8 | content: { 9 | justifyContent: "space-between", 10 | }, 11 | iconButton: { 12 | position: "absolute", 13 | right: 1, 14 | top: 1, 15 | margin: 1, 16 | }, 17 | }; 18 | 19 | export default styles; 20 | -------------------------------------------------------------------------------- /src/components/SmallLogo/SmallLogo.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Typography } from "@mui/material"; 3 | 4 | const SmallLogo = () => { 5 | return ( 6 | 12 | nuc 13 | 14 | ); 15 | }; 16 | 17 | export default SmallLogo; 18 | -------------------------------------------------------------------------------- /src/containers/Chat/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { 3 | display: "flex", 4 | width: "100%", 5 | height: "100vh", 6 | }, 7 | content: { 8 | display: "flex", 9 | flexDirection: "column", 10 | width: "100%", 11 | height: "100%", 12 | flexGrow: 1, 13 | overflow: "hidden", 14 | boxSizing: "border-box", 15 | padding: 1, 16 | }, 17 | }; 18 | 19 | export default styles; 20 | -------------------------------------------------------------------------------- /src/components/APIPath/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { 3 | justifyContent: "space-between", 4 | }, 5 | firstElement: { width: 50 }, 6 | content: { 7 | justifyContent: "center", 8 | alignItems: "center", 9 | }, 10 | text: { 11 | fontSize: 16, 12 | ml: 2, 13 | mr: 1, 14 | }, 15 | textField: { width: 75 }, 16 | icon: { fill: "#5d5d5d", mr: 1 }, 17 | }; 18 | 19 | export default styles; 20 | -------------------------------------------------------------------------------- /src/utils/DeepCopy.js: -------------------------------------------------------------------------------- 1 | function deepCopy(inObject) { 2 | let value, key; 3 | 4 | if (typeof inObject !== "object" || inObject === null) { 5 | return inObject; 6 | } 7 | 8 | const outObject = Array.isArray(inObject) ? [] : {}; 9 | 10 | for (key in inObject) { 11 | value = inObject[key]; 12 | 13 | outObject[key] = deepCopy(value); 14 | } 15 | 16 | return outObject; 17 | } 18 | 19 | export { deepCopy }; 20 | -------------------------------------------------------------------------------- /src/dist/lodash/fp/convert.d.ts: -------------------------------------------------------------------------------- 1 | interface ConvertOptions { 2 | cap?: boolean; 3 | curry?: boolean; 4 | fixed?: boolean; 5 | immutable?: boolean; 6 | rearg?: boolean; 7 | } 8 | 9 | interface Convert { 10 | (func: object, options?: ConvertOptions): any; 11 | (name: string, func: (...args: any[]) => any, options?: ConvertOptions): any; 12 | } 13 | 14 | declare const convert: Convert; 15 | export = convert; 16 | -------------------------------------------------------------------------------- /src/dist/lodash/scripts/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2017", 4 | "module": "commonjs", 5 | "baseUrl": "../..", 6 | "esModuleInterop": true, 7 | "noEmit": true, 8 | "pretty": true, 9 | "strict": true, 10 | "typeRoots": [ 11 | "../../" 12 | ], 13 | "types": [ 14 | "node" 15 | ] 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/gtag.js: -------------------------------------------------------------------------------- 1 | const gtag = (command, method, payload, ...args) => { 2 | if (command === "event") { 3 | payload = payload || {}; 4 | payload["page_location"] = window.location.href; 5 | payload["page_path"] = window.location.pathname; 6 | } 7 | 8 | console.debug(`gtag - command: ${command}, method: ${method}`); 9 | setTimeout(() => window.gtag(command, method, payload, ...args), 0); 10 | }; 11 | 12 | export default gtag; 13 | -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- 1 | const config = { 2 | layout: { 3 | ide: { 4 | total: 12, 5 | tree: { 6 | xl: 3, 7 | lg: 3, 8 | md: 4, 9 | sm: 4, 10 | xs: 12, 11 | }, 12 | content: { 13 | xl: 9, 14 | lg: 9, 15 | md: 8, 16 | sm: 8, 17 | xs: 12, 18 | }, 19 | }, 20 | }, 21 | }; 22 | export const drawerWidth = 300; 23 | 24 | export default config; 25 | -------------------------------------------------------------------------------- /src/dist/lodash/scripts/generate-all.sh: -------------------------------------------------------------------------------- 1 | # If some one want to update lodash modules, you must run this script under the same dir where it lives. 2 | # Or you can run them(generate-modules.ts) separately by hand 3 | #!/usr/bin/env bash 4 | 5 | npm i ts-node -g 6 | 7 | ts-node ./generate-modules.ts 8 | ts-node ./generate-fp.ts 9 | 10 | cd ../../../ 11 | 12 | npm i prettier -D 13 | 14 | cd types/lodash-es/scripts 15 | 16 | ts-node ./generate-modules.ts 17 | -------------------------------------------------------------------------------- /src/components/TabPanel.jsx: -------------------------------------------------------------------------------- 1 | import { Box } from "@mui/material"; 2 | 3 | const TabPanel = (props) => { 4 | const { children, value, index } = props; 5 | 6 | return ( 7 | <> 8 | {value === index && ( 9 | 15 | {children} 16 | 17 | )} 18 | 19 | ); 20 | }; 21 | 22 | export default TabPanel; 23 | -------------------------------------------------------------------------------- /src/layouts/VerticalSplitLayout/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { height: "100%", width: "100%", flexGrow: 1 }, 3 | content: { flexDirection: "row", height: "100%", width: "100%", pl: 1 }, 4 | threeContentEditorGrid: { pb: 1, height: "60%" }, 5 | twoContentEditorGrid: {}, 6 | editorPaper: { height: "100%" }, 7 | apiSettingsGrid: { height: "40%" }, 8 | apiSettingsCard: { height: "100%", padding: 1 }, 9 | }; 10 | 11 | export default styles; 12 | -------------------------------------------------------------------------------- /src/dist/lodash/scripts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "name": "lodash-scripts", 4 | "version": "0.0.1", 5 | "scripts": { 6 | "generate": "ts-node generate-fp", 7 | "fp": "ts-node generate-fp" 8 | }, 9 | "devDependencies": { 10 | "lodash": "^4.17.11", 11 | "ts-node": "^4.1.0", 12 | "typescript": "^2.7.1" 13 | }, 14 | "dependencies": { 15 | "@types/lodash": "^4.14.123", 16 | "@types/node": "^11.13.9" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | #IDEs 4 | /.idea 5 | /.vscode 6 | 7 | # dependencies 8 | /node_modules 9 | /.pnp 10 | .pnp.js 11 | 12 | /cypress/videos/* 13 | 14 | # testing 15 | /coverage 16 | 17 | # production 18 | /dist 19 | 20 | # misc 21 | .DS_Store 22 | .env.local 23 | .env.development.local 24 | .env.test.local 25 | .env.production.local 26 | 27 | npm-debug.log* 28 | yarn-debug.log* 29 | yarn-error.log* 30 | -------------------------------------------------------------------------------- /src/components/Page/Page.jsx: -------------------------------------------------------------------------------- 1 | import Box from "@mui/material/Box"; 2 | import React from "react"; 3 | import { Helmet } from "react-helmet"; //eslint-disable-line 4 | 5 | const Page = ({ title, children }) => { 6 | return ( 7 | 8 | 9 | 10 | Nucleoid IDE - {title} 11 | 12 | {children} 13 | 14 | ); 15 | }; 16 | 17 | export default Page; 18 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | const config = { 2 | appId: "977f5f57-8936-4388-8eb0-00a512cf01cc", 3 | base: "/", 4 | api: "http://localhost:3000", 5 | expert: "http://localhost:3000", 6 | oauth: { 7 | accessTokenUrl: "http://localhost:3000/oauth", 8 | clientId: "0c2844d3d19dc9293fc5", 9 | redirectUri: "http://localhost:5173/callback", 10 | oauthUrl: "https://github.com/login/oauth/authorize", 11 | }, 12 | sandbox: "https://nuc.land/sandbox", 13 | }; 14 | 15 | export default config; 16 | -------------------------------------------------------------------------------- /src/lib/test/blocks.js: -------------------------------------------------------------------------------- 1 | export const blocks = [ 2 | "'use declarative';\n\nclass User {\n firstName: string;\n lastName: string;\n\n constructor(firstName: string, lastName: string) {\n this.firstName = firstName;\n this.lastName = lastName;\n }\n}", 3 | "'use declarative';\n\n$User.fullName = $User.firstName + ' ' + $User.lastName;", 4 | "'use declarative';\n\n$User.initials = $User.firstName.charAt(0) + $User.lastName.charAt(0);", 5 | "'use imperative';\n\nUser.filter(u => u.lastName === 'Doe');", 6 | ]; 7 | -------------------------------------------------------------------------------- /src/containers/Blank/Blank.jsx: -------------------------------------------------------------------------------- 1 | import { Outlet } from "react-router-dom"; 2 | 3 | import React, { useEffect } from "react"; 4 | import { publish, useEvent } from "@nucleoidai/react-event"; 5 | 6 | function Blank() { 7 | const [event] = useEvent("PAGE_LOADED", { 8 | name: null, 9 | }); 10 | 11 | useEffect(() => { 12 | if (event.name) { 13 | publish("CONTAINER_LOADED", { name: "Blank" }); 14 | } 15 | }, [event.name]); 16 | 17 | return ; 18 | } 19 | export default Blank; 20 | -------------------------------------------------------------------------------- /config.live.js: -------------------------------------------------------------------------------- 1 | const config = { 2 | appId: "977f5f57-8936-4388-8eb0-00a512cf01cc", 3 | base: "/ide", 4 | api: "https://api.nucleoid.com", 5 | expert: "https://api.nucleoid.com", 6 | oauth: { 7 | accessTokenUrl: "https://api.nucleoid.com/oauth", 8 | clientId: "Ov23liVGh9hQRlXmPkWr", 9 | redirectUri: "https://nucleoid.com/callback/ide", 10 | oauthUrl: "https://github.com/login/oauth/authorize", 11 | }, 12 | sandbox: "https://nucleoid.com/sandbox", 13 | }; 14 | 15 | export default config; 16 | -------------------------------------------------------------------------------- /src/widgets/APITree/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | apiTree: { height: "100%" }, 3 | apiTreeGrid: { maxHeight: "85vh", overflow: "auto" }, 4 | apiTreeItem: { 5 | fontSize: 12, 6 | color: "#666", 7 | fontWeight: "bold", 8 | backgroundColor: "#fdfdfd", 9 | border: `1px solid #c3c5c8`, 10 | width: 44, 11 | borderRadius: 8, 12 | mt: 1 / 4, 13 | mb: 1 / 4, 14 | boxShadow: "1px 1px #b8b8b8", 15 | }, 16 | menuItemText: { pl: 3 / 2 }, 17 | }; 18 | 19 | export default styles; 20 | -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- 1 | import appConfig from "./config.js"; 2 | /* eslint-disable */ 3 | import { defineConfig } from "cypress"; 4 | 5 | const config = defineConfig({ 6 | defaultCommandTimeout: 60000, 7 | component: { 8 | devServer: { 9 | framework: "react", 10 | bundler: "vite", 11 | }, 12 | }, 13 | video: true, 14 | e2e: { 15 | setupNodeEvents(on, config) {}, 16 | baseUrl: `http://localhost:5173${appConfig.base}`, 17 | }, 18 | }); 19 | 20 | export default config; 21 | /* eslint-enable */ 22 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Nucleoid IDE", 3 | "name": "Nucleoid IDE", 4 | "icons": [ 5 | { 6 | "src": "https://cdn.nucleoid.com/media/icon.png", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "/ide/logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | } 15 | ], 16 | "start_url": ".", 17 | "display": "standalone", 18 | "theme_color": "#000000", 19 | "background_color": "#35363a" 20 | } 21 | -------------------------------------------------------------------------------- /src/layouts/BlankLayout/BlankLayout.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | import { Box, Grid } from "@mui/material"; 4 | 5 | function BlankLayout({ content }) { 6 | return ( 7 | 8 | 15 | {content} 16 | 17 | 18 | ); 19 | } 20 | 21 | export default BlankLayout; 22 | -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- 1 | import "./index.css"; 2 | 3 | import App from "./App"; 4 | import { BrowserRouter } from "react-router-dom"; 5 | import React from "react"; 6 | import boot from "./boot"; 7 | import config from "../config"; 8 | import { createRoot } from "react-dom/client"; 9 | 10 | boot.run(); 11 | const { base } = config; 12 | 13 | const container = document.getElementById("root"); 14 | const root = createRoot(container); 15 | 16 | root.render( 17 | 18 | 19 | 20 | ); 21 | -------------------------------------------------------------------------------- /src/widgets/Chat/DisclaimerMessage.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Typography } from "@mui/material"; 3 | import { useTheme } from "@mui/material"; 4 | 5 | const DisclaimerMessage = () => { 6 | const theme = useTheme(); 7 | return ( 8 | 13 | This is a beta version, please report errors to repo 14 | 15 | ); 16 | }; 17 | 18 | export default DisclaimerMessage; 19 | -------------------------------------------------------------------------------- /src/widgets/FunctionDialog/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | dialogContent: { 3 | display: "flex", 4 | alignItems: "center", 5 | justifyContent: "center", 6 | pt: "25px", 7 | }, 8 | optionContainer: { 9 | display: "flex", 10 | justifyContent: "space-between", 11 | alignItems: "center", 12 | }, 13 | optionFunction: { font: "9px sans-serif", mr: 2 }, 14 | icon: { color: "#c3c5c8", mr: 2 }, 15 | suffixText: { width: "30%", pl: "10px" }, 16 | select: { mr: "15px" }, 17 | }; 18 | 19 | export default styles; 20 | -------------------------------------------------------------------------------- /.github/workflows/analysis.yml: -------------------------------------------------------------------------------- 1 | name: Analysis 2 | on: 3 | push: 4 | branches: [main] 5 | pull_request: 6 | branches: [main] 7 | jobs: 8 | analyze: 9 | runs-on: ubuntu-latest 10 | permissions: 11 | security-events: write 12 | actions: read 13 | contents: read 14 | steps: 15 | - uses: actions/checkout@v3 16 | - uses: github/codeql-action/init@v2 17 | with: 18 | languages: javascript 19 | - uses: github/codeql-action/autobuild@v2 20 | - uses: github/codeql-action/analyze@v2 21 | -------------------------------------------------------------------------------- /src/widgets/APISettings/styles.js: -------------------------------------------------------------------------------- 1 | const styles = { 2 | root: { width: "100%", height: "100%" }, 3 | container: { width: "100%", height: "100%" }, 4 | content: { height: "100%" }, 5 | schema: { overflow: "auto", maxHeight: "100%" }, 6 | summaryFormRoot: { 7 | width: "100%", 8 | height: "100%", 9 | flexDirection: "column", 10 | justifyContent: "space-between", 11 | alignItems: "flex-end", 12 | }, 13 | editIcon: { 14 | flexDirection: "row", 15 | justifyContent: "flex-end", 16 | }, 17 | }; 18 | 19 | export default styles; 20 | --------------------------------------------------------------------------------