@keetanetwork/keetanet-client 0.10.2 → 0.10.4
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/README.md +7 -0
- package/api/node.d.ts +2 -0
- package/client/builder.d.ts +42 -2
- package/client/client_common_tests.d.ts +6 -5
- package/client/index-browser.d.ts +908 -27
- package/client/index-browser.js +3075 -1723
- package/client/index.d.ts +908 -27
- package/client/index.js +85673 -83037
- package/config/index.d.ts +16 -0
- package/docs/assets/fonts/Surt-Expanded-Bold.woff2 +0 -0
- package/docs/assets/fonts/Surt-Expanded-Medium.woff2 +0 -0
- package/docs/assets/fonts/Surt-Expanded-Regular.woff2 +0 -0
- package/docs/assets/fonts/Surt-Expanded-Semibold.woff2 +0 -0
- package/docs/assets/fonts/Surt-Normal-Bold.woff2 +0 -0
- package/docs/assets/fonts/Surt-Normal-Medium.woff2 +0 -0
- package/docs/assets/fonts/Surt-Normal-Regular.woff2 +0 -0
- package/docs/assets/fonts/Surt-Normal-Semibold.woff2 +0 -0
- package/docs/assets/fonts/UbuntuMono-Regular.ttf +0 -0
- package/docs/assets/hierarchy.js +1 -0
- package/docs/assets/highlight.css +134 -0
- package/docs/assets/icons.js +18 -0
- package/docs/assets/icons.svg +1 -0
- package/docs/assets/logo-keeta-dark.svg +14 -0
- package/docs/assets/logo-keeta-light.svg +14 -0
- package/docs/assets/main.js +60 -0
- package/docs/assets/navigation.js +1 -0
- package/docs/assets/search.js +1 -0
- package/docs/assets/style.css +1640 -0
- package/docs/assets/typedoc-github-style.css +557 -0
- package/docs/classes/KeetaNetSDK.Client.html +288 -0
- package/docs/classes/KeetaNetSDK.Referenced.Account.html +107 -0
- package/docs/classes/KeetaNetSDK.Referenced.BaseSet.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.Block.html +36 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockBuilder.html +26 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockHash.html +18 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperation.html +6 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperationCREATE_IDENTIFIER.html +10 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperationMODIFY_PERMISSIONS.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperationRECEIVE.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperationSEND.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperationSET_INFO.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperationSET_REP.html +10 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperationTOKEN_ADMIN_MODIFY_BALANCE.html +11 -0
- package/docs/classes/KeetaNetSDK.Referenced.BlockOperationTOKEN_ADMIN_SUPPLY.html +11 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSAKeyPair.html +30 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSASECP256K1KeyPair.html +33 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSASECP256K1PrivateKey.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSASECP256K1PublicKey.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSASECP256K1Signature.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSASECP256R1KeyPair.html +34 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSASECP256R1PrivateKey.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSASECP256R1PublicKey.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.ECDSASECP256R1Signature.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.ED25519KeyPair.html +28 -0
- package/docs/classes/KeetaNetSDK.Referenced.ED25519PrivateKey.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.ED25519PublicKey.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.ED25519Signature.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.ExternalKeyPair.html +28 -0
- package/docs/classes/KeetaNetSDK.Referenced.ExternalSet.html +16 -0
- package/docs/classes/KeetaNetSDK.Referenced.IdentifierKey.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.IdentifierKeyPair.html +28 -0
- package/docs/classes/KeetaNetSDK.Referenced.KeetaNetError.html +5 -0
- package/docs/classes/KeetaNetSDK.Referenced.KeyInterface.html +26 -0
- package/docs/classes/KeetaNetSDK.Referenced.KeyStorage.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.Ledger.html +41 -0
- package/docs/classes/KeetaNetSDK.Referenced.LedgerAtomicInterface.html +27 -0
- package/docs/classes/KeetaNetSDK.Referenced.LedgerRequestCache.html +7 -0
- package/docs/classes/KeetaNetSDK.Referenced.Node.html +21 -0
- package/docs/classes/KeetaNetSDK.Referenced.P2PSwitch.html +40 -0
- package/docs/classes/KeetaNetSDK.Referenced.PendingAccount.html +5 -0
- package/docs/classes/KeetaNetSDK.Referenced.PermissionSetHolder.html +6 -0
- package/docs/classes/KeetaNetSDK.Referenced.Permissions.html +20 -0
- package/docs/classes/KeetaNetSDK.Referenced.PossiblyExpiredVote.html +26 -0
- package/docs/classes/KeetaNetSDK.Referenced.PublicKeyString.html +8 -0
- package/docs/classes/KeetaNetSDK.Referenced.RequestTiming.html +8 -0
- package/docs/classes/KeetaNetSDK.Referenced.SignatureStorage.html +12 -0
- package/docs/classes/KeetaNetSDK.Referenced.Stats.html +13 -0
- package/docs/classes/KeetaNetSDK.Referenced.UserClientBuilder.html +29 -0
- package/docs/classes/KeetaNetSDK.Referenced.Vote.html +31 -0
- package/docs/classes/KeetaNetSDK.Referenced.VoteBlockHash.html +20 -0
- package/docs/classes/KeetaNetSDK.Referenced.VoteBlockHashMap.html +26 -0
- package/docs/classes/KeetaNetSDK.Referenced.VoteBuilder.html +8 -0
- package/docs/classes/KeetaNetSDK.Referenced.VoteHash.html +11 -0
- package/docs/classes/KeetaNetSDK.Referenced.VoteStaple.html +40 -0
- package/docs/classes/KeetaNetSDK.Referenced.VoteStapleHash.html +14 -0
- package/docs/classes/KeetaNetSDK.Referenced.default.html +9 -0
- package/docs/classes/KeetaNetSDK.Referenced.src_lib_utils_asn1.BufferStorageASN1.html +9 -0
- package/docs/classes/KeetaNetSDK.Referenced.src_lib_utils_asn1.ValidateASN1.html +19 -0
- package/docs/classes/KeetaNetSDK.Referenced.src_lib_utils_buffer.BufferStorage.html +11 -0
- package/docs/classes/KeetaNetSDK.Referenced.src_lib_utils_certificate.Certificate.html +79 -0
- package/docs/classes/KeetaNetSDK.Referenced.src_lib_utils_certificate.CertificateBuilder.html +9 -0
- package/docs/classes/KeetaNetSDK.UserClient.html +254 -0
- package/docs/documents/GETTING-STARTED.html +268 -0
- package/docs/enums/KeetaNetSDK.Referenced.AccountKeyAlgorithm.html +9 -0
- package/docs/enums/KeetaNetSDK.Referenced.AdjustMethod.html +4 -0
- package/docs/enums/KeetaNetSDK.Referenced.BaseFlag.html +15 -0
- package/docs/enums/KeetaNetSDK.Referenced.BasePermissionGroup.html +9 -0
- package/docs/enums/KeetaNetSDK.Referenced.LedgerKind.html +4 -0
- package/docs/enums/KeetaNetSDK.Referenced.NodeKind.html +5 -0
- package/docs/enums/KeetaNetSDK.Referenced.OperationType.html +10 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_config.getDefaultConfig.html +2 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_config.getNetworkAlias.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_config.getValidation.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_config.isNetwork.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_asn1.isValidSequenceSchema.html +2 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_bloom.deserializeBloomFilter.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_bloom.serializeBloomFilter.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_buffer.DecodeBase32.html +2 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_buffer.DecodeBase64.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_buffer.EncodeBase32.html +2 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_buffer.EncodeBase64.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_buffer.ZlibDeflate.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_buffer.ZlibInflate.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_conversion.RegisterSerializable.html +2 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_conversion.objectToBuffer.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_conversion.parseHexBigIntString.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_conversion.toJSONSerializable.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_hash.Hash.html +4 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.arrayRepeat.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.asleep.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.bufferToArrayBuffer.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.checkableGenerator.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.debugPrintableObject.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.env.html +3 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.internalLogger.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.isBuffer.html +6 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.isIntegerOrBigInt.html +2 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.objectToBuffer.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.promiseGenerator.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.randomInt.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.randomString.html +2 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.setGenerator.html +1 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_helper.waitTicks.html +2 -0
- package/docs/functions/KeetaNetSDK.Referenced.src_lib_utils_initial.generateInitialVoteStaple.html +1 -0
- package/docs/hierarchy.html +1 -0
- package/docs/index.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ACLEntry.html +10 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ACLRow.html +10 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ACLUpdate.html +12 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.APIOptions.html +10 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ASN1ExplicitContextTag.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ASN1ImplicitContextTag.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ASN1Object.html +2 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.AccountInfo.html +12 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.AccountSignerOptions.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.AccountSignerOptionsJSON.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.AllPendingJSON.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BaseExternalKeyPairFunctions.html +6 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BaseFlagRule.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BaseGenerationConfig.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockCanonical.html +10 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSON.html +11 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperation.html +2 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperationCREATE_IDENTIFIER.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperationMODIFY_PERMISSIONS.html +7 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperationRECEIVE.html +7 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperationSEND.html +6 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperationSET_INFO.html +7 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperationSET_REP.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperationTOKEN_ADMIN_MODIFY_BALANCE.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOperationTOKEN_ADMIN_SUPPLY.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockJSONOutput.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockOperationValidateContext.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.BlockUnsignedCanonical.html +11 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ComputeBlocksResponse.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ComputedBlockEffect.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ComputedBlocksEffectFields.html +8 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ComputedBlocksEffectTokenChangesField.html +1 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.Constructor.html +2 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ExternalKeyPairFunctionsNoEncryption.html +6 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ExternalKeyPairFunctionsSupportsEncryption.html +8 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.GetPeersAPIResponse.html +9 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.GetPeersOptions.html +11 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.GetRepresentativeAPIResponse.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.HTTPConfig.html +2 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.IdentifierCreateRequest.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.InitialConfigSupply.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.KVSetOptionsType.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.KVStorageProviderAPI.html +8 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.LedgerConfig.html +21 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.LedgerStatistics.html +8 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.LedgerStorageAPI.html +69 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ModifyTokenBalanceEntry.html +6 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.NodeConfig.html +32 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.NumericValueEntry.html +2 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.P2PConfig.html +24 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.P2PConnection.html +27 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.P2PPeerBase.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.P2PPeerListener.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.P2PPeerRepBase.html +7 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.P2PSwitchStatistics.html +7 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.PeerInfo.html +10 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.PendingOperations.html +9 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.PendingOperationsJSON.html +9 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.PrincipalACLWithInfoParsed.html +24 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.PublicKeyStorage.html +11 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.PublicKeyStringMapping.html +7 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.RenderOptions.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.RepresentativeInfo.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.RequestTokenReceiveEntry.html +5 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.StatsConfig.html +2 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.TextValidationRule.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.TokenNumericEntry.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.UserClientConfig.html +26 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.UserClientListenerTypes.html +2 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.UserClientOptions.html +16 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.ValidationOptions.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.VoteJSON.html +8 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.VoteJSONOutput.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.VoteStapleJSON.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.WithConversionClass.html +6 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.WithIsInstance.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.signOptionsType.html +9 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.src_config.ValidationConfig.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1BitString.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1Date.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1OID.html +3 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1Set.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1String.html +4 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.src_lib_utils_helper.InstanceSet.html +10 -0
- package/docs/interfaces/KeetaNetSDK.Referenced.src_lib_utils_helper.InstanceSetConstructor.html +2 -0
- package/docs/media/index-1.js +517 -0
- package/docs/media/index.js +82 -0
- package/docs/modules/KeetaNetSDK.Referenced.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_config.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_asn1.ValidateASN1.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_asn1.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_bloom.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_buffer.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_certificate.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_conversion.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_hash.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_helper.html +1 -0
- package/docs/modules/KeetaNetSDK.Referenced.src_lib_utils_initial.html +1 -0
- package/docs/modules/KeetaNetSDK.html +8 -0
- package/docs/modules.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.ACLEntryUnparsed.html +5 -0
- package/docs/types/KeetaNetSDK.Referenced.ASN1AnyASN.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.AcceptedPermissionTypes.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.AccountBalancesUnparsed.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.AccountErrorCode.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.AccountInfoResponse.html +6 -0
- package/docs/types/KeetaNetSDK.Referenced.AccountOrPending.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.AccountPrefix.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.AccountPublicKeyString.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.AllPending.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.BaseFlagName.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.BaseFlagNames.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.BasePermissionOffsetSet.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.BasicSchemaMap.html +14 -0
- package/docs/types/KeetaNetSDK.Referenced.BlockErrorCode.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.BlockJSONIncomplete.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.BlockOperations.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.BlocksAlwaysReturn.html +4 -0
- package/docs/types/KeetaNetSDK.Referenced.BlocksWithAddSupply.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.BuilderOptions.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.CanBeArray.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificateBuilderParams.html +23 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificateExtensions.html +5 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificateIssuerOrSubject.html +4 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificateOID.html +3 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificateOptions.html +15 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificatePublicKeyInfo.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificateSchema.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificateValidity.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.CertificateVersionInfo.html +5 -0
- package/docs/types/KeetaNetSDK.Referenced.ClientErrorCode.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.ClientRepresentative.html +3 -0
- package/docs/types/KeetaNetSDK.Referenced.ComputedEffectOfBlocks.html +4 -0
- package/docs/types/KeetaNetSDK.Referenced.ComputedEffectOfBlocksByAccount.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.CreateIdentifierRequest.html +6 -0
- package/docs/types/KeetaNetSDK.Referenced.DecodeFunc.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.DelegationUpdate.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.DeserializerCallback.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.DurationBreakdowns.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.ED25519PublicKeyString.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.EncodeFunc.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.ErrorCode.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.ExternalFlagName.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.ExternalKeyPairFunctions.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.ExternalPermissionOffsetSet.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.FlagGroupType.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.FlagOrExternalName.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.FlagOrExternalNames.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.GenericAccount.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.GetAccountStateAPIResponse.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.GetAccountStateAPIResponseFailure.html +3 -0
- package/docs/types/KeetaNetSDK.Referenced.GetAccountStateAPIResponseFormatted.html +28 -0
- package/docs/types/KeetaNetSDK.Referenced.GetAccountStateAPIResponseSuccess.html +6 -0
- package/docs/types/KeetaNetSDK.Referenced.GetAllBalancesResponse.html +6 -0
- package/docs/types/KeetaNetSDK.Referenced.GetPrevFunction.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.GetVotesAfterOptions.html +8 -0
- package/docs/types/KeetaNetSDK.Referenced.IdentifierAddress.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.IdentifierKeyAlgorithm.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.IdentifierPublicKeyString.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.InitialGenResponse.html +3 -0
- package/docs/types/KeetaNetSDK.Referenced.JSONMessage.html +7 -0
- package/docs/types/KeetaNetSDK.Referenced.JSONSupportedObject.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.JSONSupportedValue.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.JSONUnsupportedTypes.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.KVErrorCode.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.KeyPairTypes.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.LedgerErrorCode.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.LedgerSelector.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.LedgerStorage.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.Mutable.html +4 -0
- package/docs/types/KeetaNetSDK.Referenced.NetworkAddress.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.NetworkPublicKeyString.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.NodeLike.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.P2PPeer.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.P2PPeerRep.html +4 -0
- package/docs/types/KeetaNetSDK.Referenced.PaginatedVotes.html +4 -0
- package/docs/types/KeetaNetSDK.Referenced.PerAccount.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.PermissionOffsetSet.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.PermissionsErrorCode.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.PublicKeyStringPrefixed.html +4 -0
- package/docs/types/KeetaNetSDK.Referenced.Secp256K1PublicKeyString.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.Secp256R1PublicKeyString.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.SerializedConnection.html +3 -0
- package/docs/types/KeetaNetSDK.Referenced.StoragePublicKeyString.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.TimeStat.html +3 -0
- package/docs/types/KeetaNetSDK.Referenced.TimeStats.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.TokenAddress.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.TokenEntry.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.TokenOrPending.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.TokenPublicKeyString.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.UserClientIntervals.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.UserClientListeners.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.UserClientOptionsReadOnly.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.UserClientOrClientAndNetwork.html +5 -0
- package/docs/types/KeetaNetSDK.Referenced.Vote.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.VoteErrorCode.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.VoteJSONOutput.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.VoteOptions.html +4 -0
- package/docs/types/KeetaNetSDK.Referenced.decryptFunctionType.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.encryptFunctionType.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.fromSeedFunctionType.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.publicKeyASN1.html +3 -0
- package/docs/types/KeetaNetSDK.Referenced.seedDerivationFunction.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.signFunctionType.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.src_config.Endpoints.html +6 -0
- package/docs/types/KeetaNetSDK.Referenced.src_config.NetworkConfig.html +11 -0
- package/docs/types/KeetaNetSDK.Referenced.src_config.NetworkOrID.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_config.Networks.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_config.Representative.html +9 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1AnyJS.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1ContextTag.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1SequenceValidation.html +2 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_asn1.ValidateASN1.Schema.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_asn1.ValidateASN1.SchemaMap.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_conversion.JSONSerializable.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_conversion.JSONSerializableObject.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_conversion.JSONSupported.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_conversion.ToJSONSerializable.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_conversion.ToJSONSerializableOptions.html +3 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_helper.DeepMutable.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.src_lib_utils_helper.DistributiveOmit.html +1 -0
- package/docs/types/KeetaNetSDK.Referenced.verifyFunctionType.html +2 -0
- package/docs/variables/KeetaNetSDK.Referenced.AccountErrorCodes.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.AccountErrorType.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.AccountPrefixes.html +2 -0
- package/docs/variables/KeetaNetSDK.Referenced.BlockErrorCodes.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.BlockErrorType.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.ClientErrorCodes.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.ClientErrorType.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.KVErrorCodes.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.KVErrorType.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.LedgerErrorCodes.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.LedgerErrorType.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.Operation.html +2 -0
- package/docs/variables/KeetaNetSDK.Referenced.PermissionsErrorCodes.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.PermissionsErrorType.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.VoteErrorCodes.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.VoteErrorType.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.default.html +3 -0
- package/docs/variables/KeetaNetSDK.Referenced.durationRanges.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.externalFlagPrefix.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.identifierKeyTypes.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_config.NetworkIDs.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_config.baseValidationConfig.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_config.networksArray.html +2 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1BigIntToBuffer.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1IntegerToBigInt.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_lib_utils_asn1.ASN1toJS.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_lib_utils_asn1.JStoASN1.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_lib_utils_asn1.asn1.html +1 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_lib_utils_hash.HashFunctionLength.html +2 -0
- package/docs/variables/KeetaNetSDK.Referenced.src_lib_utils_hash.HashFunctionName.html +2 -0
- package/docs/variables/KeetaNetSDK.lib.html +4 -0
- package/examples/basic/index.js +82 -0
- package/examples/basic/package-lock.json +126 -0
- package/examples/basic/package.json +14 -0
- package/examples/rwa-nft/index.js +517 -0
- package/examples/rwa-nft/package-lock.json +126 -0
- package/examples/rwa-nft/package.json +14 -0
- package/lib/account.d.ts +2 -2
- package/lib/block/index.d.ts +1 -1
- package/lib/block/operations.d.ts +1 -1
- package/lib/error/account.d.ts +1 -1
- package/lib/error/block.d.ts +1 -1
- package/lib/error/client.d.ts +2 -2
- package/lib/error/index.d.ts +1 -1
- package/lib/error/kv.d.ts +1 -1
- package/lib/error/ledger.d.ts +1 -1
- package/lib/error/permissions.d.ts +1 -1
- package/lib/error/vote.d.ts +1 -1
- package/lib/index.d.ts +6 -2
- package/lib/kv/index.d.ts +2 -3
- package/lib/kv/kv_dynamodb.d.ts +1 -1
- package/lib/kv/kv_memory.d.ts +1 -1
- package/lib/kv/kv_redis.d.ts +1 -5
- package/lib/ledger/common.d.ts +2 -0
- package/lib/ledger/db_dynamodb.d.ts +2 -2
- package/lib/ledger/db_postgres.d.ts +1 -1
- package/lib/ledger/db_spanner.d.ts +5 -4
- package/lib/ledger/db_spanner_helper.d.ts +1 -2
- package/lib/ledger/db_sqlite.d.ts +1 -1
- package/lib/ledger/index.d.ts +6 -5
- package/lib/ledger/types.d.ts +53 -1
- package/lib/p2p.d.ts +1 -1
- package/lib/permissions.d.ts +1 -1
- package/lib/stats.d.ts +1 -1
- package/lib/utils/asn1.d.ts +0 -14
- package/lib/utils/buffer.d.ts +0 -1
- package/lib/utils/certificate.d.ts +2 -2
- package/lib/utils/conversion.d.ts +1 -1
- package/lib/utils/hash.d.ts +0 -1
- package/lib/vote.d.ts +1 -1
- package/package.json +5 -2
- package/version.d.ts +1 -1
- package/._version.d.ts +0 -0
package/config/index.d.ts
CHANGED
|
@@ -12,18 +12,34 @@ export declare const NetworkIDs: {
|
|
|
12
12
|
* Endpoints for reaching a Node
|
|
13
13
|
*/
|
|
14
14
|
export type Endpoints = {
|
|
15
|
+
/**
|
|
16
|
+
* The API endpoint for the node
|
|
17
|
+
*/
|
|
15
18
|
api: string;
|
|
19
|
+
/**
|
|
20
|
+
* The P2P endpoint for the node
|
|
21
|
+
*/
|
|
16
22
|
p2p: string;
|
|
17
23
|
};
|
|
18
24
|
/**
|
|
19
25
|
* Definition of a Representative
|
|
26
|
+
* @expandType Endpoints
|
|
20
27
|
*/
|
|
21
28
|
export type Representative = {
|
|
29
|
+
/**
|
|
30
|
+
* The public key of the representative
|
|
31
|
+
*/
|
|
22
32
|
key: Account;
|
|
33
|
+
/**
|
|
34
|
+
* The endpoints for which the representative can be reached
|
|
35
|
+
*/
|
|
23
36
|
endpoints: Endpoints;
|
|
24
37
|
};
|
|
25
38
|
/**
|
|
26
39
|
* Network Configuration for a Network
|
|
40
|
+
* @expandType Networks
|
|
41
|
+
* @expandType Representative
|
|
42
|
+
* @expandType ValidationConfig
|
|
27
43
|
*/
|
|
28
44
|
export type NetworkConfig = {
|
|
29
45
|
networkAlias: Networks;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
window.hierarchyData = "eJy1ml1zmzgUhv+Lr9UsEiCgd4lNtmwa2wNudzo7HQ/BcsOWgBdwp5lO/nt1jJMgsBzxsTdkHFuvHulIR5wXfk3yLCuLyft/DMO2kKljBxkm1RFxKEEm0TEyLF1DRLcN/gW2+Efb5r8zTPgx5R/hxxbFCFtE+4omOdsmLCrjLOWqvyZYc3T4m4YPbPJ+cpVk0fcJmnyP083kPSY2muzzhH8RJWFRsOKPG8bKcM7KYHZz4bMty1kasc3Fod3FffmQ8MaH3/I2ZbF5B0Lvqn88oQkmGq319jkrWY/OoJlKX9RqjuxDWNz3HR20VejV0HFjhEN6Ftor9M5jXOv9U8HyaRKztFzsqog/ExCTPhPEacnybRjJIVoyUpAXLfjyPk42XIGvXY5lfK3wjJN40yzdxt+G0lUqCnAchWBaR7kM5njhzfoRFHm0TuK79b6Mk2IdFim+OOops1gNloCVo7JwPVUWizRYruIyKPM47RkfCdGLqjIXbXDNwlr2GAMJBFVpbK0ZsfGnqNP88AOgnu32W64elFkefuuTYkWiu4PahSD6RjIS9z9PxQgyIyI2P7Z0gx9WOnUo0i2TH1s2P8AM2+THFiYm5Ak4r2qDWWZFEd8lj+7PXZyzTc9T44RKtzFo9MDGR9BI8EEZ7hI2IMO/Cryd4uHgbx5r0zDN0jgKk37LT9TonNz5HcRhYhwbN8EWO5aHcGQE7nzW9+AVRN6eIF0j9hmO1dp3lyOgHHRUaOi5WVmtvfn1YhQcEFLgwdiQ8twuZt71l/XS9W+9IPAW82AwWVtShZGaUsap716u3LU3c+cr79pz/cGILUUFQqLJo7pa3Ljz9eXs1puvg0/L5ccvgxHbkiqMRitRnBQ8hujq8uPlfOqOyipKqzDb8r3ru1PX+zwc8KijQGMIZypk6gFJXi296yZ26jMQFqx+L9hhzFVLlR6FO2H3J8/yaZj067XWWqFnis0TPd+wx2UY5wN6PyqoEND6enOns+AycKdLfnze4GUe/+B3hFysD4pESoXJoXKm/V0SR6MgPSspEFlERuSPN0t+t1nid45yppFmye82S0K2cGfE5Ht52PQ0NRQobExOUAyZkIaECoNw8ngbXpvH25jl/QCE9iq9O6Z0/wTxtzQs93mfAkKipEDkEF26Vsci8rsRmbi9SgahNCTeZgBDs+nA3P3Lop7Gx2v7rgUMWEEIPBgE5gdcKIICH3FCh1+cg3cFHxq4vJLkWyIG36lkP8tV2LP8P62lVvcDXgPLexgPq62liGXienB586LM91GZ5f1YagJdw2uYhBwCyP/WkP6Oy3uv8LhsmEY9fSRRQ3VmjHrAvDQu4zCprMtgv9slj/1YTgipAlG9ccf5J0ufa6MBxuwppe7BM6rdRx2tWRj8FSzmpw2G7u5HS6tzEnFsfASlZ0GbVcxA1reKGQkuFFoHXEtrPf4R9BUKxYEj6FEvSgdlkOOgWlVkI8CiCzR4vZw3g2S4GjnGALfMhJa+YBONwHvWLZICU3wEbj1ZEzo44yMNRO9gJ8kGgXGVUSxyfuXLjaaBY1D3m6RDoOZxCOdzzRknasRN+4YhJd2s2nEx6a3M/tLNYK+ni8MPKRzBpkSw0BEsFARTjQAVQXJBr2lTODOXLH+IiwK2Fis/ZMmG9XEvTqh0wQfnCIGZUwEKRhovnLxaGLqS1Zt3QqLYRKbGZ8/UDJtfnGrd2kLIuXr/B1WvjbuBUR5lvn0QVO0IimYEVWtFZ9an7qXubTJ22kFNlc675eVpWYPVcqS17gAf7ZSOQkXnGJq0zh2HxlengXXXrnEHYAgCKv0btswF6YnQ0lChaLshA0Oh1rd4G8/XKYLlAYsWnvLWkF4sg/5JoCnRKRXYDs/wDtERmCIHPiIcq0uyXDKWf4yLEoqZnvtfFFGrzOD1rrPn+1ineeeqjFdjCCodBPUDXGwEd7FwgTfQCPyP0GoyhTclGg799T6tXkWDgjXLy8JNo/xx139s6vqqIbCpAv48+7/A68qKyLrgAB9Xns92UI8PWr1HDWWME7toMIMigLBcYUPD25CHIxNeoWzYHbK57297yBS7k9sagjVYkRv1vDnfP7A8jj6HyZ65aZn39I1aMp0Z+W1JhSc8R7zNNvH2cZV9Z+lVmIA/NgBSIqa6Eq16CvLZf3tWlAcxn0Us/jGETKamjFYP6UHlGJABTC2Z7iGlBoJp+/r09PQbOYiU1g=="
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--light-hl-0: #795E26;
|
|
3
|
+
--dark-hl-0: #DCDCAA;
|
|
4
|
+
--light-hl-1: #000000;
|
|
5
|
+
--dark-hl-1: #D4D4D4;
|
|
6
|
+
--light-hl-2: #A31515;
|
|
7
|
+
--dark-hl-2: #CE9178;
|
|
8
|
+
--light-hl-3: #AF00DB;
|
|
9
|
+
--dark-hl-3: #C586C0;
|
|
10
|
+
--light-hl-4: #0000FF;
|
|
11
|
+
--dark-hl-4: #569CD6;
|
|
12
|
+
--light-hl-5: #001080;
|
|
13
|
+
--dark-hl-5: #9CDCFE;
|
|
14
|
+
--light-hl-6: #800000;
|
|
15
|
+
--dark-hl-6: #808080;
|
|
16
|
+
--light-hl-7: #800000;
|
|
17
|
+
--dark-hl-7: #569CD6;
|
|
18
|
+
--light-hl-8: #000000FF;
|
|
19
|
+
--dark-hl-8: #D4D4D4;
|
|
20
|
+
--light-hl-9: #E50000;
|
|
21
|
+
--dark-hl-9: #9CDCFE;
|
|
22
|
+
--light-hl-10: #0000FF;
|
|
23
|
+
--dark-hl-10: #CE9178;
|
|
24
|
+
--light-hl-11: #0070C1;
|
|
25
|
+
--dark-hl-11: #4FC1FF;
|
|
26
|
+
--light-hl-12: #098658;
|
|
27
|
+
--dark-hl-12: #B5CEA8;
|
|
28
|
+
--light-hl-13: #267F99;
|
|
29
|
+
--dark-hl-13: #4EC9B0;
|
|
30
|
+
--light-hl-14: #CD3131;
|
|
31
|
+
--dark-hl-14: #F44747;
|
|
32
|
+
--light-hl-15: #008000;
|
|
33
|
+
--dark-hl-15: #6A9955;
|
|
34
|
+
--light-code-background: #FFFFFF;
|
|
35
|
+
--dark-code-background: #1E1E1E;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@media (prefers-color-scheme: light) { :root {
|
|
39
|
+
--hl-0: var(--light-hl-0);
|
|
40
|
+
--hl-1: var(--light-hl-1);
|
|
41
|
+
--hl-2: var(--light-hl-2);
|
|
42
|
+
--hl-3: var(--light-hl-3);
|
|
43
|
+
--hl-4: var(--light-hl-4);
|
|
44
|
+
--hl-5: var(--light-hl-5);
|
|
45
|
+
--hl-6: var(--light-hl-6);
|
|
46
|
+
--hl-7: var(--light-hl-7);
|
|
47
|
+
--hl-8: var(--light-hl-8);
|
|
48
|
+
--hl-9: var(--light-hl-9);
|
|
49
|
+
--hl-10: var(--light-hl-10);
|
|
50
|
+
--hl-11: var(--light-hl-11);
|
|
51
|
+
--hl-12: var(--light-hl-12);
|
|
52
|
+
--hl-13: var(--light-hl-13);
|
|
53
|
+
--hl-14: var(--light-hl-14);
|
|
54
|
+
--hl-15: var(--light-hl-15);
|
|
55
|
+
--code-background: var(--light-code-background);
|
|
56
|
+
} }
|
|
57
|
+
|
|
58
|
+
@media (prefers-color-scheme: dark) { :root {
|
|
59
|
+
--hl-0: var(--dark-hl-0);
|
|
60
|
+
--hl-1: var(--dark-hl-1);
|
|
61
|
+
--hl-2: var(--dark-hl-2);
|
|
62
|
+
--hl-3: var(--dark-hl-3);
|
|
63
|
+
--hl-4: var(--dark-hl-4);
|
|
64
|
+
--hl-5: var(--dark-hl-5);
|
|
65
|
+
--hl-6: var(--dark-hl-6);
|
|
66
|
+
--hl-7: var(--dark-hl-7);
|
|
67
|
+
--hl-8: var(--dark-hl-8);
|
|
68
|
+
--hl-9: var(--dark-hl-9);
|
|
69
|
+
--hl-10: var(--dark-hl-10);
|
|
70
|
+
--hl-11: var(--dark-hl-11);
|
|
71
|
+
--hl-12: var(--dark-hl-12);
|
|
72
|
+
--hl-13: var(--dark-hl-13);
|
|
73
|
+
--hl-14: var(--dark-hl-14);
|
|
74
|
+
--hl-15: var(--dark-hl-15);
|
|
75
|
+
--code-background: var(--dark-code-background);
|
|
76
|
+
} }
|
|
77
|
+
|
|
78
|
+
:root[data-theme='light'] {
|
|
79
|
+
--hl-0: var(--light-hl-0);
|
|
80
|
+
--hl-1: var(--light-hl-1);
|
|
81
|
+
--hl-2: var(--light-hl-2);
|
|
82
|
+
--hl-3: var(--light-hl-3);
|
|
83
|
+
--hl-4: var(--light-hl-4);
|
|
84
|
+
--hl-5: var(--light-hl-5);
|
|
85
|
+
--hl-6: var(--light-hl-6);
|
|
86
|
+
--hl-7: var(--light-hl-7);
|
|
87
|
+
--hl-8: var(--light-hl-8);
|
|
88
|
+
--hl-9: var(--light-hl-9);
|
|
89
|
+
--hl-10: var(--light-hl-10);
|
|
90
|
+
--hl-11: var(--light-hl-11);
|
|
91
|
+
--hl-12: var(--light-hl-12);
|
|
92
|
+
--hl-13: var(--light-hl-13);
|
|
93
|
+
--hl-14: var(--light-hl-14);
|
|
94
|
+
--hl-15: var(--light-hl-15);
|
|
95
|
+
--code-background: var(--light-code-background);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
:root[data-theme='dark'] {
|
|
99
|
+
--hl-0: var(--dark-hl-0);
|
|
100
|
+
--hl-1: var(--dark-hl-1);
|
|
101
|
+
--hl-2: var(--dark-hl-2);
|
|
102
|
+
--hl-3: var(--dark-hl-3);
|
|
103
|
+
--hl-4: var(--dark-hl-4);
|
|
104
|
+
--hl-5: var(--dark-hl-5);
|
|
105
|
+
--hl-6: var(--dark-hl-6);
|
|
106
|
+
--hl-7: var(--dark-hl-7);
|
|
107
|
+
--hl-8: var(--dark-hl-8);
|
|
108
|
+
--hl-9: var(--dark-hl-9);
|
|
109
|
+
--hl-10: var(--dark-hl-10);
|
|
110
|
+
--hl-11: var(--dark-hl-11);
|
|
111
|
+
--hl-12: var(--dark-hl-12);
|
|
112
|
+
--hl-13: var(--dark-hl-13);
|
|
113
|
+
--hl-14: var(--dark-hl-14);
|
|
114
|
+
--hl-15: var(--dark-hl-15);
|
|
115
|
+
--code-background: var(--dark-code-background);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.hl-0 { color: var(--hl-0); }
|
|
119
|
+
.hl-1 { color: var(--hl-1); }
|
|
120
|
+
.hl-2 { color: var(--hl-2); }
|
|
121
|
+
.hl-3 { color: var(--hl-3); }
|
|
122
|
+
.hl-4 { color: var(--hl-4); }
|
|
123
|
+
.hl-5 { color: var(--hl-5); }
|
|
124
|
+
.hl-6 { color: var(--hl-6); }
|
|
125
|
+
.hl-7 { color: var(--hl-7); }
|
|
126
|
+
.hl-8 { color: var(--hl-8); }
|
|
127
|
+
.hl-9 { color: var(--hl-9); }
|
|
128
|
+
.hl-10 { color: var(--hl-10); }
|
|
129
|
+
.hl-11 { color: var(--hl-11); }
|
|
130
|
+
.hl-12 { color: var(--hl-12); }
|
|
131
|
+
.hl-13 { color: var(--hl-13); }
|
|
132
|
+
.hl-14 { color: var(--hl-14); }
|
|
133
|
+
.hl-15 { color: var(--hl-15); }
|
|
134
|
+
pre, code { background: var(--code-background); }
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
addIcons();
|
|
3
|
+
function addIcons() {
|
|
4
|
+
if (document.readyState === "loading") return document.addEventListener("DOMContentLoaded", addIcons);
|
|
5
|
+
const svg = document.body.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "svg"));
|
|
6
|
+
svg.innerHTML = `<g id="icon-1" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-2" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-4" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">N</text></g><g id="icon-8" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">E</text></g><g id="icon-16" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-32" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">V</text></g><g id="icon-64" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">F</text></g><g id="icon-128" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-256" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">I</text></g><g id="icon-512" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-constructor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-1024" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-2048" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-method)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-4096" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">F</text></g><g id="icon-8192" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-16384" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-constructor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-32768" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-65536" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-131072" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-262144" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-524288" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-1048576" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-2097152" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-4194304" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-reference)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">R</text></g><g id="icon-8388608" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-document)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><g stroke="var(--color-icon-text)" fill="none" stroke-width="1.5"><polygon points="6,5 6,19 18,19, 18,10 13,5"></polygon><line x1="9" y1="9" x2="13" y2="9"></line><line x1="9" y1="12" x2="15" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line></g></g><g id="icon-folder" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-document)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><g stroke="var(--color-icon-text)" fill="none" stroke-width="1.5"><polygon points="5,5 10,5 12,8 19,8 19,18 5,18"></polygon></g></g><g id="icon-chevronDown" class="tsd-no-select"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-icon-text)"></path></g><g id="icon-chevronSmall" class="tsd-no-select"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-icon-text)"></path></g><g id="icon-checkbox" class="tsd-no-select"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></g><g id="icon-menu" class="tsd-no-select"><rect x="1" y="3" width="14" height="2" fill="var(--color-icon-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-icon-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-icon-text)"></rect></g><g id="icon-search" class="tsd-no-select"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-icon-text)"></path></g><g id="icon-anchor" class="tsd-no-select"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></g></g><g id="icon-alertNote" class="tsd-no-select"><path fill="var(--color-alert-note)" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></g><g id="icon-alertTip" class="tsd-no-select"><path fill="var(--color-alert-tip)" d="M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.847a8.456 8.456 0 0 0-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.751.751 0 0 1-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75ZM5.75 12h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM6 15.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z"></path></g><g id="icon-alertImportant" class="tsd-no-select"><path fill="var(--color-alert-important)" d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></g><g id="icon-alertWarning" class="tsd-no-select"><path fill="var(--color-alert-warning)" d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></g><g id="icon-alertCaution" class="tsd-no-select"><path fill="var(--color-alert-caution)" d="M4.47.22A.749.749 0 0 1 5 0h6c.199 0 .389.079.53.22l4.25 4.25c.141.14.22.331.22.53v6a.749.749 0 0 1-.22.53l-4.25 4.25A.749.749 0 0 1 11 16H5a.749.749 0 0 1-.53-.22L.22 11.53A.749.749 0 0 1 0 11V5c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.31v5.38l3.81 3.81h5.38l3.81-3.81V5.31L10.69 1.5ZM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></g>`;
|
|
7
|
+
svg.style.display = "none";
|
|
8
|
+
if (location.protocol === "file:") updateUseElements();
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
function updateUseElements() {
|
|
12
|
+
document.querySelectorAll("use").forEach(el => {
|
|
13
|
+
if (el.getAttribute("href").includes("#icon-")) {
|
|
14
|
+
el.setAttribute("href", el.getAttribute("href").replace(/.*#/, "#"));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
})()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg"><g id="icon-1" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-2" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-module)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-4" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-namespace)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">N</text></g><g id="icon-8" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-enum)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">E</text></g><g id="icon-16" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-32" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">V</text></g><g id="icon-64" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">F</text></g><g id="icon-128" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-256" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">I</text></g><g id="icon-512" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-constructor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-1024" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-2048" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-method)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">M</text></g><g id="icon-4096" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">F</text></g><g id="icon-8192" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-16384" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-constructor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">C</text></g><g id="icon-32768" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-property)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">P</text></g><g id="icon-65536" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-131072" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-262144" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-524288" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-1048576" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-accessor)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">A</text></g><g id="icon-2097152" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-type-alias)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">T</text></g><g id="icon-4194304" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-reference)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><text fill="var(--color-icon-text)" x="50%" y="50%" dominant-baseline="central" text-anchor="middle">R</text></g><g id="icon-8388608" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-document)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><g stroke="var(--color-icon-text)" fill="none" stroke-width="1.5"><polygon points="6,5 6,19 18,19, 18,10 13,5"></polygon><line x1="9" y1="9" x2="13" y2="9"></line><line x1="9" y1="12" x2="15" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line></g></g><g id="icon-folder" class="tsd-no-select"><rect fill="var(--color-icon-background)" stroke="var(--color-document)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6"></rect><g stroke="var(--color-icon-text)" fill="none" stroke-width="1.5"><polygon points="5,5 10,5 12,8 19,8 19,18 5,18"></polygon></g></g><g id="icon-chevronDown" class="tsd-no-select"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-icon-text)"></path></g><g id="icon-chevronSmall" class="tsd-no-select"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-icon-text)"></path></g><g id="icon-checkbox" class="tsd-no-select"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></g><g id="icon-menu" class="tsd-no-select"><rect x="1" y="3" width="14" height="2" fill="var(--color-icon-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-icon-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-icon-text)"></rect></g><g id="icon-search" class="tsd-no-select"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-icon-text)"></path></g><g id="icon-anchor" class="tsd-no-select"><g stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></g></g><g id="icon-alertNote" class="tsd-no-select"><path fill="var(--color-alert-note)" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></g><g id="icon-alertTip" class="tsd-no-select"><path fill="var(--color-alert-tip)" d="M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.847a8.456 8.456 0 0 0-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.751.751 0 0 1-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75ZM5.75 12h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM6 15.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z"></path></g><g id="icon-alertImportant" class="tsd-no-select"><path fill="var(--color-alert-important)" d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></g><g id="icon-alertWarning" class="tsd-no-select"><path fill="var(--color-alert-warning)" d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></g><g id="icon-alertCaution" class="tsd-no-select"><path fill="var(--color-alert-caution)" d="M4.47.22A.749.749 0 0 1 5 0h6c.199 0 .389.079.53.22l4.25 4.25c.141.14.22.331.22.53v6a.749.749 0 0 1-.22.53l-4.25 4.25A.749.749 0 0 1 11 16H5a.749.749 0 0 1-.53-.22L.22 11.53A.749.749 0 0 1 0 11V5c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.31v5.38l3.81 3.81h5.38l3.81-3.81V5.31L10.69 1.5ZM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></g></svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="50" height="20" viewBox="0 0 50 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M41.1644 3.72272C41.1709 3.68438 41.1783 3.64604 41.1862 3.60863C41.2417 3.34717 41.3309 3.09865 41.4489 2.86676C41.6024 2.56604 41.8045 2.29442 42.045 2.06207C42.0968 2.01172 42.1791 2.01172 42.2309 2.06207C42.4713 2.29489 42.6734 2.56697 42.8265 2.86768C42.9444 3.09911 43.0337 3.34763 43.0887 3.60863C43.0966 3.6465 43.104 3.68438 43.1105 3.72226C43.1253 3.80911 43.1368 3.89733 43.1438 3.98695C43.1447 3.9985 43.1456 4.01051 43.1465 4.02206C43.1655 4.02067 43.1849 4.01929 43.2034 4.0179C44.5875 3.92921 45.4509 4.4669 45.9643 5.01475L48.0707 7.72122C48.1702 7.84825 48.1433 8.03257 48.012 8.12634L45.9458 9.60684C45.8597 9.66873 45.7464 9.67705 45.6507 9.63178C44.138 8.91671 42.0265 8.64232 38.8143 9.90063C34.6341 11.5382 30.2094 13.5651 30.2094 13.5651C30.2094 13.5651 24.4634 16.3252 19.0295 17.5262L19.4333 19.3495C22.2898 18.718 25.1894 17.6874 27.3477 16.8306C28.4331 16.3996 29.345 16.0069 29.9874 15.721C30.3088 15.5778 30.5636 15.4614 30.7393 15.3796C30.8272 15.339 30.8956 15.3066 30.9428 15.2845C30.9525 15.2798 30.9618 15.2757 30.9696 15.272C30.9807 15.2669 30.99 15.2623 30.9974 15.2586L31.0002 15.2572H31.0016C31.0016 15.2572 31.0016 15.2563 31.002 15.2563C31.0099 15.2526 31.0214 15.2475 31.0367 15.2406C31.0691 15.2258 31.1176 15.2036 31.181 15.175C31.3082 15.1172 31.495 15.0327 31.7327 14.926C32.2081 14.7126 32.8856 14.4105 33.693 14.058C35.3107 13.3513 37.4375 12.4459 39.4964 11.6393C42.3169 10.5349 43.8832 10.8624 44.8507 11.3197C45.5356 11.6435 46.3749 11.5973 47.0353 11.1243L49.1016 9.64379C50.0944 8.93241 50.2965 7.53876 49.5464 6.57516L47.3872 3.80125L47.329 3.73889C46.7116 3.07971 45.8103 2.47596 44.5982 2.24269C44.3406 1.66712 43.9757 1.1516 43.5322 0.72154C42.7553 -0.0314115 41.521 -0.0318734 40.7436 0.720155C40.135 1.30912 39.6758 2.05699 39.4367 2.89863C38.2736 3.30652 37.3256 3.41554 36.5117 3.37396C35.4763 3.32084 34.5255 3.01735 33.4609 2.55773C33.0942 2.39928 32.7038 2.21405 32.2881 2.01634C30.4202 1.12943 28.0428 0 25.0188 0C21.2142 0 18.5532 1.22181 16.314 2.24962C16.2136 2.29581 16.1138 2.34154 16.0148 2.38681C13.7372 3.42893 11.8883 4.19528 9.17556 3.88117C7.74704 3.71579 6.94283 3.48852 5.93606 3.00488C5.0981 2.60253 4.15885 2.04498 2.70027 1.17839C2.18695 0.873517 1.60888 0.5303 0.948031 0.142276L0 1.75211C0.617377 2.11519 1.17093 2.44363 1.67316 2.74204C5.16561 4.81658 6.17007 5.4134 8.96005 5.73629C12.3387 6.12755 14.6385 5.07296 17.0512 3.96709C19.2917 2.93975 21.6295 1.8676 25.0188 1.8676C27.5789 1.8676 29.499 2.77253 31.353 3.6465C34.1203 4.95101 36.7401 6.18575 41.121 4.23732C41.121 4.06178 41.1358 3.88994 41.1644 3.72319V3.72272Z" fill="url(#paint0_radial_14_245)"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.6215 7.30052C24.4069 6.73974 23.9583 6.11243 23.1199 5.4842L24.2418 3.99031C25.3041 4.78622 26.0038 5.68145 26.3682 6.63349C26.734 7.58969 26.7391 8.54451 26.5037 9.41202C26.1137 10.8466 25.0691 12.0424 23.8882 12.7231C23.6289 12.8725 23.5627 13.2239 23.8 13.4064C24.2725 13.77 24.9604 14.1974 25.8248 14.6642C28.2943 15.9973 31.7058 17.3961 33.8539 18.2705L33.1487 20C31.0205 19.1339 27.5109 17.6973 24.936 16.3073C23.6799 15.6292 22.5141 14.8952 21.8819 14.1787C21.5841 13.841 21.2081 13.289 21.32 12.6183C21.4412 11.8931 22.0382 11.5078 22.5418 11.3069C23.4843 10.9304 24.4074 9.99729 24.6992 8.9233C24.8398 8.40593 24.8347 7.85808 24.622 7.30099L24.6215 7.30052Z" fill="url(#paint1_linear_14_245)"/>
|
|
4
|
+
<defs>
|
|
5
|
+
<radialGradient id="paint0_radial_14_245" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(32.6041) rotate(135.136) scale(25.552 65.9531)">
|
|
6
|
+
<stop offset="0.5625" stop-color="white"/>
|
|
7
|
+
<stop offset="0.990797" stop-color="white" stop-opacity="0"/>
|
|
8
|
+
</radialGradient>
|
|
9
|
+
<linearGradient id="paint1_linear_14_245" x1="21.8392" y1="10.7338" x2="20.0498" y2="6.47924" gradientUnits="userSpaceOnUse">
|
|
10
|
+
<stop stop-color="white"/>
|
|
11
|
+
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg width="50" height="20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M41.1644 3.72272c.0065-.03834.0139-.07668.0218-.11409.0555-.26146.1447-.50998.2627-.74187.1535-.30072.3556-.57234.5961-.80469.0518-.05035.1341-.05035.1859 0 .2404.23282.4425.5049.5956.80561.1179.23143.2072.47995.2622.74095.0079.03787.0153.07575.0218.11363.0148.08685.0263.17507.0333.26469.0009.01155.0018.02356.0027.03511.019-.00139.0384-.00277.0569-.00416 1.3841-.08869 2.2475.449 2.7609.99685l2.1064 2.70647c.0995.12703.0726.31135-.0587.40512l-2.0662 1.4805c-.0861.06189-.1994.07021-.2951.02494-1.5127-.71507-3.6242-.98946-6.8364.26885-4.1802 1.63757-8.6049 3.66447-8.6049 3.66447s-5.746 2.7601-11.1799 3.9611l.4038 1.8233c2.8565-.6315 5.7561-1.6621 7.9144-2.5189 1.0854-.431 1.9973-.8237 2.6397-1.1096.3214-.1432.5762-.2596.7519-.3414.0879-.0406.1563-.073.2035-.0951.0097-.0047.019-.0088.0268-.0125.0111-.0051.0204-.0097.0278-.0134l.0028-.0014h.0014s0-.0009.0004-.0009c.0079-.0037.0194-.0088.0347-.0157.0324-.0148.0809-.037.1443-.0656.1272-.0578.314-.1423.5517-.249.4754-.2134 1.1529-.5155 1.9603-.868 1.6177-.7067 3.7445-1.6121 5.8034-2.4187 2.8205-1.1044 4.3868-.7769 5.3543-.3196.6849.3238 1.5242.2776 2.1846-.1954l2.0663-1.48051c.9928-.71138 1.1949-2.10503.4448-3.06863l-2.1592-2.77391-.0582-.06236c-.6174-.65918-1.5187-1.26293-2.7308-1.4962-.2576-.57557-.6225-1.09109-1.066-1.52115-.7769-.7529515-2.0112-.7534135-2.7886-.001385-.6086.588965-1.0678 1.336835-1.3069 2.178475-1.1631.40789-2.1111.51691-2.925.47533-1.0354-.05312-1.9862-.35661-3.0508-.81623-.3667-.15845-.7571-.34368-1.1728-.54139C30.4202 1.12943 28.0428 0 25.0188 0c-3.8046 0-6.4656 1.22181-8.7048 2.24962-.1004.04619-.2002.09192-.2992.13719-2.2776 1.04212-4.1265 1.80847-6.83924 1.49436-1.42852-.16538-2.23273-.39265-3.2395-.87629-.83796-.40235-1.77721-.9599-3.23579-1.82649C2.18695.873517 1.60888.5303.948031.142276L0 1.75211c.617377.36308 1.17093.69152 1.67316.98993C5.16561 4.81658 6.17007 5.4134 8.96005 5.73629c3.37865.39126 5.67845-.66333 8.09115-1.7692 2.2405-1.02734 4.5783-2.09949 7.9676-2.09949 2.5601 0 4.4802.90493 6.3342 1.7789 2.7673 1.30451 5.3871 2.53925 9.768.59082 0-.17554.0148-.34738.0434-.51413v-.00047Z" fill="url(#a)"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.6215 7.30052c-.2146-.56078-.6632-1.18809-1.5016-1.81632l1.1219-1.49389c1.0623.79591 1.7619 1.69114 2.1264 2.64318.3658.9562.3709 1.91102.1355 2.77853-.4416 1.62428-1.7223 2.94248-3.0899 3.55338-.0376.0168-.0478.0656-.0184.0946.4314.4251 1.2722.9793 2.4294 1.6042 2.4695 1.3331 5.881 2.7319 8.0291 3.6063L33.1487 20c-2.1282-.8661-5.6378-2.3027-8.2128-3.6927-1.256-.6781-2.4218-1.4121-3.054-2.1286-.2978-.3377-.6738-.8897-.5619-1.5604.1212-.7252.7182-1.1105 1.2218-1.3114.9425-.3765 1.8656-1.30961 2.1574-2.3836.1406-.51737.1355-1.06522-.0773-1.62231l-.0004-.00047Z" fill="url(#b)"/>
|
|
4
|
+
<defs>
|
|
5
|
+
<radialGradient id="a" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-18.11083 18.02505 -46.52506 -46.74645 32.6041 0)">
|
|
6
|
+
<stop offset=".5625" stop-color="#2C2A2A"/>
|
|
7
|
+
<stop offset=".990797" stop-color="#2C2A2A" stop-opacity="0"/>
|
|
8
|
+
</radialGradient>
|
|
9
|
+
<linearGradient id="b" x1="21.8392" y1="10.7338" x2="20.0498" y2="6.47924" gradientUnits="userSpaceOnUse">
|
|
10
|
+
<stop stop-color="#2C2A2A"/>
|
|
11
|
+
<stop offset="1" stop-color="#2C2A2A" stop-opacity="0"/>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
window.translations={"copy":"Copy","copied":"Copied!","normally_hidden":"This member is normally hidden due to your filter settings.","hierarchy_expand":"Expand","hierarchy_collapse":"Collapse","folder":"Folder","search_index_not_available":"The search index is not available","search_no_results_found_for_0":"No results found for {0}","kind_1":"Project","kind_2":"Module","kind_4":"Namespace","kind_8":"Enumeration","kind_16":"Enumeration Member","kind_32":"Variable","kind_64":"Function","kind_128":"Class","kind_256":"Interface","kind_512":"Constructor","kind_1024":"Property","kind_2048":"Method","kind_4096":"Call Signature","kind_8192":"Index Signature","kind_16384":"Constructor Signature","kind_32768":"Parameter","kind_65536":"Type Literal","kind_131072":"Type Parameter","kind_262144":"Accessor","kind_524288":"Get Signature","kind_1048576":"Set Signature","kind_2097152":"Type Alias","kind_4194304":"Reference","kind_8388608":"Document"};
|
|
3
|
+
"use strict";(()=>{var Ke=Object.create;var he=Object.defineProperty;var Ge=Object.getOwnPropertyDescriptor;var Ze=Object.getOwnPropertyNames;var Xe=Object.getPrototypeOf,Ye=Object.prototype.hasOwnProperty;var et=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var tt=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Ze(e))!Ye.call(t,i)&&i!==n&&he(t,i,{get:()=>e[i],enumerable:!(r=Ge(e,i))||r.enumerable});return t};var nt=(t,e,n)=>(n=t!=null?Ke(Xe(t)):{},tt(e||!t||!t.__esModule?he(n,"default",{value:t,enumerable:!0}):n,t));var ye=et((me,ge)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(n){e.console&&console.warn&&console.warn(n)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i<r.length;i++){var s=r[i],o=e[s];if(Array.isArray(o)){n[s]=o.slice();continue}if(typeof o=="string"||typeof o=="number"||typeof o=="boolean"){n[s]=o;continue}throw new TypeError("clone is not deep and does not support nested objects")}return n},t.FieldRef=function(e,n,r){this.docRef=e,this.fieldName=n,this._stringValue=r},t.FieldRef.joiner="/",t.FieldRef.fromString=function(e){var n=e.indexOf(t.FieldRef.joiner);if(n===-1)throw"malformed field ref string";var r=e.slice(0,n),i=e.slice(n+1);return new t.FieldRef(i,r,e)},t.FieldRef.prototype.toString=function(){return this._stringValue==null&&(this._stringValue=this.fieldName+t.FieldRef.joiner+this.docRef),this._stringValue};t.Set=function(e){if(this.elements=Object.create(null),e){this.length=e.length;for(var n=0;n<this.length;n++)this.elements[e[n]]=!0}else this.length=0},t.Set.complete={intersect:function(e){return e},union:function(){return this},contains:function(){return!0}},t.Set.empty={intersect:function(){return this},union:function(e){return e},contains:function(){return!1}},t.Set.prototype.contains=function(e){return!!this.elements[e]},t.Set.prototype.intersect=function(e){var n,r,i,s=[];if(e===t.Set.complete)return this;if(e===t.Set.empty)return e;this.length<e.length?(n=this,r=e):(n=e,r=this),i=Object.keys(n.elements);for(var o=0;o<i.length;o++){var a=i[o];a in r.elements&&s.push(a)}return new t.Set(s)},t.Set.prototype.union=function(e){return e===t.Set.complete?t.Set.complete:e===t.Set.empty?this:new t.Set(Object.keys(this.elements).concat(Object.keys(e.elements)))},t.idf=function(e,n){var r=0;for(var i in e)i!="_index"&&(r+=Object.keys(e[i]).length);var s=(n-r+.5)/(r+.5);return Math.log(1+Math.abs(s))},t.Token=function(e,n){this.str=e||"",this.metadata=n||{}},t.Token.prototype.toString=function(){return this.str},t.Token.prototype.update=function(e){return this.str=e(this.str,this.metadata),this},t.Token.prototype.clone=function(e){return e=e||function(n){return n},new t.Token(e(this.str,this.metadata),this.metadata)};t.tokenizer=function(e,n){if(e==null||e==null)return[];if(Array.isArray(e))return e.map(function(f){return new t.Token(t.utils.asString(f).toLowerCase(),t.utils.clone(n))});for(var r=e.toString().toLowerCase(),i=r.length,s=[],o=0,a=0;o<=i;o++){var c=r.charAt(o),l=o-a;if(c.match(t.tokenizer.separator)||o==i){if(l>0){var d=t.utils.clone(n)||{};d.position=[a,l],d.index=s.length,s.push(new t.Token(r.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index.
|
|
4
|
+
`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r<n;r++){for(var i=this._stack[r],s=[],o=0;o<e.length;o++){var a=i(e[o],o,e);if(!(a==null||a===""))if(Array.isArray(a))for(var c=0;c<a.length;c++)s.push(a[c]);else s.push(a)}e=s}return e},t.Pipeline.prototype.runString=function(e,n){var r=new t.Token(e,n);return this.run([r]).map(function(i){return i.toString()})},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})};t.Vector=function(e){this._magnitude=0,this.elements=e||[]},t.Vector.prototype.positionForIndex=function(e){if(this.elements.length==0)return 0;for(var n=0,r=this.elements.length/2,i=r-n,s=Math.floor(i/2),o=this.elements[s*2];i>1&&(o<e&&(n=s),o>e&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(o<e)return(s+1)*2},t.Vector.prototype.insert=function(e,n){this.upsert(e,n,function(){throw"duplicate index"})},t.Vector.prototype.upsert=function(e,n,r){this._magnitude=0;var i=this.positionForIndex(e);this.elements[i]==e?this.elements[i+1]=r(this.elements[i+1],n):this.elements.splice(i,0,e,n)},t.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var e=0,n=this.elements.length,r=1;r<n;r+=2){var i=this.elements[r];e+=i*i}return this._magnitude=Math.sqrt(e)},t.Vector.prototype.dot=function(e){for(var n=0,r=this.elements,i=e.elements,s=r.length,o=i.length,a=0,c=0,l=0,d=0;l<s&&d<o;)a=r[l],c=i[d],a<c?l+=2:a>c?d+=2:a==c&&(n+=r[l+1]*i[d+1],l+=2,d+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n<this.elements.length;n+=2,r++)e[r]=this.elements[n];return e},t.Vector.prototype.toJSON=function(){return this.elements};t.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},n={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},r="[^aeiou]",i="[aeiouy]",s=r+"[^aeiouy]*",o=i+"[aeiou]*",a="^("+s+")?"+o+s,c="^("+s+")?"+o+s+"("+o+")?$",l="^("+s+")?"+o+s+o+s,d="^("+s+")?"+i,f=new RegExp(a),p=new RegExp(l),v=new RegExp(c),x=new RegExp(d),w=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,T=/^(.+?)(ed|ing)$/,L=/.$/,C=/(at|bl|iz)$/,O=new RegExp("([^aeiouylsz])\\1$"),j=new RegExp("^"+s+i+"[^aeiouwxy]$"),N=/^(.+?[^aeiou])y$/,q=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,W=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,B=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,z=/^(.+?)(s|t)(ion)$/,_=/^(.+?)e$/,U=/ll$/,J=new RegExp("^"+s+i+"[^aeiouwxy]$"),V=function(u){var y,P,k,h,E,Q,H;if(u.length<3)return u;if(k=u.substr(0,1),k=="y"&&(u=k.toUpperCase()+u.substr(1)),h=w,E=m,h.test(u)?u=u.replace(h,"$1$2"):E.test(u)&&(u=u.replace(E,"$1$2")),h=g,E=T,h.test(u)){var b=h.exec(u);h=f,h.test(b[1])&&(h=L,u=u.replace(h,""))}else if(E.test(u)){var b=E.exec(u);y=b[1],E=x,E.test(y)&&(u=y,E=C,Q=O,H=j,E.test(u)?u=u+"e":Q.test(u)?(h=L,u=u.replace(h,"")):H.test(u)&&(u=u+"e"))}if(h=N,h.test(u)){var b=h.exec(u);y=b[1],u=y+"i"}if(h=q,h.test(u)){var b=h.exec(u);y=b[1],P=b[2],h=f,h.test(y)&&(u=y+e[P])}if(h=W,h.test(u)){var b=h.exec(u);y=b[1],P=b[2],h=f,h.test(y)&&(u=y+n[P])}if(h=B,E=z,h.test(u)){var b=h.exec(u);y=b[1],h=p,h.test(y)&&(u=y)}else if(E.test(u)){var b=E.exec(u);y=b[1]+b[2],E=p,E.test(y)&&(u=y)}if(h=_,h.test(u)){var b=h.exec(u);y=b[1],h=p,E=v,Q=J,(h.test(y)||E.test(y)&&!Q.test(y))&&(u=y)}return h=U,E=p,h.test(u)&&E.test(u)&&(h=L,u=u.replace(h,"")),k=="y"&&(u=k.toLowerCase()+u.substr(1)),u};return function(A){return A.update(V)}}(),t.Pipeline.registerFunction(t.stemmer,"stemmer");t.generateStopWordFilter=function(e){var n=e.reduce(function(r,i){return r[i]=i,r},{});return function(r){if(r&&n[r.toString()]!==r.toString())return r}},t.stopWordFilter=t.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter");t.trimmer=function(e){return e.update(function(n){return n.replace(/^\W+/,"").replace(/\W+$/,"")})},t.Pipeline.registerFunction(t.trimmer,"trimmer");t.TokenSet=function(){this.final=!1,this.edges={},this.id=t.TokenSet._nextId,t.TokenSet._nextId+=1},t.TokenSet._nextId=1,t.TokenSet.fromArray=function(e){for(var n=new t.TokenSet.Builder,r=0,i=e.length;r<i;r++)n.insert(e[r]);return n.finish(),n.root},t.TokenSet.fromClause=function(e){return"editDistance"in e?t.TokenSet.fromFuzzyString(e.term,e.editDistance):t.TokenSet.fromString(e.term)},t.TokenSet.fromFuzzyString=function(e,n){for(var r=new t.TokenSet,i=[{node:r,editsRemaining:n,str:e}];i.length;){var s=i.pop();if(s.str.length>0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var c=s.node.edges["*"];else{var c=new t.TokenSet;s.node.edges["*"]=c}if(s.str.length==0&&(c.final=!0),i.push({node:c,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),f=s.str.charAt(1),p;f in s.node.edges?p=s.node.edges[f]:(p=new t.TokenSet,s.node.edges[f]=p),s.str.length==1&&(p.final=!0),i.push({node:p,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i<s;i++){var o=e[i],a=i==s-1;if(o=="*")n.edges[o]=n,n.final=a;else{var c=new t.TokenSet;c.final=a,n.edges[o]=c,n=c}}return r},t.TokenSet.prototype.toArray=function(){for(var e=[],n=[{prefix:"",node:this}];n.length;){var r=n.pop(),i=Object.keys(r.node.edges),s=i.length;r.node.final&&(r.prefix.charAt(0),e.push(r.prefix));for(var o=0;o<s;o++){var a=i[o];n.push({prefix:r.prefix.concat(a),node:r.node.edges[a]})}}return e},t.TokenSet.prototype.toString=function(){if(this._str)return this._str;for(var e=this.final?"1":"0",n=Object.keys(this.edges).sort(),r=n.length,i=0;i<r;i++){var s=n[i],o=this.edges[s];e=e+s+o.id}return e},t.TokenSet.prototype.intersect=function(e){for(var n=new t.TokenSet,r=void 0,i=[{qNode:e,output:n,node:this}];i.length;){r=i.pop();for(var s=Object.keys(r.qNode.edges),o=s.length,a=Object.keys(r.node.edges),c=a.length,l=0;l<o;l++)for(var d=s[l],f=0;f<c;f++){var p=a[f];if(p==d||d=="*"){var v=r.node.edges[p],x=r.qNode.edges[d],w=v.final&&x.final,m=void 0;p in r.output.edges?(m=r.output.edges[p],m.final=m.final||w):(m=new t.TokenSet,m.final=w,r.output.edges[p]=m),i.push({qNode:x,output:m,node:v})}}}return n},t.TokenSet.Builder=function(){this.previousWord="",this.root=new t.TokenSet,this.uncheckedNodes=[],this.minimizedNodes={}},t.TokenSet.Builder.prototype.insert=function(e){var n,r=0;if(e<this.previousWord)throw new Error("Out of order word insertion");for(var i=0;i<e.length&&i<this.previousWord.length&&e[i]==this.previousWord[i];i++)r++;this.minimize(r),this.uncheckedNodes.length==0?n=this.root:n=this.uncheckedNodes[this.uncheckedNodes.length-1].child;for(var i=r;i<e.length;i++){var s=new t.TokenSet,o=e[i];n.edges[o]=s,this.uncheckedNodes.push({parent:n,char:o,child:s}),n=s}n.final=!0,this.previousWord=e},t.TokenSet.Builder.prototype.finish=function(){this.minimize(0)},t.TokenSet.Builder.prototype.minimize=function(e){for(var n=this.uncheckedNodes.length-1;n>=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),c=0;c<this.fields.length;c++)i[this.fields[c]]=new t.Vector;e.call(n,n);for(var c=0;c<n.clauses.length;c++){var l=n.clauses[c],d=null,f=t.Set.empty;l.usePipeline?d=this.pipeline.runString(l.term,{fields:l.fields}):d=[l.term];for(var p=0;p<d.length;p++){var v=d[p];l.term=v;var x=t.TokenSet.fromClause(l),w=this.tokenSet.intersect(x).toArray();if(w.length===0&&l.presence===t.Query.presence.REQUIRED){for(var m=0;m<l.fields.length;m++){var g=l.fields[m];o[g]=t.Set.empty}break}for(var T=0;T<w.length;T++)for(var L=w[T],C=this.invertedIndex[L],O=C._index,m=0;m<l.fields.length;m++){var g=l.fields[m],j=C[g],N=Object.keys(j),q=L+"/"+g,W=new t.Set(N);if(l.presence==t.Query.presence.REQUIRED&&(f=f.union(W),o[g]===void 0&&(o[g]=t.Set.complete)),l.presence==t.Query.presence.PROHIBITED){a[g]===void 0&&(a[g]=t.Set.empty),a[g]=a[g].union(W);continue}if(i[g].upsert(O,l.boost,function(Ue,Je){return Ue+Je}),!s[q]){for(var B=0;B<N.length;B++){var z=N[B],_=new t.FieldRef(z,g),U=j[z],J;(J=r[_])===void 0?r[_]=new t.MatchData(L,g,U):J.add(L,g,U)}s[q]=!0}}}if(l.presence===t.Query.presence.REQUIRED)for(var m=0;m<l.fields.length;m++){var g=l.fields[m];o[g]=o[g].intersect(f)}}for(var V=t.Set.complete,A=t.Set.empty,c=0;c<this.fields.length;c++){var g=this.fields[c];o[g]&&(V=V.intersect(o[g])),a[g]&&(A=A.union(a[g]))}var u=Object.keys(r),y=[],P=Object.create(null);if(n.isNegated()){u=Object.keys(this.fieldVectors);for(var c=0;c<u.length;c++){var _=u[c],k=t.FieldRef.fromString(_);r[_]=new t.MatchData}}for(var c=0;c<u.length;c++){var k=t.FieldRef.fromString(u[c]),h=k.docRef;if(V.contains(h)&&!A.contains(h)){var E=this.fieldVectors[k],Q=i[k.fieldName].similarity(E),H;if((H=P[h])!==void 0)H.score+=Q,H.matchData.combine(r[k]);else{var b={ref:h,score:Q,matchData:r[k]};P[h]=b,y.push(b)}}}return y.sort(function(We,ze){return ze.score-We.score})},t.Index.prototype.toJSON=function(){var e=Object.keys(this.invertedIndex).sort().map(function(r){return[r,this.invertedIndex[r]]},this),n=Object.keys(this.fieldVectors).map(function(r){return[r,this.fieldVectors[r].toJSON()]},this);return{version:t.version,fields:this.fields,fieldVectors:n,invertedIndex:e,pipeline:this.pipeline.toJSON()}},t.Index.load=function(e){var n={},r={},i=e.fieldVectors,s=Object.create(null),o=e.invertedIndex,a=new t.TokenSet.Builder,c=t.Pipeline.load(e.pipeline);e.version!=t.version&&t.utils.warn("Version mismatch when loading serialised index. Current version of lunr '"+t.version+"' does not match serialized index '"+e.version+"'");for(var l=0;l<i.length;l++){var d=i[l],f=d[0],p=d[1];r[f]=new t.Vector(p)}for(var l=0;l<o.length;l++){var d=o[l],v=d[0],x=d[1];a.insert(v),s[v]=x}return a.finish(),n.fields=e.fields,n.fieldVectors=r,n.invertedIndex=s,n.tokenSet=a.root,n.pipeline=c,new t.Index(n)};t.Builder=function(){this._ref="id",this._fields=Object.create(null),this._documents=Object.create(null),this.invertedIndex=Object.create(null),this.fieldTermFrequencies={},this.fieldLengths={},this.tokenizer=t.tokenizer,this.pipeline=new t.Pipeline,this.searchPipeline=new t.Pipeline,this.documentCount=0,this._b=.75,this._k1=1.2,this.termIndex=0,this.metadataWhitelist=[]},t.Builder.prototype.ref=function(e){this._ref=e},t.Builder.prototype.field=function(e,n){if(/\//.test(e))throw new RangeError("Field '"+e+"' contains illegal character '/'");this._fields[e]=n||{}},t.Builder.prototype.b=function(e){e<0?this._b=0:e>1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s<i.length;s++){var o=i[s],a=this._fields[o].extractor,c=a?a(e):e[o],l=this.tokenizer(c,{fields:[o]}),d=this.pipeline.run(l),f=new t.FieldRef(r,o),p=Object.create(null);this.fieldTermFrequencies[f]=p,this.fieldLengths[f]=0,this.fieldLengths[f]+=d.length;for(var v=0;v<d.length;v++){var x=d[v];if(p[x]==null&&(p[x]=0),p[x]+=1,this.invertedIndex[x]==null){var w=Object.create(null);w._index=this.termIndex,this.termIndex+=1;for(var m=0;m<i.length;m++)w[i[m]]=Object.create(null);this.invertedIndex[x]=w}this.invertedIndex[x][o][r]==null&&(this.invertedIndex[x][o][r]=Object.create(null));for(var g=0;g<this.metadataWhitelist.length;g++){var T=this.metadataWhitelist[g],L=x.metadata[T];this.invertedIndex[x][o][r][T]==null&&(this.invertedIndex[x][o][r][T]=[]),this.invertedIndex[x][o][r][T].push(L)}}}},t.Builder.prototype.calculateAverageFieldLengths=function(){for(var e=Object.keys(this.fieldLengths),n=e.length,r={},i={},s=0;s<n;s++){var o=t.FieldRef.fromString(e[s]),a=o.fieldName;i[a]||(i[a]=0),i[a]+=1,r[a]||(r[a]=0),r[a]+=this.fieldLengths[o]}for(var c=Object.keys(this._fields),s=0;s<c.length;s++){var l=c[s];r[l]=r[l]/i[l]}this.averageFieldLength=r},t.Builder.prototype.createFieldVectors=function(){for(var e={},n=Object.keys(this.fieldTermFrequencies),r=n.length,i=Object.create(null),s=0;s<r;s++){for(var o=t.FieldRef.fromString(n[s]),a=o.fieldName,c=this.fieldLengths[o],l=new t.Vector,d=this.fieldTermFrequencies[o],f=Object.keys(d),p=f.length,v=this._fields[a].boost||1,x=this._documents[o.docRef].boost||1,w=0;w<p;w++){var m=f[w],g=d[m],T=this.invertedIndex[m]._index,L,C,O;i[m]===void 0?(L=t.idf(this.invertedIndex[m],this.documentCount),i[m]=L):L=i[m],C=L*((this._k1+1)*g)/(this._k1*(1-this._b+this._b*(c/this.averageFieldLength[a]))+g),C*=v,C*=x,O=Math.round(C*1e3)/1e3,l.insert(T,O)}e[o]=l}this.fieldVectors=e},t.Builder.prototype.createTokenSet=function(){this.tokenSet=t.TokenSet.fromArray(Object.keys(this.invertedIndex).sort())},t.Builder.prototype.build=function(){return this.calculateAverageFieldLengths(),this.createFieldVectors(),this.createTokenSet(),new t.Index({invertedIndex:this.invertedIndex,fieldVectors:this.fieldVectors,tokenSet:this.tokenSet,fields:Object.keys(this._fields),pipeline:this.searchPipeline})},t.Builder.prototype.use=function(e){var n=Array.prototype.slice.call(arguments,1);n.unshift(this),e.apply(this,n)},t.MatchData=function(e,n,r){for(var i=Object.create(null),s=Object.keys(r||{}),o=0;o<s.length;o++){var a=s[o];i[a]=r[a].slice()}this.metadata=Object.create(null),e!==void 0&&(this.metadata[e]=Object.create(null),this.metadata[e][n]=i)},t.MatchData.prototype.combine=function(e){for(var n=Object.keys(e.metadata),r=0;r<n.length;r++){var i=n[r],s=Object.keys(e.metadata[i]);this.metadata[i]==null&&(this.metadata[i]=Object.create(null));for(var o=0;o<s.length;o++){var a=s[o],c=Object.keys(e.metadata[i][a]);this.metadata[i][a]==null&&(this.metadata[i][a]=Object.create(null));for(var l=0;l<c.length;l++){var d=c[l];this.metadata[i][a][d]==null?this.metadata[i][a][d]=e.metadata[i][a][d]:this.metadata[i][a][d]=this.metadata[i][a][d].concat(e.metadata[i][a][d])}}}},t.MatchData.prototype.add=function(e,n,r){if(!(e in this.metadata)){this.metadata[e]=Object.create(null),this.metadata[e][n]=r;return}if(!(n in this.metadata[e])){this.metadata[e][n]=r;return}for(var i=Object.keys(r),s=0;s<i.length;s++){var o=i[s];o in this.metadata[e][n]?this.metadata[e][n][o]=this.metadata[e][n][o].concat(r[o]):this.metadata[e][n][o]=r[o]}},t.Query=function(e){this.clauses=[],this.allFields=e},t.Query.wildcard=new String("*"),t.Query.wildcard.NONE=0,t.Query.wildcard.LEADING=1,t.Query.wildcard.TRAILING=2,t.Query.presence={OPTIONAL:1,REQUIRED:2,PROHIBITED:3},t.Query.prototype.clause=function(e){return"fields"in e||(e.fields=this.allFields),"boost"in e||(e.boost=1),"usePipeline"in e||(e.usePipeline=!0),"wildcard"in e||(e.wildcard=t.Query.wildcard.NONE),e.wildcard&t.Query.wildcard.LEADING&&e.term.charAt(0)!=t.Query.wildcard&&(e.term="*"+e.term),e.wildcard&t.Query.wildcard.TRAILING&&e.term.slice(-1)!=t.Query.wildcard&&(e.term=""+e.term+"*"),"presence"in e||(e.presence=t.Query.presence.OPTIONAL),this.clauses.push(e),this},t.Query.prototype.isNegated=function(){for(var e=0;e<this.clauses.length;e++)if(this.clauses[e].presence!=t.Query.presence.PROHIBITED)return!1;return!0},t.Query.prototype.term=function(e,n){if(Array.isArray(e))return e.forEach(function(i){this.term(i,t.utils.clone(n))},this),this;var r=n||{};return r.term=e.toString(),this.clause(r),this},t.QueryParseError=function(e,n,r){this.name="QueryParseError",this.message=e,this.start=n,this.end=r},t.QueryParseError.prototype=new Error,t.QueryLexer=function(e){this.lexemes=[],this.str=e,this.length=e.length,this.pos=0,this.start=0,this.escapeCharPositions=[]},t.QueryLexer.prototype.run=function(){for(var e=t.QueryLexer.lexText;e;)e=e(this)},t.QueryLexer.prototype.sliceString=function(){for(var e=[],n=this.start,r=this.pos,i=0;i<this.escapeCharPositions.length;i++)r=this.escapeCharPositions[i],e.push(this.str.slice(n,r)),n=r+1;return e.push(this.str.slice(n,this.pos)),this.escapeCharPositions.length=0,e.join("")},t.QueryLexer.prototype.emit=function(e){this.lexemes.push({type:e,str:this.sliceString(),start:this.start,end:this.pos}),this.start=this.pos},t.QueryLexer.prototype.escapeCharacter=function(){this.escapeCharPositions.push(this.pos-1),this.pos+=1},t.QueryLexer.prototype.next=function(){if(this.pos>=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos<this.length},t.QueryLexer.EOS="EOS",t.QueryLexer.FIELD="FIELD",t.QueryLexer.TERM="TERM",t.QueryLexer.EDIT_DISTANCE="EDIT_DISTANCE",t.QueryLexer.BOOST="BOOST",t.QueryLexer.PRESENCE="PRESENCE",t.QueryLexer.lexField=function(e){return e.backup(),e.emit(t.QueryLexer.FIELD),e.ignore(),t.QueryLexer.lexText},t.QueryLexer.lexTerm=function(e){if(e.width()>1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,n){typeof define=="function"&&define.amd?define(n):typeof me=="object"?ge.exports=n():e.lunr=n()}(this,function(){return t})})()});var M,G={getItem(){return null},setItem(){}},K;try{K=localStorage,M=K}catch{K=G,M=G}var S={getItem:t=>M.getItem(t),setItem:(t,e)=>M.setItem(t,e),disableWritingLocalStorage(){M=G},disable(){localStorage.clear(),M=G},enable(){M=K}};window.TypeDoc||={disableWritingLocalStorage(){S.disableWritingLocalStorage()},disableLocalStorage:()=>{S.disable()},enableLocalStorage:()=>{S.enable()}};window.translations||={copy:"Copy",copied:"Copied!",normally_hidden:"This member is normally hidden due to your filter settings.",hierarchy_expand:"Expand",hierarchy_collapse:"Collapse",search_index_not_available:"The search index is not available",search_no_results_found_for_0:"No results found for {0}",folder:"Folder",kind_1:"Project",kind_2:"Module",kind_4:"Namespace",kind_8:"Enumeration",kind_16:"Enumeration Member",kind_32:"Variable",kind_64:"Function",kind_128:"Class",kind_256:"Interface",kind_512:"Constructor",kind_1024:"Property",kind_2048:"Method",kind_4096:"Call Signature",kind_8192:"Index Signature",kind_16384:"Constructor Signature",kind_32768:"Parameter",kind_65536:"Type Literal",kind_131072:"Type Parameter",kind_262144:"Accessor",kind_524288:"Get Signature",kind_1048576:"Set Signature",kind_2097152:"Type Alias",kind_4194304:"Reference",kind_8388608:"Document"};var pe=[];function X(t,e){pe.push({selector:e,constructor:t})}var Z=class{alwaysVisibleMember=null;constructor(){this.createComponents(document.body),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible()),document.body.style.display||(this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}createComponents(e){pe.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}showPage(){document.body.style.display&&(document.body.style.removeProperty("display"),this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}scrollToHash(){if(location.hash){let e=document.getElementById(location.hash.substring(1));if(!e)return;e.scrollIntoView({behavior:"instant",block:"start"})}}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),n=e?.parentElement;for(;n&&!n.classList.contains(".tsd-navigation");)n instanceof HTMLDetailsElement&&(n.open=!0),n=n.parentElement;if(e&&!rt(e)){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=r,document.querySelector(".col-sidebar").scrollTop=r}}updateIndexVisibility(){let e=document.querySelector(".tsd-index-content"),n=e?.open;e&&(e.open=!0),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let i=Array.from(r.querySelectorAll(".tsd-index-link")).every(s=>s.offsetParent==null);r.style.display=i?"none":"block"}),e&&(e.open=n)}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(!n)return;let r=n.offsetParent==null,i=n;for(;i!==document.body;)i instanceof HTMLDetailsElement&&(i.open=!0),i=i.parentElement;if(n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let s=document.createElement("p");s.classList.add("warning"),s.textContent=window.translations.normally_hidden,n.prepend(s)}r&&e.scrollIntoView()}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let n;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent=window.translations.copied,e.classList.add("visible"),clearTimeout(n),n=setTimeout(()=>{e.classList.remove("visible"),n=setTimeout(()=>{e.textContent=window.translations.copy},100)},1e3)})})}};function rt(t){let e=t.getBoundingClientRect(),n=Math.max(document.documentElement.clientHeight,window.innerHeight);return!(e.bottom<0||e.top-n>=0)}var fe=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var Ie=nt(ye(),1);async function R(t){let e=Uint8Array.from(atob(t),s=>s.charCodeAt(0)),r=new Blob([e]).stream().pipeThrough(new DecompressionStream("deflate")),i=await new Response(r).text();return JSON.parse(i)}var Y="closing",ae="tsd-overlay";function it(){let t=Math.abs(window.innerWidth-document.documentElement.clientWidth);document.body.style.overflow="hidden",document.body.style.paddingRight=`${t}px`}function st(){document.body.style.removeProperty("overflow"),document.body.style.removeProperty("padding-right")}function xe(t,e){t.addEventListener("animationend",()=>{t.classList.contains(Y)&&(t.classList.remove(Y),document.getElementById(ae)?.remove(),t.close(),st())}),t.addEventListener("cancel",n=>{n.preventDefault(),ve(t)}),e?.closeOnClick&&document.addEventListener("click",n=>{t.open&&!t.contains(n.target)&&ve(t)},!0)}function Ee(t){if(t.open)return;let e=document.createElement("div");e.id=ae,document.body.appendChild(e),t.showModal(),it()}function ve(t){if(!t.open)return;document.getElementById(ae)?.classList.add(Y),t.classList.add(Y)}var I=class{el;app;constructor(e){this.el=e.el,this.app=e.app}};var be=document.head.appendChild(document.createElement("style"));be.dataset.for="filters";var le={};function we(t){for(let e of t.split(/\s+/))if(le.hasOwnProperty(e)&&!le[e])return!0;return!1}var ee=class extends I{key;value;constructor(e){super(e),this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),be.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; }
|
|
5
|
+
`,this.app.updateIndexVisibility()}fromLocalStorage(){let e=S.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){S.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),le[`tsd-is-${this.el.name}`]=this.value,this.app.filterChanged(),this.app.updateIndexVisibility()}};var Le=0;async function Se(t,e){if(!window.searchData)return;let n=await R(window.searchData);t.data=n,t.index=Ie.Index.load(n.index),e.innerHTML=""}function _e(){let t=document.getElementById("tsd-search-trigger"),e=document.getElementById("tsd-search"),n=document.getElementById("tsd-search-input"),r=document.getElementById("tsd-search-results"),i=document.getElementById("tsd-search-script"),s=document.getElementById("tsd-search-status");if(!(t&&e&&n&&r&&i&&s))throw new Error("Search controls missing");let o={base:document.documentElement.dataset.base};o.base.endsWith("/")||(o.base+="/"),i.addEventListener("error",()=>{let a=window.translations.search_index_not_available;Pe(s,a)}),i.addEventListener("load",()=>{Se(o,s)}),Se(o,s),ot({trigger:t,searchEl:e,results:r,field:n,status:s},o)}function ot(t,e){let{field:n,results:r,searchEl:i,status:s,trigger:o}=t;xe(i,{closeOnClick:!0});function a(){Ee(i),n.setSelectionRange(0,n.value.length)}o.addEventListener("click",a),n.addEventListener("input",fe(()=>{at(r,n,s,e)},200)),n.addEventListener("keydown",l=>{if(r.childElementCount===0||l.ctrlKey||l.metaKey||l.altKey)return;let d=n.getAttribute("aria-activedescendant"),f=d?document.getElementById(d):null;if(f){let p=!1,v=!1;switch(l.key){case"Home":case"End":case"ArrowLeft":case"ArrowRight":v=!0;break;case"ArrowDown":case"ArrowUp":p=l.shiftKey;break}(p||v)&&ke(n)}if(!l.shiftKey)switch(l.key){case"Enter":f?.querySelector("a")?.click();break;case"ArrowUp":Te(r,n,f,-1),l.preventDefault();break;case"ArrowDown":Te(r,n,f,1),l.preventDefault();break}});function c(){ke(n)}n.addEventListener("change",c),n.addEventListener("blur",c),n.addEventListener("click",c),document.body.addEventListener("keydown",l=>{if(l.altKey||l.metaKey||l.shiftKey)return;let d=l.ctrlKey&&l.key==="k",f=!l.ctrlKey&&!ut()&&l.key==="/";(d||f)&&(l.preventDefault(),a())})}function at(t,e,n,r){if(!r.index||!r.data)return;t.innerHTML="",n.innerHTML="",Le+=1;let i=e.value.trim(),s;if(i){let a=i.split(" ").map(c=>c.length?`*${c}*`:"").join(" ");s=r.index.search(a).filter(({ref:c})=>{let l=r.data.rows[Number(c)].classes;return!l||!we(l)})}else s=[];if(s.length===0&&i){let a=window.translations.search_no_results_found_for_0.replace("{0}",` "<strong>${te(i)}</strong>" `);Pe(n,a);return}for(let a=0;a<s.length;a++){let c=s[a],l=r.data.rows[Number(c.ref)],d=1;l.name.toLowerCase().startsWith(i.toLowerCase())&&(d*=10/(1+Math.abs(l.name.length-i.length))),c.score*=d}s.sort((a,c)=>c.score-a.score);let o=Math.min(10,s.length);for(let a=0;a<o;a++){let c=r.data.rows[Number(s[a].ref)],d=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon" aria-label="${window.translations[`kind_${c.kind}`].replaceAll('"',""")}"><use href="#icon-${c.icon||c.kind}"></use></svg>`,f=Ce(c.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(f+=` (score: ${s[a].score.toFixed(2)})`),c.parent&&(f=`<span class="parent">
|
|
6
|
+
${Ce(c.parent,i)}.</span>${f}`);let p=document.createElement("li");p.id=`tsd-search:${Le}-${a}`,p.role="option",p.ariaSelected="false",p.classList.value=c.classes??"";let v=document.createElement("a");v.tabIndex=-1,v.href=r.base+c.url,v.innerHTML=d+`<span class="text">${f}</span>`,p.append(v),t.appendChild(p)}}function Te(t,e,n,r){let i;if(r===1?i=n?.nextElementSibling||t.firstElementChild:i=n?.previousElementSibling||t.lastElementChild,i!==n){if(!i||i.role!=="option"){console.error("Option missing");return}i.ariaSelected="true",i.scrollIntoView({behavior:"smooth",block:"nearest"}),e.setAttribute("aria-activedescendant",i.id),n?.setAttribute("aria-selected","false")}}function ke(t){let e=t.getAttribute("aria-activedescendant");(e?document.getElementById(e):null)?.setAttribute("aria-selected","false"),t.setAttribute("aria-activedescendant","")}function Ce(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(te(t.substring(s,o)),`<mark>${te(t.substring(o,o+r.length))}</mark>`),s=o+r.length,o=n.indexOf(r,s);return i.push(te(t.substring(s))),i.join("")}var lt={"&":"&","<":"<",">":">","'":"'",'"':"""};function te(t){return t.replace(/[&<>"'"]/g,e=>lt[e])}function Pe(t,e){t.innerHTML=e?`<div>${e}</div>`:""}var ct=["button","checkbox","file","hidden","image","radio","range","reset","submit"];function ut(){let t=document.activeElement;return t?t.isContentEditable||t.tagName==="TEXTAREA"||t.tagName==="SEARCH"?!0:t.tagName==="INPUT"&&!ct.includes(t.type):!1}var D="mousedown",Me="mousemove",$="mouseup",ne={x:0,y:0},Qe=!1,ce=!1,dt=!1,F=!1,Oe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Oe?"is-mobile":"not-mobile");Oe&&"ontouchstart"in document.documentElement&&(dt=!0,D="touchstart",Me="touchmove",$="touchend");document.addEventListener(D,t=>{ce=!0,F=!1;let e=D=="touchstart"?t.targetTouches[0]:t;ne.y=e.pageY||0,ne.x=e.pageX||0});document.addEventListener(Me,t=>{if(ce&&!F){let e=D=="touchstart"?t.targetTouches[0]:t,n=ne.x-(e.pageX||0),r=ne.y-(e.pageY||0);F=Math.sqrt(n*n+r*r)>10}});document.addEventListener($,()=>{ce=!1});document.addEventListener("click",t=>{Qe&&(t.preventDefault(),t.stopImmediatePropagation(),Qe=!1)});var re=class extends I{active;className;constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener($,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(D,n=>this.onDocumentPointerDown(n)),document.addEventListener($,n=>this.onDocumentPointerUp(n))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(e){F||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!F&&this.active&&e.target.closest(".col-sidebar")){let n=e.target.closest("a");if(n){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substring(0,r.indexOf("#"))),n.href.substring(0,r.length)==r&&setTimeout(()=>this.setActive(!1),250)}}}};var ue=new Map,de=class{open;accordions=[];key;constructor(e,n){this.key=e,this.open=n}add(e){this.accordions.push(e),e.open=this.open,e.addEventListener("toggle",()=>{this.toggle(e.open)})}toggle(e){for(let n of this.accordions)n.open=e;S.setItem(this.key,e.toString())}},ie=class extends I{constructor(e){super(e);let n=this.el.querySelector("summary"),r=n.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)});let i=`tsd-accordion-${n.dataset.key??n.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`,s;if(ue.has(i))s=ue.get(i);else{let o=S.getItem(i),a=o?o==="true":this.el.open;s=new de(i,a),ue.set(i,s)}s.add(this.el)}};function He(t){let e=S.getItem("tsd-theme")||"os";t.value=e,Ae(e),t.addEventListener("change",()=>{S.setItem("tsd-theme",t.value),Ae(t.value)})}function Ae(t){document.documentElement.dataset.theme=t}var se;function Ne(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",Re),Re())}async function Re(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let e=await R(window.navigationData);se=document.documentElement.dataset.base,se.endsWith("/")||(se+="/"),t.innerHTML="";for(let n of e)Be(n,t,[]);window.app.createComponents(t),window.app.showPage(),window.app.ensureActivePageVisible()}function Be(t,e,n){let r=e.appendChild(document.createElement("li"));if(t.children){let i=[...n,t.text],s=r.appendChild(document.createElement("details"));s.className=t.class?`${t.class} tsd-accordion`:"tsd-accordion";let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.dataset.key=i.join("$"),o.innerHTML='<svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>',De(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let c=a.appendChild(document.createElement("ul"));c.className="tsd-nested-navigation";for(let l of t.children)Be(l,c,i)}else De(t,r,t.class)}function De(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));if(r.href=se+t.path,n&&(r.className=n),location.pathname===r.pathname&&!r.href.includes("#")&&(r.classList.add("current"),r.ariaCurrent="page"),t.kind){let i=window.translations[`kind_${t.kind}`].replaceAll('"',""");r.innerHTML=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon" aria-label="${i}"><use href="#icon-${t.icon||t.kind}"></use></svg>`}r.appendChild(Fe(t.text,document.createElement("span")))}else{let r=e.appendChild(document.createElement("span")),i=window.translations.folder.replaceAll('"',""");r.innerHTML=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon" aria-label="${i}"><use href="#icon-folder"></use></svg>`,r.appendChild(Fe(t.text,document.createElement("span")))}}function Fe(t,e){let n=t.split(/(?<=[^A-Z])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])|(?<=[_-])(?=[^_-])/);for(let r=0;r<n.length;++r)r!==0&&e.appendChild(document.createElement("wbr")),e.appendChild(document.createTextNode(n[r]));return e}var oe=document.documentElement.dataset.base;oe.endsWith("/")||(oe+="/");function $e(){document.querySelector(".tsd-full-hierarchy")?ht():document.querySelector(".tsd-hierarchy")&&pt()}function ht(){document.addEventListener("click",r=>{let i=r.target;for(;i.parentElement&&i.parentElement.tagName!="LI";)i=i.parentElement;i.dataset.dropdown&&(i.dataset.dropdown=String(i.dataset.dropdown!=="true"))});let t=new Map,e=new Set;for(let r of document.querySelectorAll(".tsd-full-hierarchy [data-refl]")){let i=r.querySelector("ul");t.has(r.dataset.refl)?e.add(r.dataset.refl):i&&t.set(r.dataset.refl,i)}for(let r of e)n(r);function n(r){let i=t.get(r).cloneNode(!0);i.querySelectorAll("[id]").forEach(s=>{s.removeAttribute("id")}),i.querySelectorAll("[data-dropdown]").forEach(s=>{s.dataset.dropdown="false"});for(let s of document.querySelectorAll(`[data-refl="${r}"]`)){let o=gt(),a=s.querySelector("ul");s.insertBefore(o,a),o.dataset.dropdown=String(!!a),a||s.appendChild(i.cloneNode(!0))}}}function pt(){let t=document.getElementById("tsd-hierarchy-script");t&&(t.addEventListener("load",Ve),Ve())}async function Ve(){let t=document.querySelector(".tsd-panel.tsd-hierarchy:has(h4 a)");if(!t||!window.hierarchyData)return;let e=+t.dataset.refl,n=await R(window.hierarchyData),r=t.querySelector("ul"),i=document.createElement("ul");if(i.classList.add("tsd-hierarchy"),ft(i,n,e),r.querySelectorAll("li").length==i.querySelectorAll("li").length)return;let s=document.createElement("span");s.classList.add("tsd-hierarchy-toggle"),s.textContent=window.translations.hierarchy_expand,t.querySelector("h4 a")?.insertAdjacentElement("afterend",s),s.insertAdjacentText("beforebegin",", "),s.addEventListener("click",()=>{s.textContent===window.translations.hierarchy_expand?(r.insertAdjacentElement("afterend",i),r.remove(),s.textContent=window.translations.hierarchy_collapse):(i.insertAdjacentElement("afterend",r),i.remove(),s.textContent=window.translations.hierarchy_expand)})}function ft(t,e,n){let r=e.roots.filter(i=>mt(e,i,n));for(let i of r)t.appendChild(je(e,i,n))}function je(t,e,n,r=new Set){if(r.has(e))return;r.add(e);let i=t.reflections[e],s=document.createElement("li");if(s.classList.add("tsd-hierarchy-item"),e===n){let o=s.appendChild(document.createElement("span"));o.textContent=i.name,o.classList.add("tsd-hierarchy-target")}else{for(let a of i.uniqueNameParents||[]){let c=t.reflections[a],l=s.appendChild(document.createElement("a"));l.textContent=c.name,l.href=oe+c.url,l.className=c.class+" tsd-signature-type",s.append(document.createTextNode("."))}let o=s.appendChild(document.createElement("a"));o.textContent=t.reflections[e].name,o.href=oe+i.url,o.className=i.class+" tsd-signature-type"}if(i.children){let o=s.appendChild(document.createElement("ul"));o.classList.add("tsd-hierarchy");for(let a of i.children){let c=je(t,a,n,r);c&&o.appendChild(c)}}return r.delete(e),s}function mt(t,e,n){if(e===n)return!0;let r=new Set,i=[t.reflections[e]];for(;i.length;){let s=i.pop();if(!r.has(s)){r.add(s);for(let o of s.children||[]){if(o===n)return!0;i.push(t.reflections[o])}}}return!1}function gt(){let t=document.createElementNS("http://www.w3.org/2000/svg","svg");return t.setAttribute("width","20"),t.setAttribute("height","20"),t.setAttribute("viewBox","0 0 24 24"),t.setAttribute("fill","none"),t.innerHTML='<use href="#icon-chevronDown"></use>',t}X(re,"a[data-toggle]");X(ie,".tsd-accordion");X(ee,".tsd-filter-item input[type=checkbox]");var qe=document.getElementById("tsd-theme");qe&&He(qe);var yt=new Z;Object.defineProperty(window,"app",{value:yt});_e();Ne();$e();"virtualKeyboard"in navigator&&(navigator.virtualKeyboard.overlaysContent=!0);})();
|
|
7
|
+
/*! Bundled license information:
|
|
8
|
+
|
|
9
|
+
lunr/lunr.js:
|
|
10
|
+
(**
|
|
11
|
+
* lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9
|
|
12
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
13
|
+
* @license MIT
|
|
14
|
+
*)
|
|
15
|
+
(*!
|
|
16
|
+
* lunr.utils
|
|
17
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
18
|
+
*)
|
|
19
|
+
(*!
|
|
20
|
+
* lunr.Set
|
|
21
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
22
|
+
*)
|
|
23
|
+
(*!
|
|
24
|
+
* lunr.tokenizer
|
|
25
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
26
|
+
*)
|
|
27
|
+
(*!
|
|
28
|
+
* lunr.Pipeline
|
|
29
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
30
|
+
*)
|
|
31
|
+
(*!
|
|
32
|
+
* lunr.Vector
|
|
33
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
34
|
+
*)
|
|
35
|
+
(*!
|
|
36
|
+
* lunr.stemmer
|
|
37
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
38
|
+
* Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
|
|
39
|
+
*)
|
|
40
|
+
(*!
|
|
41
|
+
* lunr.stopWordFilter
|
|
42
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
43
|
+
*)
|
|
44
|
+
(*!
|
|
45
|
+
* lunr.trimmer
|
|
46
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
47
|
+
*)
|
|
48
|
+
(*!
|
|
49
|
+
* lunr.TokenSet
|
|
50
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
51
|
+
*)
|
|
52
|
+
(*!
|
|
53
|
+
* lunr.Index
|
|
54
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
55
|
+
*)
|
|
56
|
+
(*!
|
|
57
|
+
* lunr.Builder
|
|
58
|
+
* Copyright (C) 2020 Oliver Nightingale
|
|
59
|
+
*)
|
|
60
|
+
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
window.navigationData = "eJyNz0ELgjAYxvHvsrNlKcTwFikSggddJ/EwtzccTQ03Iwi/e4PAqQfpuvfPjz3FB2l4axSgOCLkmsa7nJwzEoXIQU+qa3PgHRsaaLVyV8m+1o003UO0HAXYx/h0wKMziQmApinoPEys1nR8kKDc2XHpeA5itZC8hxYFxYRlcAfzxIBvW7ZbsbOPXaQwe6zDJFVq5fyapXH05vNuCvp/JNttaVJUlnnRXtBqPc0kS8H3xnIsv9F3k/E="
|