@continuous-excellence/coupling-cli 1.1.429 → 1.1.430
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +32 -32
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +11 -11
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +7 -7
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +18 -18
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +70 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +23 -0
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs.map +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +49 -49
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +17 -17
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/{PollResult.mjs → AccessResult.mjs} +62 -62
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs.map +1 -0
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +26 -26
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +54 -10
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs.map +1 -1
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +44 -44
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +55 -55
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +14 -14
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +27 -27
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +21 -21
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +68 -68
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +23 -23
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +8 -8
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +103 -103
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +53 -53
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +60 -60
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +3 -3
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +41 -41
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +125 -125
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +54 -54
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +84 -84
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +270 -270
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +10 -10
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +94 -94
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +48 -48
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +51 -51
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +17 -17
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +204 -204
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +39 -39
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/DeferredJsonMerger.mjs +27 -27
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +48 -48
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +22 -22
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +24 -24
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +120 -120
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +11 -11
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +26 -26
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +142 -142
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +23 -23
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +44 -44
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +28 -28
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +132 -132
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +46 -46
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +12 -12
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +182 -182
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +221 -221
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +21 -21
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +114 -114
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +126 -126
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +57 -57
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +16 -16
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +6 -6
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +10 -10
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +21 -21
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs +9 -0
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +3 -0
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +63 -63
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +21 -21
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +54 -54
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +208 -208
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +122 -122
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +8 -8
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +51 -51
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +392 -392
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +15 -15
- package/kotlin/okio-parent-okio/okio/Okio.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/Options.mjs +23 -23
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +61 -61
- package/kotlin/okio-parent-okio/okio/Segment.mjs +65 -65
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +3 -3
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +21 -21
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +4 -4
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +85 -85
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +28 -28
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +22 -22
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +26 -26
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +4 -4
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/PollResult.mjs.map +0 -1
|
@@ -107,51 +107,51 @@ function SRGB() {
|
|
|
107
107
|
class $ {
|
|
108
108
|
constructor() {
|
|
109
109
|
SRGB_instance = this;
|
|
110
|
-
this.
|
|
110
|
+
this.i69_1 = RGBColorSpaces_getInstance().o69_1;
|
|
111
111
|
}
|
|
112
|
-
|
|
113
|
-
return this.
|
|
112
|
+
h69(r, g, b, alpha) {
|
|
113
|
+
return this.i69_1.h69(r, g, b, alpha);
|
|
114
114
|
}
|
|
115
|
-
|
|
116
|
-
return this.
|
|
115
|
+
l6a(r, g, b, alpha) {
|
|
116
|
+
return this.i69_1.l6a(r, g, b, alpha);
|
|
117
117
|
}
|
|
118
|
-
|
|
119
|
-
return this.
|
|
118
|
+
m6a(hex) {
|
|
119
|
+
return this.i69_1.m6a(hex);
|
|
120
120
|
}
|
|
121
|
-
|
|
122
|
-
return this.
|
|
121
|
+
n6a(r, g, b, alpha) {
|
|
122
|
+
return this.i69_1.n6a(r, g, b, alpha);
|
|
123
123
|
}
|
|
124
|
-
|
|
125
|
-
return this.
|
|
126
|
-
}
|
|
127
|
-
n6a() {
|
|
128
|
-
return this.h69_1.n6a();
|
|
124
|
+
a6a() {
|
|
125
|
+
return this.i69_1.a6a();
|
|
129
126
|
}
|
|
130
127
|
o6a() {
|
|
131
|
-
return this.
|
|
128
|
+
return this.i69_1.o6a();
|
|
132
129
|
}
|
|
133
130
|
p6a() {
|
|
134
|
-
return this.
|
|
131
|
+
return this.i69_1.p6a();
|
|
132
|
+
}
|
|
133
|
+
q6a() {
|
|
134
|
+
return this.i69_1.q6a();
|
|
135
135
|
}
|
|
136
136
|
i1() {
|
|
137
|
-
return this.
|
|
137
|
+
return this.i69_1.i1();
|
|
138
138
|
}
|
|
139
|
-
|
|
140
|
-
return this.
|
|
139
|
+
t68() {
|
|
140
|
+
return this.i69_1.t68();
|
|
141
141
|
}
|
|
142
142
|
equals(other) {
|
|
143
|
-
return equals(RGBColorSpaces_getInstance().
|
|
143
|
+
return equals(RGBColorSpaces_getInstance().o69_1, other);
|
|
144
144
|
}
|
|
145
145
|
hashCode() {
|
|
146
|
-
return hashCode(RGBColorSpaces_getInstance().
|
|
146
|
+
return hashCode(RGBColorSpaces_getInstance().o69_1);
|
|
147
147
|
}
|
|
148
148
|
toString() {
|
|
149
149
|
return 'sRGB';
|
|
150
150
|
}
|
|
151
151
|
}
|
|
152
|
-
protoOf($).
|
|
153
|
-
protoOf($).
|
|
154
|
-
protoOf($).
|
|
152
|
+
protoOf($).v68 = invoke$default;
|
|
153
|
+
protoOf($).a69 = invoke$default_0;
|
|
154
|
+
protoOf($).w68 = from255$default;
|
|
155
155
|
initMetadataForObject($, 'SRGB', VOID, VOID, [RGBColorSpace()]);
|
|
156
156
|
SRGBClass = $;
|
|
157
157
|
}
|
|
@@ -164,17 +164,17 @@ function SRGB_getInstance() {
|
|
|
164
164
|
return SRGB_instance;
|
|
165
165
|
}
|
|
166
166
|
function RGBColorSpaces$SRGB$lambda($this$RGBColorSpaceImpl, it) {
|
|
167
|
-
return it.
|
|
167
|
+
return it.r67();
|
|
168
168
|
}
|
|
169
169
|
function RGBColorSpaces$BT2020$lambda($this$RGBColorSpaceImpl, color) {
|
|
170
170
|
var tmp;
|
|
171
171
|
if (color instanceof RGB()) {
|
|
172
|
-
tmp = color.
|
|
172
|
+
tmp = color.u6a($this$RGBColorSpaceImpl);
|
|
173
173
|
} else {
|
|
174
174
|
if (color instanceof ICtCp()) {
|
|
175
|
-
tmp = color.
|
|
175
|
+
tmp = color.n69();
|
|
176
176
|
} else {
|
|
177
|
-
tmp = color.
|
|
177
|
+
tmp = color.s67().a6b($this$RGBColorSpaceImpl);
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
return tmp;
|
|
@@ -186,29 +186,29 @@ function RGBColorSpaces() {
|
|
|
186
186
|
constructor() {
|
|
187
187
|
RGBColorSpaces_instance = this;
|
|
188
188
|
var tmp = this;
|
|
189
|
-
var tmp_0 = Illuminant_getInstance().
|
|
189
|
+
var tmp_0 = Illuminant_getInstance().j68_1;
|
|
190
190
|
var tmp_1 = SRGBTransferFunctions_instance;
|
|
191
191
|
var tmp_2 = get_SRGB_R();
|
|
192
192
|
var tmp_3 = get_SRGB_G();
|
|
193
193
|
var tmp_4 = get_SRGB_B();
|
|
194
|
-
tmp.
|
|
195
|
-
this.
|
|
196
|
-
this.
|
|
197
|
-
this.
|
|
198
|
-
this.
|
|
199
|
-
this.
|
|
200
|
-
this.
|
|
194
|
+
tmp.o69_1 = new (RGBColorSpaceImpl())('sRGB', tmp_0, tmp_1, tmp_2, tmp_3, tmp_4, RGBColorSpaces$SRGB$lambda);
|
|
195
|
+
this.p69_1 = RGBColorSpace_0('Linear sRGB', Illuminant_getInstance().j68_1, LinearTransferFunctions_instance, get_SRGB_R(), get_SRGB_G(), get_SRGB_B());
|
|
196
|
+
this.q69_1 = RGBColorSpace_0('ACES2065-1', get_ACES_WHITE_POINT(), LinearTransferFunctions_instance, get_ACES_AP0_R(), get_ACES_AP0_G(), get_ACES_AP0_B());
|
|
197
|
+
this.r69_1 = RGBColorSpace_0('ACEScc', get_ACES_WHITE_POINT(), ACESccTransferFunctions_getInstance(), get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
|
|
198
|
+
this.s69_1 = RGBColorSpace_0('ACEScct', get_ACES_WHITE_POINT(), ACEScctTransferFunctions_getInstance(), get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
|
|
199
|
+
this.t69_1 = RGBColorSpace_0('ACEScg', get_ACES_WHITE_POINT(), LinearTransferFunctions_instance, get_ACES_AP1_R(), get_ACES_AP1_G(), get_ACES_AP1_B());
|
|
200
|
+
this.u69_1 = RGBColorSpace_0('Adobe RGB', Illuminant_getInstance().j68_1, new (GammaTransferFunctions())(2.19921875), xyY().p68(0.64, 0.33), xyY().p68(0.21, 0.71), xyY().p68(0.15, 0.06));
|
|
201
201
|
var tmp_5 = this;
|
|
202
|
-
var tmp_6 = Illuminant_getInstance().
|
|
202
|
+
var tmp_6 = Illuminant_getInstance().j68_1;
|
|
203
203
|
var tmp_7 = BT2020TransferFunctions_getInstance();
|
|
204
|
-
var tmp_8 = xyY().
|
|
205
|
-
var tmp_9 = xyY().
|
|
206
|
-
var tmp_10 = xyY().
|
|
207
|
-
tmp_5.
|
|
208
|
-
this.
|
|
209
|
-
this.
|
|
210
|
-
this.
|
|
211
|
-
this.
|
|
204
|
+
var tmp_8 = xyY().p68(0.708, 0.292);
|
|
205
|
+
var tmp_9 = xyY().p68(0.17, 0.797);
|
|
206
|
+
var tmp_10 = xyY().p68(0.131, 0.046);
|
|
207
|
+
tmp_5.v69_1 = new (RGBColorSpaceImpl())('BT.2020', tmp_6, tmp_7, tmp_8, tmp_9, tmp_10, RGBColorSpaces$BT2020$lambda);
|
|
208
|
+
this.w69_1 = RGBColorSpace_0('BT.709', Illuminant_getInstance().j68_1, BT709TransferFunctions_getInstance(), xyY().p68(0.64, 0.33), xyY().p68(0.3, 0.6), xyY().p68(0.15, 0.06));
|
|
209
|
+
this.x69_1 = RGBColorSpace_0('DCI P3', new (WhitePoint())('DCI P3', xyY().p68(0.314, 0.351)), new (GammaTransferFunctions())(2.6), xyY().p68(0.68, 0.32), xyY().p68(0.265, 0.69), xyY().p68(0.15, 0.06));
|
|
210
|
+
this.y69_1 = RGBColorSpace_0('Display P3', Illuminant_getInstance().j68_1, SRGBTransferFunctions_instance, xyY().p68(0.68, 0.32), xyY().p68(0.265, 0.69), xyY().p68(0.15, 0.06));
|
|
211
|
+
this.z69_1 = RGBColorSpace_0('ROMM RGB', Illuminant_getInstance().h68_1, ROMMTransferFunctions_instance, xyY().p68(0.7347, 0.2653), xyY().p68(0.1596, 0.8404), xyY().p68(0.0366, 1.0E-4));
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
214
|
initMetadataForObject($, 'RGBColorSpaces');
|
|
@@ -227,39 +227,39 @@ function RGBColorSpaceImpl() {
|
|
|
227
227
|
if (RGBColorSpaceImplClass === VOID) {
|
|
228
228
|
class $ {
|
|
229
229
|
constructor(name, whitePoint, transferFunctions, r, g, b, convertImpl) {
|
|
230
|
-
this.
|
|
231
|
-
this.
|
|
232
|
-
this.
|
|
233
|
-
this.
|
|
234
|
-
this.
|
|
235
|
-
this.
|
|
236
|
-
this.
|
|
237
|
-
this.
|
|
238
|
-
this.
|
|
239
|
-
this.
|
|
230
|
+
this.h6b_1 = name;
|
|
231
|
+
this.i6b_1 = whitePoint;
|
|
232
|
+
this.j6b_1 = transferFunctions;
|
|
233
|
+
this.k6b_1 = r;
|
|
234
|
+
this.l6b_1 = g;
|
|
235
|
+
this.m6b_1 = b;
|
|
236
|
+
this.n6b_1 = convertImpl;
|
|
237
|
+
this.o6b_1 = zeroOneComponentInfo('RGB');
|
|
238
|
+
this.p6b_1 = _Matrix___get_rowMajor__impl__vmgxkq(rgbToXyzMatrix(this.i6b_1, this.k6b_1, this.l6b_1, this.m6b_1));
|
|
239
|
+
this.q6b_1 = _Matrix___get_rowMajor__impl__vmgxkq(inverse(_Matrix___init__impl__q3kp4w(this.p6b_1)));
|
|
240
240
|
}
|
|
241
241
|
i1() {
|
|
242
|
-
return this.g6b_1;
|
|
243
|
-
}
|
|
244
|
-
p6a() {
|
|
245
242
|
return this.h6b_1;
|
|
246
243
|
}
|
|
247
|
-
|
|
244
|
+
q6a() {
|
|
248
245
|
return this.i6b_1;
|
|
249
246
|
}
|
|
250
|
-
|
|
251
|
-
return this.
|
|
247
|
+
a6a() {
|
|
248
|
+
return this.j6b_1;
|
|
252
249
|
}
|
|
253
|
-
|
|
250
|
+
t68() {
|
|
254
251
|
return this.o6b_1;
|
|
255
252
|
}
|
|
256
253
|
o6a() {
|
|
257
254
|
return this.p6b_1;
|
|
258
255
|
}
|
|
256
|
+
p6a() {
|
|
257
|
+
return this.q6b_1;
|
|
258
|
+
}
|
|
259
259
|
toString() {
|
|
260
|
-
return this.
|
|
260
|
+
return this.h6b_1;
|
|
261
261
|
}
|
|
262
|
-
|
|
262
|
+
h69(r, g, b, alpha) {
|
|
263
263
|
return new (RGB())(r, g, b, alpha, this);
|
|
264
264
|
}
|
|
265
265
|
equals(other) {
|
|
@@ -267,43 +267,43 @@ function RGBColorSpaceImpl() {
|
|
|
267
267
|
return true;
|
|
268
268
|
if (!(!(other == null) ? isInterface(other, RGBColorSpace()) : false))
|
|
269
269
|
return false;
|
|
270
|
-
if (!(this.
|
|
270
|
+
if (!(this.h6b_1 === other.i1()))
|
|
271
271
|
return false;
|
|
272
|
-
if (!this.
|
|
272
|
+
if (!this.i6b_1.equals(other.q6a()))
|
|
273
273
|
return false;
|
|
274
|
-
if (!equals(this.
|
|
274
|
+
if (!equals(this.j6b_1, other.a6a()))
|
|
275
275
|
return false;
|
|
276
276
|
if (other instanceof RGBColorSpaceImpl()) {
|
|
277
|
-
if (!this.j6b_1.equals(other.j6b_1))
|
|
278
|
-
return false;
|
|
279
277
|
if (!this.k6b_1.equals(other.k6b_1))
|
|
280
278
|
return false;
|
|
281
279
|
if (!this.l6b_1.equals(other.l6b_1))
|
|
282
280
|
return false;
|
|
283
|
-
|
|
284
|
-
if (!contentEquals(this.o6b_1, other.n6a()))
|
|
281
|
+
if (!this.m6b_1.equals(other.m6b_1))
|
|
285
282
|
return false;
|
|
283
|
+
} else {
|
|
286
284
|
if (!contentEquals(this.p6b_1, other.o6a()))
|
|
287
285
|
return false;
|
|
286
|
+
if (!contentEquals(this.q6b_1, other.p6a()))
|
|
287
|
+
return false;
|
|
288
288
|
}
|
|
289
289
|
return true;
|
|
290
290
|
}
|
|
291
291
|
hashCode() {
|
|
292
|
-
var result = getStringHashCode(this.
|
|
293
|
-
result = imul(31, result) + this.
|
|
294
|
-
result = imul(31, result) + hashCode(this.
|
|
295
|
-
result = imul(31, result) + this.j6b_1.hashCode() | 0;
|
|
292
|
+
var result = getStringHashCode(this.h6b_1);
|
|
293
|
+
result = imul(31, result) + this.i6b_1.hashCode() | 0;
|
|
294
|
+
result = imul(31, result) + hashCode(this.j6b_1) | 0;
|
|
296
295
|
result = imul(31, result) + this.k6b_1.hashCode() | 0;
|
|
297
296
|
result = imul(31, result) + this.l6b_1.hashCode() | 0;
|
|
297
|
+
result = imul(31, result) + this.m6b_1.hashCode() | 0;
|
|
298
298
|
return result;
|
|
299
299
|
}
|
|
300
300
|
}
|
|
301
|
-
protoOf($).
|
|
302
|
-
protoOf($).
|
|
303
|
-
protoOf($).
|
|
304
|
-
protoOf($).
|
|
305
|
-
protoOf($).
|
|
306
|
-
protoOf($).
|
|
301
|
+
protoOf($).v68 = invoke$default;
|
|
302
|
+
protoOf($).l6a = invoke;
|
|
303
|
+
protoOf($).a69 = invoke$default_0;
|
|
304
|
+
protoOf($).m6a = invoke_0;
|
|
305
|
+
protoOf($).n6a = from255;
|
|
306
|
+
protoOf($).w68 = from255$default;
|
|
307
307
|
initMetadataForClass($, 'RGBColorSpaceImpl', VOID, VOID, [RGBColorSpace()]);
|
|
308
308
|
RGBColorSpaceImplClass = $;
|
|
309
309
|
}
|
|
@@ -313,10 +313,10 @@ var SRGBTransferFunctionsClass;
|
|
|
313
313
|
function SRGBTransferFunctions() {
|
|
314
314
|
if (SRGBTransferFunctionsClass === VOID) {
|
|
315
315
|
class $ {
|
|
316
|
-
|
|
316
|
+
k6a(x) {
|
|
317
317
|
return x <= 0.0031308 ? x * 12.92 : 1.055 * spow(x, 1 / 2.4) - 0.055;
|
|
318
318
|
}
|
|
319
|
-
|
|
319
|
+
j6a(x) {
|
|
320
320
|
return x <= 0.04045 ? x / 12.92 : spow_0((x + 0.055) / 1.055, 2.4);
|
|
321
321
|
}
|
|
322
322
|
}
|
|
@@ -339,18 +339,18 @@ function ACESccTransferFunctions() {
|
|
|
339
339
|
class $ {
|
|
340
340
|
constructor() {
|
|
341
341
|
ACESccTransferFunctions_instance = this;
|
|
342
|
-
this.
|
|
343
|
-
this.
|
|
344
|
-
this.
|
|
342
|
+
this.r6b_1 = 3.0517578125E-5;
|
|
343
|
+
this.s6b_1 = 1.52587890625E-5;
|
|
344
|
+
this.t6b_1 = -0.3013698630136986;
|
|
345
345
|
var tmp = this;
|
|
346
346
|
// Inline function 'kotlin.math.log2' call
|
|
347
|
-
tmp.
|
|
347
|
+
tmp.u6b_1 = (log2(65504.0) + 9.72) / 17.52;
|
|
348
348
|
}
|
|
349
|
-
|
|
349
|
+
j6a(x) {
|
|
350
350
|
var tmp;
|
|
351
351
|
if (x <= -0.3013698630136986) {
|
|
352
352
|
tmp = (spow_0(2.0, x * 17.52 - 9.72) - 1.52587890625E-5) * 2.0;
|
|
353
|
-
} else if (x < this.
|
|
353
|
+
} else if (x < this.u6b_1) {
|
|
354
354
|
// Inline function 'kotlin.math.pow' call
|
|
355
355
|
var x_0 = x * 17.52 - 9.72;
|
|
356
356
|
tmp = Math.pow(2.0, x_0);
|
|
@@ -359,7 +359,7 @@ function ACESccTransferFunctions() {
|
|
|
359
359
|
}
|
|
360
360
|
return tmp;
|
|
361
361
|
}
|
|
362
|
-
|
|
362
|
+
k6a(x) {
|
|
363
363
|
var tmp;
|
|
364
364
|
if (x < 3.0517578125E-5) {
|
|
365
365
|
// Inline function 'kotlin.math.log2' call
|
|
@@ -389,17 +389,17 @@ function ACEScctTransferFunctions() {
|
|
|
389
389
|
class $ {
|
|
390
390
|
constructor() {
|
|
391
391
|
ACEScctTransferFunctions_instance = this;
|
|
392
|
-
this.
|
|
393
|
-
this.
|
|
392
|
+
this.v6b_1 = 10.5402377416545;
|
|
393
|
+
this.w6b_1 = 0.0729055341958355;
|
|
394
394
|
var tmp = this;
|
|
395
395
|
// Inline function 'kotlin.math.log2' call
|
|
396
|
-
tmp.
|
|
396
|
+
tmp.x6b_1 = (log2(65504.0) + 9.72) / 17.52;
|
|
397
397
|
}
|
|
398
|
-
|
|
398
|
+
j6a(x) {
|
|
399
399
|
var tmp;
|
|
400
400
|
if (x <= 0.155251141552511) {
|
|
401
401
|
tmp = (x - 0.0729055341958355) / 10.5402377416545;
|
|
402
|
-
} else if (x < this.
|
|
402
|
+
} else if (x < this.x6b_1) {
|
|
403
403
|
// Inline function 'kotlin.math.pow' call
|
|
404
404
|
var x_0 = x * 17.52 - 9.72;
|
|
405
405
|
tmp = Math.pow(2.0, x_0);
|
|
@@ -408,7 +408,7 @@ function ACEScctTransferFunctions() {
|
|
|
408
408
|
}
|
|
409
409
|
return tmp;
|
|
410
410
|
}
|
|
411
|
-
|
|
411
|
+
k6a(x) {
|
|
412
412
|
var tmp;
|
|
413
413
|
if (x < 0.0078125) {
|
|
414
414
|
tmp = 10.5402377416545 * x + 0.0729055341958355;
|
|
@@ -436,16 +436,16 @@ function BT2020TransferFunctions() {
|
|
|
436
436
|
class $ {
|
|
437
437
|
constructor() {
|
|
438
438
|
BT2020TransferFunctions_instance = this;
|
|
439
|
-
this.
|
|
440
|
-
this.
|
|
439
|
+
this.y6b_1 = 1.0993;
|
|
440
|
+
this.z6b_1 = 0.0181;
|
|
441
441
|
var tmp = this;
|
|
442
442
|
// Inline function 'kotlin.math.pow' call
|
|
443
|
-
tmp.
|
|
444
|
-
}
|
|
445
|
-
i6a(x) {
|
|
446
|
-
return numberToDouble(x < this.z6b_1 ? x / 4.5 : spow_0((x + (1.0993 - 1)) / 1.0993, 1 / 0.45));
|
|
443
|
+
tmp.a6c_1 = 1.0993 * Math.pow(0.0181, 0.45) - (1.0993 - 1);
|
|
447
444
|
}
|
|
448
445
|
j6a(x) {
|
|
446
|
+
return numberToDouble(x < this.a6c_1 ? x / 4.5 : spow_0((x + (1.0993 - 1)) / 1.0993, 1 / 0.45));
|
|
447
|
+
}
|
|
448
|
+
k6a(x) {
|
|
449
449
|
return x < 0.0181 ? 4.5 * x : 1.0993 * spow(x, 0.45) - (1.0993 - 1);
|
|
450
450
|
}
|
|
451
451
|
}
|
|
@@ -466,12 +466,12 @@ function BT709TransferFunctions() {
|
|
|
466
466
|
class $ {
|
|
467
467
|
constructor() {
|
|
468
468
|
BT709TransferFunctions_instance = this;
|
|
469
|
-
this.
|
|
470
|
-
}
|
|
471
|
-
i6a(x) {
|
|
472
|
-
return numberToDouble(x < this.a6c_1 ? x / 4.5 : spow_0((x + 0.099) / 1.099, 1 / 0.45));
|
|
469
|
+
this.b6c_1 = 1.099 * spow_0(0.018, 0.45) - 0.099;
|
|
473
470
|
}
|
|
474
471
|
j6a(x) {
|
|
472
|
+
return numberToDouble(x < this.b6c_1 ? x / 4.5 : spow_0((x + 0.099) / 1.099, 1 / 0.45));
|
|
473
|
+
}
|
|
474
|
+
k6a(x) {
|
|
475
475
|
return x < 0.018 ? 4.5 * x : 1.099 * spow(x, 0.45) - 0.099;
|
|
476
476
|
}
|
|
477
477
|
}
|
|
@@ -491,12 +491,12 @@ function ROMMTransferFunctions() {
|
|
|
491
491
|
if (ROMMTransferFunctionsClass === VOID) {
|
|
492
492
|
class $ {
|
|
493
493
|
constructor() {
|
|
494
|
-
this.
|
|
494
|
+
this.c6c_1 = 0.001953;
|
|
495
495
|
}
|
|
496
|
-
|
|
496
|
+
j6a(x) {
|
|
497
497
|
return x < 16 * 0.001953 ? x / 16.0 : spow(x, 1.8);
|
|
498
498
|
}
|
|
499
|
-
|
|
499
|
+
k6a(x) {
|
|
500
500
|
return x < 0.001953 ? x * 16.0 : spow(x, 1.0 / 1.8);
|
|
501
501
|
}
|
|
502
502
|
}
|
|
@@ -511,13 +511,13 @@ function ROMMTransferFunctions_getInstance() {
|
|
|
511
511
|
}
|
|
512
512
|
function rgbToXyzMatrix(whitePoint, r, g, b) {
|
|
513
513
|
_init_properties_RGBColorSpaces_kt__nc9fsz();
|
|
514
|
-
var primaries = _Matrix___init__impl__q3kp4w_0(r.
|
|
515
|
-
var wp = whitePoint.
|
|
514
|
+
var primaries = _Matrix___init__impl__q3kp4w_0(r.m68_1, g.m68_1, b.m68_1, r.n68_1, g.n68_1, b.n68_1, r.d6c(), g.d6c(), b.d6c());
|
|
515
|
+
var wp = whitePoint.d68_1;
|
|
516
516
|
var tmp0 = inverse(primaries);
|
|
517
|
-
var tmp2 = wp.
|
|
518
|
-
var tmp4 = wp.
|
|
517
|
+
var tmp2 = wp.e6c();
|
|
518
|
+
var tmp4 = wp.o68_1;
|
|
519
519
|
// Inline function 'com.github.ajalt.colormath.internal.dot' call
|
|
520
|
-
var v2 = wp.
|
|
520
|
+
var v2 = wp.f6c();
|
|
521
521
|
var tmp0_0 = Matrix__get_impl_xogbpk(tmp0, 0, 0) * tmp2 + Matrix__get_impl_xogbpk(tmp0, 1, 0) * tmp4 + Matrix__get_impl_xogbpk(tmp0, 2, 0) * v2;
|
|
522
522
|
var tmp2_0 = Matrix__get_impl_xogbpk(tmp0, 0, 1) * tmp2 + Matrix__get_impl_xogbpk(tmp0, 1, 1) * tmp4 + Matrix__get_impl_xogbpk(tmp0, 2, 1) * v2;
|
|
523
523
|
var z = Matrix__get_impl_xogbpk(tmp0, 0, 2) * tmp2 + Matrix__get_impl_xogbpk(tmp0, 1, 2) * tmp4 + Matrix__get_impl_xogbpk(tmp0, 2, 2) * v2;
|
|
@@ -527,9 +527,9 @@ function RGBColorSpace$lambda($this$RGBColorSpaceImpl, color) {
|
|
|
527
527
|
_init_properties_RGBColorSpaces_kt__nc9fsz();
|
|
528
528
|
var tmp;
|
|
529
529
|
if (color instanceof RGB()) {
|
|
530
|
-
tmp = color.
|
|
530
|
+
tmp = color.u6a($this$RGBColorSpaceImpl);
|
|
531
531
|
} else {
|
|
532
|
-
tmp = color.
|
|
532
|
+
tmp = color.s67().a6b($this$RGBColorSpaceImpl);
|
|
533
533
|
}
|
|
534
534
|
return tmp;
|
|
535
535
|
}
|
|
@@ -537,16 +537,16 @@ var properties_initialized_RGBColorSpaces_kt_fsnpad;
|
|
|
537
537
|
function _init_properties_RGBColorSpaces_kt__nc9fsz() {
|
|
538
538
|
if (!properties_initialized_RGBColorSpaces_kt_fsnpad) {
|
|
539
539
|
properties_initialized_RGBColorSpaces_kt_fsnpad = true;
|
|
540
|
-
SRGB_R = xyY().
|
|
541
|
-
SRGB_G = xyY().
|
|
542
|
-
SRGB_B = xyY().
|
|
543
|
-
ACES_WHITE_POINT = new (WhitePoint())('ACES', xyY().
|
|
544
|
-
ACES_AP0_R = xyY().
|
|
545
|
-
ACES_AP0_G = xyY().
|
|
546
|
-
ACES_AP0_B = xyY().
|
|
547
|
-
ACES_AP1_R = xyY().
|
|
548
|
-
ACES_AP1_G = xyY().
|
|
549
|
-
ACES_AP1_B = xyY().
|
|
540
|
+
SRGB_R = xyY().p68(0.64, 0.33);
|
|
541
|
+
SRGB_G = xyY().p68(0.3, 0.6);
|
|
542
|
+
SRGB_B = xyY().p68(0.15, 0.06);
|
|
543
|
+
ACES_WHITE_POINT = new (WhitePoint())('ACES', xyY().p68(0.32168, 0.33767));
|
|
544
|
+
ACES_AP0_R = xyY().p68(0.7347, 0.2653);
|
|
545
|
+
ACES_AP0_G = xyY().p68(0.0, 1.0);
|
|
546
|
+
ACES_AP0_B = xyY().p68(1.0E-4, -0.077);
|
|
547
|
+
ACES_AP1_R = xyY().p68(0.713, 0.293);
|
|
548
|
+
ACES_AP1_G = xyY().p68(0.165, 0.83);
|
|
549
|
+
ACES_AP1_B = xyY().p68(0.128, 0.044);
|
|
550
550
|
}
|
|
551
551
|
}
|
|
552
552
|
//region block: init
|