├── .gitattributes ├── .github └── workflows │ ├── declarations.yml │ └── package-lock.yml ├── .gitignore ├── LICENSE ├── README.md ├── actions-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ └── jsMain │ └── kotlin │ └── actions │ ├── artifact │ ├── Artifact.kt │ ├── ArtifactClient.kt │ ├── ArtifactNotFoundError.kt │ ├── BackendIds.kt │ ├── BlobUploadResponse.kt │ ├── DEFAULT_COMPRESSION_LEVEL.kt │ ├── DefaultArtifactClient.kt │ ├── DeleteArtifactResponse.kt │ ├── DownloadArtifactOptions.kt │ ├── DownloadArtifactResponse.kt │ ├── FilesNotFoundError.kt │ ├── FindOptions.kt │ ├── GHESNotSupportedError.kt │ ├── GetArtifactResponse.kt │ ├── InvalidResponseError.kt │ ├── ListArtifactsOptions.kt │ ├── ListArtifactsResponse.kt │ ├── NetworkError.kt │ ├── RetryOptions.kt │ ├── StreamExtractResponse.kt │ ├── UploadArtifactOptions.kt │ ├── UploadArtifactResponse.kt │ ├── UploadZipSpecification.kt │ ├── UsageError.kt │ ├── ZipUploadStream.kt │ ├── client.val.kt │ ├── createZipUploadStream.kt │ ├── deleteArtifactInternal.kt │ ├── deleteArtifactPublic.kt │ ├── downloadArtifactInternal.kt │ ├── downloadArtifactPublic.kt │ ├── getArtifactInternal.kt │ ├── getArtifactPublic.kt │ ├── getBackendIdsFromToken.kt │ ├── getConcurrency.kt │ ├── getExpiration.kt │ ├── getGitHubWorkspaceDir.kt │ ├── getResultsServiceUrl.kt │ ├── getRetryOptions.kt │ ├── getRuntimeToken.kt │ ├── getUploadChunkSize.kt │ ├── getUploadChunkTimeout.kt │ ├── getUploadZipSpecification.kt │ ├── getUserAgentString.kt │ ├── isGhes.kt │ ├── listArtifactsInternal.kt │ ├── listArtifactsPublic.kt │ ├── maskSecretUrls.kt │ ├── maskSigUrl.kt │ ├── streamExtractExternal.kt │ ├── uploadArtifact.kt │ ├── uploadZipToBlobStorage.kt │ ├── validateArtifactName.kt │ ├── validateFilePath.kt │ └── validateRootDirectory.kt │ ├── cache │ ├── ArchiveToolType.kt │ ├── CacheFileSizeLimit.val.kt │ ├── CacheFilename.kt │ ├── CacheNotFoundError.kt │ ├── CompressionMethod.kt │ ├── DefaultRetryAttempts.kt │ ├── DefaultRetryDelay.kt │ ├── DownloadOptions.kt │ ├── DownloadProgress.kt │ ├── FilesNotFoundError.kt │ ├── GHESNotSupportedError.kt │ ├── GnuTarPathOnWindows.val.kt │ ├── InvalidResponseError.kt │ ├── ManifestFilename.kt │ ├── NetworkError.kt │ ├── ReserveCacheError.kt │ ├── SocketTimeout.kt │ ├── SystemTarPathOnWindows.val.kt │ ├── TarFilename.kt │ ├── TransferProgressEvent.kt │ ├── UploadOptions.kt │ ├── UploadProgress.kt │ ├── UsageError.kt │ ├── ValidationError.kt │ ├── assertDefined.kt │ ├── createTar.kt │ ├── createTempDirectory.kt │ ├── downloadCache.kt │ ├── downloadCacheHttpClient.kt │ ├── downloadCacheHttpClientConcurrent.kt │ ├── downloadCacheStorageSDK.kt │ ├── extractTar.kt │ ├── getArchiveFileSizeInBytes.kt │ ├── getCacheFileName.kt │ ├── getCacheServiceURL.kt │ ├── getCacheServiceVersion.kt │ ├── getCacheVersion.kt │ ├── getCompressionMethod.kt │ ├── getDownloadOptions.kt │ ├── getGnuTarPathOnWindows.kt │ ├── getRuntimeToken.kt │ ├── getUploadOptions.kt │ ├── getUserAgentString.kt │ ├── isFeatureAvailable.kt │ ├── isGhes.kt │ ├── isRetryableStatusCode.kt │ ├── isServerErrorStatusCode.kt │ ├── isSuccessStatusCode.kt │ ├── listTar.kt │ ├── maskSecretUrls.kt │ ├── maskSigUrl.kt │ ├── resolvePaths.kt │ ├── restoreCache.kt │ ├── retry.kt │ ├── retryHttpClientResponse.kt │ ├── saveCache.kt │ ├── unlinkFile.kt │ └── uploadCacheArchiveSDK.kt │ ├── core │ ├── AnnotationProperties.kt │ ├── CommandProperties.kt │ ├── ExitCode.kt │ ├── InputOptions.kt │ ├── OidcClient.kt │ ├── SUMMARY_DOCS_URL.kt │ ├── SUMMARY_ENV_VAR.kt │ ├── Summary.kt │ ├── SummaryImageOptions.kt │ ├── SummaryTableCell.kt │ ├── SummaryTableRow.kt │ ├── SummaryWriteOptions.kt │ ├── addPath.kt │ ├── arch.val.kt │ ├── debug.kt │ ├── endGroup.kt │ ├── error.kt │ ├── exportVariable.kt │ ├── getBooleanInput.kt │ ├── getIDToken.kt │ ├── getInput.kt │ ├── getMultilineInput.kt │ ├── getState.kt │ ├── group.kt │ ├── info.kt │ ├── isDebug.kt │ ├── isLinux.val.kt │ ├── isMacOS.val.kt │ ├── isWindows.val.kt │ ├── issue.kt │ ├── issueCommand.kt │ ├── issueFileCommand.kt │ ├── markdownSummary.val.kt │ ├── notice.kt │ ├── platform.val.kt │ ├── prepareKeyValueMessage.kt │ ├── saveState.kt │ ├── setCommandEcho.kt │ ├── setFailed.kt │ ├── setOutput.kt │ ├── setSecret.kt │ ├── startGroup.kt │ ├── summary.val.kt │ ├── toCommandProperties.kt │ ├── toCommandValue.kt │ ├── toPlatformPath.kt │ ├── toPosixPath.kt │ ├── toWin32Path.kt │ └── warning.kt │ ├── exec │ ├── ExecListeners.kt │ ├── ExecOptions.kt │ ├── ExecOutput.kt │ ├── ToolRunner.kt │ ├── argStringToArray.kt │ ├── exec.kt │ └── getExecOutput.kt │ ├── github │ ├── Context.kt │ ├── GitHub.val.kt │ ├── PayloadRepository.kt │ ├── WebhookPayload.kt │ ├── context.val.kt │ ├── getApiBaseUrl.kt │ ├── getAuthString.kt │ ├── getOctokit.kt │ ├── getOctokitOptions.kt │ ├── getProxyAgent.kt │ ├── getProxyAgentDispatcher.kt │ └── getProxyFetch.kt │ ├── glob │ ├── DefaultGlobber.kt │ ├── GlobOptions.kt │ ├── Globber.kt │ ├── HashFileOptions.kt │ ├── MatchKind.kt │ ├── Path.kt │ ├── Pattern.kt │ ├── SearchState.kt │ ├── create.kt │ ├── dirname.kt │ ├── ensureAbsoluteRoot.kt │ ├── getOptions.kt │ ├── getSearchPaths.kt │ ├── hasAbsoluteRoot.kt │ ├── hasRoot.kt │ ├── hashFiles.kt │ ├── match.kt │ ├── normalizeSeparators.kt │ ├── partialMatch.kt │ └── safeTrimTrailingSeparator.kt │ ├── http │ └── client │ │ ├── BasicCredentialHandler.kt │ │ ├── BearerCredentialHandler.kt │ │ ├── Headers.kt │ │ ├── HttpClient.kt │ │ ├── HttpClientError.kt │ │ ├── HttpClientResponse.kt │ │ ├── HttpCodes.kt │ │ ├── MediaTypes.kt │ │ ├── PersonalAccessTokenCredentialHandler.kt │ │ ├── RequestHandler.kt │ │ ├── RequestInfo.kt │ │ ├── RequestOptions.kt │ │ ├── TypedResponse.kt │ │ ├── checkBypass.kt │ │ ├── getProxyUrl.kt │ │ └── isHttps.kt │ ├── io │ ├── CopyOptions.kt │ ├── MoveOptions.kt │ ├── cp.kt │ ├── findInPath.kt │ ├── mkdirP.kt │ ├── mv.kt │ ├── rmRF.kt │ └── which.kt │ └── tool │ └── cache │ ├── HTTPError.kt │ ├── IToolRelease.kt │ ├── IToolReleaseFile.kt │ ├── RetryHelper.kt │ ├── _findMatch.kt │ ├── _getOsVersion.kt │ ├── _readLinuxVersionFile.kt │ ├── cacheDir.kt │ ├── cacheFile.kt │ ├── downloadTool.kt │ ├── evaluateVersions.kt │ ├── extract7z.kt │ ├── extractTar.kt │ ├── extractXar.kt │ ├── extractZip.kt │ ├── find.kt │ ├── findAllVersions.kt │ ├── findFromManifest.kt │ ├── getManifestFromRepo.kt │ └── isExplicitVersion.kt ├── browser-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ └── commonMain │ └── kotlin │ ├── js │ ├── atomic │ │ └── Atomics.kt │ ├── date │ │ └── Date.kt │ ├── decorators │ │ ├── ClassAccessorDecoratorContext.kt │ │ ├── ClassDecoratorContext.kt │ │ ├── ClassFieldDecoratorContext.kt │ │ ├── ClassGetterDecoratorContext.kt │ │ ├── ClassMethodDecoratorContext.kt │ │ ├── ClassSetterDecoratorContext.kt │ │ ├── DecoratorContextKind.kt │ │ └── DecoratorMetadata.kt │ ├── intl │ │ ├── CaseFirst.kt │ │ ├── Collation.kt │ │ ├── Collator.kt │ │ ├── CollatorOptions.kt │ │ ├── CollatorUsage.kt │ │ ├── CompactDisplay.kt │ │ ├── CurrencySign.kt │ │ ├── DateStyle.kt │ │ ├── DateTimeFormat.kt │ │ ├── DateTimeFormatOptions.kt │ │ ├── DateTimeFormatPart.kt │ │ ├── DateTimeRangeFormatPart.kt │ │ ├── DayFormat.kt │ │ ├── DayPeriod.kt │ │ ├── DisplayNames.kt │ │ ├── DisplayNamesFallback.kt │ │ ├── DisplayNamesLanguageDisplay.kt │ │ ├── DisplayNamesOptions.kt │ │ ├── DisplayNamesType.kt │ │ ├── EraFormat.kt │ │ ├── FormatMatcher.kt │ │ ├── Granularity.kt │ │ ├── HourCycle.kt │ │ ├── HourFormat.kt │ │ ├── LDMLPluralRule.kt │ │ ├── ListFormat.kt │ │ ├── ListFormatLocaleMatcher.kt │ │ ├── ListFormatOptions.kt │ │ ├── ListFormatStyle.kt │ │ ├── ListFormatType.kt │ │ ├── Locale.kt │ │ ├── LocaleMatcher.kt │ │ ├── LocaleOptions.kt │ │ ├── Localizable.kt │ │ ├── MinuteFormat.kt │ │ ├── MonthFormat.kt │ │ ├── Notation.kt │ │ ├── NumberFormat.kt │ │ ├── NumberFormatOptions.kt │ │ ├── NumberFormatOptionsCurrencyDisplay.kt │ │ ├── NumberFormatOptionsSignDisplay.kt │ │ ├── NumberFormatOptionsStyle.kt │ │ ├── NumberFormatOptionsUseGrouping.kt │ │ ├── NumberFormatPart.kt │ │ ├── NumberFormatPartType.kt │ │ ├── NumberRangeFormatPart.kt │ │ ├── PartSource.kt │ │ ├── PluralRuleType.kt │ │ ├── PluralRules.kt │ │ ├── PluralRulesOptions.kt │ │ ├── RelativeTimeFormat.kt │ │ ├── RelativeTimeFormatNumeric.kt │ │ ├── RelativeTimeFormatOptions.kt │ │ ├── RelativeTimeFormatStyle.kt │ │ ├── RelativeTimeFormatUnit.kt │ │ ├── RelativeTimeFormatUnitSingular.kt │ │ ├── ResolvedCollatorOptions.kt │ │ ├── ResolvedDateTimeFormatOptions.kt │ │ ├── ResolvedDisplayNamesOptions.kt │ │ ├── ResolvedListFormatOptions.kt │ │ ├── ResolvedNumberFormatOptions.kt │ │ ├── ResolvedNumberFormatOptionsUseGrouping.kt │ │ ├── ResolvedPluralRulesOptions.kt │ │ ├── ResolvedRelativeTimeFormatOptions.kt │ │ ├── ResolvedSegmenterOptions.kt │ │ ├── RoundingMode.kt │ │ ├── RoundingPriority.kt │ │ ├── SecondFormat.kt │ │ ├── SegmentData.kt │ │ ├── Segmenter.kt │ │ ├── SegmenterOptions.kt │ │ ├── Segments.kt │ │ ├── Sensitivity.kt │ │ ├── StringNumericLiteral.kt │ │ ├── SupportedLocalesOptions.kt │ │ ├── TimeStyle.kt │ │ ├── TimeZoneNameFormat.kt │ │ ├── TrailingZeroDisplay.kt │ │ ├── UnicodeBCP47LocaleIdentifier.kt │ │ ├── UnitDisplay.kt │ │ ├── WeekdayFormat.kt │ │ └── YearFormat.kt │ └── transferable │ │ └── Transferable.kt │ └── web │ ├── abort │ ├── AbortController.kt │ ├── AbortSignal.kt │ ├── Abortable.kt │ └── internal │ │ └── await.kt │ ├── animations │ ├── Animation.kt │ ├── AnimationEffect.kt │ ├── AnimationEvent.kt │ ├── AnimationEventInit.kt │ ├── AnimationPlayState.kt │ ├── AnimationPlaybackEvent.kt │ ├── AnimationPlaybackEventInit.kt │ ├── AnimationReplaceState.kt │ ├── AnimationTimeline.kt │ ├── CSSNumberish.kt │ ├── CompositeOperation.kt │ ├── CompositeOperationOrAuto.kt │ ├── ComputedEffectTiming.kt │ ├── ComputedKeyframe.kt │ ├── DocumentTimeline.kt │ ├── DocumentTimelineOptions.kt │ ├── EffectTiming.kt │ ├── FillMode.kt │ ├── FrameRequestCallback.kt │ ├── FrameRequestId.kt │ ├── IterationCompositeOperation.kt │ ├── Keyframe.kt │ ├── KeyframeAnimationOptions.kt │ ├── KeyframeEffect.kt │ ├── KeyframeEffectOptions.kt │ ├── OptionalEffectTiming.kt │ ├── PlaybackDirection.kt │ ├── PropertyIndexedKeyframes.kt │ ├── cancelAnimationFrame.kt │ └── requestAnimationFrame.kt │ ├── aria │ └── ARIAMixin.kt │ ├── assembly │ ├── CompileError.kt │ ├── ExportValue.kt │ ├── Exports.kt │ ├── Global.kt │ ├── GlobalDescriptor.kt │ ├── ImportExportKind.kt │ ├── ImportValue.kt │ ├── Imports.kt │ ├── Instance.kt │ ├── LinkError.kt │ ├── Memory.kt │ ├── MemoryDescriptor.kt │ ├── Module.kt │ ├── ModuleExportDescriptor.kt │ ├── ModuleImportDescriptor.kt │ ├── ModuleImports.kt │ ├── RuntimeError.kt │ ├── Table.kt │ ├── TableDescriptor.kt │ ├── TableKind.kt │ ├── ValueType.kt │ ├── WebAssemblyInstantiatedSource.kt │ ├── compile.kt │ ├── compileStreaming.kt │ ├── instantiate.kt │ ├── instantiateStreaming.kt │ └── validate.kt │ ├── audio │ ├── AnalyserNode.kt │ ├── AnalyserOptions.kt │ ├── AudioBuffer.kt │ ├── AudioBufferOptions.kt │ ├── AudioBufferSourceNode.kt │ ├── AudioBufferSourceOptions.kt │ ├── AudioContext.kt │ ├── AudioContextLatencyCategory.kt │ ├── AudioContextOptions.kt │ ├── AudioContextState.kt │ ├── AudioDestinationNode.kt │ ├── AudioListener.kt │ ├── AudioNode.kt │ ├── AudioNodeOptions.kt │ ├── AudioParam.kt │ ├── AudioParamMap.kt │ ├── AudioScheduledSourceNode.kt │ ├── AudioTimestamp.kt │ ├── AudioWorklet.kt │ ├── AudioWorkletGlobalScope.kt │ ├── AudioWorkletNode.kt │ ├── AudioWorkletNodeOptions.kt │ ├── AudioWorkletProcessor.kt │ ├── AudioWorkletProcessorConstructor.kt │ ├── AudioWorkletProcessorImpl.kt │ ├── AutomationRate.kt │ ├── BaseAudioContext.kt │ ├── BiquadFilterNode.kt │ ├── BiquadFilterOptions.kt │ ├── BiquadFilterType.kt │ ├── ChannelCountMode.kt │ ├── ChannelInterpretation.kt │ ├── ChannelMergerNode.kt │ ├── ChannelMergerOptions.kt │ ├── ChannelSplitterNode.kt │ ├── ChannelSplitterOptions.kt │ ├── ConstantSourceNode.kt │ ├── ConstantSourceOptions.kt │ ├── ConvolverNode.kt │ ├── ConvolverOptions.kt │ ├── DecodeErrorCallback.kt │ ├── DecodeSuccessCallback.kt │ ├── DelayNode.kt │ ├── DelayOptions.kt │ ├── DistanceModelType.kt │ ├── DynamicsCompressorNode.kt │ ├── DynamicsCompressorOptions.kt │ ├── GainNode.kt │ ├── GainOptions.kt │ ├── IIRFilterNode.kt │ ├── IIRFilterOptions.kt │ ├── MediaElementAudioSourceNode.kt │ ├── MediaElementAudioSourceOptions.kt │ ├── MediaStreamAudioDestinationNode.kt │ ├── MediaStreamAudioSourceNode.kt │ ├── MediaStreamAudioSourceOptions.kt │ ├── OfflineAudioCompletionEvent.kt │ ├── OfflineAudioCompletionEventInit.kt │ ├── OfflineAudioContext.kt │ ├── OfflineAudioContextOptions.kt │ ├── OscillatorNode.kt │ ├── OscillatorOptions.kt │ ├── OscillatorType.kt │ ├── OverSampleType.kt │ ├── PannerNode.kt │ ├── PannerOptions.kt │ ├── PanningModelType.kt │ ├── PeriodicWave.kt │ ├── PeriodicWaveConstraints.kt │ ├── PeriodicWaveOptions.kt │ ├── StereoPannerNode.kt │ ├── StereoPannerOptions.kt │ ├── WaveShaperNode.kt │ └── WaveShaperOptions.kt │ ├── authn │ ├── AttestationConveyancePreference.kt │ ├── AuthenticationExtensionsClientInputs.kt │ ├── AuthenticationExtensionsClientInputsJSON.kt │ ├── AuthenticationExtensionsClientOutputs.kt │ ├── AuthenticationExtensionsPRFInputs.kt │ ├── AuthenticationExtensionsPRFOutputs.kt │ ├── AuthenticationExtensionsPRFValues.kt │ ├── AuthenticatorAssertionResponse.kt │ ├── AuthenticatorAttachment.kt │ ├── AuthenticatorAttestationResponse.kt │ ├── AuthenticatorResponse.kt │ ├── AuthenticatorSelectionCriteria.kt │ ├── AuthenticatorTransport.kt │ ├── Base64URLString.kt │ ├── COSEAlgorithmIdentifier.kt │ ├── CredentialPropertiesOutput.kt │ ├── PublicKeyCredential.kt │ ├── PublicKeyCredentialClientCapabilities.kt │ ├── PublicKeyCredentialCreationOptions.kt │ ├── PublicKeyCredentialCreationOptionsJSON.kt │ ├── PublicKeyCredentialDescriptor.kt │ ├── PublicKeyCredentialDescriptorJSON.kt │ ├── PublicKeyCredentialEntity.kt │ ├── PublicKeyCredentialJSON.kt │ ├── PublicKeyCredentialParameters.kt │ ├── PublicKeyCredentialRequestOptions.kt │ ├── PublicKeyCredentialRequestOptionsJSON.kt │ ├── PublicKeyCredentialRpEntity.kt │ ├── PublicKeyCredentialType.kt │ ├── PublicKeyCredentialUserEntity.kt │ ├── PublicKeyCredentialUserEntityJSON.kt │ ├── ResidentKeyRequirement.kt │ └── UserVerificationRequirement.kt │ ├── autofill │ ├── AutoFill.kt │ ├── AutoFillAddressKind.kt │ ├── AutoFillBase.kt │ ├── AutoFillContactField.kt │ ├── AutoFillContactKind.kt │ ├── AutoFillCredentialField.kt │ ├── AutoFillField.kt │ ├── AutoFillNormalField.kt │ └── AutoFillSection.kt │ ├── blob │ ├── Blob.kt │ ├── BlobPart.kt │ ├── BlobPropertyBag.kt │ └── EndingType.kt │ ├── broadcast │ └── BroadcastChannel.kt │ ├── cache │ ├── Cache.kt │ ├── CacheQueryOptions.kt │ ├── CacheStorage.kt │ ├── MultiCacheQueryOptions.kt │ └── caches.val.kt │ ├── canvas │ ├── CanvasCompositing.kt │ ├── CanvasDirection.kt │ ├── CanvasDrawImage.kt │ ├── CanvasDrawPath.kt │ ├── CanvasFillRule.kt │ ├── CanvasFillStrokeStyles.kt │ ├── CanvasFilters.kt │ ├── CanvasFontKerning.kt │ ├── CanvasFontStretch.kt │ ├── CanvasFontVariantCaps.kt │ ├── CanvasGradient.kt │ ├── CanvasImageData.kt │ ├── CanvasImageSmoothing.kt │ ├── CanvasImageSource.kt │ ├── CanvasLineCap.kt │ ├── CanvasLineJoin.kt │ ├── CanvasPath.kt │ ├── CanvasPathDrawingStyles.kt │ ├── CanvasPattern.kt │ ├── CanvasRect.kt │ ├── CanvasRenderingContext2D.kt │ ├── CanvasRenderingContext2DSettings.kt │ ├── CanvasSettings.kt │ ├── CanvasShadowStyles.kt │ ├── CanvasState.kt │ ├── CanvasText.kt │ ├── CanvasTextAlign.kt │ ├── CanvasTextBaseline.kt │ ├── CanvasTextDrawingStyles.kt │ ├── CanvasTextRendering.kt │ ├── CanvasTransform.kt │ ├── CanvasUserInterface.kt │ ├── GlobalCompositeOperation.kt │ ├── ImageEncodeOptions.kt │ ├── ImageSmoothingQuality.kt │ ├── OffscreenCanvas.kt │ ├── OffscreenCanvasRenderingContext2D.kt │ ├── Path2D.kt │ └── TextMetrics.kt │ ├── clipboard │ ├── Clipboard.kt │ ├── ClipboardEvent.kt │ ├── ClipboardEventInit.kt │ ├── ClipboardItem.kt │ ├── ClipboardItemOptions.kt │ ├── ClipboardItems.kt │ └── PresentationStyle.kt │ ├── codecs │ ├── AlphaOption.kt │ ├── AudioData.kt │ ├── AudioDataCopyToOptions.kt │ ├── AudioDataInit.kt │ ├── AudioDataOutputCallback.kt │ ├── AudioDecoder.kt │ ├── AudioDecoderConfig.kt │ ├── AudioDecoderInit.kt │ ├── AudioDecoderSupport.kt │ ├── AudioEncoder.kt │ ├── AudioEncoderConfig.kt │ ├── AudioEncoderInit.kt │ ├── AudioEncoderSupport.kt │ ├── AudioSampleFormat.kt │ ├── AvcBitstreamFormat.kt │ ├── AvcEncoderConfig.kt │ ├── BitrateMode.kt │ ├── CodecState.kt │ ├── EncodedAudioChunk.kt │ ├── EncodedAudioChunkInit.kt │ ├── EncodedAudioChunkMetadata.kt │ ├── EncodedAudioChunkOutputCallback.kt │ ├── EncodedAudioChunkType.kt │ ├── EncodedVideoChunk.kt │ ├── EncodedVideoChunkInit.kt │ ├── EncodedVideoChunkMetadata.kt │ ├── EncodedVideoChunkOutputCallback.kt │ ├── EncodedVideoChunkType.kt │ ├── HardwareAcceleration.kt │ ├── ImageBufferSource.kt │ ├── ImageDecodeOptions.kt │ ├── ImageDecodeResult.kt │ ├── ImageDecoder.kt │ ├── ImageDecoderInit.kt │ ├── ImageTrack.kt │ ├── ImageTrackList.kt │ ├── LatencyMode.kt │ ├── OpusBitstreamFormat.kt │ ├── OpusEncoderConfig.kt │ ├── PlaneLayout.kt │ ├── VideoColorPrimaries.kt │ ├── VideoColorSpace.kt │ ├── VideoColorSpaceInit.kt │ ├── VideoDecoder.kt │ ├── VideoDecoderConfig.kt │ ├── VideoDecoderInit.kt │ ├── VideoDecoderSupport.kt │ ├── VideoEncoder.kt │ ├── VideoEncoderBitrateMode.kt │ ├── VideoEncoderConfig.kt │ ├── VideoEncoderEncodeOptions.kt │ ├── VideoEncoderEncodeOptionsForAvc.kt │ ├── VideoEncoderInit.kt │ ├── VideoEncoderSupport.kt │ ├── VideoFrame.kt │ ├── VideoFrameBufferInit.kt │ ├── VideoFrameCopyToOptions.kt │ ├── VideoFrameInit.kt │ ├── VideoFrameOutputCallback.kt │ ├── VideoMatrixCoefficients.kt │ ├── VideoPixelFormat.kt │ ├── VideoTransferCharacteristics.kt │ └── WebCodecsErrorCallback.kt │ ├── components │ ├── AssignedNodesOptions.kt │ ├── CustomElement.kt │ ├── CustomElementCompanion.kt │ ├── CustomElementConstructor.kt │ ├── CustomElementRegistry.kt │ ├── CustomStateSet.kt │ ├── ElementDefinitionOptions.kt │ ├── ElementInternals.kt │ ├── HTMLSlotElement.kt │ ├── HTMLTemplateElement.kt │ ├── ShadowRoot.kt │ ├── ShadowRootInit.kt │ ├── ShadowRootMode.kt │ ├── SlotAssignmentMode.kt │ ├── Slottable.kt │ └── customElements.val.kt │ ├── compression │ ├── CompressionFormat.kt │ ├── CompressionStream.kt │ └── DecompressionStream.kt │ ├── console │ ├── Console.kt │ └── console.val.kt │ ├── cookie │ ├── CookieChangeEvent.kt │ ├── CookieChangeEventInit.kt │ ├── CookieInit.kt │ ├── CookieList.kt │ ├── CookieListItem.kt │ ├── CookieSameSite.kt │ ├── CookieStore.kt │ ├── CookieStoreDeleteOptions.kt │ └── CookieStoreGetOptions.kt │ ├── credentials │ ├── Credential.kt │ ├── CredentialCreationOptions.kt │ ├── CredentialMediationRequirement.kt │ ├── CredentialRequestOptions.kt │ └── CredentialsContainer.kt │ ├── crypto │ ├── AesCbcParams.kt │ ├── AesCtrParams.kt │ ├── AesDerivedKeyParams.kt │ ├── AesGcmParams.kt │ ├── AesKeyAlgorithm.kt │ ├── AesKeyGenParams.kt │ ├── Algorithm.kt │ ├── BigInteger.kt │ ├── Crypto.kt │ ├── CryptoKey.kt │ ├── CryptoKeyPair.kt │ ├── EcKeyAlgorithm.kt │ ├── EcKeyGenParams.kt │ ├── EcKeyImportParams.kt │ ├── EcdhKeyDeriveParams.kt │ ├── EcdsaParams.kt │ ├── Ed25519.kt │ ├── HashAlgorithmIdentifier.kt │ ├── HkdfParams.kt │ ├── HmacImportParams.kt │ ├── HmacKeyAlgorithm.kt │ ├── HmacKeyGenParams.kt │ ├── JsonWebKey.kt │ ├── KeyAlgorithm.kt │ ├── KeyFormat.kt │ ├── KeyType.kt │ ├── KeyUsage.kt │ ├── NamedCurve.kt │ ├── Pbkdf2Params.kt │ ├── RsaHashedImportParams.kt │ ├── RsaHashedKeyAlgorithm.kt │ ├── RsaHashedKeyGenParams.kt │ ├── RsaKeyAlgorithm.kt │ ├── RsaKeyGenParams.kt │ ├── RsaOaepParams.kt │ ├── RsaOtherPrimesInfo.kt │ ├── RsaPssParams.kt │ ├── SubtleCrypto.kt │ └── crypto.val.kt │ ├── csp │ ├── SecurityPolicyViolationEvent.kt │ ├── SecurityPolicyViolationEventDisposition.kt │ └── SecurityPolicyViolationEventInit.kt │ ├── cssom │ ├── CSS.kt │ ├── CSSAnimation.kt │ ├── CSSConditionRule.kt │ ├── CSSContainerRule.kt │ ├── CSSCounterStyleRule.kt │ ├── CSSFontFaceRule.kt │ ├── CSSFontFeatureValuesRule.kt │ ├── CSSFontPaletteValuesRule.kt │ ├── CSSGroupingRule.kt │ ├── CSSImageValue.kt │ ├── CSSImportRule.kt │ ├── CSSKeyframeRule.kt │ ├── CSSKeyframesRule.kt │ ├── CSSKeywordValue.kt │ ├── CSSKeywordish.kt │ ├── CSSLayerBlockRule.kt │ ├── CSSLayerStatementRule.kt │ ├── CSSMathClamp.kt │ ├── CSSMathInvert.kt │ ├── CSSMathMax.kt │ ├── CSSMathMin.kt │ ├── CSSMathNegate.kt │ ├── CSSMathOperator.kt │ ├── CSSMathProduct.kt │ ├── CSSMathSum.kt │ ├── CSSMathValue.kt │ ├── CSSMatrixComponent.kt │ ├── CSSMatrixComponentOptions.kt │ ├── CSSMediaRule.kt │ ├── CSSNamespaceRule.kt │ ├── CSSNestedDeclarations.kt │ ├── CSSNumberish.kt │ ├── CSSNumericArray.kt │ ├── CSSNumericBaseType.kt │ ├── CSSNumericType.kt │ ├── CSSNumericValue.kt │ ├── CSSPageRule.kt │ ├── CSSPerspective.kt │ ├── CSSPerspectiveValue.kt │ ├── CSSPropertyRule.kt │ ├── CSSRotate.kt │ ├── CSSRule.kt │ ├── CSSRuleList.kt │ ├── CSSScale.kt │ ├── CSSScopeRule.kt │ ├── CSSSkew.kt │ ├── CSSSkewX.kt │ ├── CSSSkewY.kt │ ├── CSSStartingStyleRule.kt │ ├── CSSStyleDeclaration.kt │ ├── CSSStyleRule.kt │ ├── CSSStyleSheet.kt │ ├── CSSStyleSheetInit.kt │ ├── CSSStyleValue.kt │ ├── CSSSupportsRule.kt │ ├── CSSTransformComponent.kt │ ├── CSSTransformValue.kt │ ├── CSSTransition.kt │ ├── CSSTranslate.kt │ ├── CSSUnitValue.kt │ ├── CSSUnparsedSegment.kt │ ├── CSSUnparsedValue.kt │ ├── CSSVariableReferenceValue.kt │ ├── CSSViewTransitionRule.kt │ ├── ContentVisibilityAutoStateChangeEvent.kt │ ├── ContentVisibilityAutoStateChangeEventInit.kt │ ├── ElementCSSInlineStyle.kt │ ├── LinkStyle.kt │ ├── MediaList.kt │ ├── MediaQueryList.kt │ ├── MediaQueryListEvent.kt │ ├── MediaQueryListEventInit.kt │ ├── PropertyDefinition.kt │ ├── StylePropertyMap.kt │ ├── StylePropertyMapReadOnly.kt │ ├── StyleSheet.kt │ ├── StyleSheetList.kt │ ├── TransitionEvent.kt │ ├── TransitionEventInit.kt │ └── matchMedia.kt │ ├── data │ ├── AllowedEffect.kt │ ├── DataTransfer.kt │ ├── DataTransferItem.kt │ ├── DataTransferItemList.kt │ ├── DropEffect.kt │ └── FunctionStringCallback.kt │ ├── device │ ├── DeviceMotionEvent.kt │ ├── DeviceMotionEventAcceleration.kt │ ├── DeviceMotionEventAccelerationInit.kt │ ├── DeviceMotionEventInit.kt │ ├── DeviceMotionEventRotationRate.kt │ ├── DeviceMotionEventRotationRateInit.kt │ ├── DeviceOrientationEvent.kt │ ├── DeviceOrientationEventInit.kt │ └── devicePixelRatio.val.kt │ ├── dom │ ├── Animatable.kt │ ├── Attr.kt │ ├── CDATASection.kt │ ├── CaretPosition.kt │ ├── CaretPositionFromPointOptions.kt │ ├── CharacterData.kt │ ├── CheckVisibilityOptions.kt │ ├── ChildNode.kt │ ├── Comment.kt │ ├── DOMImplementation.kt │ ├── DOMStringList.kt │ ├── DOMStringMap.kt │ ├── DOMTokenList.kt │ ├── Document.kt │ ├── DocumentFragment.kt │ ├── DocumentOrShadowRoot.kt │ ├── DocumentReadyState.kt │ ├── DocumentType.kt │ ├── DocumentVisibilityState.kt │ ├── Element.kt │ ├── ElementCreationOptions.kt │ ├── ElementNamespace.kt │ ├── FocusOptions.kt │ ├── GetAnimationsOptions.kt │ ├── GetHTMLOptions.kt │ ├── GetRootNodeOptions.kt │ ├── GlobalEventHandlers.kt │ ├── HTMLOrSVGElement.kt │ ├── HTMLOrSVGImageElement.kt │ ├── HTMLOrSVGScriptElement.kt │ ├── InsertPosition.kt │ ├── NamedNodeMap.kt │ ├── Node.kt │ ├── NodeFilter.kt │ ├── NodeIterator.kt │ ├── NodeList.kt │ ├── NodeListOf.kt │ ├── NodeType.kt │ ├── NonDocumentTypeChildNode.kt │ ├── NonElementParentNode.kt │ ├── ParentNode.kt │ ├── PointerLockOptions.kt │ ├── ProcessingInstruction.kt │ ├── Text.kt │ ├── TreeWalker.kt │ ├── document.val.kt │ └── getComputedStyle.kt │ ├── encoding │ ├── TextDecodeOptions.kt │ ├── TextDecoder.kt │ ├── TextDecoderCommon.kt │ ├── TextDecoderOptions.kt │ ├── TextDecoderStream.kt │ ├── TextEncoder.kt │ ├── TextEncoderCommon.kt │ ├── TextEncoderEncodeIntoResult.kt │ ├── TextEncoderStream.kt │ ├── atob.kt │ └── btoa.kt │ ├── errors │ ├── DOMException.kt │ ├── ErrorEvent.kt │ ├── ErrorEventInit.kt │ └── reportError.kt │ ├── events │ ├── AddEventListenerOptions.kt │ ├── CustomEvent.kt │ ├── CustomEventInit.kt │ ├── Event.kt │ ├── EventHandler.kt │ ├── EventInit.kt │ ├── EventInstance.kt │ ├── EventListenerOptions.kt │ ├── EventPhase.kt │ ├── EventTarget.kt │ ├── EventType.kt │ ├── HasTargets.kt │ ├── JsEvent.kt │ ├── ObservableEventListenerOptions.kt │ ├── ProgressEvent.kt │ ├── ProgressEventInit.kt │ └── internal │ │ └── createAddEventListenerOptions.kt │ ├── file │ ├── File.kt │ ├── FileList.kt │ ├── FilePropertyBag.kt │ ├── FileReader.kt │ └── FileReaderSync.kt │ ├── fonts │ ├── FontDisplay.kt │ ├── FontFace.kt │ ├── FontFaceDescriptors.kt │ ├── FontFaceLoadStatus.kt │ ├── FontFaceSet.kt │ ├── FontFaceSetLoadEvent.kt │ ├── FontFaceSetLoadEventInit.kt │ ├── FontFaceSetLoadStatus.kt │ └── FontFaceSource.kt │ ├── form │ ├── CustomFormControl.kt │ ├── FormControl.kt │ ├── FormData.kt │ ├── FormDataEntryValue.kt │ ├── FormDataEvent.kt │ ├── FormDataEventInit.kt │ ├── FormEncType.kt │ ├── FormMethod.kt │ ├── FormStateRestoreMode.kt │ ├── SubmitEvent.kt │ └── SubmitEventInit.kt │ ├── fs │ ├── ErrorCallback.kt │ ├── FileCallback.kt │ ├── FileSystem.kt │ ├── FileSystemCreateWritableOptions.kt │ ├── FileSystemDirectoryEntry.kt │ ├── FileSystemDirectoryHandle.kt │ ├── FileSystemDirectoryReader.kt │ ├── FileSystemEntriesCallback.kt │ ├── FileSystemEntry.kt │ ├── FileSystemEntryCallback.kt │ ├── FileSystemFileEntry.kt │ ├── FileSystemFileHandle.kt │ ├── FileSystemFlags.kt │ ├── FileSystemGetDirectoryOptions.kt │ ├── FileSystemGetFileOptions.kt │ ├── FileSystemHandle.kt │ ├── FileSystemHandleKind.kt │ ├── FileSystemReadWriteOptions.kt │ ├── FileSystemRemoveOptions.kt │ ├── FileSystemSyncAccessHandle.kt │ ├── FileSystemWritableFileStream.kt │ ├── FileSystemWriteChunkType.kt │ ├── WriteCommandType.kt │ └── WriteParams.kt │ ├── fullscreen │ ├── FullscreenNavigationUI.kt │ └── FullscreenOptions.kt │ ├── function │ └── VoidFunction.kt │ ├── gamepad │ ├── Gamepad.kt │ ├── GamepadButton.kt │ ├── GamepadEffectParameters.kt │ ├── GamepadEvent.kt │ ├── GamepadEventInit.kt │ ├── GamepadHapticActuator.kt │ ├── GamepadHapticEffectType.kt │ ├── GamepadHapticsResult.kt │ └── GamepadMappingType.kt │ ├── geolocation │ ├── Geolocation.kt │ ├── GeolocationCoordinates.kt │ ├── GeolocationPosition.kt │ ├── GeolocationPositionError.kt │ ├── GeolocationWatchId.kt │ ├── PositionCallback.kt │ ├── PositionErrorCallback.kt │ └── PositionOptions.kt │ ├── geometry │ ├── DOMMatrix.kt │ ├── DOMMatrixReadOnly.kt │ ├── DOMPoint.kt │ ├── DOMPointReadOnly.kt │ ├── DOMQuad.kt │ ├── DOMRect.kt │ ├── DOMRectList.kt │ └── DOMRectReadOnly.kt │ ├── gl │ ├── ANGLE_instanced_arrays.kt │ ├── Aliases.kt │ ├── EXT_blend_minmax.kt │ ├── EXT_color_buffer_float.kt │ ├── EXT_color_buffer_half_float.kt │ ├── EXT_float_blend.kt │ ├── EXT_frag_depth.kt │ ├── EXT_sRGB.kt │ ├── EXT_shader_texture_lod.kt │ ├── EXT_texture_compression_bptc.kt │ ├── EXT_texture_compression_rgtc.kt │ ├── EXT_texture_filter_anisotropic.kt │ ├── EXT_texture_norm16.kt │ ├── GLbitfield.kt │ ├── GLenum.kt │ ├── KHR_parallel_shader_compile.kt │ ├── Lists.kt │ ├── OES_draw_buffers_indexed.kt │ ├── OES_element_index_uint.kt │ ├── OES_fbo_render_mipmap.kt │ ├── OES_standard_derivatives.kt │ ├── OES_texture_float.kt │ ├── OES_texture_float_linear.kt │ ├── OES_texture_half_float.kt │ ├── OES_texture_half_float_linear.kt │ ├── OES_vertex_array_object.kt │ ├── OVR_multiview2.kt │ ├── TexImageSource.kt │ ├── WEBGL_color_buffer_float.kt │ ├── WEBGL_compressed_texture_astc.kt │ ├── WEBGL_compressed_texture_etc.kt │ ├── WEBGL_compressed_texture_etc1.kt │ ├── WEBGL_compressed_texture_pvrtc.kt │ ├── WEBGL_compressed_texture_s3tc.kt │ ├── WEBGL_compressed_texture_s3tc_srgb.kt │ ├── WEBGL_debug_renderer_info.kt │ ├── WEBGL_debug_shaders.kt │ ├── WEBGL_depth_texture.kt │ ├── WEBGL_draw_buffers.kt │ ├── WEBGL_lose_context.kt │ ├── WEBGL_multi_draw.kt │ ├── WebGL2RenderingContext.kt │ ├── WebGL2RenderingContextBase.kt │ ├── WebGL2RenderingContextOverloads.kt │ ├── WebGLActiveInfo.kt │ ├── WebGLBuffer.kt │ ├── WebGLContextAttributes.kt │ ├── WebGLContextEvent.kt │ ├── WebGLContextEventInit.kt │ ├── WebGLExtension.kt │ ├── WebGLFramebuffer.kt │ ├── WebGLPowerPreference.kt │ ├── WebGLProgram.kt │ ├── WebGLQuery.kt │ ├── WebGLRenderbuffer.kt │ ├── WebGLRenderingContext.kt │ ├── WebGLRenderingContextBase.kt │ ├── WebGLRenderingContextOverloads.kt │ ├── WebGLSampler.kt │ ├── WebGLShader.kt │ ├── WebGLShaderPrecisionFormat.kt │ ├── WebGLSync.kt │ ├── WebGLTexture.kt │ ├── WebGLTransformFeedback.kt │ ├── WebGLUniformLocation.kt │ ├── WebGLVertexArrayObject.kt │ └── WebGLVertexArrayObjectOES.kt │ ├── globals │ ├── crossOriginIsolated.val.kt │ ├── isSecureContext.val.kt │ └── origin.val.kt │ ├── gpu │ ├── GPU.kt │ ├── GPUAdapter.kt │ ├── GPUAdapterInfo.kt │ ├── GPUAddressMode.kt │ ├── GPUAutoLayoutMode.kt │ ├── GPUBindGroup.kt │ ├── GPUBindGroupDescriptor.kt │ ├── GPUBindGroupEntry.kt │ ├── GPUBindGroupLayout.kt │ ├── GPUBindGroupLayoutDescriptor.kt │ ├── GPUBindGroupLayoutEntry.kt │ ├── GPUBindingCommandsMixin.kt │ ├── GPUBindingResource.kt │ ├── GPUBlendComponent.kt │ ├── GPUBlendFactor.kt │ ├── GPUBlendOperation.kt │ ├── GPUBlendState.kt │ ├── GPUBuffer.kt │ ├── GPUBufferBinding.kt │ ├── GPUBufferBindingLayout.kt │ ├── GPUBufferBindingType.kt │ ├── GPUBufferDescriptor.kt │ ├── GPUBufferDynamicOffset.kt │ ├── GPUBufferMapState.kt │ ├── GPUBufferUsageFlags.kt │ ├── GPUCanvasAlphaMode.kt │ ├── GPUCanvasConfiguration.kt │ ├── GPUCanvasContext.kt │ ├── GPUCanvasToneMapping.kt │ ├── GPUCanvasToneMappingMode.kt │ ├── GPUColor.kt │ ├── GPUColorDict.kt │ ├── GPUColorTargetState.kt │ ├── GPUColorWriteFlags.kt │ ├── GPUCommandBuffer.kt │ ├── GPUCommandBufferDescriptor.kt │ ├── GPUCommandEncoder.kt │ ├── GPUCommandEncoderDescriptor.kt │ ├── GPUCompareFunction.kt │ ├── GPUCompilationInfo.kt │ ├── GPUCompilationMessage.kt │ ├── GPUCompilationMessageType.kt │ ├── GPUComputePassDescriptor.kt │ ├── GPUComputePassEncoder.kt │ ├── GPUComputePassTimestampWrites.kt │ ├── GPUComputePipeline.kt │ ├── GPUComputePipelineDescriptor.kt │ ├── GPUCopyExternalImageDestInfo.kt │ ├── GPUCopyExternalImageSource.kt │ ├── GPUCopyExternalImageSourceInfo.kt │ ├── GPUCullMode.kt │ ├── GPUDebugCommandsMixin.kt │ ├── GPUDepthBias.kt │ ├── GPUDepthStencilState.kt │ ├── GPUDevice.kt │ ├── GPUDeviceDescriptor.kt │ ├── GPUDeviceLostInfo.kt │ ├── GPUDeviceLostReason.kt │ ├── GPUError.kt │ ├── GPUErrorFilter.kt │ ├── GPUExtent3D.kt │ ├── GPUExtent3DDict.kt │ ├── GPUExternalTexture.kt │ ├── GPUExternalTextureBindingLayout.kt │ ├── GPUExternalTextureDescriptor.kt │ ├── GPUFeatureName.kt │ ├── GPUFilterMode.kt │ ├── GPUFlagsConstant.kt │ ├── GPUFragmentState.kt │ ├── GPUFrontFace.kt │ ├── GPUIndex32.kt │ ├── GPUIndexFormat.kt │ ├── GPUIntegerCoordinate.kt │ ├── GPUIntegerCoordinateOut.kt │ ├── GPUInternalError.kt │ ├── GPULoadOp.kt │ ├── GPUMapModeFlags.kt │ ├── GPUMipmapFilterMode.kt │ ├── GPUMultisampleState.kt │ ├── GPUObjectBase.kt │ ├── GPUObjectDescriptorBase.kt │ ├── GPUOrigin2D.kt │ ├── GPUOrigin2DDict.kt │ ├── GPUOrigin3D.kt │ ├── GPUOrigin3DDict.kt │ ├── GPUOutOfMemoryError.kt │ ├── GPUPipelineBase.kt │ ├── GPUPipelineConstantValue.kt │ ├── GPUPipelineDescriptorBase.kt │ ├── GPUPipelineError.kt │ ├── GPUPipelineErrorInit.kt │ ├── GPUPipelineErrorReason.kt │ ├── GPUPipelineLayout.kt │ ├── GPUPipelineLayoutDescriptor.kt │ ├── GPUPowerPreference.kt │ ├── GPUPrimitiveState.kt │ ├── GPUPrimitiveTopology.kt │ ├── GPUProgrammableStage.kt │ ├── GPUQuerySet.kt │ ├── GPUQuerySetDescriptor.kt │ ├── GPUQueryType.kt │ ├── GPUQueue.kt │ ├── GPUQueueDescriptor.kt │ ├── GPURenderBundle.kt │ ├── GPURenderBundleDescriptor.kt │ ├── GPURenderBundleEncoder.kt │ ├── GPURenderBundleEncoderDescriptor.kt │ ├── GPURenderCommandsMixin.kt │ ├── GPURenderPassColorAttachment.kt │ ├── GPURenderPassDepthStencilAttachment.kt │ ├── GPURenderPassDescriptor.kt │ ├── GPURenderPassEncoder.kt │ ├── GPURenderPassLayout.kt │ ├── GPURenderPassTimestampWrites.kt │ ├── GPURenderPipeline.kt │ ├── GPURenderPipelineDescriptor.kt │ ├── GPURequestAdapterOptions.kt │ ├── GPUSampleMask.kt │ ├── GPUSampler.kt │ ├── GPUSamplerBindingLayout.kt │ ├── GPUSamplerBindingType.kt │ ├── GPUSamplerDescriptor.kt │ ├── GPUShaderModule.kt │ ├── GPUShaderModuleDescriptor.kt │ ├── GPUShaderStageFlags.kt │ ├── GPUSignedOffset32.kt │ ├── GPUSize32.kt │ ├── GPUSize32Out.kt │ ├── GPUSize64.kt │ ├── GPUSize64Out.kt │ ├── GPUStencilFaceState.kt │ ├── GPUStencilOperation.kt │ ├── GPUStencilValue.kt │ ├── GPUStorageTextureAccess.kt │ ├── GPUStorageTextureBindingLayout.kt │ ├── GPUStoreOp.kt │ ├── GPUSupportedFeatures.kt │ ├── GPUSupportedLimits.kt │ ├── GPUTexelCopyBufferInfo.kt │ ├── GPUTexelCopyBufferLayout.kt │ ├── GPUTexelCopyTextureInfo.kt │ ├── GPUTexture.kt │ ├── GPUTextureAspect.kt │ ├── GPUTextureBindingLayout.kt │ ├── GPUTextureDescriptor.kt │ ├── GPUTextureDimension.kt │ ├── GPUTextureFormat.kt │ ├── GPUTextureSampleType.kt │ ├── GPUTextureUsageFlags.kt │ ├── GPUTextureView.kt │ ├── GPUTextureViewDescriptor.kt │ ├── GPUTextureViewDimension.kt │ ├── GPUUncapturedErrorEvent.kt │ ├── GPUUncapturedErrorEventInit.kt │ ├── GPUValidationError.kt │ ├── GPUVertexAttribute.kt │ ├── GPUVertexBufferLayout.kt │ ├── GPUVertexFormat.kt │ ├── GPUVertexState.kt │ ├── GPUVertexStepMode.kt │ └── WGSLLanguageFeatures.kt │ ├── highlight │ ├── Highlight.kt │ ├── HighlightRegistry.kt │ └── HighlightType.kt │ ├── history │ ├── HashChangeEvent.kt │ ├── HashChangeEventInit.kt │ ├── History.kt │ ├── PageTransitionEvent.kt │ ├── PageTransitionEventInit.kt │ ├── PopStateEvent.kt │ ├── PopStateEventInit.kt │ ├── ScrollRestoration.kt │ └── history.val.kt │ ├── html │ ├── Audio.kt │ ├── AutoCapitalize.kt │ ├── BlobCallback.kt │ ├── ButtonType.kt │ ├── CanPlayTypeResult.kt │ ├── ElementContentEditable.kt │ ├── EnterKeyHint.kt │ ├── HTML.kt │ ├── HTMLAnchorElement.kt │ ├── HTMLAreaElement.kt │ ├── HTMLAudioElement.kt │ ├── HTMLBRElement.kt │ ├── HTMLBaseElement.kt │ ├── HTMLBodyElement.kt │ ├── HTMLButtonElement.kt │ ├── HTMLCanvasElement.kt │ ├── HTMLCollection.kt │ ├── HTMLCollectionBase.kt │ ├── HTMLCollectionOf.kt │ ├── HTMLDListElement.kt │ ├── HTMLDataElement.kt │ ├── HTMLDataListElement.kt │ ├── HTMLDetailsElement.kt │ ├── HTMLDialogElement.kt │ ├── HTMLDivElement.kt │ ├── HTMLElement.kt │ ├── HTMLEmbedElement.kt │ ├── HTMLFieldSetElement.kt │ ├── HTMLFormControlsCollection.kt │ ├── HTMLFormElement.kt │ ├── HTMLHRElement.kt │ ├── HTMLHeadElement.kt │ ├── HTMLHeadingElement.kt │ ├── HTMLHtmlElement.kt │ ├── HTMLHyperlinkElementUtils.kt │ ├── HTMLIFrameElement.kt │ ├── HTMLImageElement.kt │ ├── HTMLInputElement.kt │ ├── HTMLLIElement.kt │ ├── HTMLLabelElement.kt │ ├── HTMLLegendElement.kt │ ├── HTMLLinkElement.kt │ ├── HTMLMapElement.kt │ ├── HTMLMediaElement.kt │ ├── HTMLMenuElement.kt │ ├── HTMLMetaElement.kt │ ├── HTMLMeterElement.kt │ ├── HTMLModElement.kt │ ├── HTMLOListElement.kt │ ├── HTMLObjectElement.kt │ ├── HTMLOptGroupElement.kt │ ├── HTMLOptionElement.kt │ ├── HTMLOptionsCollection.kt │ ├── HTMLOutputElement.kt │ ├── HTMLParagraphElement.kt │ ├── HTMLPictureElement.kt │ ├── HTMLPreElement.kt │ ├── HTMLProgressElement.kt │ ├── HTMLQuoteElement.kt │ ├── HTMLScriptElement.kt │ ├── HTMLSelectElement.kt │ ├── HTMLSourceElement.kt │ ├── HTMLSpanElement.kt │ ├── HTMLStyleElement.kt │ ├── HTMLTableCaptionElement.kt │ ├── HTMLTableCellElement.kt │ ├── HTMLTableColElement.kt │ ├── HTMLTableElement.kt │ ├── HTMLTableRowElement.kt │ ├── HTMLTableSectionElement.kt │ ├── HTMLTextAreaElement.kt │ ├── HTMLTimeElement.kt │ ├── HTMLTitleElement.kt │ ├── HTMLTrackElement.kt │ ├── HTMLUListElement.kt │ ├── HTMLUnknownElement.kt │ ├── HTMLVideoElement.kt │ ├── HtmlTagName.kt │ ├── Image.kt │ ├── ImageDecoding.kt │ ├── InputMode.kt │ ├── InputType.kt │ ├── Loading.kt │ ├── MediaEncryptedEvent.kt │ ├── MediaEncryptedEventInit.kt │ ├── MediaError.kt │ ├── MediaProvider.kt │ ├── Option.kt │ ├── PopoverInvokerElement.kt │ ├── Preload.kt │ ├── RadioNodeList.kt │ ├── SelectType.kt │ ├── SelectionDirection.kt │ ├── SelectionMode.kt │ ├── VideoFrameCallbackMetadata.kt │ ├── VideoFrameRequestCallback.kt │ ├── VideoFrameRequestId.kt │ └── VideoPlaybackQuality.kt │ ├── http │ ├── Body.kt │ ├── BodyInit.kt │ ├── CrossOrigin.kt │ ├── FetchPriority.kt │ ├── Headers.kt │ ├── ReferrerPolicy.kt │ ├── Request.kt │ ├── RequestCache.kt │ ├── RequestCredentials.kt │ ├── RequestDestination.kt │ ├── RequestInit.kt │ ├── RequestMethod.kt │ ├── RequestMode.kt │ ├── RequestPriority.kt │ ├── RequestRedirect.kt │ ├── Response.kt │ ├── ResponseInit.kt │ ├── ResponseType.kt │ └── fetchAsync.kt │ ├── idb │ ├── IDBCursor.kt │ ├── IDBCursorDirection.kt │ ├── IDBCursorWithValue.kt │ ├── IDBDatabase.kt │ ├── IDBDatabaseInfo.kt │ ├── IDBFactory.kt │ ├── IDBIndex.kt │ ├── IDBIndexParameters.kt │ ├── IDBKeyRange.kt │ ├── IDBObjectStore.kt │ ├── IDBObjectStoreParameters.kt │ ├── IDBOpenDBRequest.kt │ ├── IDBRequest.kt │ ├── IDBRequestReadyState.kt │ ├── IDBTransaction.kt │ ├── IDBTransactionDurability.kt │ ├── IDBTransactionMode.kt │ ├── IDBTransactionOptions.kt │ ├── IDBValidKey.kt │ ├── IDBVersionChangeEvent.kt │ ├── IDBVersionChangeEventInit.kt │ └── indexedDB.val.kt │ ├── imagecapture │ ├── FillLightMode.kt │ ├── ImageCapture.kt │ ├── MediaSettingsRange.kt │ ├── PhotoCapabilities.kt │ ├── PhotoSettings.kt │ └── RedEyeReduction.kt │ ├── images │ ├── ColorSpaceConversion.kt │ ├── ImageBitmap.kt │ ├── ImageBitmapOptions.kt │ ├── ImageBitmapRenderingContext.kt │ ├── ImageBitmapRenderingContextSettings.kt │ ├── ImageBitmapSource.kt │ ├── ImageData.kt │ ├── ImageDataSettings.kt │ ├── ImageOrientation.kt │ ├── PredefinedColorSpace.kt │ ├── PremultiplyAlpha.kt │ ├── ResizeQuality.kt │ └── createImageBitmap.kt │ ├── intersection │ ├── IntersectionObserver.kt │ ├── IntersectionObserverCallback.kt │ ├── IntersectionObserverEntry.kt │ └── IntersectionObserverInit.kt │ ├── keyboard │ ├── KeyCode.kt │ └── ModifierKeyCode.kt │ ├── location │ ├── Location.kt │ └── location.val.kt │ ├── locks │ ├── Lock.kt │ ├── LockGrantedCallback.kt │ ├── LockInfo.kt │ ├── LockManager.kt │ ├── LockManagerSnapshot.kt │ ├── LockMode.kt │ └── LockOptions.kt │ ├── mathml │ ├── MathML.kt │ ├── MathMLElement.kt │ └── MathMLTagName.kt │ ├── media │ ├── capabilities │ │ ├── AudioConfiguration.kt │ │ ├── ColorGamut.kt │ │ ├── HdrMetadataType.kt │ │ ├── MediaCapabilities.kt │ │ ├── MediaCapabilitiesDecodingInfo.kt │ │ ├── MediaCapabilitiesEncodingInfo.kt │ │ ├── MediaCapabilitiesInfo.kt │ │ ├── MediaConfiguration.kt │ │ ├── MediaDecodingConfiguration.kt │ │ ├── MediaDecodingType.kt │ │ ├── MediaEncodingConfiguration.kt │ │ ├── MediaEncodingType.kt │ │ ├── TransferFunction.kt │ │ └── VideoConfiguration.kt │ ├── devices │ │ ├── DisplayMediaStreamOptions.kt │ │ ├── InputDeviceInfo.kt │ │ ├── MediaDeviceInfo.kt │ │ ├── MediaDeviceKind.kt │ │ └── MediaDevices.kt │ ├── key │ │ ├── MediaKeyMessageEvent.kt │ │ ├── MediaKeyMessageEventInit.kt │ │ ├── MediaKeyMessageType.kt │ │ ├── MediaKeySession.kt │ │ ├── MediaKeySessionClosedReason.kt │ │ ├── MediaKeySessionType.kt │ │ ├── MediaKeyStatus.kt │ │ ├── MediaKeyStatusMap.kt │ │ ├── MediaKeySystemAccess.kt │ │ ├── MediaKeySystemConfiguration.kt │ │ ├── MediaKeySystemMediaCapability.kt │ │ ├── MediaKeys.kt │ │ ├── MediaKeysPolicy.kt │ │ └── MediaKeysRequirement.kt │ ├── recorder │ │ ├── BlobEvent.kt │ │ ├── BlobEventInit.kt │ │ ├── MediaRecorder.kt │ │ ├── MediaRecorderOptions.kt │ │ └── RecordingState.kt │ ├── session │ │ ├── MediaImage.kt │ │ ├── MediaMetadata.kt │ │ ├── MediaMetadataInit.kt │ │ ├── MediaPositionState.kt │ │ ├── MediaSession.kt │ │ ├── MediaSessionAction.kt │ │ ├── MediaSessionActionDetails.kt │ │ ├── MediaSessionActionHandler.kt │ │ └── MediaSessionPlaybackState.kt │ ├── source │ │ ├── AppendMode.kt │ │ ├── EndOfStreamError.kt │ │ ├── MediaSource.kt │ │ ├── MediaSourceHandle.kt │ │ ├── ReadyState.kt │ │ ├── SourceBuffer.kt │ │ ├── SourceBufferList.kt │ │ └── TimeRanges.kt │ └── streams │ │ ├── CanvasCaptureMediaStreamTrack.kt │ │ ├── ConstrainBoolean.kt │ │ ├── ConstrainBooleanParameters.kt │ │ ├── ConstrainDOMString.kt │ │ ├── ConstrainDOMStringParameters.kt │ │ ├── ConstrainDouble.kt │ │ ├── ConstrainDoubleRange.kt │ │ ├── ConstrainULong.kt │ │ ├── ConstrainULongRange.kt │ │ ├── DoubleRange.kt │ │ ├── MediaStream.kt │ │ ├── MediaStreamConstraints.kt │ │ ├── MediaStreamTrack.kt │ │ ├── MediaStreamTrackEvent.kt │ │ ├── MediaStreamTrackEventInit.kt │ │ ├── MediaStreamTrackState.kt │ │ ├── MediaTrackCapabilities.kt │ │ ├── MediaTrackConstraintSet.kt │ │ ├── MediaTrackConstraints.kt │ │ ├── MediaTrackSettings.kt │ │ ├── MediaTrackSupportedConstraints.kt │ │ ├── OverconstrainedError.kt │ │ └── ULongRange.kt │ ├── messaging │ ├── MessageChannel.kt │ ├── MessageEvent.kt │ ├── MessageEventInit.kt │ ├── MessageEventSource.kt │ ├── MessageEventTarget.kt │ └── MessagePort.kt │ ├── midi │ ├── MIDIAccess.kt │ ├── MIDIConnectionEvent.kt │ ├── MIDIConnectionEventInit.kt │ ├── MIDIInput.kt │ ├── MIDIInputMap.kt │ ├── MIDIMessageEvent.kt │ ├── MIDIMessageEventInit.kt │ ├── MIDIOptions.kt │ ├── MIDIOutput.kt │ ├── MIDIOutputMap.kt │ ├── MIDIPort.kt │ ├── MIDIPortConnectionState.kt │ ├── MIDIPortDeviceState.kt │ └── MIDIPortType.kt │ ├── mutation │ ├── MutationCallback.kt │ ├── MutationObserver.kt │ ├── MutationObserverInit.kt │ ├── MutationRecord.kt │ └── MutationRecordType.kt │ ├── navigation │ ├── NavigationActivation.kt │ ├── NavigationHistoryEntry.kt │ └── NavigationType.kt │ ├── navigator │ ├── Navigator.kt │ ├── NavigatorAutomationInformation.kt │ ├── NavigatorBadge.kt │ ├── NavigatorConcurrentHardware.kt │ ├── NavigatorContentUtils.kt │ ├── NavigatorCookies.kt │ ├── NavigatorID.kt │ ├── NavigatorLanguage.kt │ ├── NavigatorLocks.kt │ ├── NavigatorOnLine.kt │ ├── NavigatorPlugins.kt │ ├── NavigatorStorage.kt │ └── navigator.val.kt │ ├── notifications │ ├── Notification.kt │ ├── NotificationDirection.kt │ ├── NotificationOptions.kt │ ├── NotificationPermission.kt │ └── NotificationPermissionCallback.kt │ ├── observable │ └── Observable.kt │ ├── parsing │ ├── DOMParser.kt │ ├── DOMParserSupportedType.kt │ └── XMLSerializer.kt │ ├── payment │ ├── AddressErrors.kt │ ├── PayerErrors.kt │ ├── PaymentAddress.kt │ ├── PaymentComplete.kt │ ├── PaymentCurrencyAmount.kt │ ├── PaymentDetailsBase.kt │ ├── PaymentDetailsInit.kt │ ├── PaymentDetailsModifier.kt │ ├── PaymentDetailsUpdate.kt │ ├── PaymentItem.kt │ ├── PaymentMethodChangeEvent.kt │ ├── PaymentMethodChangeEventInit.kt │ ├── PaymentMethodData.kt │ ├── PaymentOptions.kt │ ├── PaymentRequest.kt │ ├── PaymentRequestUpdateEvent.kt │ ├── PaymentRequestUpdateEventInit.kt │ ├── PaymentResponse.kt │ ├── PaymentShippingOption.kt │ ├── PaymentShippingType.kt │ └── PaymentValidationErrors.kt │ ├── performance │ ├── EventCounts.kt │ ├── LargestContentfulPaint.kt │ ├── NavigationTimingType.kt │ ├── Performance.kt │ ├── PerformanceEntry.kt │ ├── PerformanceEntryList.kt │ ├── PerformanceEventTiming.kt │ ├── PerformanceMark.kt │ ├── PerformanceMarkOptions.kt │ ├── PerformanceMeasure.kt │ ├── PerformanceMeasureOptions.kt │ ├── PerformanceNavigationTiming.kt │ ├── PerformanceObserver.kt │ ├── PerformanceObserverCallback.kt │ ├── PerformanceObserverEntryList.kt │ ├── PerformanceObserverInit.kt │ ├── PerformancePaintTiming.kt │ ├── PerformanceResourceTiming.kt │ ├── PerformanceServerTiming.kt │ └── performance.val.kt │ ├── permissions │ ├── PermissionDescriptor.kt │ ├── PermissionName.kt │ ├── PermissionState.kt │ ├── PermissionStatus.kt │ └── Permissions.kt │ ├── pip │ ├── PictureInPictureEvent.kt │ ├── PictureInPictureEventInit.kt │ └── PictureInPictureWindow.kt │ ├── popover │ ├── Popover.kt │ ├── PopoverTargetAction.kt │ ├── ToggleEvent.kt │ ├── ToggleEventInit.kt │ └── ToggleState.kt │ ├── promise │ ├── PromiseRejectionEvent.kt │ └── PromiseRejectionEventInit.kt │ ├── prompts │ ├── alert.kt │ ├── confirm.kt │ └── prompt.kt │ ├── push │ ├── PushEncryptionKeyName.kt │ ├── PushEvent.kt │ ├── PushEventInit.kt │ ├── PushManager.kt │ ├── PushMessageData.kt │ ├── PushMessageDataInit.kt │ ├── PushSubscription.kt │ ├── PushSubscriptionJSON.kt │ ├── PushSubscriptionOptions.kt │ └── PushSubscriptionOptionsInit.kt │ ├── ranges │ ├── AbstractRange.kt │ ├── Range.kt │ ├── StaticRange.kt │ └── StaticRangeInit.kt │ ├── remoteplayback │ ├── RemotePlayback.kt │ ├── RemotePlaybackAvailabilityCallback.kt │ └── RemotePlaybackState.kt │ ├── rendering │ ├── OffscreenRenderingContext.kt │ ├── RenderingContext.kt │ └── RenderingContextId.kt │ ├── reporting │ ├── Report.kt │ ├── ReportBody.kt │ ├── ReportList.kt │ ├── ReportingObserver.kt │ ├── ReportingObserverCallback.kt │ └── ReportingObserverOptions.kt │ ├── resize │ ├── ResizeObserver.kt │ ├── ResizeObserverBoxOptions.kt │ ├── ResizeObserverCallback.kt │ ├── ResizeObserverEntry.kt │ ├── ResizeObserverOptions.kt │ └── ResizeObserverSize.kt │ ├── rtc │ ├── RTCAnswerOptions.kt │ ├── RTCBundlePolicy.kt │ ├── RTCCertificate.kt │ ├── RTCCertificateExpiration.kt │ ├── RTCConfiguration.kt │ ├── RTCDTMFSender.kt │ ├── RTCDTMFToneChangeEvent.kt │ ├── RTCDTMFToneChangeEventInit.kt │ ├── RTCDataChannel.kt │ ├── RTCDataChannelEvent.kt │ ├── RTCDataChannelEventInit.kt │ ├── RTCDataChannelInit.kt │ ├── RTCDataChannelState.kt │ ├── RTCDegradationPreference.kt │ ├── RTCDtlsFingerprint.kt │ ├── RTCDtlsRole.kt │ ├── RTCDtlsTransport.kt │ ├── RTCDtlsTransportState.kt │ ├── RTCEncodedAudioFrame.kt │ ├── RTCEncodedAudioFrameMetadata.kt │ ├── RTCEncodedVideoFrame.kt │ ├── RTCEncodedVideoFrameMetadata.kt │ ├── RTCEncodedVideoFrameType.kt │ ├── RTCError.kt │ ├── RTCErrorDetailType.kt │ ├── RTCErrorEvent.kt │ ├── RTCErrorEventInit.kt │ ├── RTCErrorInit.kt │ ├── RTCIceCandidate.kt │ ├── RTCIceCandidateInit.kt │ ├── RTCIceCandidatePair.kt │ ├── RTCIceCandidatePairStats.kt │ ├── RTCIceCandidateType.kt │ ├── RTCIceComponent.kt │ ├── RTCIceConnectionState.kt │ ├── RTCIceGathererState.kt │ ├── RTCIceGatheringState.kt │ ├── RTCIceProtocol.kt │ ├── RTCIceRole.kt │ ├── RTCIceServer.kt │ ├── RTCIceTcpCandidateType.kt │ ├── RTCIceTransport.kt │ ├── RTCIceTransportPolicy.kt │ ├── RTCIceTransportState.kt │ ├── RTCInboundRtpStreamStats.kt │ ├── RTCLocalSessionDescriptionInit.kt │ ├── RTCOfferAnswerOptions.kt │ ├── RTCOfferOptions.kt │ ├── RTCOutboundRtpStreamStats.kt │ ├── RTCPeerConnection.kt │ ├── RTCPeerConnectionErrorCallback.kt │ ├── RTCPeerConnectionIceErrorEvent.kt │ ├── RTCPeerConnectionIceErrorEventInit.kt │ ├── RTCPeerConnectionIceEvent.kt │ ├── RTCPeerConnectionIceEventInit.kt │ ├── RTCPeerConnectionState.kt │ ├── RTCPriorityType.kt │ ├── RTCQualityLimitationReason.kt │ ├── RTCReceivedRtpStreamStats.kt │ ├── RTCRtcpMuxPolicy.kt │ ├── RTCRtcpParameters.kt │ ├── RTCRtpCapabilities.kt │ ├── RTCRtpCodec.kt │ ├── RTCRtpCodecParameters.kt │ ├── RTCRtpCodingParameters.kt │ ├── RTCRtpContributingSource.kt │ ├── RTCRtpEncodingParameters.kt │ ├── RTCRtpHeaderExtensionCapability.kt │ ├── RTCRtpHeaderExtensionParameters.kt │ ├── RTCRtpParameters.kt │ ├── RTCRtpReceiveParameters.kt │ ├── RTCRtpReceiver.kt │ ├── RTCRtpScriptTransform.kt │ ├── RTCRtpScriptTransformer.kt │ ├── RTCRtpSendParameters.kt │ ├── RTCRtpSender.kt │ ├── RTCRtpStreamStats.kt │ ├── RTCRtpSynchronizationSource.kt │ ├── RTCRtpTransceiver.kt │ ├── RTCRtpTransceiverDirection.kt │ ├── RTCRtpTransceiverInit.kt │ ├── RTCRtpTransform.kt │ ├── RTCSctpTransport.kt │ ├── RTCSctpTransportState.kt │ ├── RTCSdpType.kt │ ├── RTCSentRtpStreamStats.kt │ ├── RTCSessionDescription.kt │ ├── RTCSessionDescriptionCallback.kt │ ├── RTCSessionDescriptionInit.kt │ ├── RTCSetParameterOptions.kt │ ├── RTCSignalingState.kt │ ├── RTCStats.kt │ ├── RTCStatsIceCandidatePairState.kt │ ├── RTCStatsReport.kt │ ├── RTCStatsType.kt │ ├── RTCTrackEvent.kt │ ├── RTCTrackEventInit.kt │ ├── RTCTransformEvent.kt │ └── RTCTransportStats.kt │ ├── scheduling │ ├── IdleDeadline.kt │ ├── IdleRequestCallback.kt │ ├── IdleRequestId.kt │ ├── IdleRequestOptions.kt │ ├── cancelIdleCallback.kt │ ├── queueMicrotask.kt │ └── requestIdleCallback.kt │ ├── screen │ ├── OrientationType.kt │ ├── Screen.kt │ ├── ScreenOrientation.kt │ └── screen.val.kt │ ├── scroll │ ├── ScrollBehavior.kt │ ├── ScrollIntoViewOptions.kt │ ├── ScrollLogicalPosition.kt │ ├── ScrollOptions.kt │ └── ScrollToOptions.kt │ ├── selection │ └── Selection.kt │ ├── serialization │ ├── StructuredSerializeOptions.kt │ └── structuredClone.kt │ ├── serviceworker │ ├── Client.kt │ ├── ClientQueryOptions.kt │ ├── ClientTypes.kt │ ├── Clients.kt │ ├── ExtendableEvent.kt │ ├── ExtendableEventInit.kt │ ├── ExtendableMessageEvent.kt │ ├── ExtendableMessageEventInit.kt │ ├── FetchEvent.kt │ ├── FetchEventInit.kt │ ├── FrameType.kt │ ├── GetNotificationOptions.kt │ ├── NavigationPreloadManager.kt │ ├── NavigationPreloadState.kt │ ├── NotificationEvent.kt │ ├── NotificationEventInit.kt │ ├── RegistrationOptions.kt │ ├── ServiceWorker.kt │ ├── ServiceWorkerContainer.kt │ ├── ServiceWorkerGlobalScope.kt │ ├── ServiceWorkerRegistration.kt │ ├── ServiceWorkerState.kt │ ├── ServiceWorkerUpdateViaCache.kt │ └── WindowClient.kt │ ├── share │ └── ShareData.kt │ ├── sockets │ ├── BinaryType.kt │ ├── CloseEvent.kt │ ├── CloseEventInit.kt │ └── WebSocket.kt │ ├── speech │ ├── SpeechRecognitionAlternative.kt │ ├── SpeechRecognitionResult.kt │ ├── SpeechRecognitionResultList.kt │ ├── SpeechSynthesis.kt │ ├── SpeechSynthesisErrorCode.kt │ ├── SpeechSynthesisErrorEvent.kt │ ├── SpeechSynthesisErrorEventInit.kt │ ├── SpeechSynthesisEvent.kt │ ├── SpeechSynthesisEventInit.kt │ ├── SpeechSynthesisUtterance.kt │ ├── SpeechSynthesisVoice.kt │ └── speechSynthesis.val.kt │ ├── sse │ ├── EventSource.kt │ └── EventSourceInit.kt │ ├── storage │ ├── Storage.kt │ ├── StorageEstimate.kt │ ├── StorageEvent.kt │ ├── StorageEventInit.kt │ ├── StorageManager.kt │ ├── localStorage.val.kt │ └── sessionStorage.val.kt │ ├── streams │ ├── ByteLengthQueuingStrategy.kt │ ├── CountQueuingStrategy.kt │ ├── GenericTransformStream.kt │ ├── QueuingStrategy.kt │ ├── QueuingStrategyInit.kt │ ├── QueuingStrategySize.kt │ ├── ReadableByteStreamController.kt │ ├── ReadableStream.kt │ ├── ReadableStreamBYOBReader.kt │ ├── ReadableStreamBYOBRequest.kt │ ├── ReadableStreamController.kt │ ├── ReadableStreamDefaultController.kt │ ├── ReadableStreamDefaultReader.kt │ ├── ReadableStreamGenericReader.kt │ ├── ReadableStreamGetReaderOptions.kt │ ├── ReadableStreamIteratorOptions.kt │ ├── ReadableStreamReadDoneResult.kt │ ├── ReadableStreamReadResult.kt │ ├── ReadableStreamReadValueResult.kt │ ├── ReadableStreamReader.kt │ ├── ReadableStreamReaderMode.kt │ ├── ReadableStreamType.kt │ ├── ReadableWritablePair.kt │ ├── StreamPipeOptions.kt │ ├── TransformStream.kt │ ├── TransformStreamDefaultController.kt │ ├── Transformer.kt │ ├── TransformerFlushCallback.kt │ ├── TransformerStartCallback.kt │ ├── TransformerTransformCallback.kt │ ├── UnderlyingByteSource.kt │ ├── UnderlyingDefaultSource.kt │ ├── UnderlyingSink.kt │ ├── UnderlyingSinkAbortCallback.kt │ ├── UnderlyingSinkCloseCallback.kt │ ├── UnderlyingSinkStartCallback.kt │ ├── UnderlyingSinkWriteCallback.kt │ ├── UnderlyingSource.kt │ ├── UnderlyingSourceCancelCallback.kt │ ├── UnderlyingSourcePullCallback.kt │ ├── UnderlyingSourceStartCallback.kt │ ├── WritableStream.kt │ ├── WritableStreamDefaultController.kt │ └── WritableStreamDefaultWriter.kt │ ├── svg │ ├── SVG.kt │ ├── SVGAElement.kt │ ├── SVGAngle.kt │ ├── SVGAnimateElement.kt │ ├── SVGAnimateMotionElement.kt │ ├── SVGAnimateTransformElement.kt │ ├── SVGAnimatedAngle.kt │ ├── SVGAnimatedBoolean.kt │ ├── SVGAnimatedEnumeration.kt │ ├── SVGAnimatedInteger.kt │ ├── SVGAnimatedLength.kt │ ├── SVGAnimatedLengthList.kt │ ├── SVGAnimatedNumber.kt │ ├── SVGAnimatedNumberList.kt │ ├── SVGAnimatedPoints.kt │ ├── SVGAnimatedPreserveAspectRatio.kt │ ├── SVGAnimatedRect.kt │ ├── SVGAnimatedString.kt │ ├── SVGAnimatedTransformList.kt │ ├── SVGAnimationElement.kt │ ├── SVGBoundingBoxOptions.kt │ ├── SVGCircleElement.kt │ ├── SVGClipPathElement.kt │ ├── SVGComponentTransferFunctionElement.kt │ ├── SVGDefsElement.kt │ ├── SVGDescElement.kt │ ├── SVGElement.kt │ ├── SVGEllipseElement.kt │ ├── SVGFEBlendElement.kt │ ├── SVGFEColorMatrixElement.kt │ ├── SVGFEComponentTransferElement.kt │ ├── SVGFECompositeElement.kt │ ├── SVGFEConvolveMatrixElement.kt │ ├── SVGFEDiffuseLightingElement.kt │ ├── SVGFEDisplacementMapElement.kt │ ├── SVGFEDistantLightElement.kt │ ├── SVGFEDropShadowElement.kt │ ├── SVGFEFloodElement.kt │ ├── SVGFEFuncAElement.kt │ ├── SVGFEFuncBElement.kt │ ├── SVGFEFuncGElement.kt │ ├── SVGFEFuncRElement.kt │ ├── SVGFEGaussianBlurElement.kt │ ├── SVGFEImageElement.kt │ ├── SVGFEMergeElement.kt │ ├── SVGFEMergeNodeElement.kt │ ├── SVGFEMorphologyElement.kt │ ├── SVGFEOffsetElement.kt │ ├── SVGFEPointLightElement.kt │ ├── SVGFESpecularLightingElement.kt │ ├── SVGFESpotLightElement.kt │ ├── SVGFETileElement.kt │ ├── SVGFETurbulenceElement.kt │ ├── SVGFilterElement.kt │ ├── SVGFilterPrimitiveStandardAttributes.kt │ ├── SVGFitToViewBox.kt │ ├── SVGForeignObjectElement.kt │ ├── SVGGElement.kt │ ├── SVGGeometryElement.kt │ ├── SVGGradientElement.kt │ ├── SVGGraphicsElement.kt │ ├── SVGImageElement.kt │ ├── SVGLength.kt │ ├── SVGLengthList.kt │ ├── SVGLineElement.kt │ ├── SVGLinearGradientElement.kt │ ├── SVGMPathElement.kt │ ├── SVGMarkerElement.kt │ ├── SVGMaskElement.kt │ ├── SVGMetadataElement.kt │ ├── SVGNumber.kt │ ├── SVGNumberList.kt │ ├── SVGPathElement.kt │ ├── SVGPatternElement.kt │ ├── SVGPointList.kt │ ├── SVGPolygonElement.kt │ ├── SVGPolylineElement.kt │ ├── SVGPreserveAspectRatio.kt │ ├── SVGRadialGradientElement.kt │ ├── SVGRectElement.kt │ ├── SVGSVGElement.kt │ ├── SVGScriptElement.kt │ ├── SVGSetElement.kt │ ├── SVGStopElement.kt │ ├── SVGStringList.kt │ ├── SVGStyleElement.kt │ ├── SVGSwitchElement.kt │ ├── SVGSymbolElement.kt │ ├── SVGTSpanElement.kt │ ├── SVGTests.kt │ ├── SVGTextContentElement.kt │ ├── SVGTextElement.kt │ ├── SVGTextPathElement.kt │ ├── SVGTextPositioningElement.kt │ ├── SVGTitleElement.kt │ ├── SVGTransform.kt │ ├── SVGTransformList.kt │ ├── SVGURIReference.kt │ ├── SVGUnitTypes.kt │ ├── SVGUseElement.kt │ ├── SVGViewElement.kt │ └── SvgTagName.kt │ ├── time │ ├── DOMHighResTimeStamp.kt │ └── EpochTimeStamp.kt │ ├── timers │ ├── Interval.kt │ ├── Timeout.kt │ ├── TimerHandler.kt │ ├── clearInterval.kt │ ├── clearTimeout.kt │ ├── setInterval.kt │ └── setTimeout.kt │ ├── transport │ ├── WebTransport.kt │ ├── WebTransportBidirectionalStream.kt │ ├── WebTransportCloseInfo.kt │ ├── WebTransportCongestionControl.kt │ ├── WebTransportDatagramDuplexStream.kt │ ├── WebTransportError.kt │ ├── WebTransportErrorOptions.kt │ ├── WebTransportErrorSource.kt │ ├── WebTransportHash.kt │ ├── WebTransportOptions.kt │ ├── WebTransportSendOptions.kt │ └── WebTransportSendStreamOptions.kt │ ├── uievents │ ├── CompositionEvent.kt │ ├── CompositionEventInit.kt │ ├── DeltaMode.kt │ ├── DragEvent.kt │ ├── DragEventInit.kt │ ├── EventModifierInit.kt │ ├── FocusEvent.kt │ ├── FocusEventInit.kt │ ├── InputEvent.kt │ ├── InputEventInit.kt │ ├── KeyLocation.kt │ ├── KeyboardEvent.kt │ ├── KeyboardEventInit.kt │ ├── MouseButton.kt │ ├── MouseButtons.kt │ ├── MouseEvent.kt │ ├── MouseEventInit.kt │ ├── PointerEvent.kt │ ├── PointerEventInit.kt │ ├── Touch.kt │ ├── TouchEvent.kt │ ├── TouchEventInit.kt │ ├── TouchInit.kt │ ├── TouchList.kt │ ├── TouchType.kt │ ├── UIEvent.kt │ ├── UIEventInit.kt │ ├── WheelEvent.kt │ └── WheelEventInit.kt │ ├── url │ ├── FragmentDirective.kt │ ├── URL.kt │ └── URLSearchParams.kt │ ├── useractivation │ └── UserActivation.kt │ ├── validation │ ├── ValidationTarget.kt │ ├── ValidityState.kt │ └── ValidityStateFlags.kt │ ├── vibration │ └── VibratePattern.kt │ ├── viewport │ ├── VisualViewport.kt │ └── visualViewport.val.kt │ ├── viewtransition │ ├── PageRevealEvent.kt │ ├── PageRevealEventInit.kt │ ├── PageSwapEvent.kt │ ├── PageSwapEventInit.kt │ ├── StartViewTransitionOptions.kt │ ├── ViewTransition.kt │ ├── ViewTransitionTypeSet.kt │ └── ViewTransitionUpdateCallback.kt │ ├── vtt │ ├── AlignSetting.kt │ ├── AutoKeyword.kt │ ├── DirectionSetting.kt │ ├── LineAlignSetting.kt │ ├── LineAndPositionSetting.kt │ ├── PositionAlignSetting.kt │ ├── ScrollSetting.kt │ ├── TextTrack.kt │ ├── TextTrackCue.kt │ ├── TextTrackCueList.kt │ ├── TextTrackKind.kt │ ├── TextTrackList.kt │ ├── TextTrackMode.kt │ ├── TrackEvent.kt │ ├── TrackEventInit.kt │ ├── VTTCue.kt │ └── VTTRegion.kt │ ├── wakelock │ ├── WakeLock.kt │ ├── WakeLockSentinel.kt │ └── WakeLockType.kt │ ├── window │ ├── BarProp.kt │ ├── BeforeUnloadEvent.kt │ ├── Window.kt │ ├── WindowEventHandlers.kt │ ├── WindowName.kt │ ├── WindowPostMessageOptions.kt │ ├── WindowProxy.kt │ ├── WindowTarget.kt │ └── window.val.kt │ ├── workers │ ├── AbstractWorker.kt │ ├── DedicatedWorkerGlobalScope.kt │ ├── SharedWorker.kt │ ├── SharedWorkerGlobalScope.kt │ ├── Worker.kt │ ├── WorkerGlobalScope.kt │ ├── WorkerLocation.kt │ ├── WorkerNavigator.kt │ ├── WorkerOptions.kt │ ├── WorkerType.kt │ └── importScripts.kt │ ├── worklets │ ├── Worklet.kt │ ├── WorkletGlobalScope.kt │ └── WorkletOptions.kt │ ├── xhr │ ├── XMLHttpRequest.kt │ ├── XMLHttpRequestEventTarget.kt │ ├── XMLHttpRequestResponseType.kt │ └── XMLHttpRequestUpload.kt │ ├── xml │ └── XMLDocument.kt │ ├── xpath │ ├── XPathEvaluator.kt │ ├── XPathEvaluatorBase.kt │ ├── XPathExpression.kt │ ├── XPathNSResolver.kt │ └── XPathResult.kt │ └── xslt │ └── XSLTProcessor.kt ├── build.gradle.kts ├── buildSrc ├── build.gradle.kts └── src │ └── main │ └── kotlin │ ├── Projects.kt │ ├── SyncWrappers.kt │ ├── Tasks.kt │ ├── actions-declarations.gradle.kts │ ├── browser-declarations.gradle.kts │ ├── cesium-declarations.gradle.kts │ ├── csstype-declarations.gradle.kts │ ├── declarations.gradle.kts │ ├── karakum │ ├── actions │ │ ├── Classes.kt │ │ ├── Converter.kt │ │ ├── CredentialHandlers.kt │ │ ├── Duplicated.kt │ │ ├── Generator.kt │ │ ├── InnerInterface.kt │ │ ├── KotlinType.kt │ │ ├── Library.kt │ │ ├── LibraryConverter.kt │ │ └── TransferProgressEvent.kt │ ├── browser │ │ ├── Abortable.kt │ │ ├── ArortInternal.kt │ │ ├── Atomics.kt │ │ ├── AudioWorklet.kt │ │ ├── CSS.kt │ │ ├── CollectionLike.kt │ │ ├── Comment.kt │ │ ├── Constants.kt │ │ ├── ConversionResult.kt │ │ ├── CustomElement.kt │ │ ├── DOMException.kt │ │ ├── Date.kt │ │ ├── Decorators.kt │ │ ├── DomAliases.kt │ │ ├── Ed25519.kt │ │ ├── EventHandler.kt │ │ ├── EventInstance.kt │ │ ├── EventTarget.events.kt │ │ ├── EventTarget.kt │ │ ├── EventType.kt │ │ ├── EventTypeMap.kt │ │ ├── Events.kt │ │ ├── Excluded.kt │ │ ├── Form.kt │ │ ├── FunctionTypes.kt │ │ ├── Functions.kt │ │ ├── GLNumbers.kt │ │ ├── Generator.kt │ │ ├── HasTargets.kt │ │ ├── Html.kt │ │ ├── HtmlFactories.kt │ │ ├── HtmlUnions.kt │ │ ├── IDL.kt │ │ ├── Imports.kt │ │ ├── Intl.kt │ │ ├── IterableRegistry.kt │ │ ├── JsEvent.kt │ │ ├── Keyboard.kt │ │ ├── Lists.kt │ │ ├── Localizable.kt │ │ ├── MarkerRegistry.kt │ │ ├── MediaQuery.patch.kt │ │ ├── Mixins.kt │ │ ├── MouseButtons.kt │ │ ├── Numbers.kt │ │ ├── Patches.kt │ │ ├── Popover.kt │ │ ├── ReadyStatePatches.kt │ │ ├── RenderingContextRegistry.kt │ │ ├── SetLike.kt │ │ ├── TagName.kt │ │ ├── Temporal.kt │ │ ├── Types.kt │ │ ├── WebAssembly.kt │ │ ├── WebGL.kt │ │ ├── WebGLContants.kt │ │ ├── WebGPU.kt │ │ ├── WebWorkers.kt │ │ └── Window.kt │ ├── cesium │ │ ├── CameraOrientation.kt │ │ ├── Class.kt │ │ ├── Constant.kt │ │ ├── Constructor.kt │ │ ├── Declaration.kt │ │ ├── Declarations.kt │ │ ├── DefaultEvent.kt │ │ ├── Definition.kt │ │ ├── DocLink.kt │ │ ├── Enum.kt │ │ ├── Function.kt │ │ ├── Functions.kt │ │ ├── Generator.kt │ │ ├── HasMembers.kt │ │ ├── IType.kt │ │ ├── Interface.kt │ │ ├── KDoc.kt │ │ ├── KotlinType.kt │ │ ├── Member.kt │ │ ├── Members.kt │ │ ├── Method.kt │ │ ├── Namespace.kt │ │ ├── NestedNamespace.kt │ │ ├── Numbers.kt │ │ ├── Packable.kt │ │ ├── Package.kt │ │ ├── Parameter.kt │ │ ├── Property.kt │ │ ├── SimpleType.kt │ │ ├── Strings.kt │ │ ├── TopType.kt │ │ ├── TypeBase.kt │ │ └── Types.kt │ ├── common │ │ ├── ConversionResult.kt │ │ ├── Generator.kt │ │ ├── Parameter.kt │ │ ├── Strings.kt │ │ ├── Suppress.kt │ │ ├── Suspend.kt │ │ ├── TypedArrays.kt │ │ ├── URI.kt │ │ └── UnionConverter.kt │ ├── csstype │ │ ├── AliasConverter.kt │ │ ├── Angle.kt │ │ ├── Animation.kt │ │ ├── Auto.kt │ │ ├── AutoLength.kt │ │ ├── AutoLengthProperty.kt │ │ ├── AutoType.kt │ │ ├── Background.kt │ │ ├── BasicShape.kt │ │ ├── BlendModeProperty.kt │ │ ├── Border.kt │ │ ├── BoxShadow.kt │ │ ├── ClassName.kt │ │ ├── ColorFunctions.kt │ │ ├── ColorProperty.kt │ │ ├── ColorStop.kt │ │ ├── ColorType.kt │ │ ├── Converter.kt │ │ ├── CssDsl.kt │ │ ├── CustomProperties.kt │ │ ├── CustomPropertyName.kt │ │ ├── DeprecatedTypes.kt │ │ ├── ExperimentalPseudosRuleBuilder.kt │ │ ├── FilterFunction.kt │ │ ├── Flex.kt │ │ ├── Font.kt │ │ ├── FunctionFactory.kt │ │ ├── Generator.kt │ │ ├── GeometryBox.kt │ │ ├── GeometryPosition.kt │ │ ├── Gradient.kt │ │ ├── GridFunctions.kt │ │ ├── GridLength.kt │ │ ├── GridLengthProperty.kt │ │ ├── GridLine.kt │ │ ├── GridLineProperty.kt │ │ ├── Ident.kt │ │ ├── Image.kt │ │ ├── InlineType.kt │ │ ├── Integer.kt │ │ ├── Layout.kt │ │ ├── Length.kt │ │ ├── LengthOperators.kt │ │ ├── LengthProperty.kt │ │ ├── LengthType.kt │ │ ├── LengthUnits.kt │ │ ├── LineStyleProperty.kt │ │ ├── LineWidthProperty.kt │ │ ├── MathFunctions.kt │ │ ├── Media.kt │ │ ├── NamedColor.kt │ │ ├── NonStandardPseudosRuleBuilder.kt │ │ ├── None.kt │ │ ├── NoneType.kt │ │ ├── Number.kt │ │ ├── Overflow.kt │ │ ├── ParentContext.kt │ │ ├── Percentage.kt │ │ ├── PropertyConsumer.kt │ │ ├── PropertyName.kt │ │ ├── Pseudos.kt │ │ ├── Queries.kt │ │ ├── ReferenceFunctions.kt │ │ ├── Round.kt │ │ ├── RuleBuilder.kt │ │ ├── Rules.kt │ │ ├── Selector.kt │ │ ├── ShapeFunctions.kt │ │ ├── ShapeRadius.kt │ │ ├── String.kt │ │ ├── SvgTypes.kt │ │ ├── TextShadow.kt │ │ ├── Time.kt │ │ ├── TimeProperty.kt │ │ ├── TransformFunction.kt │ │ ├── TransformOrigin.kt │ │ ├── Transition.kt │ │ ├── UnionConverter.kt │ │ ├── Units.kt │ │ └── Url.kt │ ├── events │ │ ├── EventData.kt │ │ ├── EventDataRegistry.kt │ │ ├── ExtendedIn.kt │ │ ├── Src.kt │ │ └── Target.kt │ ├── popper │ │ ├── Converter.kt │ │ ├── Enums.kt │ │ ├── Generator.kt │ │ ├── InterfaceConverter.kt │ │ ├── KotlinType.kt │ │ ├── MemberConverter.kt │ │ ├── ModifierConverter.kt │ │ ├── Name.kt │ │ ├── Package.kt │ │ └── TypeConverter.kt │ ├── query │ │ ├── Aliases.kt │ │ ├── Class.kt │ │ ├── Const.kt │ │ ├── Constructor.kt │ │ ├── Declaration.kt │ │ ├── Definition.kt │ │ ├── FetchMeta.kt │ │ ├── Function.kt │ │ ├── Generator.kt │ │ ├── HydrateOptions.kt │ │ ├── HydrationBoundaryOptions.kt │ │ ├── Interface.kt │ │ ├── JsTypeKeyword.kt │ │ ├── KotlinType.kt │ │ ├── Member.kt │ │ ├── Members.kt │ │ ├── Method.kt │ │ ├── OptimisticResult.kt │ │ ├── Package.kt │ │ ├── Parameters.kt │ │ ├── Property.kt │ │ ├── QueryKey.kt │ │ ├── Type.kt │ │ ├── TypeBase.kt │ │ ├── TypeRegistry.kt │ │ └── Types.kt │ ├── react │ │ ├── AdditionalTypes.kt │ │ ├── AriaAttribute.kt │ │ ├── Converter.kt │ │ ├── Deprecated.kt │ │ ├── EventConverter.kt │ │ ├── FocusEventPatch.kt │ │ ├── FormAction.kt │ │ ├── Generator.kt │ │ ├── InterfaceConverter.kt │ │ ├── KotlinType.kt │ │ ├── MemberConverter.kt │ │ ├── NormalizeUnionsPatch.kt │ │ ├── Numbers.kt │ │ ├── Package.kt │ │ ├── TypeConverter.kt │ │ └── UnionConverter.kt │ ├── table │ │ ├── Converter.kt │ │ ├── Generator.kt │ │ ├── KotlinType.kt │ │ ├── Package.kt │ │ ├── Patches.kt │ │ └── UnionConverter.kt │ └── virtual │ │ ├── Converter.kt │ │ ├── Generator.kt │ │ ├── ItemRange.kt │ │ ├── KotlinType.kt │ │ ├── Package.kt │ │ ├── ReactVirtualOptions.kt │ │ ├── ScrollOptions.kt │ │ ├── UnionConverter.kt │ │ └── Updatable.kt │ ├── popper-declarations.gradle.kts │ ├── react-declarations.gradle.kts │ ├── react-query-declarations.gradle.kts │ ├── react-table-declarations.gradle.kts │ └── react-virtual-declarations.gradle.kts ├── cesium-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ └── commonMain │ └── kotlin │ └── cesium │ ├── engine │ ├── AnchorPointDirect.kt │ ├── AnchorPointIndirect.kt │ ├── AnimationTimeCallback.kt │ ├── Appearance.kt │ ├── ArcGISTiledElevationTerrainProvider.kt │ ├── ArcGisBaseMapType.kt │ ├── ArcGisMapServerImageryProvider.kt │ ├── ArcGisMapService.kt │ ├── ArcType.kt │ ├── AssociativeArray.kt │ ├── Atmosphere.kt │ ├── Axis.kt │ ├── AxisAlignedBoundingBox.kt │ ├── Billboard.kt │ ├── BillboardCollection.kt │ ├── BillboardGraphics.kt │ ├── BillboardVisualizer.kt │ ├── BingMapsGeocoderService.kt │ ├── BingMapsImageryProvider.kt │ ├── BingMapsStyle.kt │ ├── BlendEquation.kt │ ├── BlendFunction.kt │ ├── BlendOption.kt │ ├── BlendingState.kt │ ├── BoundingRectangle.kt │ ├── BoundingSphere.kt │ ├── BoxEmitter.kt │ ├── BoxGeometry.kt │ ├── BoxGeometryUpdater.kt │ ├── BoxGraphics.kt │ ├── BoxOutlineGeometry.kt │ ├── CallbackPositionCallback.kt │ ├── CallbackPositionProperty.kt │ ├── CallbackProperty.kt │ ├── CallbackPropertyCallback.kt │ ├── Camera.kt │ ├── CameraEventAggregator.kt │ ├── CameraEventType.kt │ ├── CameraOrientation.kt │ ├── CancelCallback.kt │ ├── Cartesian2.kt │ ├── Cartesian3.kt │ ├── Cartesian4.kt │ ├── Cartographic.kt │ ├── CartographicGeocoderService.kt │ ├── CatmullRomSpline.kt │ ├── Cesium3DTile.kt │ ├── Cesium3DTileColorBlendMode.kt │ ├── Cesium3DTileContent.kt │ ├── Cesium3DTileFeature.kt │ ├── Cesium3DTilePointFeature.kt │ ├── Cesium3DTileStyle.kt │ ├── Cesium3DTilesVoxelProvider.kt │ ├── Cesium3DTileset.kt │ ├── Cesium3DTilesetGraphics.kt │ ├── Cesium3DTilesetVisualizer.kt │ ├── CesiumTerrainProvider.kt │ ├── CesiumWidget.kt │ ├── CheckerboardMaterialProperty.kt │ ├── CircleEmitter.kt │ ├── CircleGeometry.kt │ ├── CircleOutlineGeometry.kt │ ├── ClassificationPrimitive.kt │ ├── ClassificationType.kt │ ├── ClippingPlane.kt │ ├── ClippingPlaneCollection.kt │ ├── ClippingPolygon.kt │ ├── ClippingPolygonCollection.kt │ ├── Clock.kt │ ├── ClockRange.kt │ ├── ClockStep.kt │ ├── CloudCollection.kt │ ├── CloudType.kt │ ├── CollectionChangedEventCallback.kt │ ├── Color.kt │ ├── ColorBlendMode.kt │ ├── ColorGeometryInstanceAttribute.kt │ ├── ColorMaterialProperty.kt │ ├── Comparator.kt │ ├── ComponentDatatype.kt │ ├── CompositeEntityCollection.kt │ ├── CompositeMaterialProperty.kt │ ├── CompositePositionProperty.kt │ ├── CompositeProperty.kt │ ├── CompressedTextureBuffer.kt │ ├── ConditionsExpression.kt │ ├── ConeEmitter.kt │ ├── ConstantPositionProperty.kt │ ├── ConstantProperty.kt │ ├── ConstantSpline.kt │ ├── ContextOptions.kt │ ├── CoplanarPolygonGeometry.kt │ ├── CoplanarPolygonOutlineGeometry.kt │ ├── CornerType.kt │ ├── CorrelationGroup.kt │ ├── CorridorGeometry.kt │ ├── CorridorGeometryUpdater.kt │ ├── CorridorGraphics.kt │ ├── CorridorOutlineGeometry.kt │ ├── CreateImageCallback.kt │ ├── Credit.kt │ ├── CreditDisplay.kt │ ├── CubicRealPolynomial.kt │ ├── CullFace.kt │ ├── CullingVolume.kt │ ├── CumulusCloud.kt │ ├── CustomDataSource.kt │ ├── CustomHeightmapTerrainProvider.kt │ ├── CustomShader.kt │ ├── CustomShaderMode.kt │ ├── CustomShaderTranslucencyMode.kt │ ├── CylinderGeometry.kt │ ├── CylinderGeometryUpdater.kt │ ├── CylinderGraphics.kt │ ├── CylinderOutlineGeometry.kt │ ├── CzmlDataSource.kt │ ├── DataComparer.kt │ ├── DataSource.kt │ ├── DataSourceClock.kt │ ├── DataSourceCollection.kt │ ├── DataSourceDisplay.kt │ ├── DebugAppearance.kt │ ├── DebugCameraPrimitive.kt │ ├── DebugModelMatrixPrimitive.kt │ ├── DefaultEvent.kt │ ├── DefaultProxy.kt │ ├── DepthFunction.kt │ ├── DeveloperError.kt │ ├── DirectionUp.kt │ ├── DirectionalLight.kt │ ├── DiscardEmptyTileImagePolicy.kt │ ├── DiscardMissingTileImagePolicy.kt │ ├── DistanceDisplayCondition.kt │ ├── DistanceDisplayConditionGeometryInstanceAttribute.kt │ ├── DoneCallback.kt │ ├── DynamicAtmosphereLightingType.kt │ ├── DynamicEnvironmentMapManager.kt │ ├── EasingCallback.kt │ ├── EasingFunction.kt │ ├── EllipseGeometry.kt │ ├── EllipseGeometryUpdater.kt │ ├── EllipseGraphics.kt │ ├── EllipseOutlineGeometry.kt │ ├── Ellipsoid.kt │ ├── EllipsoidGeodesic.kt │ ├── EllipsoidGeometry.kt │ ├── EllipsoidGeometryUpdater.kt │ ├── EllipsoidGraphics.kt │ ├── EllipsoidOutlineGeometry.kt │ ├── EllipsoidRhumbLine.kt │ ├── EllipsoidSurfaceAppearance.kt │ ├── EllipsoidTangentPlane.kt │ ├── EllipsoidTerrainProvider.kt │ ├── Entity.kt │ ├── EntityCluster.kt │ ├── EntityCollection.kt │ ├── EntityView.kt │ ├── ErrorEvent.kt │ ├── Event.kt │ ├── EventHelper.kt │ ├── Expression.kt │ ├── ExtrapolationType.kt │ ├── FeatureDetection.kt │ ├── FlightCancelledCallback.kt │ ├── FlightCompleteCallback.kt │ ├── Fog.kt │ ├── FrameRateMonitor.kt │ ├── Frozen.kt │ ├── FrustumGeometry.kt │ ├── FrustumOutlineGeometry.kt │ ├── Fullscreen.kt │ ├── GeoJsonDataSource.kt │ ├── GeocodeType.kt │ ├── GeocoderService.kt │ ├── GeographicProjection.kt │ ├── GeographicTilingScheme.kt │ ├── Geometry.kt │ ├── GeometryAttribute.kt │ ├── GeometryAttributes.kt │ ├── GeometryCallback.kt │ ├── GeometryFactory.kt │ ├── GeometryInstance.kt │ ├── GeometryInstanceAttribute.kt │ ├── GeometryPipeline.kt │ ├── GeometryUpdater.kt │ ├── GeometryVisualizer.kt │ ├── GetFeatureInfoFormat.kt │ ├── Globe.kt │ ├── GlobeTranslucency.kt │ ├── GltfCallback.kt │ ├── GltfGpmLocal.kt │ ├── GoogleEarthEnterpriseImageryProvider.kt │ ├── GoogleEarthEnterpriseMapsProvider.kt │ ├── GoogleEarthEnterpriseMetadata.kt │ ├── GoogleEarthEnterpriseTerrainData.kt │ ├── GoogleEarthEnterpriseTerrainProvider.kt │ ├── GoogleGeocoderService.kt │ ├── GoogleMaps.kt │ ├── GpxDataSource.kt │ ├── GregorianDate.kt │ ├── GridImageryProvider.kt │ ├── GridMaterialProperty.kt │ ├── GroundGeometryUpdater.kt │ ├── GroundPolylineGeometry.kt │ ├── GroundPolylinePrimitive.kt │ ├── GroundPrimitive.kt │ ├── HeadingPitchRange.kt │ ├── HeadingPitchRoll.kt │ ├── HeadingPitchRollValues.kt │ ├── HeightReference.kt │ ├── HeightmapEncoding.kt │ ├── HeightmapTerrainData.kt │ ├── HermitePolynomialApproximation.kt │ ├── HermiteSpline.kt │ ├── HorizontalOrigin.kt │ ├── I3SDataProvider.kt │ ├── I3SFeature.kt │ ├── I3SField.kt │ ├── I3SGeometry.kt │ ├── I3SLayer.kt │ ├── I3SNode.kt │ ├── I3SStatistics.kt │ ├── I3SSublayer.kt │ ├── I3SSymbology.kt │ ├── ITwinData.kt │ ├── ITwinPlatform.kt │ ├── ImageBasedLighting.kt │ ├── ImageMaterialProperty.kt │ ├── ImageryLayer.kt │ ├── ImageryLayerCollection.kt │ ├── ImageryLayerErrorEventCallback.kt │ ├── ImageryLayerFeatureInfo.kt │ ├── ImageryLayerReadyEventCallback.kt │ ├── ImageryProvider.kt │ ├── ImageryTypes.kt │ ├── IndexDatatype.kt │ ├── InterpolationAlgorithm.kt │ ├── Intersect.kt │ ├── IntersectionTests.kt │ ├── Intersections2D.kt │ ├── Interval.kt │ ├── Ion.kt │ ├── IonGeocodeProviderType.kt │ ├── IonGeocoderService.kt │ ├── IonImageryProvider.kt │ ├── IonResource.kt │ ├── IonWorldImageryStyle.kt │ ├── Iso8601.kt │ ├── JulianDate.kt │ ├── KeyboardEventModifier.kt │ ├── KmlCamera.kt │ ├── KmlDataSource.kt │ ├── KmlFeatureData.kt │ ├── KmlLookAt.kt │ ├── KmlTour.kt │ ├── KmlTourFlyTo.kt │ ├── KmlTourWait.kt │ ├── LRUCache.kt │ ├── Label.kt │ ├── LabelCollection.kt │ ├── LabelGraphics.kt │ ├── LabelStyle.kt │ ├── LabelVisualizer.kt │ ├── LagrangePolynomialApproximation.kt │ ├── LeapSecond.kt │ ├── Light.kt │ ├── LightingModel.kt │ ├── LinearApproximation.kt │ ├── LinearSpline.kt │ ├── LocalFrameToFixedFrame.kt │ ├── MapMode2D.kt │ ├── MapProjection.kt │ ├── MapboxImageryProvider.kt │ ├── MapboxStyleImageryProvider.kt │ ├── Material.kt │ ├── MaterialAppearance.kt │ ├── MaterialProperty.kt │ ├── Math.kt │ ├── Matrix2.kt │ ├── Matrix3.kt │ ├── Matrix4.kt │ ├── MergeCallback.kt │ ├── MetadataClass.kt │ ├── MetadataClassProperty.kt │ ├── MetadataComponentType.kt │ ├── MetadataEnum.kt │ ├── MetadataEnumValue.kt │ ├── MetadataSchema.kt │ ├── MetadataType.kt │ ├── MetadataValue.kt │ ├── Model.kt │ ├── ModelAnimation.kt │ ├── ModelAnimationCollection.kt │ ├── ModelAnimationLoop.kt │ ├── ModelFeature.kt │ ├── ModelGraphics.kt │ ├── ModelNode.kt │ ├── ModelVisualizer.kt │ ├── Moon.kt │ ├── MorphWeightSpline.kt │ ├── MotionEventCallback.kt │ ├── NearFarScalar.kt │ ├── NeverTileDiscardPolicy.kt │ ├── NodeTransformationProperty.kt │ ├── Occluder.kt │ ├── OpenCageGeocoderService.kt │ ├── OpenStreetMapImageryProvider.kt │ ├── OrientedBoundingBox.kt │ ├── OrthographicFrustum.kt │ ├── OrthographicOffCenterFrustum.kt │ ├── Packable.kt │ ├── PackableForInterpolation.kt │ ├── Particle.kt │ ├── ParticleBurst.kt │ ├── ParticleEmitter.kt │ ├── ParticleSystem.kt │ ├── PathGraphics.kt │ ├── PathVisualizer.kt │ ├── PeliasGeocoderService.kt │ ├── PerInstanceColorAppearance.kt │ ├── PerspectiveFrustum.kt │ ├── PerspectiveOffCenterFrustum.kt │ ├── PickedMetadataInfo.kt │ ├── PinBuilder.kt │ ├── PixelDatatype.kt │ ├── PixelFormat.kt │ ├── Plane.kt │ ├── PlaneGeometry.kt │ ├── PlaneGeometryUpdater.kt │ ├── PlaneGraphics.kt │ ├── PlaneOutlineGeometry.kt │ ├── PointCloudShading.kt │ ├── PointGraphics.kt │ ├── PointPrimitive.kt │ ├── PointPrimitiveCollection.kt │ ├── PointVisualizer.kt │ ├── PolygonGeometry.kt │ ├── PolygonGeometryUpdater.kt │ ├── PolygonGraphics.kt │ ├── PolygonHierarchy.kt │ ├── PolygonOutlineGeometry.kt │ ├── Polyline.kt │ ├── PolylineArrowMaterialProperty.kt │ ├── PolylineCollection.kt │ ├── PolylineColorAppearance.kt │ ├── PolylineDashMaterialProperty.kt │ ├── PolylineGeometry.kt │ ├── PolylineGeometryUpdater.kt │ ├── PolylineGlowMaterialProperty.kt │ ├── PolylineGraphics.kt │ ├── PolylineMaterialAppearance.kt │ ├── PolylineOutlineMaterialProperty.kt │ ├── PolylineVisualizer.kt │ ├── PolylineVolumeGeometry.kt │ ├── PolylineVolumeGeometryUpdater.kt │ ├── PolylineVolumeGraphics.kt │ ├── PolylineVolumeOutlineGeometry.kt │ ├── PositionProperty.kt │ ├── PositionPropertyArray.kt │ ├── PositionedEventCallback.kt │ ├── PostProcessStage.kt │ ├── PostProcessStageCollection.kt │ ├── PostProcessStageComposite.kt │ ├── PostProcessStageLibrary.kt │ ├── PostProcessStageSampleMode.kt │ ├── Primitive.kt │ ├── PrimitiveCollection.kt │ ├── PrimitiveType.kt │ ├── PriorityCallback.kt │ ├── Property.kt │ ├── PropertyArray.kt │ ├── PropertyBag.kt │ ├── Proxy.kt │ ├── QuadraticRealPolynomial.kt │ ├── QuantizedMeshTerrainData.kt │ ├── QuarticRealPolynomial.kt │ ├── Quaternion.kt │ ├── QuaternionSpline.kt │ ├── Queue.kt │ ├── Ray.kt │ ├── Rectangle.kt │ ├── RectangleGeometry.kt │ ├── RectangleGeometryUpdater.kt │ ├── RectangleGraphics.kt │ ├── RectangleOutlineGeometry.kt │ ├── ReferenceFrame.kt │ ├── ReferenceProperty.kt │ ├── RemoveCallback.kt │ ├── Request.kt │ ├── RequestCallback.kt │ ├── RequestErrorEvent.kt │ ├── RequestScheduler.kt │ ├── RequestState.kt │ ├── RequestType.kt │ ├── Resource.kt │ ├── RetryCallback.kt │ ├── RetryFunction.kt │ ├── Rotation.kt │ ├── RuntimeError.kt │ ├── SampledPositionProperty.kt │ ├── SampledProperty.kt │ ├── Scene.kt │ ├── SceneMode.kt │ ├── SceneTransforms.kt │ ├── ScreenSpaceCameraController.kt │ ├── ScreenSpaceEventHandler.kt │ ├── ScreenSpaceEventType.kt │ ├── SensorVolumePortionToDisplay.kt │ ├── ShadowMap.kt │ ├── ShadowMode.kt │ ├── ShowGeometryInstanceAttribute.kt │ ├── Simon1994PlanetaryPositions.kt │ ├── SimplePolylineGeometry.kt │ ├── SingleTileImageryProvider.kt │ ├── SkyAtmosphere.kt │ ├── SkyBox.kt │ ├── Spdcf.kt │ ├── SphereEmitter.kt │ ├── SphereGeometry.kt │ ├── SphereOutlineGeometry.kt │ ├── Spherical.kt │ ├── Spline.kt │ ├── SplitDirection.kt │ ├── StencilFunction.kt │ ├── StencilOperation.kt │ ├── SteppedSpline.kt │ ├── Stereographic.kt │ ├── StorageType.kt │ ├── StripeMaterialProperty.kt │ ├── StripeOrientation.kt │ ├── StyleExpression.kt │ ├── Sun.kt │ ├── SunLight.kt │ ├── TaskProcessor.kt │ ├── Terrain.kt │ ├── TerrainData.kt │ ├── TerrainErrorEventCallback.kt │ ├── TerrainProvider.kt │ ├── TerrainReadyEventCallback.kt │ ├── TextureMagnificationFilter.kt │ ├── TextureMinificationFilter.kt │ ├── TextureUniform.kt │ ├── TileAvailability.kt │ ├── TileCoordinatesImageryProvider.kt │ ├── TileDiscardPolicy.kt │ ├── TileMapServiceImageryProvider.kt │ ├── TileProviderError.kt │ ├── TilingScheme.kt │ ├── TimeDynamicImagery.kt │ ├── TimeDynamicPointCloud.kt │ ├── TimeInterval.kt │ ├── TimeIntervalCollection.kt │ ├── TimeIntervalCollectionPositionProperty.kt │ ├── TimeIntervalCollectionProperty.kt │ ├── TimeStandard.kt │ ├── Tonemapper.kt │ ├── TrackingReferenceFrame.kt │ ├── Transforms.kt │ ├── TranslationRotationScale.kt │ ├── TridiagonalSystemSolver.kt │ ├── TrustedServers.kt │ ├── TwoPointEventCallback.kt │ ├── TwoPointMotionEventCallback.kt │ ├── UniformSpecifier.kt │ ├── UniformType.kt │ ├── UpdaterFunction.kt │ ├── UrlTemplateImageryProvider.kt │ ├── VRTheWorldTerrainProvider.kt │ ├── VaryingType.kt │ ├── VelocityOrientationProperty.kt │ ├── VelocityVectorProperty.kt │ ├── VertexFormat.kt │ ├── VerticalOrigin.kt │ ├── VideoSynchronizer.kt │ ├── ViewportQuad.kt │ ├── Visibility.kt │ ├── Visualizer.kt │ ├── VisualizersCallback.kt │ ├── VoxelCell.kt │ ├── VoxelContent.kt │ ├── VoxelPrimitive.kt │ ├── VoxelProvider.kt │ ├── VoxelShapeType.kt │ ├── WallGeometry.kt │ ├── WallGeometryUpdater.kt │ ├── WallGraphics.kt │ ├── WallOutlineGeometry.kt │ ├── WebGLConstants.kt │ ├── WebGLOptions.kt │ ├── WebMapServiceImageryProvider.kt │ ├── WebMapTileServiceImageryProvider.kt │ ├── WebMercatorProjection.kt │ ├── WebMercatorTilingScheme.kt │ ├── WheelEventCallback.kt │ ├── WindingOrder.kt │ ├── barycentricCoordinates.kt │ ├── binarySearch.kt │ ├── binarySearchComparator.kt │ ├── buildModuleUrl.kt │ ├── clone.kt │ ├── combine.kt │ ├── computePickingDrawingBufferRectangle.kt │ ├── createAnchorPointDirect.kt │ ├── createAnchorPointIndirect.kt │ ├── createCorrelationGroup.kt │ ├── createCovarianceMatrixFromUpperTriangle.kt │ ├── createElevationBandMaterial.kt │ ├── createElevationBandMaterialBand.kt │ ├── createElevationBandMaterialEntry.kt │ ├── createGooglePhotorealistic3DTileset.kt │ ├── createGuid.kt │ ├── createOsmBuildingsAsync.kt │ ├── createTangentSpaceDebugPrimitive.kt │ ├── createWorldBathymetryAsync.kt │ ├── createWorldImageryAsync.kt │ ├── createWorldTerrainAsync.kt │ ├── describe.kt │ ├── destroyObject.kt │ ├── exportKml.kt │ ├── exportKmlModelCallback.kt │ ├── exportKmlResultKml.kt │ ├── exportKmlResultKmz.kt │ ├── formatError.kt │ ├── foveatedInterpolationCallback.kt │ ├── getAbsoluteUri.kt │ ├── getBaseUri.kt │ ├── getExtensionFromUri.kt │ ├── getFilenameFromUri.kt │ ├── getGlslType.kt │ ├── getImagePixels.kt │ ├── getSourceValueStringComponent.kt │ ├── getSourceValueStringScalar.kt │ ├── getTimestamp.kt │ ├── isLeapYear.kt │ ├── loadGltfJson.kt │ ├── mergeSort.kt │ ├── mergeSortComparator.kt │ ├── newClusterCallback.kt │ ├── objectToQuery.kt │ ├── obtainTranslucentCommandExecutionFunction.kt │ ├── pointInsideTriangle.kt │ ├── queryToObject.kt │ ├── removeExtension.kt │ ├── sampleTerrain.kt │ ├── sampleTerrainMostDetailed.kt │ ├── srgbToLinear.kt │ ├── subdivideArray.kt │ ├── unapplyValueTransform.kt │ ├── unnormalize.kt │ ├── updateCallback.kt │ └── writeTextToCanvas.kt │ └── widgets │ ├── Animation.kt │ ├── AnimationViewModel.kt │ ├── BaseLayerPicker.kt │ ├── BaseLayerPickerViewModel.kt │ ├── Cesium3DTilesInspector.kt │ ├── Cesium3DTilesInspectorViewModel.kt │ ├── CesiumInspector.kt │ ├── CesiumInspectorViewModel.kt │ ├── ClockViewModel.kt │ ├── Command.kt │ ├── ComputeScreenSpacePosition.kt │ ├── CreationFunction.kt │ ├── DateFormatter.kt │ ├── DestinationFoundFunction.kt │ ├── FullscreenButton.kt │ ├── FullscreenButtonViewModel.kt │ ├── Geocoder.kt │ ├── GeocoderViewModel.kt │ ├── HomeButton.kt │ ├── HomeButtonViewModel.kt │ ├── I3SBuildingSceneLayerExplorer.kt │ ├── I3sBslExplorerViewModel.kt │ ├── InfoBox.kt │ ├── InfoBoxViewModel.kt │ ├── NavigationHelpButton.kt │ ├── NavigationHelpButtonViewModel.kt │ ├── PerformanceWatchdog.kt │ ├── PerformanceWatchdogViewModel.kt │ ├── ProjectionPicker.kt │ ├── ProjectionPickerViewModel.kt │ ├── ProviderViewModel.kt │ ├── SceneModePicker.kt │ ├── SceneModePickerViewModel.kt │ ├── SelectionIndicator.kt │ ├── SelectionIndicatorViewModel.kt │ ├── SvgPathBindingHandler.kt │ ├── TimeFormatter.kt │ ├── Timeline.kt │ ├── ToggleButtonViewModel.kt │ ├── VRButton.kt │ ├── VRButtonViewModel.kt │ ├── Viewer.kt │ ├── ViewerMixin.kt │ ├── VoxelInspector.kt │ ├── VoxelInspectorViewModel.kt │ ├── createCommand.kt │ ├── viewerCesium3DTilesInspectorMixin.kt │ ├── viewerCesiumInspectorMixin.kt │ ├── viewerDragDropMixin.kt │ ├── viewerPerformanceWatchdogMixin.kt │ └── viewerVoxelInspectorMixin.kt ├── csstype-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ ├── commonMain │ └── kotlin │ │ └── web │ │ └── cssom │ │ ├── AccentColor.kt │ │ ├── AlignContent.kt │ │ ├── AlignItems.kt │ │ ├── AlignSelf.kt │ │ ├── AlignTracks.kt │ │ ├── All.kt │ │ ├── Angle.kt │ │ ├── AngularColorStop.kt │ │ ├── Animation.kt │ │ ├── AnimationComposition.kt │ │ ├── AnimationDelay.kt │ │ ├── AnimationDirection.kt │ │ ├── AnimationDuration.kt │ │ ├── AnimationFillMode.kt │ │ ├── AnimationIterationCount.kt │ │ ├── AnimationName.kt │ │ ├── AnimationPlayState.kt │ │ ├── AnimationRange.kt │ │ ├── AnimationTimeline.kt │ │ ├── AnimationTimingFunction.kt │ │ ├── Appearance.kt │ │ ├── AscentOverride.kt │ │ ├── AspectRatio.kt │ │ ├── AtRules.kt │ │ ├── Auto.kt │ │ ├── AutoLength.kt │ │ ├── AutoLengthProperty.kt │ │ ├── AutoRepeat.kt │ │ ├── AutoType.kt │ │ ├── BackdropFilter.kt │ │ ├── BackfaceVisibility.kt │ │ ├── Background.kt │ │ ├── BackgroundAttachment.kt │ │ ├── BackgroundBlendMode.kt │ │ ├── BackgroundClip.kt │ │ ├── BackgroundColor.kt │ │ ├── BackgroundImage.kt │ │ ├── BackgroundOrigin.kt │ │ ├── BackgroundPosition.kt │ │ ├── BackgroundPositionX.kt │ │ ├── BackgroundPositionY.kt │ │ ├── BackgroundRepeat.kt │ │ ├── BackgroundSize.kt │ │ ├── BasePalette.kt │ │ ├── BasicShape.kt │ │ ├── Bleed.kt │ │ ├── BlendMode.kt │ │ ├── BlendModeProperty.kt │ │ ├── BlockOverflow.kt │ │ ├── BlockSize.kt │ │ ├── Border.kt │ │ ├── BorderBlock.kt │ │ ├── BorderBlockColor.kt │ │ ├── BorderBlockEnd.kt │ │ ├── BorderBlockEndColor.kt │ │ ├── BorderBlockEndStyle.kt │ │ ├── BorderBlockEndWidth.kt │ │ ├── BorderBlockStart.kt │ │ ├── BorderBlockStartColor.kt │ │ ├── BorderBlockStartStyle.kt │ │ ├── BorderBlockStartWidth.kt │ │ ├── BorderBlockStyle.kt │ │ ├── BorderBlockWidth.kt │ │ ├── BorderBottom.kt │ │ ├── BorderBottomColor.kt │ │ ├── BorderBottomLeftRadius.kt │ │ ├── BorderBottomRightRadius.kt │ │ ├── BorderBottomStyle.kt │ │ ├── BorderBottomWidth.kt │ │ ├── BorderCollapse.kt │ │ ├── BorderColor.kt │ │ ├── BorderEndEndRadius.kt │ │ ├── BorderEndStartRadius.kt │ │ ├── BorderImage.kt │ │ ├── BorderImageOutset.kt │ │ ├── BorderImageRepeat.kt │ │ ├── BorderImageSlice.kt │ │ ├── BorderImageSource.kt │ │ ├── BorderImageWidth.kt │ │ ├── BorderInline.kt │ │ ├── BorderInlineColor.kt │ │ ├── BorderInlineEnd.kt │ │ ├── BorderInlineEndColor.kt │ │ ├── BorderInlineEndStyle.kt │ │ ├── BorderInlineEndWidth.kt │ │ ├── BorderInlineStart.kt │ │ ├── BorderInlineStartColor.kt │ │ ├── BorderInlineStartStyle.kt │ │ ├── BorderInlineStartWidth.kt │ │ ├── BorderInlineStyle.kt │ │ ├── BorderInlineWidth.kt │ │ ├── BorderLeft.kt │ │ ├── BorderLeftColor.kt │ │ ├── BorderLeftStyle.kt │ │ ├── BorderLeftWidth.kt │ │ ├── BorderRadius.kt │ │ ├── BorderRight.kt │ │ ├── BorderRightColor.kt │ │ ├── BorderRightStyle.kt │ │ ├── BorderRightWidth.kt │ │ ├── BorderSpacing.kt │ │ ├── BorderStartEndRadius.kt │ │ ├── BorderStartStartRadius.kt │ │ ├── BorderStyle.kt │ │ ├── BorderTop.kt │ │ ├── BorderTopColor.kt │ │ ├── BorderTopLeftRadius.kt │ │ ├── BorderTopRightRadius.kt │ │ ├── BorderTopStyle.kt │ │ ├── BorderTopWidth.kt │ │ ├── BorderWidth.kt │ │ ├── Bottom.kt │ │ ├── BoxDecorationBreak.kt │ │ ├── BoxShadow.kt │ │ ├── BoxSizing.kt │ │ ├── BreakAfter.kt │ │ ├── BreakBefore.kt │ │ ├── BreakInside.kt │ │ ├── CaptionSide.kt │ │ ├── Caret.kt │ │ ├── CaretColor.kt │ │ ├── CaretShape.kt │ │ ├── ClassName.kt │ │ ├── Clear.kt │ │ ├── ClipPath.kt │ │ ├── Color.functions.kt │ │ ├── Color.kt │ │ ├── ColorProperty.kt │ │ ├── ColorScheme.kt │ │ ├── ColorType.kt │ │ ├── ColumnCount.kt │ │ ├── ColumnFill.kt │ │ ├── ColumnGap.kt │ │ ├── ColumnRule.kt │ │ ├── ColumnRuleColor.kt │ │ ├── ColumnRuleStyle.kt │ │ ├── ColumnRuleWidth.kt │ │ ├── ColumnSpan.kt │ │ ├── ColumnWidth.kt │ │ ├── Columns.kt │ │ ├── CompositeStyle.kt │ │ ├── Contain.kt │ │ ├── ContainIntrinsicBlockSize.kt │ │ ├── ContainIntrinsicHeight.kt │ │ ├── ContainIntrinsicInlineSize.kt │ │ ├── ContainIntrinsicSize.kt │ │ ├── ContainIntrinsicWidth.kt │ │ ├── Container.kt │ │ ├── ContainerName.kt │ │ ├── ContainerQuery.kt │ │ ├── ContainerType.kt │ │ ├── Content.kt │ │ ├── ContentVisibility.kt │ │ ├── CounterIncrement.kt │ │ ├── CounterReset.kt │ │ ├── CounterSet.kt │ │ ├── CounterStyle.kt │ │ ├── Cursor.kt │ │ ├── CustomProperties.kt │ │ ├── CustomPropertyName.kt │ │ ├── DescentOverride.kt │ │ ├── Direction.kt │ │ ├── Display.kt │ │ ├── EmptyCells.kt │ │ ├── Filter.kt │ │ ├── FilterFunction.kt │ │ ├── Flex.kt │ │ ├── FlexBasis.kt │ │ ├── FlexDirection.kt │ │ ├── FlexFlow.kt │ │ ├── FlexGrow.kt │ │ ├── FlexShrink.kt │ │ ├── FlexWrap.kt │ │ ├── Float.kt │ │ ├── Font.kt │ │ ├── FontDisplay.kt │ │ ├── FontFace.kt │ │ ├── FontFamily.kt │ │ ├── FontFeatureSettings.kt │ │ ├── FontKerning.kt │ │ ├── FontLanguageOverride.kt │ │ ├── FontOpticalSizing.kt │ │ ├── FontPalette.kt │ │ ├── FontPaletteValues.kt │ │ ├── FontSize.kt │ │ ├── FontSizeAdjust.kt │ │ ├── FontSmooth.kt │ │ ├── FontStretch.kt │ │ ├── FontStyle.kt │ │ ├── FontSynthesis.kt │ │ ├── FontSynthesisPosition.kt │ │ ├── FontSynthesisSmallCaps.kt │ │ ├── FontSynthesisStyle.kt │ │ ├── FontSynthesisWeight.kt │ │ ├── FontVariant.kt │ │ ├── FontVariantAlternates.kt │ │ ├── FontVariantCaps.kt │ │ ├── FontVariantEastAsian.kt │ │ ├── FontVariantEmoji.kt │ │ ├── FontVariantLigatures.kt │ │ ├── FontVariantNumeric.kt │ │ ├── FontVariantPosition.kt │ │ ├── FontVariationSettings.kt │ │ ├── FontWeight.kt │ │ ├── ForcedColorAdjust.kt │ │ ├── Gap.kt │ │ ├── GeometryBox.kt │ │ ├── GeometryPosition.kt │ │ ├── Globals.kt │ │ ├── GlobalsType.kt │ │ ├── Gradient.kt │ │ ├── Grid.functions.kt │ │ ├── Grid.kt │ │ ├── GridArea.kt │ │ ├── GridAutoColumns.kt │ │ ├── GridAutoFlow.kt │ │ ├── GridAutoRows.kt │ │ ├── GridAutoTracks.kt │ │ ├── GridColumn.kt │ │ ├── GridColumnEnd.kt │ │ ├── GridColumnStart.kt │ │ ├── GridLength.kt │ │ ├── GridLengthProperty.kt │ │ ├── GridLine.kt │ │ ├── GridLineProperty.kt │ │ ├── GridRow.kt │ │ ├── GridRowEnd.kt │ │ ├── GridRowStart.kt │ │ ├── GridTemplate.kt │ │ ├── GridTemplateAreas.kt │ │ ├── GridTemplateColumns.kt │ │ ├── GridTemplateRows.kt │ │ ├── GridTemplateTracks.kt │ │ ├── HangingPunctuation.kt │ │ ├── Height.kt │ │ ├── HtmlAttributes.kt │ │ ├── HyphenateCharacter.kt │ │ ├── HyphenateLimitChars.kt │ │ ├── Hyphens.kt │ │ ├── Ident.kt │ │ ├── Image.kt │ │ ├── ImageOrientation.kt │ │ ├── ImageRendering.kt │ │ ├── ImageResolution.kt │ │ ├── Inherits.kt │ │ ├── InitialLetter.kt │ │ ├── InlineSize.kt │ │ ├── InputSecurity.kt │ │ ├── Inset.kt │ │ ├── InsetBlock.kt │ │ ├── InsetBlockEnd.kt │ │ ├── InsetBlockStart.kt │ │ ├── InsetInline.kt │ │ ├── InsetInlineEnd.kt │ │ ├── InsetInlineStart.kt │ │ ├── Integer.kt │ │ ├── Isolation.kt │ │ ├── JustifyContent.kt │ │ ├── JustifyItems.kt │ │ ├── JustifySelf.kt │ │ ├── JustifyTracks.kt │ │ ├── Left.kt │ │ ├── Length.kt │ │ ├── Length.operators.kt │ │ ├── LengthProperty.kt │ │ ├── LengthType.kt │ │ ├── LetterSpacing.kt │ │ ├── LineBreak.kt │ │ ├── LineClamp.kt │ │ ├── LineGapOverride.kt │ │ ├── LineHeight.kt │ │ ├── LineHeightStep.kt │ │ ├── LineStyle.kt │ │ ├── LineStyleProperty.kt │ │ ├── LineWidth.kt │ │ ├── LineWidthProperty.kt │ │ ├── LinearColorStop.kt │ │ ├── ListStyle.kt │ │ ├── ListStyleImage.kt │ │ ├── ListStylePosition.kt │ │ ├── ListStyleType.kt │ │ ├── Margin.kt │ │ ├── MarginBlock.kt │ │ ├── MarginBlockEnd.kt │ │ ├── MarginBlockStart.kt │ │ ├── MarginBottom.kt │ │ ├── MarginInline.kt │ │ ├── MarginInlineEnd.kt │ │ ├── MarginInlineStart.kt │ │ ├── MarginLeft.kt │ │ ├── MarginRight.kt │ │ ├── MarginTop.kt │ │ ├── MarginTrim.kt │ │ ├── Marks.kt │ │ ├── Mask.kt │ │ ├── MaskBorder.kt │ │ ├── MaskBorderMode.kt │ │ ├── MaskBorderOutset.kt │ │ ├── MaskBorderRepeat.kt │ │ ├── MaskBorderSlice.kt │ │ ├── MaskBorderSource.kt │ │ ├── MaskBorderWidth.kt │ │ ├── MaskClip.kt │ │ ├── MaskComposite.kt │ │ ├── MaskImage.kt │ │ ├── MaskMode.kt │ │ ├── MaskOrigin.kt │ │ ├── MaskPosition.kt │ │ ├── MaskRepeat.kt │ │ ├── MaskSize.kt │ │ ├── MaskType.kt │ │ ├── MasonryAutoFlow.kt │ │ ├── Math.functions.kt │ │ ├── MathDepth.kt │ │ ├── MathShift.kt │ │ ├── MathStyle.kt │ │ ├── MaxBlockSize.kt │ │ ├── MaxHeight.kt │ │ ├── MaxInlineSize.kt │ │ ├── MaxLines.kt │ │ ├── MaxWidth.kt │ │ ├── MediaQuery.kt │ │ ├── MinBlockSize.kt │ │ ├── MinHeight.kt │ │ ├── MinInlineSize.kt │ │ ├── MinWidth.kt │ │ ├── MixBlendMode.kt │ │ ├── NamedColor.kt │ │ ├── None.kt │ │ ├── NoneType.kt │ │ ├── Number.kt │ │ ├── ObjectFit.kt │ │ ├── ObjectPosition.kt │ │ ├── Offset.kt │ │ ├── OffsetAnchor.kt │ │ ├── OffsetDistance.kt │ │ ├── OffsetPath.kt │ │ ├── OffsetPosition.kt │ │ ├── OffsetRotate.kt │ │ ├── Opacity.kt │ │ ├── Order.kt │ │ ├── Orphans.kt │ │ ├── Outline.kt │ │ ├── OutlineColor.kt │ │ ├── OutlineOffset.kt │ │ ├── OutlineStyle.kt │ │ ├── OutlineWidth.kt │ │ ├── Overflow.kt │ │ ├── OverflowAnchor.kt │ │ ├── OverflowClipBox.kt │ │ ├── OverflowClipMargin.kt │ │ ├── OverflowWrap.kt │ │ ├── Overlay.kt │ │ ├── OverscrollBehavior.kt │ │ ├── Padding.kt │ │ ├── PaddingBlock.kt │ │ ├── PaddingBlockEnd.kt │ │ ├── PaddingBlockStart.kt │ │ ├── PaddingBottom.kt │ │ ├── PaddingInline.kt │ │ ├── PaddingInlineEnd.kt │ │ ├── PaddingInlineStart.kt │ │ ├── PaddingLeft.kt │ │ ├── PaddingRight.kt │ │ ├── PaddingTop.kt │ │ ├── Page.kt │ │ ├── PageBreakAfter.kt │ │ ├── PageBreakBefore.kt │ │ ├── PageBreakInside.kt │ │ ├── PageSize.kt │ │ ├── PaintOrder.kt │ │ ├── Percentage.kt │ │ ├── Perspective.kt │ │ ├── PerspectiveOrigin.kt │ │ ├── PlaceContent.kt │ │ ├── PlaceItems.kt │ │ ├── PlaceSelf.kt │ │ ├── PointerEvents.kt │ │ ├── Position.kt │ │ ├── PrintColorAdjust.kt │ │ ├── Property.kt │ │ ├── PropertyName.kt │ │ ├── Quotes.kt │ │ ├── Range.kt │ │ ├── Reference.functions.kt │ │ ├── Resize.kt │ │ ├── Right.kt │ │ ├── Rotate.kt │ │ ├── Round.kt │ │ ├── RowGap.kt │ │ ├── RubyAlign.kt │ │ ├── RubyMerge.kt │ │ ├── RubyPosition.kt │ │ ├── Scale.kt │ │ ├── ScrollBehavior.kt │ │ ├── ScrollMargin.kt │ │ ├── ScrollMarginBlock.kt │ │ ├── ScrollMarginBlockEnd.kt │ │ ├── ScrollMarginBlockStart.kt │ │ ├── ScrollMarginBottom.kt │ │ ├── ScrollMarginInline.kt │ │ ├── ScrollMarginInlineEnd.kt │ │ ├── ScrollMarginInlineStart.kt │ │ ├── ScrollMarginLeft.kt │ │ ├── ScrollMarginRight.kt │ │ ├── ScrollMarginTop.kt │ │ ├── ScrollPadding.kt │ │ ├── ScrollPaddingBlock.kt │ │ ├── ScrollPaddingBlockEnd.kt │ │ ├── ScrollPaddingBlockStart.kt │ │ ├── ScrollPaddingBottom.kt │ │ ├── ScrollPaddingInline.kt │ │ ├── ScrollPaddingInlineEnd.kt │ │ ├── ScrollPaddingInlineStart.kt │ │ ├── ScrollPaddingLeft.kt │ │ ├── ScrollPaddingRight.kt │ │ ├── ScrollPaddingTop.kt │ │ ├── ScrollSnapAlign.kt │ │ ├── ScrollSnapStop.kt │ │ ├── ScrollSnapType.kt │ │ ├── ScrollTimeline.kt │ │ ├── ScrollTimelineAxis.kt │ │ ├── ScrollTimelineName.kt │ │ ├── ScrollbarColor.kt │ │ ├── ScrollbarGutter.kt │ │ ├── ScrollbarWidth.kt │ │ ├── Selector.kt │ │ ├── Shape.functions.kt │ │ ├── ShapeImageThreshold.kt │ │ ├── ShapeMargin.kt │ │ ├── ShapeOutside.kt │ │ ├── ShapeRadius.kt │ │ ├── SingleAnimation.kt │ │ ├── Size.kt │ │ ├── SizeQuery.kt │ │ ├── SpeakAs.kt │ │ ├── StandardLonghandProperties.kt │ │ ├── StandardProperties.kt │ │ ├── StandardShorthandProperties.kt │ │ ├── String.kt │ │ ├── System.kt │ │ ├── TabSize.kt │ │ ├── TableLayout.kt │ │ ├── TextAlign.kt │ │ ├── TextAlignLast.kt │ │ ├── TextCombineUpright.kt │ │ ├── TextDecoration.kt │ │ ├── TextDecorationColor.kt │ │ ├── TextDecorationLine.kt │ │ ├── TextDecorationSkip.kt │ │ ├── TextDecorationSkipInk.kt │ │ ├── TextDecorationStyle.kt │ │ ├── TextDecorationThickness.kt │ │ ├── TextEmphasis.kt │ │ ├── TextEmphasisColor.kt │ │ ├── TextEmphasisPosition.kt │ │ ├── TextEmphasisStyle.kt │ │ ├── TextIndent.kt │ │ ├── TextJustify.kt │ │ ├── TextOrientation.kt │ │ ├── TextOverflow.kt │ │ ├── TextRendering.kt │ │ ├── TextShadow.kt │ │ ├── TextSizeAdjust.kt │ │ ├── TextTransform.kt │ │ ├── TextUnderlineOffset.kt │ │ ├── TextUnderlinePosition.kt │ │ ├── TextWrap.kt │ │ ├── Time.kt │ │ ├── TimeProperty.kt │ │ ├── TimelineScope.kt │ │ ├── Top.kt │ │ ├── TouchAction.kt │ │ ├── Transform.kt │ │ ├── TransformBox.kt │ │ ├── TransformFunction.kt │ │ ├── TransformOrigin.kt │ │ ├── TransformStyle.kt │ │ ├── Transition.kt │ │ ├── TransitionBehavior.kt │ │ ├── TransitionDelay.kt │ │ ├── TransitionDuration.kt │ │ ├── TransitionProperty.kt │ │ ├── TransitionTimingFunction.kt │ │ ├── Translate.kt │ │ ├── UnicodeBidi.kt │ │ ├── Url.kt │ │ ├── UserSelect.kt │ │ ├── VerticalAlign.kt │ │ ├── ViewTimeline.kt │ │ ├── ViewTimelineAxis.kt │ │ ├── ViewTimelineInset.kt │ │ ├── ViewTimelineName.kt │ │ ├── ViewTransitionName.kt │ │ ├── Visibility.kt │ │ ├── WhiteSpace.kt │ │ ├── WhiteSpaceCollapse.kt │ │ ├── WhiteSpaceTrim.kt │ │ ├── Widows.kt │ │ ├── Width.kt │ │ ├── WillChange.kt │ │ ├── WordBreak.kt │ │ ├── WordSpacing.kt │ │ ├── WordWrap.kt │ │ ├── WritingMode.kt │ │ ├── ZIndex.kt │ │ ├── Zoom.kt │ │ └── atrule │ │ ├── ColorGamut.kt │ │ ├── DisplayMode.kt │ │ ├── DynamicRange.kt │ │ ├── ForcedColors.kt │ │ ├── Hover.kt │ │ ├── InvertedColors.kt │ │ ├── MediaType.kt │ │ ├── Orientation.kt │ │ ├── OverflowBlock.kt │ │ ├── OverflowInline.kt │ │ ├── Pointer.kt │ │ ├── PrefersColorScheme.kt │ │ ├── PrefersContrast.kt │ │ ├── PrefersReducedMotion.kt │ │ ├── Resolution.kt │ │ ├── Scripting.kt │ │ ├── Update.kt │ │ ├── anyHover.fun.kt │ │ ├── anyPointer.fun.kt │ │ ├── color.fun.kt │ │ ├── colorGamut.fun.kt │ │ ├── colorIndex.fun.kt │ │ ├── displayMode.fun.kt │ │ ├── dynamicRange.fun.kt │ │ ├── forcedColors.fun.kt │ │ ├── height.fun.kt │ │ ├── hover.fun.kt │ │ ├── invertedColors.fun.kt │ │ ├── maxColor.fun.kt │ │ ├── maxColorIndex.fun.kt │ │ ├── maxHeight.fun.kt │ │ ├── maxResolution.fun.kt │ │ ├── maxWidth.fun.kt │ │ ├── minColor.fun.kt │ │ ├── minColorIndex.fun.kt │ │ ├── minHeight.fun.kt │ │ ├── minResolution.fun.kt │ │ ├── minWidth.fun.kt │ │ ├── orientation.fun.kt │ │ ├── overflowBlock.fun.kt │ │ ├── overflowInline.fun.kt │ │ ├── pointer.fun.kt │ │ ├── prefersColorScheme.fun.kt │ │ ├── prefersContrast.fun.kt │ │ ├── prefersReducedMotion.fun.kt │ │ ├── resolution.fun.kt │ │ ├── scripting.fun.kt │ │ ├── update.fun.kt │ │ ├── videoDynamicRange.fun.kt │ │ └── width.fun.kt │ └── jsMain │ └── kotlin │ └── csstype │ ├── AdvancedPseudosRuleBuilder.kt │ ├── CssDsl.kt │ ├── ExperimentalPseudosRuleBuilder.kt │ ├── NonStandardPseudosRuleBuilder.kt │ ├── Properties.kt │ ├── PseudosRuleBuilder.kt │ ├── RuleBuilder.kt │ ├── Rules.kt │ └── SimplePseudosRuleBuilder.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── package-lock.json ├── popper-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ └── commonMain │ └── kotlin │ └── popper │ └── core │ ├── ClientRectObject.kt │ ├── EventListeners.kt │ ├── Instance.kt │ ├── Modifier.kt │ ├── ModifierArguments.kt │ ├── ModifierName.kt │ ├── ModifierPhases.kt │ ├── Name.kt │ ├── OffsetData.kt │ ├── Offsets.kt │ ├── Options.kt │ ├── OptionsGeneric.kt │ ├── Padding.kt │ ├── Placement.kt │ ├── Popper.kt │ ├── PositioningStrategy.kt │ ├── Rect.kt │ ├── SetAction.kt │ ├── SideObject.kt │ ├── State.kt │ ├── StateOffsets.kt │ ├── StateRects.kt │ ├── UpdateCallback.kt │ ├── VirtualElement.kt │ ├── VisualViewport.kt │ └── modifiers │ ├── ApplyStyles.kt │ ├── Arrow.kt │ ├── ComputeStyles.kt │ ├── EventListeners.kt │ ├── Flip.kt │ ├── Hide.kt │ ├── Offset.kt │ ├── PopperOffsets.kt │ └── PreventOverflow.kt ├── react-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ └── jsMain │ └── kotlin │ └── react │ └── dom │ ├── DOMAttributes.kt │ ├── DangerouslySetInnerHTML.kt │ ├── FormAction.kt │ ├── aria │ ├── AriaAttributes.kt │ ├── AriaAutoComplete.kt │ ├── AriaChecked.kt │ ├── AriaCurrent.kt │ ├── AriaDropEffect.kt │ ├── AriaHasPopup.kt │ ├── AriaInvalid.kt │ ├── AriaLive.kt │ ├── AriaOrientation.kt │ ├── AriaPressed.kt │ ├── AriaRelevant.kt │ ├── AriaRole.kt │ └── AriaSort.kt │ ├── events │ ├── AnimationEvent.kt │ ├── BaseSyntheticEvent.kt │ ├── ChangeEvent.kt │ ├── ClipboardEvent.kt │ ├── CompositionEvent.kt │ ├── DragEvent.kt │ ├── EventHandlers.kt │ ├── FocusEvent.kt │ ├── FormEvent.kt │ ├── InvalidEvent.kt │ ├── KeyboardEvent.kt │ ├── MouseEvent.kt │ ├── NativeEvents.kt │ ├── PointerEvent.kt │ ├── PointerType.kt │ ├── SyntheticEvent.kt │ ├── ToggleEvent.kt │ ├── TouchEvent.kt │ ├── TransitionEvent.kt │ ├── UIEvent.kt │ └── WheelEvent.kt │ ├── html │ ├── AnchorHTMLAttributes.kt │ ├── AreaHTMLAttributes.kt │ ├── AudioHTMLAttributes.kt │ ├── BaseHTMLAttributes.kt │ ├── BlockquoteHTMLAttributes.kt │ ├── ButtonHTMLAttributes.kt │ ├── CanvasHTMLAttributes.kt │ ├── Capture.kt │ ├── ColHTMLAttributes.kt │ ├── ColgroupHTMLAttributes.kt │ ├── DataHTMLAttributes.kt │ ├── DelHTMLAttributes.kt │ ├── DetailsHTMLAttributes.kt │ ├── DialogHTMLAttributes.kt │ ├── EmbedHTMLAttributes.kt │ ├── FieldsetHTMLAttributes.kt │ ├── FormHTMLAttributes.kt │ ├── HTMLAttributes.kt │ ├── HtmlHTMLAttributes.kt │ ├── IframeHTMLAttributes.kt │ ├── ImgHTMLAttributes.kt │ ├── InputHTMLAttributes.kt │ ├── InsHTMLAttributes.kt │ ├── KeygenHTMLAttributes.kt │ ├── LabelHTMLAttributes.kt │ ├── LiHTMLAttributes.kt │ ├── LinkHTMLAttributes.kt │ ├── MapHTMLAttributes.kt │ ├── MediaHTMLAttributes.kt │ ├── MenuHTMLAttributes.kt │ ├── MetaHTMLAttributes.kt │ ├── MeterHTMLAttributes.kt │ ├── ObjectHTMLAttributes.kt │ ├── OlHTMLAttributes.kt │ ├── OlType.kt │ ├── OptgroupHTMLAttributes.kt │ ├── OptionHTMLAttributes.kt │ ├── OutputHTMLAttributes.kt │ ├── ProgressHTMLAttributes.kt │ ├── QuoteHTMLAttributes.kt │ ├── ReactHTML.kt │ ├── ScriptHTMLAttributes.kt │ ├── SelectHTMLAttributes.kt │ ├── SlotHTMLAttributes.kt │ ├── SourceHTMLAttributes.kt │ ├── StyleHTMLAttributes.kt │ ├── TableAlign.kt │ ├── TableHTMLAttributes.kt │ ├── TableRules.kt │ ├── TdAlign.kt │ ├── TdHTMLAttributes.kt │ ├── TdVAlign.kt │ ├── TextareaHTMLAttributes.kt │ ├── ThAlign.kt │ ├── ThHTMLAttributes.kt │ ├── TimeHTMLAttributes.kt │ ├── TrackHTMLAttributes.kt │ ├── Translate.kt │ ├── Unselectable.kt │ ├── VideoHTMLAttributes.kt │ └── WebViewHTMLAttributes.kt │ └── svg │ ├── Accumulate.kt │ ├── Additive.kt │ ├── AlignmentBaseline.kt │ ├── AllowReorder.kt │ ├── ArabicForm.kt │ ├── ColorInterpolationFilters.kt │ ├── FillRule.kt │ ├── ReactSVG.kt │ ├── SVGAttributes.kt │ ├── StrokeLinecap.kt │ └── StrokeLinejoin.kt ├── react-query-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ └── jsMain │ └── kotlin │ └── tanstack │ ├── query │ └── core │ │ ├── Action.kt │ │ ├── Action_1.kt │ │ ├── BatchCallsCallback.kt │ │ ├── BatchNotifyFunction.kt │ │ ├── CancelOptions.kt │ │ ├── CancelledError.kt │ │ ├── CombineFn.kt │ │ ├── ContinueAction.kt │ │ ├── ContinueAction_1.kt │ │ ├── DefaultError.kt │ │ ├── DefaultOptions.kt │ │ ├── DefaultedInfiniteQueryObserverOptions.kt │ │ ├── DefaultedQueryObserverOptions.kt │ │ ├── DefinedInfiniteQueryObserverResult.kt │ │ ├── DefinedQueryObserverResult.kt │ │ ├── DehydrateOptions.kt │ │ ├── DehydratedMutation.kt │ │ ├── DehydratedQuery.kt │ │ ├── DehydratedState.kt │ │ ├── Enabled.kt │ │ ├── EnsureInfiniteQueryDataOptions.kt │ │ ├── EnsureQueryDataOptions.kt │ │ ├── ErrorAction.kt │ │ ├── ErrorAction_1.kt │ │ ├── FailedAction.kt │ │ ├── FailedAction_1.kt │ │ ├── FetchAction.kt │ │ ├── FetchContext.kt │ │ ├── FetchDirection.kt │ │ ├── FetchInfiniteQueryOptions.kt │ │ ├── FetchInfiniteQueryPages.kt │ │ ├── FetchMeta.kt │ │ ├── FetchNextPageOptions.kt │ │ ├── FetchOptions.kt │ │ ├── FetchPreviousPageOptions.kt │ │ ├── FetchQueryOptions.kt │ │ ├── FetchStatus.kt │ │ ├── FocusManager.kt │ │ ├── FocusManagerSetupFn.kt │ │ ├── GetNextPageParamFunction.kt │ │ ├── GetPreviousPageParamFunction.kt │ │ ├── HydrateOptions.kt │ │ ├── InfiniteData.kt │ │ ├── InfiniteQueryObserver.kt │ │ ├── InfiniteQueryObserverBaseResult.kt │ │ ├── InfiniteQueryObserverListener.kt │ │ ├── InfiniteQueryObserverLoadingErrorResult.kt │ │ ├── InfiniteQueryObserverLoadingResult.kt │ │ ├── InfiniteQueryObserverOptions.kt │ │ ├── InfiniteQueryObserverPendingResult.kt │ │ ├── InfiniteQueryObserverPlaceholderResult.kt │ │ ├── InfiniteQueryObserverRefetchErrorResult.kt │ │ ├── InfiniteQueryObserverResult.kt │ │ ├── InfiniteQueryObserverSuccessResult.kt │ │ ├── InfiniteQueryPageParamsOptions.kt │ │ ├── InitialDataFunction.kt │ │ ├── InitialPageParam.kt │ │ ├── InvalidateAction.kt │ │ ├── InvalidateOptions.kt │ │ ├── InvalidateQueryFilters.kt │ │ ├── Listener.kt │ │ ├── MutateFunction.kt │ │ ├── MutateOptions.kt │ │ ├── Mutation.kt │ │ ├── MutationCache.kt │ │ ├── MutationCacheConfig.kt │ │ ├── MutationCacheListener.kt │ │ ├── MutationCacheNotifyEvent.kt │ │ ├── MutationConfig.kt │ │ ├── MutationFilters.kt │ │ ├── MutationFunction.kt │ │ ├── MutationKey.kt │ │ ├── MutationMeta.kt │ │ ├── MutationObserver.kt │ │ ├── MutationObserverBaseResult.kt │ │ ├── MutationObserverErrorResult.kt │ │ ├── MutationObserverIdleResult.kt │ │ ├── MutationObserverListener.kt │ │ ├── MutationObserverLoadingResult.kt │ │ ├── MutationObserverOptions.kt │ │ ├── MutationObserverResult.kt │ │ ├── MutationObserverSuccessResult.kt │ │ ├── MutationOptions.kt │ │ ├── MutationScope.kt │ │ ├── MutationState.kt │ │ ├── MutationStatus.kt │ │ ├── NetworkMode.kt │ │ ├── NotifyCallback.kt │ │ ├── NotifyEvent.kt │ │ ├── NotifyEventMutationAdded.kt │ │ ├── NotifyEventMutationObserverAdded.kt │ │ ├── NotifyEventMutationObserverOptionsUpdated.kt │ │ ├── NotifyEventMutationObserverRemoved.kt │ │ ├── NotifyEventMutationRemoved.kt │ │ ├── NotifyEventMutationUpdated.kt │ │ ├── NotifyEventQueryAdded.kt │ │ ├── NotifyEventQueryObserverAdded.kt │ │ ├── NotifyEventQueryObserverOptionsUpdated.kt │ │ ├── NotifyEventQueryObserverRemoved.kt │ │ ├── NotifyEventQueryObserverResultsUpdated.kt │ │ ├── NotifyEventQueryRemoved.kt │ │ ├── NotifyEventQueryUpdated.kt │ │ ├── NotifyEventType.kt │ │ ├── NotifyFunction.kt │ │ ├── NotifyOnChangeProps.kt │ │ ├── ObserverFetchOptions.kt │ │ ├── OnlineManager.kt │ │ ├── OnlineManagerSetupFn.kt │ │ ├── PauseAction.kt │ │ ├── PauseAction_1.kt │ │ ├── PendingAction.kt │ │ ├── PlaceholderDataFunction.kt │ │ ├── QueriesObserver.kt │ │ ├── QueriesObserverListener.kt │ │ ├── QueriesObserverOptions.kt │ │ ├── QueriesPlaceholderDataFunction.kt │ │ ├── Query.kt │ │ ├── QueryBehavior.kt │ │ ├── QueryCache.kt │ │ ├── QueryCacheConfig.kt │ │ ├── QueryCacheListener.kt │ │ ├── QueryCacheNotifyEvent.kt │ │ ├── QueryClient.kt │ │ ├── QueryClientConfig.kt │ │ ├── QueryConfig.kt │ │ ├── QueryFilters.kt │ │ ├── QueryFunction.kt │ │ ├── QueryFunctionContext.kt │ │ ├── QueryKey.ext.kt │ │ ├── QueryKey.kt │ │ ├── QueryKeyHashFunction.kt │ │ ├── QueryMeta.kt │ │ ├── QueryObserver.kt │ │ ├── QueryObserverBaseResult.kt │ │ ├── QueryObserverListener.kt │ │ ├── QueryObserverLoadingErrorResult.kt │ │ ├── QueryObserverLoadingResult.kt │ │ ├── QueryObserverOptions.kt │ │ ├── QueryObserverPendingResult.kt │ │ ├── QueryObserverPlaceholderResult.kt │ │ ├── QueryObserverRefetchErrorResult.kt │ │ ├── QueryObserverResult.kt │ │ ├── QueryObserverSuccessResult.kt │ │ ├── QueryOptions.kt │ │ ├── QueryPersister.kt │ │ ├── QueryState.kt │ │ ├── QueryStatus.kt │ │ ├── QueryStore.kt │ │ ├── QueryTypeFilter.kt │ │ ├── RefetchMode.kt │ │ ├── RefetchOptions.kt │ │ ├── RefetchQueryFilters.kt │ │ ├── Register.kt │ │ ├── Removable.kt │ │ ├── ResetOptions.kt │ │ ├── ResultOptions.kt │ │ ├── RetryDelayFunction.kt │ │ ├── RetryDelayValue.kt │ │ ├── RetryValue.kt │ │ ├── Retryer.kt │ │ ├── RetryerConfig.kt │ │ ├── ScheduleFunction.kt │ │ ├── SetDataOptions.kt │ │ ├── SetStateAction.kt │ │ ├── SetStateOptions.kt │ │ ├── ShouldRetryFunction.kt │ │ ├── StaleTime.kt │ │ ├── StreamedQueryOptions.kt │ │ ├── Subscribable.kt │ │ ├── SuccessAction.kt │ │ ├── SuccessAction_1.kt │ │ ├── ThrowOnError.kt │ │ ├── TransformerFn.kt │ │ ├── UnsetMarker.kt │ │ ├── Updater.kt │ │ ├── addToEnd.kt │ │ ├── addToStart.kt │ │ ├── aliases.kt │ │ ├── canFetch.kt │ │ ├── createNotifyManager.kt │ │ ├── createRetryer.kt │ │ ├── dataTagErrorSymbol.val.kt │ │ ├── dataTagSymbol.val.kt │ │ ├── defaultScheduler.val.kt │ │ ├── defaultShouldDehydrateMutation.kt │ │ ├── defaultShouldDehydrateQuery.kt │ │ ├── dehydrate.kt │ │ ├── fetchState.kt │ │ ├── focusManager.val.kt │ │ ├── functionalUpdate.kt │ │ ├── getDefaultState.kt │ │ ├── hasNextPage.kt │ │ ├── hasPreviousPage.kt │ │ ├── hashKey.kt │ │ ├── hashQueryKeyByOptions.kt │ │ ├── hydrate.kt │ │ ├── infiniteQueryBehavior.kt │ │ ├── isCancelledError.kt │ │ ├── isPlainArray.kt │ │ ├── isPlainObject.kt │ │ ├── isServer.val.kt │ │ ├── isValidTimeout.kt │ │ ├── keepPreviousData.kt │ │ ├── matchMutation.kt │ │ ├── matchQuery.kt │ │ ├── noop.kt │ │ ├── notifyManager.val.kt │ │ ├── onlineManager.val.kt │ │ ├── partialMatchKey.kt │ │ ├── replaceData.kt │ │ ├── replaceEqualDeep.kt │ │ ├── resolveEnabled.kt │ │ ├── resolveStaleTime.kt │ │ ├── shallowEqualObjects.kt │ │ ├── skipToken.val.kt │ │ ├── sleep.kt │ │ ├── streamedQuery.kt │ │ ├── timeUntilStale.kt │ │ └── unsetMarker.val.kt │ └── react │ └── query │ ├── DefinedUseInfiniteQueryResult.kt │ ├── DefinedUseQueryResult.kt │ ├── HydrationBoundary.val.kt │ ├── HydrationBoundaryProps.kt │ ├── IsRestoringProvider.val.kt │ ├── MutationStateOptions.kt │ ├── QueryClientContext.val.kt │ ├── QueryClientProvider.val.kt │ ├── QueryClientProviderProps.kt │ ├── QueryErrorClearResetFunction.kt │ ├── QueryErrorIsResetFunction.kt │ ├── QueryErrorResetBoundary.val.kt │ ├── QueryErrorResetBoundaryFunction.kt │ ├── QueryErrorResetBoundaryProps.kt │ ├── QueryErrorResetBoundaryValue.kt │ ├── QueryErrorResetFunction.kt │ ├── UseBaseMutationResult.kt │ ├── UseBaseQueryOptions.kt │ ├── UseBaseQueryResult.kt │ ├── UseInfiniteQueryOptions.kt │ ├── UseInfiniteQueryResult.kt │ ├── UseMutateAsyncFunction.kt │ ├── UseMutateFunction.kt │ ├── UseMutationOptions.kt │ ├── UseMutationResult.kt │ ├── UseQueryOptions.kt │ ├── UseQueryResult.kt │ ├── UseSuspenseInfiniteQueryOptions.kt │ ├── UseSuspenseInfiniteQueryResult.kt │ ├── UseSuspenseQueryOptions.kt │ ├── UseSuspenseQueryResult.kt │ ├── useBaseQuery.kt │ ├── useInfiniteQuery.kt │ ├── useIsFetching.kt │ ├── useIsMutating.kt │ ├── useIsRestoring.val.kt │ ├── useMutation.kt │ ├── useMutationState.kt │ ├── usePrefetchInfiniteQuery.kt │ ├── usePrefetchQuery.kt │ ├── useQuery.kt │ ├── useQueryClient.kt │ ├── useQueryErrorResetBoundary.val.kt │ ├── useSuspenseInfiniteQuery.kt │ └── useSuspenseQuery.kt ├── react-table-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ └── commonMain │ └── kotlin │ └── tanstack │ └── table │ └── core │ ├── AccessorColumnDef.kt │ ├── AccessorFn.kt │ ├── AccessorFnColumnDef.kt │ ├── AccessorFnColumnDefBase.kt │ ├── AccessorKeyColumnDef.kt │ ├── AccessorKeyColumnDefBase.kt │ ├── AggregationFn.kt │ ├── AggregationFnOption.kt │ ├── AggregationFns.type.kt │ ├── AnyFunction.kt │ ├── AnyRender.kt │ ├── Cell.kt │ ├── CellContext.kt │ ├── Column.kt │ ├── ColumnDef.kt │ ├── ColumnDefBase.kt │ ├── ColumnDefExtensions.kt │ ├── ColumnDefResolved.kt │ ├── ColumnDefTemplate.kt │ ├── ColumnDefaultOptions.kt │ ├── ColumnFaceting.kt │ ├── ColumnFilter.kt │ ├── ColumnFilterAutoRemoveTestFn.kt │ ├── ColumnFiltering.kt │ ├── ColumnFiltersColumn.kt │ ├── ColumnFiltersColumnDef.kt │ ├── ColumnFiltersInstance.kt │ ├── ColumnFiltersOptions.kt │ ├── ColumnFiltersOptionsBase.kt │ ├── ColumnFiltersRow.kt │ ├── ColumnFiltersState.kt │ ├── ColumnFiltersTableState.kt │ ├── ColumnGrouping.kt │ ├── ColumnIdentifiers.kt │ ├── ColumnMeta.kt │ ├── ColumnOrderColumn.kt │ ├── ColumnOrderDefaultOptions.kt │ ├── ColumnOrderInstance.kt │ ├── ColumnOrderOptions.kt │ ├── ColumnOrderPosition.kt │ ├── ColumnOrderState.kt │ ├── ColumnOrderTableState.kt │ ├── ColumnOrdering.kt │ ├── ColumnPinning.kt │ ├── ColumnPinningColumn.kt │ ├── ColumnPinningColumnDef.kt │ ├── ColumnPinningDefaultOptions.kt │ ├── ColumnPinningInstance.kt │ ├── ColumnPinningOptions.kt │ ├── ColumnPinningPosition.kt │ ├── ColumnPinningRow.kt │ ├── ColumnPinningState.kt │ ├── ColumnPinningTableState.kt │ ├── ColumnResizeDirection.kt │ ├── ColumnResizeMode.kt │ ├── ColumnSizing.kt │ ├── ColumnSizingColumn.kt │ ├── ColumnSizingColumnDef.kt │ ├── ColumnSizingDefaultOptions.kt │ ├── ColumnSizingHeader.kt │ ├── ColumnSizingInfoState.kt │ ├── ColumnSizingInstance.kt │ ├── ColumnSizingOptions.kt │ ├── ColumnSizingState.kt │ ├── ColumnSizingTableState.kt │ ├── ColumnSort.kt │ ├── ColumnVisibility.kt │ ├── CompleteInitialTableState.kt │ ├── CoreCell.kt │ ├── CoreColumn.kt │ ├── CoreHeader.kt │ ├── CoreHeaderGroup.kt │ ├── CoreInstance.kt │ ├── CoreOptions.kt │ ├── CoreOptionsResolved.kt │ ├── CoreRow.kt │ ├── CoreTableState.kt │ ├── CustomAggregationFns.kt │ ├── CustomFilterFns.kt │ ├── CustomSortingFns.kt │ ├── DisplayColumnDef.kt │ ├── ExpandedInstance.kt │ ├── ExpandedOptions.kt │ ├── ExpandedRow.kt │ ├── ExpandedState.kt │ ├── ExpandedStateList.kt │ ├── ExpandedTableState.kt │ ├── FacetedColumn.kt │ ├── FacetedOptions.kt │ ├── FeatureOptions.kt │ ├── FilterFn.kt │ ├── FilterFnOption.kt │ ├── FilterFns.type.kt │ ├── FilterMeta.kt │ ├── Getter.kt │ ├── GlobalFaceting.kt │ ├── GlobalFacetingInstance.kt │ ├── GlobalFilterColumn.kt │ ├── GlobalFilterColumnDef.kt │ ├── GlobalFilterInstance.kt │ ├── GlobalFilterOptions.kt │ ├── GlobalFilterTableState.kt │ ├── GlobalFiltering.kt │ ├── GroupColumnDef.kt │ ├── GroupColumnDefBase.kt │ ├── GroupingCell.kt │ ├── GroupingColumn.kt │ ├── GroupingColumnDef.kt │ ├── GroupingColumnMode.kt │ ├── GroupingInstance.kt │ ├── GroupingOptions.kt │ ├── GroupingOptionsBase.kt │ ├── GroupingRow.kt │ ├── GroupingState.kt │ ├── GroupingTableState.kt │ ├── Header.kt │ ├── HeaderContext.kt │ ├── HeaderGroup.kt │ ├── Headers.kt │ ├── HeadersInstance.kt │ ├── IdIdentifier.kt │ ├── IdentifiedColumnDef.kt │ ├── InitialTableState.kt │ ├── OnChangeFn.kt │ ├── PaginationDefaultOptions.kt │ ├── PaginationInitialTableState.kt │ ├── PaginationInstance.kt │ ├── PaginationOptions.kt │ ├── PaginationState.kt │ ├── PaginationTableState.kt │ ├── ResolvedAggregationFns.type.kt │ ├── ResolvedColumnFilter.kt │ ├── ResolvedFilterFns.type.kt │ ├── ResolvedSortingFns.type.kt │ ├── Row.kt │ ├── RowData.kt │ ├── RowExpanding.kt │ ├── RowModel.kt │ ├── RowPagination.kt │ ├── RowPinning.kt │ ├── RowPinningDefaultOptions.kt │ ├── RowPinningInstance.kt │ ├── RowPinningOptions.kt │ ├── RowPinningPosition.kt │ ├── RowPinningRow.kt │ ├── RowPinningState.kt │ ├── RowPinningTableState.kt │ ├── RowSelection.kt │ ├── RowSelectionInstance.kt │ ├── RowSelectionOptions.kt │ ├── RowSelectionRow.kt │ ├── RowSelectionState.kt │ ├── RowSelectionTableState.kt │ ├── RowSorting.kt │ ├── SortDirection.kt │ ├── SortingColumn.kt │ ├── SortingColumnDef.kt │ ├── SortingFn.kt │ ├── SortingFnOption.kt │ ├── SortingFns.type.kt │ ├── SortingInstance.kt │ ├── SortingOptions.kt │ ├── SortingOptionsBase.kt │ ├── SortingState.kt │ ├── SortingTableState.kt │ ├── StringHeaderIdentifier.kt │ ├── StringOrTemplateHeader.kt │ ├── Table.kt │ ├── TableFeature.kt │ ├── TableMeta.kt │ ├── TableOptions.kt │ ├── TableOptionsResolved.kt │ ├── TableState.kt │ ├── TransformFilterValueFn.kt │ ├── Updater.kt │ ├── VisibilityColumn.kt │ ├── VisibilityColumnDef.kt │ ├── VisibilityDefaultOptions.kt │ ├── VisibilityInstance.kt │ ├── VisibilityOptions.kt │ ├── VisibilityRow.kt │ ├── VisibilityState.kt │ ├── VisibilityTableState.kt │ ├── aggregationFns.kt │ ├── buildHeaderGroups.kt │ ├── createCell.kt │ ├── createColumn.kt │ ├── createRow.kt │ ├── createTable.kt │ ├── defaultColumnSizing.kt │ ├── expandRows.kt │ ├── filterFns.kt │ ├── filterRows.kt │ ├── flattenBy.kt │ ├── functionalUpdate.kt │ ├── getCoreRowModel.kt │ ├── getExpandedRowModel.kt │ ├── getFacetedMinMaxValues.kt │ ├── getFacetedRowModel.kt │ ├── getFacetedUniqueValues.kt │ ├── getFilteredRowModel.kt │ ├── getGroupedRowModel.kt │ ├── getPaginationRowModel.kt │ ├── getSortedRowModel.kt │ ├── isRowSelected.kt │ ├── isSubRowSelected.kt │ ├── noop.kt │ ├── orderColumns.kt │ ├── passiveEventSupported.kt │ ├── reSplitAlphaNumeric.kt │ ├── selectRowsFn.kt │ ├── shouldAutoRemoveFilter.kt │ └── sortingFns.kt ├── react-virtual-kotlin ├── build.gradle.kts ├── gradle.properties └── src │ └── jsMain │ └── kotlin │ └── tanstack │ ├── react │ └── virtual │ │ ├── UseVirtualizerOptions.kt │ │ └── UseWindowVirtualizerOptions.kt │ └── virtual │ └── core │ ├── ItemRange.kt │ ├── Key.kt │ ├── ObserveOffsetCallBack.kt │ ├── Range.kt │ ├── Rect.kt │ ├── ScrollAlignment.kt │ ├── ScrollDirection.kt │ ├── ScrollOptions.kt │ ├── ScrollToIndexOptions.kt │ ├── ScrollToOffsetOptions.kt │ ├── ScrollToOptions.kt │ ├── Updatable.kt │ ├── VirtualItem.kt │ ├── Virtualizer.kt │ ├── VirtualizerOptions.kt │ ├── defaultKeyExtractor.kt │ ├── defaultRangeExtractor.kt │ ├── elementScroll.kt │ ├── measureElement.kt │ ├── observeElementOffset.kt │ ├── observeElementRect.kt │ ├── observeWindowOffset.kt │ ├── observeWindowRect.kt │ └── windowScroll.kt └── settings.gradle.kts /.gitattributes: -------------------------------------------------------------------------------- 1 | # 2 | # https://help.github.com/articles/dealing-with-line-endings/ 3 | # 4 | # These are explicitly windows files and should use crlf 5 | *.bat text eol=crlf 6 | 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle/ 2 | .kotlin/ 3 | build/ 4 | 5 | # IDEA ignore list 6 | .idea/* 7 | !.idea/icon.png 8 | *.iml 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Moved to [Kotlin Wrappers](https://github.com/JetBrains/kotlin-wrappers/tree/master/karakum-legacy) 2 | -------------------------------------------------------------------------------- /actions-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=actions-kotlin 2 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/DEFAULT_COMPRESSION_LEVEL.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.artifact 4 | 5 | const val DEFAULT_COMPRESSION_LEVEL = 6 6 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/client.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external val client: ArtifactClient 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/getBackendIdsFromToken.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun getBackendIdsFromToken(): BackendIds 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/getConcurrency.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun getConcurrency(): Number 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/getGitHubWorkspaceDir.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun getGitHubWorkspaceDir(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/getResultsServiceUrl.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun getResultsServiceUrl(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/getRuntimeToken.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun getRuntimeToken(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/getUploadChunkSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun getUploadChunkSize(): Number 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/getUploadChunkTimeout.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun getUploadChunkTimeout(): Number 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/getUserAgentString.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun getUserAgentString(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/isGhes.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun isGhes(): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/maskSigUrl.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun maskSigUrl(url: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/validateArtifactName.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun validateArtifactName(name: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/validateFilePath.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun validateFilePath(path: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/artifact/validateRootDirectory.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/artifact") 4 | 5 | package actions.artifact 6 | 7 | external fun validateRootDirectory(rootDirectory: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/CacheFileSizeLimit.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external val CacheFileSizeLimit: Number 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/DefaultRetryAttempts.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.cache 4 | 5 | const val DefaultRetryAttempts = 2 6 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/DefaultRetryDelay.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.cache 4 | 5 | const val DefaultRetryDelay = 5000 6 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/GnuTarPathOnWindows.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external val GnuTarPathOnWindows: String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/ManifestFilename.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.cache 4 | 5 | const val ManifestFilename = "manifest.txt" 6 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/SocketTimeout.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.cache 4 | 5 | const val SocketTimeout = 5000 6 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/SystemTarPathOnWindows.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external val SystemTarPathOnWindows: String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/TarFilename.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.cache 4 | 5 | const val TarFilename = "cache.tar" 6 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/getArchiveFileSizeInBytes.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun getArchiveFileSizeInBytes(filePath: String): Number 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/getCacheFileName.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun getCacheFileName(compressionMethod: CompressionMethod): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/getCacheServiceURL.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun getCacheServiceURL(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/getCacheServiceVersion.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun getCacheServiceVersion(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/getDownloadOptions.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun getDownloadOptions(copy: DownloadOptions = definedExternally): DownloadOptions 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/getRuntimeToken.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun getRuntimeToken(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/getUploadOptions.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun getUploadOptions(copy: UploadOptions = definedExternally): UploadOptions 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/getUserAgentString.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun getUserAgentString(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/isFeatureAvailable.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun isFeatureAvailable(): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/isGhes.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun isGhes(): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/isRetryableStatusCode.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun isRetryableStatusCode(statusCode: Number = definedExternally): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/isSuccessStatusCode.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun isSuccessStatusCode(statusCode: Number = definedExternally): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/cache/maskSigUrl.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/cache") 4 | 5 | package actions.cache 6 | 7 | external fun maskSigUrl(url: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/CommandProperties.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.core 4 | 5 | import js.objects.Record 6 | 7 | typealias CommandProperties = Record 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/SUMMARY_ENV_VAR.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.core 4 | 5 | const val SUMMARY_ENV_VAR = "GITHUB_STEP_SUMMARY" 6 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/SummaryTableRow.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package actions.core 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias SummaryTableRow = ReadonlyArray 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/addPath.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun addPath(inputPath: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/arch.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external val arch: String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/debug.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun debug(message: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/endGroup.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun endGroup() 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/exportVariable.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun exportVariable( 8 | name: String, 9 | value: Any?, 10 | ) 11 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/getState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun getState(name: String): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/info.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun info(message: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/isDebug.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun isDebug(): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/isLinux.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external val isLinux: Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/isMacOS.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external val isMacOS: Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/isWindows.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external val isWindows: Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/issue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun issue( 8 | name: String, 9 | message: String = definedExternally, 10 | ) 11 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/markdownSummary.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external val markdownSummary: Summary 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/platform.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external val platform: node.process.Platform 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/saveState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun saveState( 8 | name: String, 9 | value: Any?, 10 | ) 11 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/setCommandEcho.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun setCommandEcho(enabled: Boolean) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/setOutput.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun setOutput( 8 | name: String, 9 | value: Any?, 10 | ) 11 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/setSecret.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun setSecret(secret: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/startGroup.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun startGroup(name: String) 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/summary.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external val summary: Summary 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/toCommandValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun toCommandValue(input: Any?): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/toPlatformPath.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun toPlatformPath(pth: String): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/toPosixPath.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun toPosixPath(pth: String): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/core/toWin32Path.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/core") 4 | 5 | package actions.core 6 | 7 | external fun toWin32Path(pth: String): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/github/context.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/github") 4 | 5 | package actions.github 6 | 7 | external val context: Context 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/github/getApiBaseUrl.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/github") 4 | 5 | package actions.github 6 | 7 | external fun getApiBaseUrl(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/github/getProxyAgent.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/github") 4 | 5 | package actions.github 6 | 7 | external fun getProxyAgent(destinationUrl: String): node.http.Agent 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/github/getProxyFetch.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/github") 4 | 5 | package actions.github 6 | 7 | external fun getProxyFetch(destinationUrl: Any?): Any /* typeof fetch */ 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/glob/dirname.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/glob") 4 | 5 | package actions.glob 6 | 7 | external fun dirname(p: String): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/glob/getOptions.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/glob") 4 | 5 | package actions.glob 6 | 7 | external fun getOptions(copy: GlobOptions = definedExternally): GlobOptions 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/glob/hasAbsoluteRoot.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/glob") 4 | 5 | package actions.glob 6 | 7 | external fun hasAbsoluteRoot(itemPath: String): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/glob/hasRoot.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/glob") 4 | 5 | package actions.glob 6 | 7 | external fun hasRoot(itemPath: String): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/glob/normalizeSeparators.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/glob") 4 | 5 | package actions.glob 6 | 7 | external fun normalizeSeparators(p: String): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/glob/safeTrimTrailingSeparator.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/glob") 4 | 5 | package actions.glob 6 | 7 | external fun safeTrimTrailingSeparator(p: String): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/http/client/isHttps.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/http-client") 4 | 5 | package actions.http.client 6 | 7 | external fun isHttps(requestUrl: String): Boolean 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/tool/cache/_getOsVersion.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/tool-cache") 4 | 5 | package actions.tool.cache 6 | 7 | external fun _getOsVersion(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/tool/cache/_readLinuxVersionFile.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/tool-cache") 4 | 5 | package actions.tool.cache 6 | 7 | external fun _readLinuxVersionFile(): String 8 | -------------------------------------------------------------------------------- /actions-kotlin/src/jsMain/kotlin/actions/tool/cache/isExplicitVersion.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@actions/tool-cache") 4 | 5 | package actions.tool.cache 6 | 7 | external fun isExplicitVersion(versionSpec: String): Boolean 8 | -------------------------------------------------------------------------------- /browser-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=browser-kotlin 2 | kfc.wasmjs=true 3 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/js/intl/DateTimeFormatPart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package js.intl 4 | 5 | sealed external interface DateTimeFormatPart { 6 | var type: String /* DateTimeFormatPartTypes */ 7 | var value: String 8 | } 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/js/intl/DateTimeRangeFormatPart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package js.intl 4 | 5 | sealed external interface DateTimeRangeFormatPart : 6 | DateTimeFormatPart { 7 | var source: PartSource 8 | } 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/js/intl/NumberFormatOptionsStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package js.intl 4 | 5 | import js.core.JsString 6 | 7 | typealias NumberFormatOptionsStyle = JsString /* keyof NumberFormatOptionsStyleRegistry */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/js/intl/NumberFormatPart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package js.intl 4 | 5 | sealed external interface NumberFormatPart { 6 | var type: NumberFormatPartType 7 | var value: String 8 | } 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/js/intl/NumberFormatPartType.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package js.intl 4 | 5 | import js.core.JsString 6 | 7 | typealias NumberFormatPartType = JsString /* keyof NumberFormatPartTypeRegistry */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/js/intl/NumberRangeFormatPart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package js.intl 4 | 5 | sealed external interface NumberRangeFormatPart : 6 | NumberFormatPart { 7 | var source: PartSource 8 | } 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/js/intl/StringNumericLiteral.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package js.intl 4 | 5 | import js.core.JsAny 6 | 7 | typealias StringNumericLiteral = JsAny /* `${number}` | "Infinity" | "-Infinity" | "+Infinity" */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/js/intl/UnicodeBCP47LocaleIdentifier.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package js.intl 4 | 5 | import js.core.JsString 6 | 7 | typealias UnicodeBCP47LocaleIdentifier = JsString 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/animations/CSSNumberish.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.animations 4 | 5 | typealias CSSNumberish = Double 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/animations/FrameRequestId.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.animations 4 | 5 | sealed external interface FrameRequestId 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/assembly/ExportValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.assembly 4 | 5 | import js.core.JsAny 6 | 7 | typealias ExportValue = JsAny /* Function | Global | Memory | Table */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/assembly/Exports.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.assembly 4 | 5 | import js.core.JsString 6 | import js.objects.ReadonlyRecord 7 | 8 | typealias Exports = ReadonlyRecord 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/assembly/ImportValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.assembly 4 | 5 | import js.core.JsAny 6 | 7 | typealias ImportValue = JsAny /* ExportValue | number */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/assembly/Imports.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.assembly 4 | 5 | import js.core.JsString 6 | import js.objects.ReadonlyRecord 7 | 8 | typealias Imports = ReadonlyRecord 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/assembly/ModuleImports.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.assembly 4 | 5 | import js.core.JsString 6 | import js.objects.ReadonlyRecord 7 | 8 | typealias ModuleImports = ReadonlyRecord 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/audio/AudioWorkletProcessorConstructor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.audio 4 | 5 | import js.reflect.JsClass 6 | 7 | typealias AudioWorkletProcessorConstructor = JsClass 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/audio/DecodeErrorCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.audio 4 | 5 | import web.errors.DOMException 6 | 7 | typealias DecodeErrorCallback = ( 8 | error: DOMException, 9 | ) -> Unit 10 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/audio/DecodeSuccessCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.audio 4 | 5 | typealias DecodeSuccessCallback = ( 6 | decodedData: AudioBuffer, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/authn/Base64URLString.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.authn 4 | 5 | import js.core.JsString 6 | 7 | typealias Base64URLString = JsString 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/authn/COSEAlgorithmIdentifier.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.authn 4 | 5 | import js.core.JsInt 6 | 7 | typealias COSEAlgorithmIdentifier = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/authn/PublicKeyCredentialJSON.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.authn 4 | 5 | import js.core.JsAny 6 | 7 | typealias PublicKeyCredentialJSON = JsAny 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/blob/BlobPart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.blob 4 | 5 | import js.core.JsAny 6 | 7 | typealias BlobPart = JsAny /* BufferSource | Blob | string */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/clipboard/ClipboardItems.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.clipboard 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias ClipboardItems = ReadonlyArray 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/codecs/AudioDataOutputCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.codecs 4 | 5 | typealias AudioDataOutputCallback = ( 6 | output: AudioData, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/codecs/ImageBufferSource.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.codecs 4 | 5 | import js.core.JsAny 6 | 7 | typealias ImageBufferSource = JsAny /* AllowSharedBufferSource | ReadableStream */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/codecs/VideoFrameOutputCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.codecs 4 | 5 | typealias VideoFrameOutputCallback = ( 6 | output: VideoFrame, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/codecs/WebCodecsErrorCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.codecs 4 | 5 | import web.errors.DOMException 6 | 7 | typealias WebCodecsErrorCallback = ( 8 | error: DOMException, 9 | ) -> Unit 10 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/components/CustomElementConstructor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.components 4 | 5 | import js.reflect.JsClass 6 | 7 | typealias CustomElementConstructor = JsClass 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/console/console.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.console 4 | 5 | external val console: Console 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/cookie/CookieList.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cookie 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias CookieList = ReadonlyArray 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/crypto/Algorithm.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.crypto 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface Algorithm { 9 | val name: String 10 | } 11 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/crypto/BigInteger.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.crypto 4 | 5 | import js.typedarrays.Uint8Array 6 | 7 | typealias BigInteger = Uint8Array<*> 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/crypto/Ed25519.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.crypto 4 | 5 | import seskar.js.JsValue 6 | 7 | @JsValue("Ed25519") 8 | external object Ed25519 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/crypto/HashAlgorithmIdentifier.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.crypto 4 | 5 | import js.core.JsAny 6 | 7 | typealias HashAlgorithmIdentifier = JsAny /* AlgorithmIdentifier */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/crypto/KeyAlgorithm.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.crypto 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface KeyAlgorithm { 9 | val name: String 10 | } 11 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/crypto/NamedCurve.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.crypto 4 | 5 | import js.core.JsString 6 | 7 | typealias NamedCurve = JsString 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/crypto/crypto.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.crypto 4 | 5 | /** 6 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) 7 | */ 8 | external val crypto: Crypto 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/cssom/CSSKeywordish.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | import js.core.JsAny 6 | 7 | typealias CSSKeywordish = JsAny /* string | CSSKeywordValue */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/cssom/CSSNumberish.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | import js.core.JsAny 6 | 7 | typealias CSSNumberish = JsAny /* number | CSSNumericValue */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/cssom/CSSPerspectiveValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | import js.core.JsAny 6 | 7 | typealias CSSPerspectiveValue = JsAny /* CSSNumericValue | CSSKeywordish */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/cssom/CSSUnparsedSegment.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | import js.core.JsAny 6 | 7 | typealias CSSUnparsedSegment = JsAny /* string | CSSVariableReferenceValue */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/data/FunctionStringCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.data 4 | 5 | typealias FunctionStringCallback = ( 6 | data: String, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/dom/ElementNamespace.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.dom 4 | 5 | external interface ElementNamespace 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/dom/NodeFilter.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.dom 4 | 5 | typealias NodeFilter = (node: Node) -> Short 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/dom/NodeListOf.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.dom 4 | 5 | typealias NodeListOf = NodeList 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/dom/NodeType.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.dom 4 | 5 | sealed external interface NodeType 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/dom/document.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.dom 4 | 5 | /** 6 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/document) 7 | */ 8 | external val document: Document 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/events/EventPhase.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.events 4 | 5 | sealed external interface EventPhase 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/events/HasTargets.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.events 4 | 5 | external interface HasTargets { 6 | val currentTarget: C 7 | val target: T 8 | } 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/form/FormDataEntryValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.form 4 | 5 | import js.core.JsAny 6 | 7 | typealias FormDataEntryValue = JsAny /* File | string */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/fs/ErrorCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.fs 4 | 5 | import web.errors.DOMException 6 | 7 | typealias ErrorCallback = ( 8 | err: DOMException, 9 | ) -> Unit 10 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/fs/FileCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.fs 4 | 5 | import web.file.File 6 | 7 | typealias FileCallback = ( 8 | file: File, 9 | ) -> Unit 10 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/fs/FileSystemEntryCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.fs 4 | 5 | typealias FileSystemEntryCallback = ( 6 | entry: FileSystemEntry, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/fs/FileSystemWriteChunkType.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.fs 4 | 5 | import js.core.JsAny 6 | 7 | typealias FileSystemWriteChunkType = JsAny /* BufferSource | Blob | string | WriteParams */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/function/VoidFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.function 4 | 5 | typealias VoidFunction = () -> Unit 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/geolocation/GeolocationWatchId.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.geolocation 4 | 5 | sealed external interface GeolocationWatchId 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/geolocation/PositionCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.geolocation 4 | 5 | typealias PositionCallback = ( 6 | position: GeolocationPosition, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/geolocation/PositionErrorCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.geolocation 4 | 5 | typealias PositionErrorCallback = ( 6 | positionError: GeolocationPositionError, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/EXT_blend_minmax.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface EXT_blend_minmax { 6 | val MIN_EXT: GLenum 7 | val MAX_EXT: GLenum 8 | } 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/EXT_color_buffer_float.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface EXT_color_buffer_float 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/EXT_float_blend.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface EXT_float_blend 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/EXT_frag_depth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface EXT_frag_depth 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/EXT_shader_texture_lod.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface EXT_shader_texture_lod 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/GLbitfield.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | import js.core.Bitmask 6 | 7 | sealed external interface GLbitfield : 8 | Bitmask 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/GLenum.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface GLenum 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/KHR_parallel_shader_compile.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface KHR_parallel_shader_compile { 6 | val COMPLETION_STATUS_KHR: GLenum 7 | } 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/OES_element_index_uint.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface OES_element_index_uint 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/OES_fbo_render_mipmap.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface OES_fbo_render_mipmap 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/OES_standard_derivatives.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface OES_standard_derivatives { 6 | val FRAGMENT_SHADER_DERIVATIVE_HINT_OES: GLenum 7 | } 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/OES_texture_float.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface OES_texture_float 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/OES_texture_float_linear.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface OES_texture_float_linear 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/OES_texture_half_float.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface OES_texture_half_float { 6 | val HALF_FLOAT_OES: GLenum 7 | } 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/OES_texture_half_float_linear.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface OES_texture_half_float_linear 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WEBGL_compressed_texture_etc1.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface WEBGL_compressed_texture_etc1 { 6 | val COMPRESSED_RGB_ETC1_WEBGL: GLenum 7 | } 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WEBGL_depth_texture.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface WEBGL_depth_texture { 6 | val UNSIGNED_INT_24_8_WEBGL: GLenum 7 | } 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLBuffer.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLBuffer 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLFramebuffer.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLFramebuffer 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLProgram.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLProgram 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLQuery.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLQuery 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLRenderbuffer.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLRenderbuffer 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLSampler.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLSampler 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLShader.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLShader 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLSync.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLSync 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLTexture.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLTexture 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLTransformFeedback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLTransformFeedback 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLUniformLocation.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLUniformLocation 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLVertexArrayObject.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | external class WebGLVertexArrayObject 6 | private constructor() 7 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gl/WebGLVertexArrayObjectOES.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gl 4 | 5 | sealed external interface WebGLVertexArrayObjectOES 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/globals/origin.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.globals 4 | 5 | /** 6 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) 7 | */ 8 | external val origin: String 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUBufferDynamicOffset.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUBufferDynamicOffset = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUBufferUsageFlags.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUBufferUsageFlags = JsInt /* Bitmask */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | typealias GPUColor = GPUColorDict /* number[] */ 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUColorWriteFlags.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUColorWriteFlags = JsInt /* Bitmask */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUDepthBias.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUDepthBias = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUExtent3D.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | typealias GPUExtent3D = GPUExtent3DDict /* GPUIntegerCoordinate[] */ 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUExternalTextureBindingLayout.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface GPUExternalTextureBindingLayout 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUFlagsConstant.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUFlagsConstant = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUIndex32.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUIndex32 = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUIntegerCoordinate.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUIntegerCoordinate = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUIntegerCoordinateOut.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUIntegerCoordinateOut = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUMapModeFlags.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUMapModeFlags = JsInt /* Bitmask */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUOrigin2D.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | typealias GPUOrigin2D = GPUOrigin2DDict /* GPUIntegerCoordinate[] */ 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUOrigin3D.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | typealias GPUOrigin3D = GPUOrigin3DDict /* GPUIntegerCoordinate[] */ 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUPipelineConstantValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUPipelineConstantValue = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUSampleMask.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUSampleMask = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUShaderStageFlags.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUShaderStageFlags = JsInt /* Bitmask */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUSignedOffset32.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUSignedOffset32 = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUSize32.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUSize32 = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUSize32Out.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUSize32Out = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUSize64.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsUInt53 6 | 7 | typealias GPUSize64 = JsUInt53 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUSize64Out.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsUInt53 6 | 7 | typealias GPUSize64Out = JsUInt53 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUStencilValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUStencilValue = JsInt 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/gpu/GPUTextureUsageFlags.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.gpu 4 | 5 | import js.core.JsInt 6 | 7 | typealias GPUTextureUsageFlags = JsInt /* Bitmask */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/history/history.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.history 4 | 5 | /** 6 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/history) 7 | */ 8 | external val history: History 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/html/Audio.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.html 4 | 5 | import kotlin.js.definedExternally 6 | 7 | external class Audio( 8 | src: String = definedExternally, 9 | ) : HTMLAudioElement 10 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/html/BlobCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.html 4 | 5 | import web.blob.Blob 6 | 7 | typealias BlobCallback = ( 8 | blob: Blob?, 9 | ) -> Unit 10 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/html/HTMLCollectionOf.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.html 4 | 5 | typealias HTMLCollectionOf = HTMLCollection 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/html/MediaProvider.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.html 4 | 5 | import js.core.JsAny 6 | 7 | typealias MediaProvider = JsAny /* MediaStream | MediaSource | Blob */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/html/VideoFrameRequestId.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.html 4 | 5 | sealed external interface VideoFrameRequestId 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/idb/indexedDB.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.idb 4 | 5 | /** 6 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) 7 | */ 8 | external val indexedDB: IDBFactory 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/location/location.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.location 4 | 5 | /** 6 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/location) 7 | */ 8 | external val location: Location 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/locks/LockGrantedCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.locks 4 | 5 | typealias LockGrantedCallback = ( 6 | lock: Lock?, 7 | ) -> T 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/media/session/MediaSessionActionHandler.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.media.session 4 | 5 | typealias MediaSessionActionHandler = ( 6 | details: MediaSessionActionDetails, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/media/streams/ConstrainBoolean.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.media.streams 4 | 5 | import js.core.JsAny 6 | 7 | typealias ConstrainBoolean = JsAny /* boolean | ConstrainBooleanParameters */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/media/streams/ConstrainDouble.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.media.streams 4 | 5 | import js.core.JsAny 6 | 7 | typealias ConstrainDouble = JsAny /* number | ConstrainDoubleRange */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/media/streams/ConstrainULong.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.media.streams 4 | 5 | import js.core.JsAny 6 | 7 | typealias ConstrainULong = JsAny /* number | ConstrainULongRange */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/notifications/NotificationPermissionCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.notifications 4 | 5 | typealias NotificationPermissionCallback = ( 6 | permission: NotificationPermission, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/observable/Observable.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.observable 4 | 5 | import js.core.JsAny 6 | 7 | // PLACEHOLDER 8 | external class Observable 9 | // PLACEHOLDER 10 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/performance/PerformanceEntryList.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.performance 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias PerformanceEntryList = ReadonlyArray 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/push/PushMessageDataInit.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.push 4 | 5 | import js.core.JsAny 6 | 7 | typealias PushMessageDataInit = JsAny /* BufferSource | string */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/remoteplayback/RemotePlaybackAvailabilityCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.remoteplayback 4 | 5 | typealias RemotePlaybackAvailabilityCallback = ( 6 | available: Boolean, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/rendering/RenderingContextId.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.rendering 4 | 5 | import js.core.JsAny 6 | 7 | sealed external interface RenderingContextId 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/reporting/ReportList.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.reporting 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias ReportList = ReadonlyArray 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/rtc/RTCAnswerOptions.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.rtc 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface RTCAnswerOptions : 9 | RTCOfferAnswerOptions 10 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/rtc/RTCIceCandidatePair.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.rtc 4 | 5 | sealed external interface RTCIceCandidatePair { 6 | var local: RTCIceCandidate 7 | var remote: RTCIceCandidate 8 | } 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/rtc/RTCOfferAnswerOptions.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.rtc 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface RTCOfferAnswerOptions 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/rtc/RTCRtpTransform.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.rtc 4 | 5 | typealias RTCRtpTransform = RTCRtpScriptTransform 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/rtc/RTCSessionDescriptionCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.rtc 4 | 5 | typealias RTCSessionDescriptionCallback = ( 6 | description: RTCSessionDescriptionInit, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/rtc/RTCSetParameterOptions.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.rtc 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface RTCSetParameterOptions 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/scheduling/IdleRequestCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.scheduling 4 | 5 | typealias IdleRequestCallback = ( 6 | deadline: IdleDeadline, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/scheduling/IdleRequestId.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.scheduling 4 | 5 | sealed external interface IdleRequestId 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/screen/screen.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.screen 4 | 5 | /** 6 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/screen) 7 | */ 8 | external val screen: Screen 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/streams/QueuingStrategySize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.streams 4 | 5 | typealias QueuingStrategySize = ( 6 | chunk: T, 7 | ) -> Int 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/streams/ReadableStreamReader.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.streams 4 | 5 | typealias ReadableStreamReader = ReadableStreamGenericReader /* { 6 | fun releaseLock() 7 | } */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/streams/TransformerStartCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.streams 4 | 5 | typealias TransformerStartCallback = ( 6 | controller: TransformStreamDefaultController, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/streams/UnderlyingSinkStartCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.streams 4 | 5 | typealias UnderlyingSinkStartCallback = ( 6 | controller: WritableStreamDefaultController, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/streams/UnderlyingSourceStartCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.streams 4 | 5 | typealias UnderlyingSourceStartCallback = ( 6 | controller: ReadableStreamController, 7 | ) -> Unit 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/timers/Interval.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.timers 4 | 5 | sealed external interface Interval 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/timers/Timeout.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.timers 4 | 5 | sealed external interface Timeout 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/timers/TimerHandler.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.timers 4 | 5 | typealias TimerHandler = () -> Unit 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/uievents/DeltaMode.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.uievents 4 | 5 | sealed external interface DeltaMode 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/uievents/KeyLocation.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.uievents 4 | 5 | sealed external interface KeyLocation 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/vibration/VibratePattern.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.vibration 4 | 5 | import js.array.ReadonlyArray 6 | import js.core.JsInt 7 | 8 | typealias VibratePattern = ReadonlyArray /* | Int */ 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/viewtransition/ViewTransitionUpdateCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.viewtransition 4 | 5 | typealias ViewTransitionUpdateCallback = () -> Unit 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/vtt/LineAndPositionSetting.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.vtt 4 | 5 | import js.core.JsAny 6 | 7 | typealias LineAndPositionSetting = JsAny /* number | AutoKeyword */ 8 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/window/WindowProxy.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.window 4 | 5 | typealias WindowProxy = Window 6 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/window/window.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.window 4 | 5 | /** 6 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/window) 7 | */ 8 | external val window: Window 9 | -------------------------------------------------------------------------------- /browser-kotlin/src/commonMain/kotlin/web/xpath/XPathNSResolver.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.xpath 4 | 5 | typealias XPathNSResolver = (prefix: String?) -> String? 6 | -------------------------------------------------------------------------------- /build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | alias(libs.plugins.kotlin.multiplatform) apply false 3 | alias(libs.plugins.kotlin.jsPlainObjects) apply false 4 | } 5 | 6 | tasks.wrapper { 7 | gradleVersion = "8.13" 8 | } 9 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/Projects.kt: -------------------------------------------------------------------------------- 1 | import org.gradle.api.Project 2 | 3 | fun Project.version(target: String): String = 4 | property("$target.version") as String 5 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/Tasks.kt: -------------------------------------------------------------------------------- 1 | import org.gradle.api.Task 2 | import java.io.File 3 | 4 | val Task.nodeModules: File 5 | get() = project.rootProject.layout.buildDirectory 6 | .dir("js/node_modules").get().asFile 7 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/actions/CredentialHandlers.kt: -------------------------------------------------------------------------------- 1 | package karakum.actions 2 | 3 | internal val CREDENTIAL_HANDLERS = setOf( 4 | "BasicCredentialHandler", 5 | "BearerCredentialHandler", 6 | "PersonalAccessTokenCredentialHandler", 7 | ) 8 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/browser/ConversionResult.kt: -------------------------------------------------------------------------------- 1 | package karakum.browser 2 | 3 | internal data class ConversionResult( 4 | val name: String, 5 | val body: String, 6 | val pkg: String? = null, 7 | ) 8 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/cesium/HasMembers.kt: -------------------------------------------------------------------------------- 1 | package karakum.cesium 2 | 3 | internal interface HasMembers { 4 | val members: List 5 | } 6 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/common/ConversionResult.kt: -------------------------------------------------------------------------------- 1 | package karakum.common 2 | 3 | internal data class ConversionResult( 4 | val name: String, 5 | val body: String, 6 | ) 7 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/common/URI.kt: -------------------------------------------------------------------------------- 1 | package karakum.common 2 | 3 | import java.net.URI 4 | 5 | fun loadContent(uri: URI): String = 6 | uri.toURL().openStream() 7 | .use { stream -> String(stream.readAllBytes()) } 8 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/csstype/Background.kt: -------------------------------------------------------------------------------- 1 | package karakum.csstype 2 | 3 | internal const val BACKGROUND = "Background" 4 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/csstype/GridLine.kt: -------------------------------------------------------------------------------- 1 | package karakum.csstype 2 | 3 | internal const val GRID_LINE = "GridLine" 4 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/events/ExtendedIn.kt: -------------------------------------------------------------------------------- 1 | package karakum.events 2 | 3 | import kotlinx.serialization.Serializable 4 | 5 | @Serializable 6 | data class ExtendedIn( 7 | val spec: String, 8 | val href: String?, 9 | ) 10 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/events/Src.kt: -------------------------------------------------------------------------------- 1 | package karakum.events 2 | 3 | import kotlinx.serialization.Serializable 4 | 5 | @Serializable 6 | data class Src( 7 | val format: String?, 8 | val href: String?, 9 | ) 10 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/query/Declaration.kt: -------------------------------------------------------------------------------- 1 | package karakum.query 2 | 3 | abstract class Declaration { 4 | protected abstract val source: String 5 | 6 | abstract val name: String 7 | 8 | abstract fun toCode(): String 9 | } 10 | -------------------------------------------------------------------------------- /buildSrc/src/main/kotlin/karakum/virtual/ItemRange.kt: -------------------------------------------------------------------------------- 1 | package karakum.virtual 2 | 3 | internal const val ITEM_RANGE = "ItemRange" 4 | 5 | // language=typescript 6 | internal const val ITEM_RANGE_BODY = """{ 7 | startIndex: number; 8 | endIndex: number; 9 | }""" 10 | -------------------------------------------------------------------------------- /cesium-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=cesium-kotlin 2 | -------------------------------------------------------------------------------- /cesium-kotlin/src/commonMain/kotlin/cesium/engine/CameraOrientation.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package cesium.engine 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | sealed external interface CameraOrientation 9 | -------------------------------------------------------------------------------- /cesium-kotlin/src/commonMain/kotlin/cesium/engine/DefaultEvent.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package cesium.engine 4 | 5 | typealias DefaultEvent = Event<() -> Unit> 6 | -------------------------------------------------------------------------------- /csstype-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=csstype-kotlin 2 | kfc.wasmjs=true 3 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AccentColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface AccentColor 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/All.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface All 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AnimationDelay.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias AnimationDelay = TimeProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AnimationDuration.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias AnimationDuration = TimeProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AnimationName.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface AnimationName 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AnimationTimeline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface AnimationTimeline 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AscentOverride.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // "normal" | (string & {}) 6 | sealed external interface AscentOverride 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AspectRatio.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface AspectRatio 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AutoLength.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface AutoLength : 6 | AutoLengthProperty 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/AutoLengthProperty.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BackdropFilter.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BackdropFilter 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BackgroundBlendMode.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BackgroundBlendMode = BlendModeProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BackgroundColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BackgroundColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BackgroundImage.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BackgroundImage 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BackgroundPosition.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BackgroundPosition 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BasePalette.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // "dark" | "light" | (number & {}) | (string & {}) 6 | sealed external interface BasePalette 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BasicShape.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BasicShape : 6 | ClipPath, 7 | ShapeOutside, 8 | OffsetPath 9 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Bleed.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Bleed 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BlendModeProperty.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BlendModeProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BlockSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BlockSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlock.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlock = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockEnd = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockEndColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockEndColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockEndStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockEndStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockEndWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockEndWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockStart = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockStartColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockStartColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockStartStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockStartStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockStartWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockStartWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBlockWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBlockWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBottom.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBottom = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBottomColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBottomColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBottomLeftRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBottomLeftRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBottomRightRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBottomRightRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBottomStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBottomStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderBottomWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderBottomWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderEndEndRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderEndEndRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderEndStartRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderEndStartRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderImage.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // Globals | "none" | "repeat" | "round" | "space" | "stretch" | (string & {}) | (number & {}) 6 | sealed external interface BorderImage 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderImageOutset.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BorderImageOutset 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderImageSlice.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // Globals | (string & {}) | (number & {}) 6 | sealed external interface BorderImageSlice 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderImageSource.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BorderImageSource 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderImageWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface BorderImageWidth 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInline = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineEnd = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineEndColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineEndColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineEndStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineEndStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineEndWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineEndWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineStart = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineStartColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineStartColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineStartStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineStartStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineStartWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineStartWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderInlineWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderInlineWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderLeft.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderLeft = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderLeftColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderLeftColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderLeftStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderLeftStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderLeftWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderLeftWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderRight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderRight = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderRightColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderRightColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderRightStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderRightStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderRightWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderRightWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderSpacing.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderSpacing = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderStartEndRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderStartEndRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderStartStartRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderStartStartRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderTop.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderTop = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderTopColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderTopColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderTopLeftRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderTopLeftRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderTopRightRadius.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderTopRightRadius = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderTopStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderTopStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderTopWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderTopWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/BorderWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias BorderWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Bottom.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias Bottom = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/CaretColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface CaretColor 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ColorType.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ColorType : 6 | ColorProperty, 7 | AngularColorStop, 8 | LinearColorStop 9 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ColumnCount.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ColumnCount 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ColumnGap.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ColumnGap = Gap 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ColumnRule.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ColumnRule = Border 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ColumnRuleColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ColumnRuleColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ColumnRuleStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ColumnRuleStyle = LineStyleProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ColumnRuleWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ColumnRuleWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ColumnWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ColumnWidth = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Columns.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Columns 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ContainIntrinsicBlockSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ContainIntrinsicBlockSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ContainIntrinsicHeight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ContainIntrinsicHeight 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ContainIntrinsicInlineSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ContainIntrinsicInlineSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ContainIntrinsicSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ContainIntrinsicSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ContainIntrinsicWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ContainIntrinsicWidth 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Container.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Container 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ContainerName.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ContainerName 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/CounterIncrement.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface CounterIncrement 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/CounterReset.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface CounterReset 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/CounterSet.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface CounterSet 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/DescentOverride.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // "normal" | (string & {}) 6 | sealed external interface DescentOverride 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Filter.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Filter 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/FlexGrow.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface FlexGrow 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/FlexShrink.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface FlexShrink 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/FontOpticalSizing.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface FontOpticalSizing 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/FontSizeAdjust.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // Globals | "from-font" | "none" | (string & {}) | (number & {}) 6 | sealed external interface FontSizeAdjust 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/FontSynthesisPosition.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface FontSynthesisPosition 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/FontSynthesisSmallCaps.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface FontSynthesisSmallCaps 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/FontSynthesisStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface FontSynthesisStyle 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/FontSynthesisWeight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface FontSynthesisWeight 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ForcedColorAdjust.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ForcedColorAdjust 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Grid.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Grid 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridArea.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridArea = GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridAutoColumns.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridAutoColumns = GridAutoTracks 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridAutoRows.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridAutoRows = GridAutoTracks 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridAutoTracks.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface GridAutoTracks : 6 | GridTemplateTracks 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridColumn.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridColumn = GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridColumnEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridColumnEnd = GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridColumnStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridColumnStart = GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridLengthProperty.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface GridLengthProperty : 6 | GridAutoTracks, 7 | GridTemplateTracks 8 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridLine.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface GridLine : GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridLineProperty.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridRow.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridRow = GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridRowEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridRowEnd = GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridRowStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridRowStart = GridLineProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridTemplate.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface GridTemplate 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridTemplateAreas.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface GridTemplateAreas 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridTemplateColumns.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridTemplateColumns = GridTemplateTracks 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridTemplateRows.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias GridTemplateRows = GridTemplateTracks 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/GridTemplateTracks.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface GridTemplateTracks 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Height.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Height 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/HyphenateCharacter.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface HyphenateCharacter 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/HyphenateLimitChars.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface HyphenateLimitChars 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Inherits.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias Inherits = Boolean 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InitialLetter.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // Globals | "normal" | (string & {}) | (number & {}) 6 | sealed external interface InitialLetter 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InlineSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface InlineSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InputSecurity.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface InputSecurity 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InsetBlock.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias InsetBlock = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InsetBlockEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias InsetBlockEnd = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InsetBlockStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias InsetBlockStart = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InsetInline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias InsetInline = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InsetInlineEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias InsetInlineEnd = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/InsetInlineStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias InsetInlineStart = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Left.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias Left = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/LineClamp.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface LineClamp 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/LineGapOverride.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // "normal" | (string & {}) 6 | sealed external interface LineGapOverride 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/LineHeight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface LineHeight 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/LineHeightStep.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias LineHeightStep = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/LineStyleProperty.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface LineStyleProperty : 6 | Border, 7 | Outline, 8 | OutlineStyle 9 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/LineWidthProperty.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface LineWidthProperty : 6 | Border, 7 | Outline 8 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ListStyleImage.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ListStyleImage 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ListStyleType.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ListStyleType 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginBlock.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginBlock = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginBlockEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginBlockEnd = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginBlockStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginBlockStart = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginBottom.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginBottom = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginInline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginInline = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginInlineEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginInlineEnd = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginInlineStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginInlineStart = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginLeft.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginLeft = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginRight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginRight = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MarginTop.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias MarginTop = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaskBorderOutset.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaskBorderOutset 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaskBorderSlice.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // Globals | (string & {}) | (number & {}) 6 | sealed external interface MaskBorderSlice 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaskBorderSource.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaskBorderSource 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaskBorderWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaskBorderWidth 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaskImage.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaskImage 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaskPosition.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaskPosition 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaxBlockSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaxBlockSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaxHeight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaxHeight 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaxInlineSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaxInlineSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaxLines.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaxLines 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MaxWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MaxWidth 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MinBlockSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MinBlockSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MinHeight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MinHeight 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MinInlineSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MinInlineSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MinWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface MinWidth 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/MixBlendMode.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // Globals | DataType.BlendMode | "plus-lighter" 6 | sealed external interface MixBlendMode 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ObjectPosition.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ObjectPosition 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/OffsetAnchor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface OffsetAnchor 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/OffsetDistance.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias OffsetDistance = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/OffsetPath.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface OffsetPath 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Opacity.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Opacity 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Order.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Order 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Orphans.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Orphans 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/OutlineOffset.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias OutlineOffset = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/OutlineStyle.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface OutlineStyle 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/OutlineWidth.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias OutlineWidth = LineWidthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/OverflowAnchor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface OverflowAnchor 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Overlay.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Overlay 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingBlock.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingBlock = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingBlockEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingBlockEnd = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingBlockStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingBlockStart = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingBottom.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingBottom = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingInline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingInline = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingInlineEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingInlineEnd = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingInlineStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingInlineStart = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingLeft.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingLeft = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingRight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingRight = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PaddingTop.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias PaddingTop = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Page.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Page 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Perspective.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Perspective 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/PerspectiveOrigin.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface PerspectiveOrigin 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Property.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | external interface Property { 6 | var inherits: Inherits? 7 | var initialValue: String? 8 | var syntax: String? 9 | } 10 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Quotes.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Quotes 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Range.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // "auto" | (string & {}) 6 | sealed external interface Range 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Right.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias Right = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Rotate.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Rotate 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/RowGap.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias RowGap = Gap 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Scale.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Scale 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMargin.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMargin = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginBlock.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginBlock = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginBlockEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginBlockEnd = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginBlockStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginBlockStart = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginBottom.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginBottom = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginInline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginInline = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginInlineEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginInlineEnd = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginInlineStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginInlineStart = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginLeft.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginLeft = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginRight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginRight = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollMarginTop.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollMarginTop = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPadding.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPadding = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingBlock.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingBlock = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingBlockEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingBlockEnd = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingBlockStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingBlockStart = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingBottom.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingBottom = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingInline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingInline = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingInlineEnd.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingInlineEnd = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingInlineStart.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingInlineStart = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingLeft.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingLeft = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingRight.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingRight = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollPaddingTop.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ScrollPaddingTop = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollTimeline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ScrollTimeline 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollTimelineName.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ScrollTimelineName 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ScrollbarColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ScrollbarColor 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ShapeImageThreshold.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // Globals | (string & {}) | (number & {}) 6 | sealed external interface ShapeImageThreshold 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ShapeMargin.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ShapeMargin = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Size.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // DataType.PageSize | TLength | "auto" | "landscape" | "portrait" | (string & {}) 6 | sealed external interface Size 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/StandardProperties.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | external interface StandardProperties : StandardLonghandProperties, StandardShorthandProperties 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TabSize.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface TabSize 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TextDecorationColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias TextDecorationColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TextEmphasisColor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias TextEmphasisColor = ColorProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TextEmphasisPosition.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | // Globals | (string & {}) 6 | sealed external interface TextEmphasisPosition 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TextIndent.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias TextIndent = LengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TextSizeAdjust.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface TextSizeAdjust 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TextUnderlineOffset.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias TextUnderlineOffset = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TimeProperty.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface TimeProperty : 6 | Transition 7 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TimelineScope.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface TimelineScope 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Top.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias Top = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Transform.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Transform 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TransitionDelay.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias TransitionDelay = TimeProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/TransitionDuration.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias TransitionDuration = TimeProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Translate.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Translate 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Url.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Url : 6 | Cursor, 7 | Filter, 8 | Image, 9 | OffsetPath 10 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ViewTimeline.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ViewTimeline 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ViewTimelineInset.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | typealias ViewTimelineInset = AutoLengthProperty 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ViewTimelineName.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ViewTimelineName 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ViewTransitionName.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ViewTransitionName 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Widows.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Widows 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/Width.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface Width 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/commonMain/kotlin/web/cssom/ZIndex.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package web.cssom 4 | 5 | sealed external interface ZIndex 6 | -------------------------------------------------------------------------------- /csstype-kotlin/src/jsMain/kotlin/csstype/CssDsl.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package csstype 4 | 5 | import js.objects.JsoDsl 6 | 7 | typealias CssDsl = JsoDsl 8 | -------------------------------------------------------------------------------- /csstype-kotlin/src/jsMain/kotlin/csstype/Rules.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package csstype 4 | 5 | import js.objects.Record 6 | import web.cssom.Selector 7 | 8 | typealias Rules = Record 9 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karakum-team/types-kotlin/d3afab33270eae0d9bf8c1a27e50e815b5b8fa37/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /popper-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=popper-kotlin 2 | kfc.wasmjs=true 3 | -------------------------------------------------------------------------------- /popper-kotlin/src/commonMain/kotlin/popper/core/Name.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package popper.core 4 | 5 | import js.reflect.JsExternalInheritorsOnly 6 | 7 | @JsExternalInheritorsOnly 8 | external interface Name 9 | -------------------------------------------------------------------------------- /popper-kotlin/src/commonMain/kotlin/popper/core/OffsetData.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package popper.core 4 | 5 | import js.objects.Record 6 | 7 | typealias OffsetData = Record 8 | -------------------------------------------------------------------------------- /popper-kotlin/src/commonMain/kotlin/popper/core/Popper.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package popper.core 4 | 5 | import seskar.js.JsValue 6 | 7 | @JsValue("popper") 8 | external val Popper: Name 9 | -------------------------------------------------------------------------------- /popper-kotlin/src/commonMain/kotlin/popper/core/SetAction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package popper.core 4 | 5 | typealias SetAction = (prev: S) -> S // S | ((prev: S) => S) 6 | -------------------------------------------------------------------------------- /popper-kotlin/src/commonMain/kotlin/popper/core/UpdateCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package popper.core 4 | 5 | typealias UpdateCallback = (State) -> Unit 6 | -------------------------------------------------------------------------------- /react-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=react-kotlin 2 | -------------------------------------------------------------------------------- /react-kotlin/src/jsMain/kotlin/react/dom/DangerouslySetInnerHTML.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package react.dom 4 | 5 | sealed external interface DangerouslySetInnerHTML { 6 | var __html: String /* | TrustedHTML */ 7 | } 8 | -------------------------------------------------------------------------------- /react-kotlin/src/jsMain/kotlin/react/dom/FormAction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package react.dom 4 | 5 | import react.ActionOrString 6 | import web.form.FormData 7 | 8 | typealias FormAction = ActionOrString 9 | -------------------------------------------------------------------------------- /react-kotlin/src/jsMain/kotlin/react/dom/events/FormEvent.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package react.dom.events 4 | 5 | import web.dom.Element 6 | import web.events.Event 7 | 8 | external interface FormEvent : SyntheticEvent 9 | -------------------------------------------------------------------------------- /react-kotlin/src/jsMain/kotlin/react/dom/html/AudioHTMLAttributes.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package react.dom.html 4 | 5 | import web.dom.Element 6 | 7 | external interface AudioHTMLAttributes : MediaHTMLAttributes 8 | -------------------------------------------------------------------------------- /react-query-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=react-query-kotlin 2 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/BatchNotifyFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias BatchNotifyFunction = (callback: () -> Unit) -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/DefaultError.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias DefaultError = Any 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/FocusManagerSetupFn.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias FocusManagerSetupFn = (setFocused: (focused: Boolean?) -> Unit) -> (() -> Unit)? 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/InitialDataFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias InitialDataFunction = () -> T? 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/Listener.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias Listener = (online: Boolean) -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/MutationCacheListener.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias MutationCacheListener = (event: MutationCacheNotifyEvent) -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/MutationKey.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias MutationKey = Any 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/MutationMeta.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias MutationMeta = Any 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/MutationScope.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias MutationScope = Any 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/NotifyCallback.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias NotifyCallback = () -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/NotifyFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias NotifyFunction = (callback: () -> Unit) -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/OnlineManagerSetupFn.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias OnlineManagerSetupFn = (setOnline: Listener) -> (() -> Unit)? 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/QueryCacheListener.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias QueryCacheListener = (event: QueryCacheNotifyEvent) -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/QueryKey.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | // ReadonlyArray 6 | external interface QueryKey 7 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/QueryKeyHashFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias QueryKeyHashFunction = (queryKey: TQueryKey) -> String 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/QueryMeta.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias QueryMeta = Any 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/QueryObserverListener.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias QueryObserverListener = (result: QueryObserverResult) -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/Register.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface Register 9 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/RetryDelayFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias RetryDelayFunction = (failureCount: Int, error: TError) -> Int 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/RetryDelayValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias RetryDelayValue = RetryDelayFunction 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/RetryValue.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias RetryValue = ShouldRetryFunction 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/ScheduleFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias ScheduleFunction = (callback: () -> Unit) -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/ShouldRetryFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias ShouldRetryFunction = (failureCount: Int, error: TError) -> Boolean 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/TransformerFn.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias TransformerFn = (data: Any?) -> Any? 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/UnsetMarker.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias UnsetMarker = Any 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/Updater.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.query.core 4 | 5 | typealias Updater = (input: TInput) -> TOutput /* | TOutput */ 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/canFetch.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external fun canFetch(networkMode: NetworkMode?): Boolean 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/createNotifyManager.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external fun createNotifyManager(): Any /* { */ 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/defaultScheduler.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external val defaultScheduler: ScheduleFunction 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/focusManager.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external val focusManager: FocusManager 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/hashKey.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external fun hashKey(queryKey: Any /* QueryKey | MutationKey */): String 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/isPlainArray.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external fun isPlainArray(value: Any?): Boolean 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/isPlainObject.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external fun isPlainObject(o: Any): Boolean /* o is Object */ 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/isServer.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external val isServer: Boolean 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/isValidTimeout.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external fun isValidTimeout(value: Any?): Boolean /* value is number */ 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/keepPreviousData.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external fun keepPreviousData(previousData: T?): T? 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/noop.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | import js.core.Void 8 | 9 | external fun noop(): Void 10 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/notifyManager.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external val notifyManager: Any /* { */ 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/query/core/onlineManager.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/query-core") 4 | 5 | package tanstack.query.core 6 | 7 | external val onlineManager: OnlineManager 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/react/query/IsRestoringProvider.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/react-query") 4 | 5 | package tanstack.react.query 6 | 7 | external val IsRestoringProvider: react.Provider 8 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/react/query/QueryErrorClearResetFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.react.query 4 | 5 | typealias QueryErrorClearResetFunction = () -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/react/query/QueryErrorIsResetFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.react.query 4 | 5 | typealias QueryErrorIsResetFunction = () -> Boolean 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/react/query/QueryErrorResetBoundaryFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.react.query 4 | 5 | typealias QueryErrorResetBoundaryFunction = (value: QueryErrorResetBoundaryValue) -> react.ReactNode 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/react/query/QueryErrorResetFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.react.query 4 | 5 | typealias QueryErrorResetFunction = () -> Unit 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/react/query/UseQueryResult.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.react.query 4 | 5 | typealias UseQueryResult = UseBaseQueryResult 6 | -------------------------------------------------------------------------------- /react-query-kotlin/src/jsMain/kotlin/tanstack/react/query/useIsRestoring.val.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/react-query") 4 | 5 | package tanstack.react.query 6 | 7 | external val useIsRestoring: () -> Boolean 8 | -------------------------------------------------------------------------------- /react-table-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=react-table-kotlin 2 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/AccessorFn.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | typealias AccessorFn = (originalRow: TData, index: Int) -> TValue 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/AggregationFns.type.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface AggregationFns 9 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/AnyFunction.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | typealias AnyFunction = Function 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/AnyRender.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | typealias AnyRender = (Comp: Any, props: Any) -> Any 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnFaceting.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val ColumnFaceting: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnFiltering.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val ColumnFiltering: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnFiltersState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias ColumnFiltersState = ReadonlyArray 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnFiltersTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface ColumnFiltersTableState { 6 | var columnFilters: ColumnFiltersState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnGrouping.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val ColumnGrouping: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnMeta.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface ColumnMeta 9 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnOrderState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias ColumnOrderState = ReadonlyArray 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnOrderTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface ColumnOrderTableState { 6 | var columnOrder: ColumnOrderState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnOrdering.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val ColumnOrdering: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnPinning.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val ColumnPinning: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnPinningTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface ColumnPinningTableState { 6 | var columnPinning: ColumnPinningState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnSizing.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val ColumnSizing: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnSizingState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.ReadonlyRecord 6 | 7 | typealias ColumnSizingState = ReadonlyRecord 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ColumnVisibility.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val ColumnVisibility: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/CoreTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface CoreTableState 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ExpandedStateList.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.ReadonlyRecord 6 | 7 | typealias ExpandedStateList = ReadonlyRecord 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/ExpandedTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface ExpandedTableState { 6 | var expanded: ExpandedState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/FilterFns.type.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface FilterFns 9 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/FilterMeta.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface FilterMeta 9 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/Getter.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | typealias Getter = () -> TValue /* () -> NoInfer */ 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/GlobalFaceting.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val GlobalFaceting: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/GlobalFilterTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface GlobalFilterTableState { 6 | var globalFilter: Any? 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/GlobalFiltering.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val GlobalFiltering: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/GroupingState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias GroupingState = ReadonlyArray 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/GroupingTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface GroupingTableState { 6 | var grouping: GroupingState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/Headers.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val Headers: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/InitialTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface InitialTableState : CompleteInitialTableState 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/OnChangeFn.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | typealias OnChangeFn = (updaterOrValue: Updater) -> Unit 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/PaginationTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface PaginationTableState { 6 | var pagination: PaginationState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowData.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | typealias RowData = Any /* unknown | object | any[] */ 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowExpanding.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val RowExpanding: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowPagination.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val RowPagination: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowPinning.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val RowPinning: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowPinningTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface RowPinningTableState { 6 | var rowPinning: RowPinningState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowSelection.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val RowSelection: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowSelectionState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.ReadonlyRecord 6 | 7 | typealias RowSelectionState = ReadonlyRecord 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowSelectionTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface RowSelectionTableState { 6 | var rowSelection: RowSelectionState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/RowSorting.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external val RowSorting: TableFeature<*> 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/SortingFns.type.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.JsPlainObject 6 | 7 | @JsPlainObject 8 | external interface SortingFns 9 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/SortingState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.array.ReadonlyArray 6 | 7 | typealias SortingState = ReadonlyArray 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/SortingTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface SortingTableState { 6 | var sorting: SortingState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/TransformFilterValueFn.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | typealias TransformFilterValueFn = (value: Any, column: Column?) -> Any 6 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/VisibilityColumnDef.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface VisibilityColumnDef { 6 | var enableHiding: Boolean? 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/VisibilityState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | import js.objects.ReadonlyRecord 6 | 7 | typealias VisibilityState = ReadonlyRecord 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/VisibilityTableState.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.table.core 4 | 5 | external interface VisibilityTableState { 6 | var columnVisibility: VisibilityState 7 | } 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/noop.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external fun noop() 8 | -------------------------------------------------------------------------------- /react-table-kotlin/src/commonMain/kotlin/tanstack/table/core/passiveEventSupported.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/table-core") 4 | 5 | package tanstack.table.core 6 | 7 | external fun passiveEventSupported(): Boolean 8 | -------------------------------------------------------------------------------- /react-virtual-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kfc.module.name=react-virtual-kotlin 2 | -------------------------------------------------------------------------------- /react-virtual-kotlin/src/jsMain/kotlin/tanstack/virtual/core/Key.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.virtual.core 4 | 5 | typealias Key = String 6 | -------------------------------------------------------------------------------- /react-virtual-kotlin/src/jsMain/kotlin/tanstack/virtual/core/ObserveOffsetCallBack.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.virtual.core 4 | 5 | typealias ObserveOffsetCallBack = (offset: Int, isScrolling: Boolean) -> Unit 6 | -------------------------------------------------------------------------------- /react-virtual-kotlin/src/jsMain/kotlin/tanstack/virtual/core/ScrollToIndexOptions.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.virtual.core 4 | 5 | typealias ScrollToIndexOptions = ScrollToOptions 6 | -------------------------------------------------------------------------------- /react-virtual-kotlin/src/jsMain/kotlin/tanstack/virtual/core/ScrollToOffsetOptions.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | package tanstack.virtual.core 4 | 5 | typealias ScrollToOffsetOptions = ScrollToOptions 6 | -------------------------------------------------------------------------------- /react-virtual-kotlin/src/jsMain/kotlin/tanstack/virtual/core/defaultKeyExtractor.kt: -------------------------------------------------------------------------------- 1 | // Automatically generated - do not modify! 2 | 3 | @file:JsModule("@tanstack/virtual-core") 4 | 5 | package tanstack.virtual.core 6 | 7 | external val defaultKeyExtractor: (index: Int) -> Int 8 | --------------------------------------------------------------------------------