@rws-framework/client 2.3.1 → 2.4.2

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.
Files changed (99) hide show
  1. package/.gitmodules +3 -0
  2. package/README.md +247 -168
  3. package/cfg/_default.cfg.js +1 -1
  4. package/console.js +1 -1
  5. package/docs/assets/highlight.css +24 -17
  6. package/docs/assets/icons.js +15 -0
  7. package/docs/assets/icons.svg +1 -0
  8. package/docs/assets/main.js +4 -4
  9. package/docs/assets/navigation.js +1 -1
  10. package/docs/assets/search.js +1 -1
  11. package/docs/assets/style.css +5 -7
  12. package/docs/classes/ApiServiceInstance.html +22 -20
  13. package/docs/classes/ConfigServiceInstance.html +17 -0
  14. package/docs/classes/DOMServiceInstance.html +13 -10
  15. package/docs/classes/NotifyServiceInstance.html +12 -12
  16. package/docs/classes/RWSRouter.html +10 -9
  17. package/docs/classes/RWSService.html +7 -7
  18. package/docs/classes/RWSViewComponent.html +835 -24
  19. package/docs/classes/RoutingServiceInstance.html +14 -13
  20. package/docs/classes/ServiceWorkerServiceInstance.html +10 -0
  21. package/docs/classes/UtilsServiceInstance.html +12 -11
  22. package/docs/classes/WSServiceInstance.html +34 -32
  23. package/docs/functions/ApiService.html +1 -0
  24. package/docs/functions/ConfigService.html +1 -0
  25. package/docs/functions/DOMService.html +1 -0
  26. package/docs/functions/NotifyService.html +1 -0
  27. package/docs/functions/RWSContainer.html +1 -0
  28. package/docs/functions/RWSIgnore.html +1 -0
  29. package/docs/functions/RWSInject.html +1 -0
  30. package/docs/functions/RWSView.html +1 -1
  31. package/docs/functions/RoutingService.html +1 -0
  32. package/docs/functions/ServiceWorkerService.html +1 -0
  33. package/docs/functions/UtilsService.html +1 -0
  34. package/docs/functions/WSService.html +1 -0
  35. package/docs/functions/attr.html +6 -0
  36. package/docs/functions/declareRWSComponents.html +1 -0
  37. package/docs/functions/ngAttr.html +1 -1
  38. package/docs/functions/observable.html +4 -0
  39. package/docs/functions/provideRWSDesignSystem.html +1 -0
  40. package/docs/functions/realtimeWebSuiteClientPackage.html +1 -0
  41. package/docs/functions/renderRouteComponent.html +1 -1
  42. package/docs/functions/sanitizedAttr.html +1 -0
  43. package/docs/hierarchy.html +1 -1
  44. package/docs/index.html +141 -15
  45. package/docs/interfaces/HTMLAttributes.html +1 -0
  46. package/docs/interfaces/HTMLTag.html +4 -0
  47. package/docs/interfaces/IRWSConfig.html +19 -11
  48. package/docs/interfaces/IRWSDecoratorOptions.html +5 -4
  49. package/docs/interfaces/IRWSHttpRoute.html +3 -3
  50. package/docs/interfaces/IRWSPrefixedHTTProutes.html +3 -3
  51. package/docs/interfaces/IRWSUser.html +6 -0
  52. package/docs/interfaces/IRoutingEvent.html +3 -3
  53. package/docs/modules.html +53 -39
  54. package/docs/types/DOMOutputType.html +1 -1
  55. package/docs/types/HTMLTagTransformerType.html +1 -0
  56. package/docs/types/IRWSAssetShowOptions.html +1 -0
  57. package/docs/types/IRWSBackendRoute.html +1 -1
  58. package/docs/types/IRWSFrontRoutes.html +1 -1
  59. package/docs/types/IRWSRouteResult.html +1 -1
  60. package/docs/types/IRWSWebsocketStatus.html +1 -1
  61. package/docs/types/NotifyLogType.html +1 -1
  62. package/docs/types/NotifyUiType.html +1 -1
  63. package/docs/types/RWSNotify.html +1 -1
  64. package/docs/types/RouteReturn.html +1 -1
  65. package/docs/types/TagsProcessorType.html +1 -0
  66. package/docs/variables/_ROUTING_EVENT_NAME.html +1 -1
  67. package/docs-typings.d.ts +15 -0
  68. package/package.json +7 -3
  69. package/rws.webpack.config.js +4 -3
  70. package/{src/service_worker → service_worker}/src/_service_worker.ts +3 -3
  71. package/{src/service_worker → service_worker}/tsconfig.json +1 -1
  72. package/src/client.ts +0 -2
  73. package/src/components/_component.ts +14 -13
  74. package/src/components/_decorator.ts +20 -74
  75. package/src/components/_decorators/RWSFillBuild.ts +3 -3
  76. package/src/components/_decorators/RWSInject.ts +49 -0
  77. package/src/components/_decorators/RWSService.ts +12 -0
  78. package/src/components/_decorators/_di.ts +15 -0
  79. package/src/components/router/component.ts +14 -7
  80. package/src/components/router/template.html +0 -0
  81. package/src/index.ts +3 -6
  82. package/src/services/ConfigService.ts +2 -1
  83. package/tsconfig.json +7 -6
  84. package/tsdoc.json +0 -0
  85. package/typedoc.json +3 -3
  86. package/_rws_build_configurator.d.ts +0 -14
  87. package/_rws_build_configurator.js +0 -48
  88. package/docs/classes/RWSClient.html +0 -11
  89. package/docs/classes/RWSUploader.html +0 -35
  90. package/docs/classes/RouterComponent.html +0 -31
  91. package/docs/functions/registerRWSComponents.html +0 -1
  92. package/docs/interfaces/IRWSAssetShowOptions.html +0 -1
  93. package/docs/variables/ApiService.html +0 -1
  94. package/docs/variables/DOMService.html +0 -1
  95. package/docs/variables/NotifyService.html +0 -1
  96. package/docs/variables/RoutingService.html +0 -1
  97. package/docs/variables/UtilsService.html +0 -1
  98. package/docs/variables/WSService.html +0 -1
  99. /package/{src/service_worker → service_worker}/webpack.config.js +0 -0
@@ -0,0 +1,15 @@
1
+ (function(svg) {
2
+ svg.innerHTML = `<g id="icon-1"><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><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-2"><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><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-4"><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><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g><g id="icon-8"><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><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g><g id="icon-16"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-32"><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><path d="M11.106 16L8.85 7.24H9.966L11.454 13.192C11.558 13.608 11.646 13.996 11.718 14.356C11.79 14.708 11.842 14.976 11.874 15.16C11.906 14.976 11.954 14.708 12.018 14.356C12.09 13.996 12.178 13.608 12.282 13.192L13.758 7.24H14.85L12.582 16H11.106Z" fill="var(--color-text)"></path></g><g id="icon-64"><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><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g><g id="icon-128"><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><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-256"><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><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g><g id="icon-512"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-1024"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-2048"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-4096"><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><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g><g id="icon-8192"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-16384"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-32768"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-65536"><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><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-131072"><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><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-262144"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-524288"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-1048576"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-2097152"><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><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-4194304"><rect fill="var(--color-icon-background)" stroke="#FF4D82" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M10.354 17V8.24H13.066C13.586 8.24 14.042 8.348 14.434 8.564C14.826 8.772 15.13 9.064 15.346 9.44C15.562 9.816 15.67 10.256 15.67 10.76C15.67 11.352 15.514 11.86 15.202 12.284C14.898 12.708 14.482 13 13.954 13.16L15.79 17H14.518L12.838 13.28H11.434V17H10.354ZM11.434 12.308H13.066C13.514 12.308 13.874 12.168 14.146 11.888C14.418 11.6 14.554 11.224 14.554 10.76C14.554 10.288 14.418 9.912 14.146 9.632C13.874 9.352 13.514 9.212 13.066 9.212H11.434V12.308Z" fill="var(--color-text)"></path></g><g id="icon-chevronDown"><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-text)"></path></g><g id="icon-chevronSmall"><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-text)"></path></g><g id="icon-checkbox"><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"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></g><g id="icon-search"><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-text)"></path></g><g id="icon-anchor"><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>`;
3
+ svg.style.display = 'none';
4
+ if (location.protocol === 'file:') {
5
+ if (document.readyState === 'loading') document.addEventListener('DOMContentLoaded', updateUseElements);
6
+ else updateUseElements()
7
+ function updateUseElements() {
8
+ document.querySelectorAll('use').forEach(el => {
9
+ if (el.getAttribute('href').includes('#icon-')) {
10
+ el.setAttribute('href', el.getAttribute('href').replace(/.*#/, '#'));
11
+ }
12
+ });
13
+ }
14
+ }
15
+ })(document.body.appendChild(document.createElementNS('http://www.w3.org/2000/svg', 'svg')))
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg"><g id="icon-1"><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><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-2"><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><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-4"><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><path d="M9.33 16V7.24H10.77L13.446 14.74C13.43 14.54 13.41 14.296 13.386 14.008C13.37 13.712 13.354 13.404 13.338 13.084C13.33 12.756 13.326 12.448 13.326 12.16V7.24H14.37V16H12.93L10.266 8.5C10.282 8.692 10.298 8.936 10.314 9.232C10.33 9.52 10.342 9.828 10.35 10.156C10.366 10.476 10.374 10.784 10.374 11.08V16H9.33Z" fill="var(--color-text)"></path></g><g id="icon-8"><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><path d="M9.45 16V7.24H14.49V8.224H10.518V10.936H14.07V11.908H10.518V15.016H14.49V16H9.45Z" fill="var(--color-text)"></path></g><g id="icon-16"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-32"><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><path d="M11.106 16L8.85 7.24H9.966L11.454 13.192C11.558 13.608 11.646 13.996 11.718 14.356C11.79 14.708 11.842 14.976 11.874 15.16C11.906 14.976 11.954 14.708 12.018 14.356C12.09 13.996 12.178 13.608 12.282 13.192L13.758 7.24H14.85L12.582 16H11.106Z" fill="var(--color-text)"></path></g><g id="icon-64"><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><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g><g id="icon-128"><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><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-256"><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><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)"></path></g><g id="icon-512"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-1024"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-2048"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g><g id="icon-4096"><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><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)"></path></g><g id="icon-8192"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-16384"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)"></path></g><g id="icon-32768"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)"></path></g><g id="icon-65536"><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><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-131072"><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><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-262144"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-524288"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-1048576"><rect fill="var(--color-icon-background)" stroke="#FF4D4D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M8.85 16L11.13 7.24H12.582L14.85 16H13.758L13.182 13.672H10.53L9.954 16H8.85ZM10.746 12.76H12.954L12.282 10.06C12.154 9.548 12.054 9.12 11.982 8.776C11.91 8.432 11.866 8.208 11.85 8.104C11.834 8.208 11.79 8.432 11.718 8.776C11.646 9.12 11.546 9.544 11.418 10.048L10.746 12.76Z" fill="var(--color-text)"></path></g><g id="icon-2097152"><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><path d="M11.31 16V8.224H8.91V7.24H14.79V8.224H12.39V16H11.31Z" fill="var(--color-text)"></path></g><g id="icon-4194304"><rect fill="var(--color-icon-background)" stroke="#FF4D82" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M10.354 17V8.24H13.066C13.586 8.24 14.042 8.348 14.434 8.564C14.826 8.772 15.13 9.064 15.346 9.44C15.562 9.816 15.67 10.256 15.67 10.76C15.67 11.352 15.514 11.86 15.202 12.284C14.898 12.708 14.482 13 13.954 13.16L15.79 17H14.518L12.838 13.28H11.434V17H10.354ZM11.434 12.308H13.066C13.514 12.308 13.874 12.168 14.146 11.888C14.418 11.6 14.554 11.224 14.554 10.76C14.554 10.288 14.418 9.912 14.146 9.632C13.874 9.352 13.514 9.212 13.066 9.212H11.434V12.308Z" fill="var(--color-text)"></path></g><g id="icon-chevronDown"><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-text)"></path></g><g id="icon-chevronSmall"><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-text)"></path></g><g id="icon-checkbox"><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"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></g><g id="icon-search"><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-text)"></path></g><g id="icon-anchor"><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></svg>
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
- "use strict";(()=>{var Ie=Object.create;var ne=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var _e=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty;var Me=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Fe=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!Re.call(t,i)&&i!==n&&ne(t,i,{get:()=>e[i],enumerable:!(r=Pe(e,i))||r.enumerable});return t};var De=(t,e,n)=>(n=t!=null?Ie(_e(t)):{},Fe(e||!t||!t.__esModule?ne(n,"default",{value:t,enumerable:!0}):n,t));var ae=Me((se,oe)=>{(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(v){return new t.Token(t.utils.asString(v).toLowerCase(),t.utils.clone(n))});for(var r=e.toString().toLowerCase(),i=r.length,s=[],o=0,a=0;o<=i;o++){var l=r.charAt(o),u=o-a;if(l.match(t.tokenizer.separator)||o==i){if(u>0){var d=t.utils.clone(n)||{};d.position=[a,u],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.
3
- `,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 l=0;l<a.length;l++)s.push(a[l]);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,l=0,u=0,d=0;u<s&&d<o;)a=r[u],l=i[d],a<l?u+=2:a>l?d+=2:a==l&&(n+=r[u+1]*i[d+1],u+=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,l="^("+s+")?"+o+s+"("+o+")?$",u="^("+s+")?"+o+s+o+s,d="^("+s+")?"+i,v=new RegExp(a),f=new RegExp(u),b=new RegExp(l),g=new RegExp(d),L=/^(.+?)(ss|i)es$/,p=/^(.+?)([^s])s$/,m=/^(.+?)eed$/,S=/^(.+?)(ed|ing)$/,w=/.$/,k=/(at|bl|iz)$/,_=new RegExp("([^aeiouylsz])\\1$"),B=new RegExp("^"+s+i+"[^aeiouwxy]$"),A=/^(.+?[^aeiou])y$/,j=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,$=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,N=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,q=/^(.+?)(s|t)(ion)$/,I=/^(.+?)e$/,z=/ll$/,W=new RegExp("^"+s+i+"[^aeiouwxy]$"),V=function(c){var y,P,T,h,x,O,M;if(c.length<3)return c;if(T=c.substr(0,1),T=="y"&&(c=T.toUpperCase()+c.substr(1)),h=L,x=p,h.test(c)?c=c.replace(h,"$1$2"):x.test(c)&&(c=c.replace(x,"$1$2")),h=m,x=S,h.test(c)){var E=h.exec(c);h=v,h.test(E[1])&&(h=w,c=c.replace(h,""))}else if(x.test(c)){var E=x.exec(c);y=E[1],x=g,x.test(y)&&(c=y,x=k,O=_,M=B,x.test(c)?c=c+"e":O.test(c)?(h=w,c=c.replace(h,"")):M.test(c)&&(c=c+"e"))}if(h=A,h.test(c)){var E=h.exec(c);y=E[1],c=y+"i"}if(h=j,h.test(c)){var E=h.exec(c);y=E[1],P=E[2],h=v,h.test(y)&&(c=y+e[P])}if(h=$,h.test(c)){var E=h.exec(c);y=E[1],P=E[2],h=v,h.test(y)&&(c=y+n[P])}if(h=N,x=q,h.test(c)){var E=h.exec(c);y=E[1],h=f,h.test(y)&&(c=y)}else if(x.test(c)){var E=x.exec(c);y=E[1]+E[2],x=f,x.test(y)&&(c=y)}if(h=I,h.test(c)){var E=h.exec(c);y=E[1],h=f,x=b,O=W,(h.test(y)||x.test(y)&&!O.test(y))&&(c=y)}return h=z,x=f,h.test(c)&&x.test(c)&&(h=w,c=c.replace(h,"")),T=="y"&&(c=T.toLowerCase()+c.substr(1)),c};return function(R){return R.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 l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,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 u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),v=s.str.charAt(1),f;v in s.node.edges?f=s.node.edges[v]:(f=new t.TokenSet,s.node.edges[v]=f),s.str.length==1&&(f.final=!0),i.push({node:f,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 l=new t.TokenSet;l.final=a,n.edges[o]=l,n=l}}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),l=a.length,u=0;u<o;u++)for(var d=s[u],v=0;v<l;v++){var f=a[v];if(f==d||d=="*"){var b=r.node.edges[f],g=r.qNode.edges[d],L=b.final&&g.final,p=void 0;f in r.output.edges?(p=r.output.edges[f],p.final=p.final||L):(p=new t.TokenSet,p.final=L,r.output.edges[f]=p),i.push({qNode:g,output:p,node:b})}}}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),l=0;l<this.fields.length;l++)i[this.fields[l]]=new t.Vector;e.call(n,n);for(var l=0;l<n.clauses.length;l++){var u=n.clauses[l],d=null,v=t.Set.empty;u.usePipeline?d=this.pipeline.runString(u.term,{fields:u.fields}):d=[u.term];for(var f=0;f<d.length;f++){var b=d[f];u.term=b;var g=t.TokenSet.fromClause(u),L=this.tokenSet.intersect(g).toArray();if(L.length===0&&u.presence===t.Query.presence.REQUIRED){for(var p=0;p<u.fields.length;p++){var m=u.fields[p];o[m]=t.Set.empty}break}for(var S=0;S<L.length;S++)for(var w=L[S],k=this.invertedIndex[w],_=k._index,p=0;p<u.fields.length;p++){var m=u.fields[p],B=k[m],A=Object.keys(B),j=w+"/"+m,$=new t.Set(A);if(u.presence==t.Query.presence.REQUIRED&&(v=v.union($),o[m]===void 0&&(o[m]=t.Set.complete)),u.presence==t.Query.presence.PROHIBITED){a[m]===void 0&&(a[m]=t.Set.empty),a[m]=a[m].union($);continue}if(i[m].upsert(_,u.boost,function(Qe,Ce){return Qe+Ce}),!s[j]){for(var N=0;N<A.length;N++){var q=A[N],I=new t.FieldRef(q,m),z=B[q],W;(W=r[I])===void 0?r[I]=new t.MatchData(w,m,z):W.add(w,m,z)}s[j]=!0}}}if(u.presence===t.Query.presence.REQUIRED)for(var p=0;p<u.fields.length;p++){var m=u.fields[p];o[m]=o[m].intersect(v)}}for(var V=t.Set.complete,R=t.Set.empty,l=0;l<this.fields.length;l++){var m=this.fields[l];o[m]&&(V=V.intersect(o[m])),a[m]&&(R=R.union(a[m]))}var c=Object.keys(r),y=[],P=Object.create(null);if(n.isNegated()){c=Object.keys(this.fieldVectors);for(var l=0;l<c.length;l++){var I=c[l],T=t.FieldRef.fromString(I);r[I]=new t.MatchData}}for(var l=0;l<c.length;l++){var T=t.FieldRef.fromString(c[l]),h=T.docRef;if(V.contains(h)&&!R.contains(h)){var x=this.fieldVectors[T],O=i[T.fieldName].similarity(x),M;if((M=P[h])!==void 0)M.score+=O,M.matchData.combine(r[T]);else{var E={ref:h,score:O,matchData:r[T]};P[h]=E,y.push(E)}}}return y.sort(function(Te,ke){return ke.score-Te.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,l=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 u=0;u<i.length;u++){var d=i[u],v=d[0],f=d[1];r[v]=new t.Vector(f)}for(var u=0;u<o.length;u++){var d=o[u],b=d[0],g=d[1];a.insert(b),s[b]=g}return a.finish(),n.fields=e.fields,n.fieldVectors=r,n.invertedIndex=s,n.tokenSet=a.root,n.pipeline=l,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,l=a?a(e):e[o],u=this.tokenizer(l,{fields:[o]}),d=this.pipeline.run(u),v=new t.FieldRef(r,o),f=Object.create(null);this.fieldTermFrequencies[v]=f,this.fieldLengths[v]=0,this.fieldLengths[v]+=d.length;for(var b=0;b<d.length;b++){var g=d[b];if(f[g]==null&&(f[g]=0),f[g]+=1,this.invertedIndex[g]==null){var L=Object.create(null);L._index=this.termIndex,this.termIndex+=1;for(var p=0;p<i.length;p++)L[i[p]]=Object.create(null);this.invertedIndex[g]=L}this.invertedIndex[g][o][r]==null&&(this.invertedIndex[g][o][r]=Object.create(null));for(var m=0;m<this.metadataWhitelist.length;m++){var S=this.metadataWhitelist[m],w=g.metadata[S];this.invertedIndex[g][o][r][S]==null&&(this.invertedIndex[g][o][r][S]=[]),this.invertedIndex[g][o][r][S].push(w)}}}},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 l=Object.keys(this._fields),s=0;s<l.length;s++){var u=l[s];r[u]=r[u]/i[u]}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,l=this.fieldLengths[o],u=new t.Vector,d=this.fieldTermFrequencies[o],v=Object.keys(d),f=v.length,b=this._fields[a].boost||1,g=this._documents[o.docRef].boost||1,L=0;L<f;L++){var p=v[L],m=d[p],S=this.invertedIndex[p]._index,w,k,_;i[p]===void 0?(w=t.idf(this.invertedIndex[p],this.documentCount),i[p]=w):w=i[p],k=w*((this._k1+1)*m)/(this._k1*(1-this._b+this._b*(l/this.averageFieldLength[a]))+m),k*=b,k*=g,_=Math.round(k*1e3)/1e3,u.insert(S,_)}e[o]=u}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],l=Object.keys(e.metadata[i][a]);this.metadata[i][a]==null&&(this.metadata[i][a]=Object.create(null));for(var u=0;u<l.length;u++){var d=l[u];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 se=="object"?oe.exports=n():e.lunr=n()}(this,function(){return t})})()});var re=[];function G(t,e){re.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureActivePageVisible(),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){re.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()}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){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=r}}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&&n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let r=document.createElement("p");r.classList.add("warning"),r.textContent="This member is normally hidden due to your filter settings.",n.prepend(r)}}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="Copied!",e.classList.add("visible"),clearTimeout(n),n=setTimeout(()=>{e.classList.remove("visible"),n=setTimeout(()=>{e.textContent="Copy"},100)},1e3)})})}};var ie=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var de=De(ae());async function le(t,e){if(!window.searchData)return;let n=await fetch(window.searchData),r=new Blob([await n.arrayBuffer()]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();t.data=i,t.index=de.Index.load(i.index),e.classList.remove("loading"),e.classList.add("ready")}function he(){let t=document.getElementById("tsd-search");if(!t)return;let e={base:t.dataset.base+"/"},n=document.getElementById("tsd-search-script");t.classList.add("loading"),n&&(n.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),n.addEventListener("load",()=>{le(e,t)}),le(e,t));let r=document.querySelector("#tsd-search input"),i=document.querySelector("#tsd-search .results");if(!r||!i)throw new Error("The input field or the result list wrapper was not found");let s=!1;i.addEventListener("mousedown",()=>s=!0),i.addEventListener("mouseup",()=>{s=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{s||(s=!1,t.classList.remove("has-focus"))}),Ae(t,i,r,e)}function Ae(t,e,n,r){n.addEventListener("input",ie(()=>{Ne(t,e,n,r)},200));let i=!1;n.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ve(e,n):s.key=="Escape"?n.blur():s.key=="ArrowUp"?ue(e,-1):s.key==="ArrowDown"?ue(e,1):i=!1}),n.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!n.matches(":focus")&&s.key==="/"&&(n.focus(),s.preventDefault())})}function Ne(t,e,n,r){if(!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s;if(i){let o=i.split(" ").map(a=>a.length?`*${a}*`:"").join(" ");s=r.index.search(o)}else s=[];for(let o=0;o<s.length;o++){let a=s[o],l=r.data.rows[Number(a.ref)],u=1;l.name.toLowerCase().startsWith(i.toLowerCase())&&(u*=1+1/(1+Math.abs(l.name.length-i.length))),a.score*=u}if(s.length===0){let o=document.createElement("li");o.classList.add("no-results");let a=document.createElement("span");a.textContent="No results found",o.appendChild(a),e.appendChild(o)}s.sort((o,a)=>a.score-o.score);for(let o=0,a=Math.min(10,s.length);o<a;o++){let l=r.data.rows[Number(s[o].ref)],u=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon"><use href="#icon-${l.kind}"></use></svg>`,d=ce(l.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(d+=` (score: ${s[o].score.toFixed(2)})`),l.parent&&(d=`<span class="parent">
4
- ${ce(l.parent,i)}.</span>${d}`);let v=document.createElement("li");v.classList.value=l.classes??"";let f=document.createElement("a");f.href=r.base+l.url,f.innerHTML=u+d,v.append(f),e.appendChild(v)}}function ue(t,e){let n=t.querySelector(".current");if(!n)n=t.querySelector(e==1?"li:first-child":"li:last-child"),n&&n.classList.add("current");else{let r=n;if(e===1)do r=r.nextElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);else do r=r.previousElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);r&&(n.classList.remove("current"),r.classList.add("current"))}}function Ve(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),e.blur()}}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(K(t.substring(s,o)),`<b>${K(t.substring(o,o+r.length))}</b>`),s=o+r.length,o=n.indexOf(r,s);return i.push(K(t.substring(s))),i.join("")}var He={"&":"&amp;","<":"&lt;",">":"&gt;","'":"&#039;",'"':"&quot;"};function K(t){return t.replace(/[&<>"'"]/g,e=>He[e])}var C=class{constructor(e){this.el=e.el,this.app=e.app}};var F="mousedown",pe="mousemove",H="mouseup",J={x:0,y:0},fe=!1,ee=!1,Be=!1,D=!1,me=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(me?"is-mobile":"not-mobile");me&&"ontouchstart"in document.documentElement&&(Be=!0,F="touchstart",pe="touchmove",H="touchend");document.addEventListener(F,t=>{ee=!0,D=!1;let e=F=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(pe,t=>{if(ee&&!D){let e=F=="touchstart"?t.targetTouches[0]:t,n=J.x-(e.pageX||0),r=J.y-(e.pageY||0);D=Math.sqrt(n*n+r*r)>10}});document.addEventListener(H,()=>{ee=!1});document.addEventListener("click",t=>{fe&&(t.preventDefault(),t.stopImmediatePropagation(),fe=!1)});var X=class extends C{constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener(H,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(F,n=>this.onDocumentPointerDown(n)),document.addEventListener(H,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){D||(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(!D&&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 te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var ve=document.head.appendChild(document.createElement("style"));ve.dataset.for="filters";var Y=class extends C{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()),ve.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; }
5
- `,this.updateIndexHeadingVisibility()}fromLocalStorage(){let e=Q.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){Q.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),this.updateIndexHeadingVisibility()}updateIndexHeadingVisibility(){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)}};var Z=class extends C{constructor(e){super(e),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update());let r=this.summary.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)}),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function ge(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ye(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ye(t.value)})}function ye(t){document.documentElement.dataset.theme=t}var Le;function be(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",xe),xe())}async function xe(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let n=await(await fetch(window.navigationData)).arrayBuffer(),r=new Blob([n]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();Le=t.dataset.base+"/",t.innerHTML="";for(let s of i)we(s,t,[]);window.app.createComponents(t),window.app.ensureActivePageVisible()}function we(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-index-accordion`:"tsd-index-accordion",s.dataset.key=i.join("$");let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.innerHTML='<svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>',Ee(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let l=a.appendChild(document.createElement("ul"));l.className="tsd-nested-navigation";for(let u of t.children)we(u,l,i)}else Ee(t,r,t.class)}function Ee(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));r.href=Le+t.path,n&&(r.className=n),location.href===r.href&&r.classList.add("current"),t.kind&&(r.innerHTML=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon"><use href="#icon-${t.kind}"></use></svg>`),r.appendChild(document.createElement("span")).textContent=t.text}else e.appendChild(document.createElement("span")).textContent=t.text}G(X,"a[data-toggle]");G(Z,".tsd-index-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var Se=document.getElementById("tsd-theme");Se&&ge(Se);var je=new U;Object.defineProperty(window,"app",{value:je});he();be();})();
2
+ "use strict";(()=>{var Ce=Object.create;var ne=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var _e=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty;var Me=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Fe=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!Re.call(t,i)&&i!==n&&ne(t,i,{get:()=>e[i],enumerable:!(r=Pe(e,i))||r.enumerable});return t};var De=(t,e,n)=>(n=t!=null?Ce(_e(t)):{},Fe(e||!t||!t.__esModule?ne(n,"default",{value:t,enumerable:!0}):n,t));var ae=Me((se,oe)=>{(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(y){return new t.Token(t.utils.asString(y).toLowerCase(),t.utils.clone(n))});for(var r=e.toString().toLowerCase(),i=r.length,s=[],o=0,a=0;o<=i;o++){var l=r.charAt(o),u=o-a;if(l.match(t.tokenizer.separator)||o==i){if(u>0){var d=t.utils.clone(n)||{};d.position=[a,u],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.
3
+ `,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 l=0;l<a.length;l++)s.push(a[l]);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,l=0,u=0,d=0;u<s&&d<o;)a=r[u],l=i[d],a<l?u+=2:a>l?d+=2:a==l&&(n+=r[u+1]*i[d+1],u+=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,l="^("+s+")?"+o+s+"("+o+")?$",u="^("+s+")?"+o+s+o+s,d="^("+s+")?"+i,y=new RegExp(a),p=new RegExp(u),b=new RegExp(l),g=new RegExp(d),L=/^(.+?)(ss|i)es$/,f=/^(.+?)([^s])s$/,m=/^(.+?)eed$/,S=/^(.+?)(ed|ing)$/,w=/.$/,k=/(at|bl|iz)$/,_=new RegExp("([^aeiouylsz])\\1$"),B=new RegExp("^"+s+i+"[^aeiouwxy]$"),A=/^(.+?[^aeiou])y$/,j=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,$=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,V=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,q=/^(.+?)(s|t)(ion)$/,C=/^(.+?)e$/,z=/ll$/,W=new RegExp("^"+s+i+"[^aeiouwxy]$"),N=function(c){var v,P,T,h,x,O,M;if(c.length<3)return c;if(T=c.substr(0,1),T=="y"&&(c=T.toUpperCase()+c.substr(1)),h=L,x=f,h.test(c)?c=c.replace(h,"$1$2"):x.test(c)&&(c=c.replace(x,"$1$2")),h=m,x=S,h.test(c)){var E=h.exec(c);h=y,h.test(E[1])&&(h=w,c=c.replace(h,""))}else if(x.test(c)){var E=x.exec(c);v=E[1],x=g,x.test(v)&&(c=v,x=k,O=_,M=B,x.test(c)?c=c+"e":O.test(c)?(h=w,c=c.replace(h,"")):M.test(c)&&(c=c+"e"))}if(h=A,h.test(c)){var E=h.exec(c);v=E[1],c=v+"i"}if(h=j,h.test(c)){var E=h.exec(c);v=E[1],P=E[2],h=y,h.test(v)&&(c=v+e[P])}if(h=$,h.test(c)){var E=h.exec(c);v=E[1],P=E[2],h=y,h.test(v)&&(c=v+n[P])}if(h=V,x=q,h.test(c)){var E=h.exec(c);v=E[1],h=p,h.test(v)&&(c=v)}else if(x.test(c)){var E=x.exec(c);v=E[1]+E[2],x=p,x.test(v)&&(c=v)}if(h=C,h.test(c)){var E=h.exec(c);v=E[1],h=p,x=b,O=W,(h.test(v)||x.test(v)&&!O.test(v))&&(c=v)}return h=z,x=p,h.test(c)&&x.test(c)&&(h=w,c=c.replace(h,"")),T=="y"&&(c=T.toLowerCase()+c.substr(1)),c};return function(R){return R.update(N)}}(),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 l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,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 u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),y=s.str.charAt(1),p;y in s.node.edges?p=s.node.edges[y]:(p=new t.TokenSet,s.node.edges[y]=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 l=new t.TokenSet;l.final=a,n.edges[o]=l,n=l}}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),l=a.length,u=0;u<o;u++)for(var d=s[u],y=0;y<l;y++){var p=a[y];if(p==d||d=="*"){var b=r.node.edges[p],g=r.qNode.edges[d],L=b.final&&g.final,f=void 0;p in r.output.edges?(f=r.output.edges[p],f.final=f.final||L):(f=new t.TokenSet,f.final=L,r.output.edges[p]=f),i.push({qNode:g,output:f,node:b})}}}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),l=0;l<this.fields.length;l++)i[this.fields[l]]=new t.Vector;e.call(n,n);for(var l=0;l<n.clauses.length;l++){var u=n.clauses[l],d=null,y=t.Set.empty;u.usePipeline?d=this.pipeline.runString(u.term,{fields:u.fields}):d=[u.term];for(var p=0;p<d.length;p++){var b=d[p];u.term=b;var g=t.TokenSet.fromClause(u),L=this.tokenSet.intersect(g).toArray();if(L.length===0&&u.presence===t.Query.presence.REQUIRED){for(var f=0;f<u.fields.length;f++){var m=u.fields[f];o[m]=t.Set.empty}break}for(var S=0;S<L.length;S++)for(var w=L[S],k=this.invertedIndex[w],_=k._index,f=0;f<u.fields.length;f++){var m=u.fields[f],B=k[m],A=Object.keys(B),j=w+"/"+m,$=new t.Set(A);if(u.presence==t.Query.presence.REQUIRED&&(y=y.union($),o[m]===void 0&&(o[m]=t.Set.complete)),u.presence==t.Query.presence.PROHIBITED){a[m]===void 0&&(a[m]=t.Set.empty),a[m]=a[m].union($);continue}if(i[m].upsert(_,u.boost,function(Qe,Ie){return Qe+Ie}),!s[j]){for(var V=0;V<A.length;V++){var q=A[V],C=new t.FieldRef(q,m),z=B[q],W;(W=r[C])===void 0?r[C]=new t.MatchData(w,m,z):W.add(w,m,z)}s[j]=!0}}}if(u.presence===t.Query.presence.REQUIRED)for(var f=0;f<u.fields.length;f++){var m=u.fields[f];o[m]=o[m].intersect(y)}}for(var N=t.Set.complete,R=t.Set.empty,l=0;l<this.fields.length;l++){var m=this.fields[l];o[m]&&(N=N.intersect(o[m])),a[m]&&(R=R.union(a[m]))}var c=Object.keys(r),v=[],P=Object.create(null);if(n.isNegated()){c=Object.keys(this.fieldVectors);for(var l=0;l<c.length;l++){var C=c[l],T=t.FieldRef.fromString(C);r[C]=new t.MatchData}}for(var l=0;l<c.length;l++){var T=t.FieldRef.fromString(c[l]),h=T.docRef;if(N.contains(h)&&!R.contains(h)){var x=this.fieldVectors[T],O=i[T.fieldName].similarity(x),M;if((M=P[h])!==void 0)M.score+=O,M.matchData.combine(r[T]);else{var E={ref:h,score:O,matchData:r[T]};P[h]=E,v.push(E)}}}return v.sort(function(Te,ke){return ke.score-Te.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,l=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 u=0;u<i.length;u++){var d=i[u],y=d[0],p=d[1];r[y]=new t.Vector(p)}for(var u=0;u<o.length;u++){var d=o[u],b=d[0],g=d[1];a.insert(b),s[b]=g}return a.finish(),n.fields=e.fields,n.fieldVectors=r,n.invertedIndex=s,n.tokenSet=a.root,n.pipeline=l,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,l=a?a(e):e[o],u=this.tokenizer(l,{fields:[o]}),d=this.pipeline.run(u),y=new t.FieldRef(r,o),p=Object.create(null);this.fieldTermFrequencies[y]=p,this.fieldLengths[y]=0,this.fieldLengths[y]+=d.length;for(var b=0;b<d.length;b++){var g=d[b];if(p[g]==null&&(p[g]=0),p[g]+=1,this.invertedIndex[g]==null){var L=Object.create(null);L._index=this.termIndex,this.termIndex+=1;for(var f=0;f<i.length;f++)L[i[f]]=Object.create(null);this.invertedIndex[g]=L}this.invertedIndex[g][o][r]==null&&(this.invertedIndex[g][o][r]=Object.create(null));for(var m=0;m<this.metadataWhitelist.length;m++){var S=this.metadataWhitelist[m],w=g.metadata[S];this.invertedIndex[g][o][r][S]==null&&(this.invertedIndex[g][o][r][S]=[]),this.invertedIndex[g][o][r][S].push(w)}}}},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 l=Object.keys(this._fields),s=0;s<l.length;s++){var u=l[s];r[u]=r[u]/i[u]}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,l=this.fieldLengths[o],u=new t.Vector,d=this.fieldTermFrequencies[o],y=Object.keys(d),p=y.length,b=this._fields[a].boost||1,g=this._documents[o.docRef].boost||1,L=0;L<p;L++){var f=y[L],m=d[f],S=this.invertedIndex[f]._index,w,k,_;i[f]===void 0?(w=t.idf(this.invertedIndex[f],this.documentCount),i[f]=w):w=i[f],k=w*((this._k1+1)*m)/(this._k1*(1-this._b+this._b*(l/this.averageFieldLength[a]))+m),k*=b,k*=g,_=Math.round(k*1e3)/1e3,u.insert(S,_)}e[o]=u}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],l=Object.keys(e.metadata[i][a]);this.metadata[i][a]==null&&(this.metadata[i][a]=Object.create(null));for(var u=0;u<l.length;u++){var d=l[u];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 se=="object"?oe.exports=n():e.lunr=n()}(this,function(){return t})})()});var re=[];function G(t,e){re.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;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){re.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&&(console.log("Show page"),document.body.style.removeProperty("display"),this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}scrollToHash(){if(location.hash){console.log("Scorlling");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&&!e.checkVisibility()){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").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&&n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let r=document.createElement("p");r.classList.add("warning"),r.textContent="This member is normally hidden due to your filter settings.",n.prepend(r)}}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="Copied!",e.classList.add("visible"),clearTimeout(n),n=setTimeout(()=>{e.classList.remove("visible"),n=setTimeout(()=>{e.textContent="Copy"},100)},1e3)})})}};var ie=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var de=De(ae());async function le(t,e){if(!window.searchData)return;let n=await fetch(window.searchData),r=new Blob([await n.arrayBuffer()]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();t.data=i,t.index=de.Index.load(i.index),e.classList.remove("loading"),e.classList.add("ready")}function he(){let t=document.getElementById("tsd-search");if(!t)return;let e={base:t.dataset.base+"/"},n=document.getElementById("tsd-search-script");t.classList.add("loading"),n&&(n.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),n.addEventListener("load",()=>{le(e,t)}),le(e,t));let r=document.querySelector("#tsd-search input"),i=document.querySelector("#tsd-search .results");if(!r||!i)throw new Error("The input field or the result list wrapper was not found");let s=!1;i.addEventListener("mousedown",()=>s=!0),i.addEventListener("mouseup",()=>{s=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{s||(s=!1,t.classList.remove("has-focus"))}),Ae(t,i,r,e)}function Ae(t,e,n,r){n.addEventListener("input",ie(()=>{Ve(t,e,n,r)},200));let i=!1;n.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ne(e,n):s.key=="Escape"?n.blur():s.key=="ArrowUp"?ue(e,-1):s.key==="ArrowDown"?ue(e,1):i=!1}),n.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!n.matches(":focus")&&s.key==="/"&&(n.focus(),s.preventDefault())})}function Ve(t,e,n,r){if(!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s;if(i){let o=i.split(" ").map(a=>a.length?`*${a}*`:"").join(" ");s=r.index.search(o)}else s=[];for(let o=0;o<s.length;o++){let a=s[o],l=r.data.rows[Number(a.ref)],u=1;l.name.toLowerCase().startsWith(i.toLowerCase())&&(u*=1+1/(1+Math.abs(l.name.length-i.length))),a.score*=u}if(s.length===0){let o=document.createElement("li");o.classList.add("no-results");let a=document.createElement("span");a.textContent="No results found",o.appendChild(a),e.appendChild(o)}s.sort((o,a)=>a.score-o.score);for(let o=0,a=Math.min(10,s.length);o<a;o++){let l=r.data.rows[Number(s[o].ref)],u=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon"><use href="#icon-${l.kind}"></use></svg>`,d=ce(l.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(d+=` (score: ${s[o].score.toFixed(2)})`),l.parent&&(d=`<span class="parent">
4
+ ${ce(l.parent,i)}.</span>${d}`);let y=document.createElement("li");y.classList.value=l.classes??"";let p=document.createElement("a");p.href=r.base+l.url,p.innerHTML=u+d,y.append(p),e.appendChild(y)}}function ue(t,e){let n=t.querySelector(".current");if(!n)n=t.querySelector(e==1?"li:first-child":"li:last-child"),n&&n.classList.add("current");else{let r=n;if(e===1)do r=r.nextElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);else do r=r.previousElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);r&&(n.classList.remove("current"),r.classList.add("current"))}}function Ne(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),e.blur()}}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(K(t.substring(s,o)),`<b>${K(t.substring(o,o+r.length))}</b>`),s=o+r.length,o=n.indexOf(r,s);return i.push(K(t.substring(s))),i.join("")}var He={"&":"&amp;","<":"&lt;",">":"&gt;","'":"&#039;",'"':"&quot;"};function K(t){return t.replace(/[&<>"'"]/g,e=>He[e])}var I=class{constructor(e){this.el=e.el,this.app=e.app}};var F="mousedown",fe="mousemove",H="mouseup",J={x:0,y:0},pe=!1,ee=!1,Be=!1,D=!1,me=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(me?"is-mobile":"not-mobile");me&&"ontouchstart"in document.documentElement&&(Be=!0,F="touchstart",fe="touchmove",H="touchend");document.addEventListener(F,t=>{ee=!0,D=!1;let e=F=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(fe,t=>{if(ee&&!D){let e=F=="touchstart"?t.targetTouches[0]:t,n=J.x-(e.pageX||0),r=J.y-(e.pageY||0);D=Math.sqrt(n*n+r*r)>10}});document.addEventListener(H,()=>{ee=!1});document.addEventListener("click",t=>{pe&&(t.preventDefault(),t.stopImmediatePropagation(),pe=!1)});var X=class extends I{constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener(H,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(F,n=>this.onDocumentPointerDown(n)),document.addEventListener(H,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){D||(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(!D&&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 te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var ye=document.head.appendChild(document.createElement("style"));ye.dataset.for="filters";var Y=class extends I{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()),ye.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; }
5
+ `,this.app.updateIndexVisibility()}fromLocalStorage(){let e=Q.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){Q.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),this.app.updateIndexVisibility()}};var Z=class extends I{constructor(e){super(e),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update());let r=this.summary.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)}),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function ge(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ve(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ve(t.value)})}function ve(t){document.documentElement.dataset.theme=t}var Le;function be(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",xe),xe())}async function xe(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let n=await(await fetch(window.navigationData)).arrayBuffer(),r=new Blob([n]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();Le=t.dataset.base+"/",t.innerHTML="";for(let s of i)we(s,t,[]);window.app.createComponents(t),window.app.showPage(),window.app.ensureActivePageVisible()}function we(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-index-accordion`:"tsd-index-accordion",s.dataset.key=i.join("$");let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.innerHTML='<svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon-chevronDown"></use></svg>',Ee(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let l=a.appendChild(document.createElement("ul"));l.className="tsd-nested-navigation";for(let u of t.children)we(u,l,i)}else Ee(t,r,t.class)}function Ee(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));r.href=Le+t.path,n&&(r.className=n),location.pathname===r.pathname&&r.classList.add("current"),t.kind&&(r.innerHTML=`<svg width="20" height="20" viewBox="0 0 24 24" fill="none" class="tsd-kind-icon"><use href="#icon-${t.kind}"></use></svg>`),r.appendChild(document.createElement("span")).textContent=t.text}else e.appendChild(document.createElement("span")).textContent=t.text}G(X,"a[data-toggle]");G(Z,".tsd-index-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var Se=document.getElementById("tsd-theme");Se&&ge(Se);var je=new U;Object.defineProperty(window,"app",{value:je});he();be();})();
6
6
  /*! Bundled license information:
7
7
 
8
8
  lunr/lunr.js:
@@ -1 +1 @@
1
- window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAAA43W0W7aMBQG4HfJNVpX1nYbdwzYijSgSqBcTBVykwNYpHZkn9Ciae9eLaZJnJzYXP//+eQ4Uew/fwOENwwGwTDjEagjj2EqNDIRQ9ALMob7YBDEKdMa9FW782mPL2nQCw5cJMHguv/tX68Ux4uZV2x3XOJcIt+evChZc7nhOhqlHAS2rTLyzIcyR1DkvIk88+fVksA58wirLJUs6VjDR+gxHjm8juRLJkXXZlgNp1Y8tQuzCz6Li533xdM9l7xCnmqvS7VcavnKuslWxeVNw3U01Bow2svXRYZcCl2RXCCoLYtBX1FFG+7f3jXgkRRbvuvkTOxDxhBLxVAq3+qaRR98j5gVX0qnWDZ81IOCLX+D5H65fFD/B7pX2a66cfPdTY7Wh26ZtYaLGi9mixyzHJenrPbIeMrMz7IKG8rn71+vb/uNJ/7B4gOIpLF/Bmvml3g/lRQYNrau4mrxJVrRDEHnKVJaLb5EW8OzlvEBMEKGObm+RsWnmmPkt9xR78IKL5NWvBsymc8J15GpN5Ey8ApmUzFXomVUkU+p7gEVcmSKs+fUuiXYzpc+eTmgiCp1ENYxTylWwQHZxwYl2Q0HVT8pKKieOxjiPlAZHRcCC9iEi9VyOv+1mTxO5svNfDibUBRRc+2TOf4raJuLuPiLf9wM7OG7m9qw2A0RFTVrEseogh3XCKo4jc7XBU1JZNEJiwRU8eETF5W62+612Kd34dIeG0wLAAA="
1
+ window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAAA53XXW/aMBQG4P+Sa7pu3dpt3LGWrUjlQySUi2mqTHJIPYId2Se0bNp/n0gQjpMTG/WW8/qxk9jJ4effAOEVg34wyHkIasdjGAmNTMQQ9IKc4XPQD+KMaQ36sp1594zbLOgFGy6SoP/h6su/3km8lWLNUy9Kxlzu3XTsRdsZlziRyNd7L0rGXO58Gc5lgaDa1qnkGX+cjQSONY/wyOHlVm5zKUAg6VgJpyYL5ML/SOmcSz5Gl1JtQHl9V9o1ywJ5pr06lXKppwfRTbYiLu8+Gj8MEBVfFQjaYFwgqDWLQV/aERu7ur7pVRMH/QB1csH1BbwiKMGyoDFNxNJOP2Lp2+DRfBlWh5q0TbnFN5A7iKViKNU0Ry4FfSuooA++R8zL09cpnhI+aqZgzV8huY+imZKdD4yO+vCFrr86Gtyh6AaqUzjcWefeUmoJF3U3HU8LzAuM9nntnuE+r161pthQ3n/9/OH6qr3pIsWEXku1BUWRdIq0z96RA60Bw2f50tpM1ZxUxnc1hzHfWLwBkTS2kzHr9XO870oKnDd2kuFq5XO0MjkHXWRIabXyOdoSVlrGG8AQGRbk+hoRn1p9Uh9kSm0Dq3ietODdUFXzOfNlWMWbyKngFaqbioUSLcOUfErEUj1TMgatJXlIWgGf+DSfLqLR5MfT8HE4iZ4mg/HQmDumOFtloC+JmC1/rKOmJTTWuhBxeX5qDaNN3Hzq6hMpxQo4INP0UYqpOgirxaMUK+CAqo8cMi7qr3Dj1OtuZpQKqci1nIoeQPyGGLuAsugGDv1hx/BDyTXYagRJw0o4KKrno0Aq52DrzR7F1esOhmjUjdHRqVsAQyT3yeH35rCzvnkJxBlTUO6zY2uvqQmonGOdIh10rLSqOIbKlQa1O7xkqOGm+qbLzZXc8QTKZlDzVIR7jbClJqKTjnUrYBnyLSxhFRYc4TbjIHDG4g1LyUtxDnBOJBJQ5TeC+MNW99s5B6uZ4Mj/QNL15KxAC/r1H0K8qgckEAAA"
@@ -1 +1 @@
1
- window.searchData = "data:application/octet-stream;base64,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";
1
+ window.searchData = "data:application/octet-stream;base64,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";
@@ -327,17 +327,14 @@ dd {
327
327
  }
328
328
 
329
329
  /* Footer */
330
- .tsd-generator {
330
+ footer {
331
331
  border-top: 1px solid var(--color-accent);
332
332
  padding-top: 1rem;
333
333
  padding-bottom: 1rem;
334
334
  max-height: 3.5rem;
335
335
  }
336
-
337
- .tsd-generator > p {
338
- margin-top: 0;
339
- margin-bottom: 0;
340
- padding: 0 1rem;
336
+ .tsd-generator {
337
+ margin: 0 1em;
341
338
  }
342
339
 
343
340
  .container-main {
@@ -405,7 +402,8 @@ dd {
405
402
  }
406
403
  body {
407
404
  background: var(--color-background);
408
- font-family: "Segoe UI", sans-serif;
405
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
406
+ Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
409
407
  font-size: 16px;
410
408
  color: var(--color-text);
411
409
  }