@zjlab-fe/data-hub-ui 0.21.7 → 0.23.0

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 (328) hide show
  1. package/es/assets/cardImg.png.js +3 -0
  2. package/es/assets/closeBtn.png.js +3 -0
  3. package/es/assets/icon-tag-header.png.js +3 -0
  4. package/es/assets/source.png.js +3 -0
  5. package/es/components/FileUploader/FileUploadModal.js +23 -0
  6. package/es/components/FileUploader/FileUploader.js +20 -0
  7. package/es/components/FileUploader/FileUploaderImpl/FileUploader.js +34 -0
  8. package/es/components/FileUploader/FileUploaderImpl/FileUploaderContextProvider.js +46 -0
  9. package/es/components/FileUploader/FileUploaderImpl/FileUploaderFileReceiver.css.js +36 -0
  10. package/es/components/FileUploader/FileUploaderImpl/FileUploaderFileReceiver.js +56 -0
  11. package/es/components/FileUploader/FileUploaderImpl/FileUploaderFileReceiverContainer.js +24 -0
  12. package/es/components/FileUploader/FileUploaderImpl/FileUploaderFileReceiverDesc.js +9 -0
  13. package/es/components/FileUploader/FileUploaderImpl/FileUploaderList.js +46 -0
  14. package/es/components/FileUploader/FileUploaderImpl/FileUploaderListItem.js +46 -0
  15. package/es/components/FileUploader/FileUploaderImpl/FileUploaderListItemFail.js +21 -0
  16. package/es/components/FileUploader/FileUploaderImpl/FileUploaderListItemPaused.js +20 -0
  17. package/es/components/FileUploader/FileUploaderImpl/FileUploaderListItemUploading.js +43 -0
  18. package/es/components/FileUploader/FileUploaderImpl/FileUploaderlListItemFinished.js +32 -0
  19. package/es/components/FileUploader/Locale/translations.js +52 -0
  20. package/es/components/FileUploader/Locale/useTranslate.js +16 -0
  21. package/es/components/FileUploader/UploadStoreProvider/UploadStoreProvider.js +31 -0
  22. package/es/components/FileUploader/UploadStoreProvider/uploadStoreReducer.js +62 -0
  23. package/es/components/FileUploader/UploadStoreProvider/useOnFileAllUploaded.js +31 -0
  24. package/es/components/FileUploader/UploadStoreProvider/useSaveUnfinishedUploads.js +42 -0
  25. package/es/components/FileUploader/UploadStoreProvider/useSetupMergingEvent.js +45 -0
  26. package/es/components/FileUploader/hooks/useCancelUpload.js +40 -0
  27. package/es/components/FileUploader/hooks/useCurrentFile.js +61 -0
  28. package/es/components/FileUploader/hooks/useCurrentFileOnUploading.js +52 -0
  29. package/es/components/FileUploader/hooks/useCurrentFileSetupAndBackUp.js +39 -0
  30. package/es/components/FileUploader/hooks/useFormatFiles.js +64 -0
  31. package/es/components/FileUploader/hooks/useFormatFilesFindDuplicates.js +75 -0
  32. package/es/components/FileUploader/hooks/useFormatFilesRemoveDuplicates.js +21 -0
  33. package/es/components/FileUploader/hooks/useHandleChunkCompletion.js +31 -0
  34. package/es/components/FileUploader/hooks/useOnMounted.js +24 -0
  35. package/es/components/FileUploader/hooks/useOnMountedResumeUnfinished.js +58 -0
  36. package/es/components/FileUploader/hooks/useRetryUpload.js +33 -0
  37. package/es/components/FileUploader/hooks/useUploadChunk.js +46 -0
  38. package/es/components/FileUploader/icons/CloseFilled.js +7 -0
  39. package/es/components/FileUploader/icons/UnkownFileIcon.js +7 -0
  40. package/es/components/FileUploader/icons/UploadIcon.js +7 -0
  41. package/es/components/FileUploader/index.css.js +532 -0
  42. package/es/components/FileUploader/index.js +20 -0
  43. package/es/components/FileUploader/types.js +13 -0
  44. package/es/components/FileUploader/utils/calcDisplaySize.js +20 -0
  45. package/es/components/FileUploader/utils/checkExpiryTime.js +15 -0
  46. package/es/components/FileUploader/utils/createFileToUpload.js +60 -0
  47. package/es/components/FileUploader/utils/fileDB/addFilesToIndexdb.js +14 -0
  48. package/es/components/FileUploader/utils/fileDB/deleteFileInStore.js +18 -0
  49. package/es/components/FileUploader/utils/fileDB/deleteObjectStore.js +25 -0
  50. package/es/components/FileUploader/utils/fileDB/index.js +77 -0
  51. package/es/components/FileUploader/utils/fileDB/openDBAndRetrieveData.js +90 -0
  52. package/es/components/FileUploader/utils/fileDB/retrieveExistingData.js +49 -0
  53. package/es/components/FileUploader/utils/modalConfig.css.js +20 -0
  54. package/es/components/FileUploader/utils/modalConfig.js +32 -0
  55. package/es/components/FileUploader/utils/retrieveAllFiles.js +70 -0
  56. package/es/components/FileUploader/utils/splitFileIntoChunk.js +15 -0
  57. package/es/components/SDK-modal/document-link.js +8 -0
  58. package/es/components/SDK-modal/index.js +25 -0
  59. package/es/components/SDK-modal/index.module.scss.js +49 -0
  60. package/es/components/SDK-modal/inner-modal.js +59 -0
  61. package/es/components/SDK-modal/locale/translations.js +17 -0
  62. package/es/components/apply-perm-modal/index.js +53 -0
  63. package/es/components/apply-perm-modal/index.module.scss.js +96 -0
  64. package/es/components/auth-tag/index.js +23 -0
  65. package/es/components/bench-card/index.js +20 -0
  66. package/es/components/bench-card/index.module.scss.js +48 -0
  67. package/es/components/confirm-again/index.js +14 -0
  68. package/es/components/confirm-again/index.scss.js +37 -0
  69. package/es/components/copy/index.js +41 -0
  70. package/es/components/copy/index.module.scss.js +15 -0
  71. package/es/components/corpus-card/index.js +88 -0
  72. package/es/components/corpus-card/index.module.scss.js +171 -0
  73. package/es/components/feature-card/classNames.js +72 -0
  74. package/es/components/feature-card/components.js +48 -0
  75. package/es/components/feature-card/context.js +13 -0
  76. package/es/components/feature-card/index.css.js +655 -0
  77. package/es/components/feature-card/index.js +47 -0
  78. package/es/components/file-preview/data-table/index.js +94 -0
  79. package/es/components/file-preview/data-table/index.module.scss.js +54 -0
  80. package/es/components/file-preview/excel-preview/index.js +132 -0
  81. package/es/components/file-preview/excel-preview/index.module.scss.js +11 -0
  82. package/es/components/file-preview/excel-preview/utils.js +46 -0
  83. package/es/components/file-preview/img-preview/index.js +18 -0
  84. package/es/components/file-preview/img-preview/index.module.scss.js +17 -0
  85. package/es/components/file-preview/index.js +124 -0
  86. package/es/components/file-preview/index.module.scss.js +32 -0
  87. package/es/components/file-preview/json-preview/index.js +166 -0
  88. package/es/components/file-preview/markdown-preview/index.js +53 -0
  89. package/es/components/file-preview/markdown-preview/index.module.scss.js +1055 -0
  90. package/es/components/file-preview/parquet-preview/index.js +54 -0
  91. package/es/components/file-preview/pdf-preview/index.js +215 -0
  92. package/es/components/file-preview/pdf-preview/index.module.scss.js +16 -0
  93. package/es/components/file-preview/table-preview/index.js +43 -0
  94. package/es/components/file-preview/table-preview/index.module.scss.js +11 -0
  95. package/es/components/file-preview/txt-preview/index.js +24 -0
  96. package/es/components/file-preview/util.js +94 -0
  97. package/es/components/file-uploader/components/circle-progress.css.js +39 -0
  98. package/es/components/file-uploader/components/circle-progress.js +11 -0
  99. package/es/components/file-uploader/components/hooks/use-drop-zone.js +74 -0
  100. package/es/components/file-uploader/components/hooks/use-file-validation.js +52 -0
  101. package/es/components/file-uploader/components/icons.js +19 -0
  102. package/es/components/file-uploader/components/theme.css.js +64 -0
  103. package/es/components/file-uploader/components/uploader-drop-zone.css.js +66 -0
  104. package/es/components/file-uploader/components/uploader-drop-zone.js +72 -0
  105. package/es/components/file-uploader/components/uploader-file-item.css.js +186 -0
  106. package/es/components/file-uploader/components/uploader-file-item.js +61 -0
  107. package/es/components/file-uploader/components/uploader-file-list.css.js +43 -0
  108. package/es/components/file-uploader/components/uploader-file-list.js +25 -0
  109. package/es/components/file-uploader/components/uploader.css.js +20 -0
  110. package/es/components/file-uploader/components/uploader.js +49 -0
  111. package/es/components/file-uploader/components/uploading-status.css.js +52 -0
  112. package/es/components/file-uploader/components/uploading-status.js +53 -0
  113. package/es/components/file-uploader/components/utils/directory-reader.js +65 -0
  114. package/es/components/file-uploader/constants.js +31 -0
  115. package/es/components/file-uploader/context/action-registry.js +69 -0
  116. package/es/components/file-uploader/context/file-state-store.js +83 -0
  117. package/es/components/file-uploader/context/handler-registry.js +119 -0
  118. package/es/components/file-uploader/context/upload-context.js +36 -0
  119. package/es/components/file-uploader/context/upload-provider.js +77 -0
  120. package/es/components/file-uploader/context/upload-reducer.js +21 -0
  121. package/es/components/file-uploader/context/use-upload-engine.js +440 -0
  122. package/es/components/file-uploader/engine/queue-callbacks.js +257 -0
  123. package/es/components/file-uploader/engine/queue-manager.js +195 -0
  124. package/es/components/file-uploader/engine/queue-uploader.js +25 -0
  125. package/es/components/file-uploader/hooks/use-upload.js +327 -0
  126. package/es/components/file-uploader/utils/chunk-handlers.js +66 -0
  127. package/es/components/file-uploader/utils/ensure-handlers.js +53 -0
  128. package/es/components/file-uploader/utils/error-handler.js +84 -0
  129. package/es/components/file-uploader/utils/upload-controllers.js +43 -0
  130. package/es/components/file-uploader/utils/upload-handler.js +68 -0
  131. package/es/components/file-uploader/utils/validate-handlers.js +16 -0
  132. package/es/components/floating-label-input/index.js +46 -0
  133. package/es/components/floating-label-input/index.module.scss.js +30 -0
  134. package/es/components/floating-layer/index.js +14 -0
  135. package/es/components/floating-layer/index.scss.js +31 -0
  136. package/es/components/header/index.js +10 -0
  137. package/es/components/header/index.module.scss.js +16 -0
  138. package/es/components/input-tag/index.js +65 -0
  139. package/es/components/menu/index.js +96 -0
  140. package/es/components/menu/index.module.scss.js +188 -0
  141. package/es/components/model-card/index.js +20 -0
  142. package/es/components/model-card/index.module.scss.js +116 -0
  143. package/es/components/notion-editor/code-block/index.js +18 -0
  144. package/es/components/notion-editor/code-block/languageDetector.js +134 -0
  145. package/es/components/notion-editor/code-block/languages.js +42 -0
  146. package/es/components/notion-editor/index.js +257 -0
  147. package/es/components/notion-editor/index.scss.js +421 -0
  148. package/es/components/notion-editor/parseMarkdown.js +184 -0
  149. package/es/components/operator-chain/components/AddButton.js +20 -0
  150. package/es/components/operator-chain/components/IOCard.js +8 -0
  151. package/es/components/operator-chain/components/SingleCard.js +12 -0
  152. package/es/components/operator-chain/components/VirtualDropdown.js +56 -0
  153. package/es/components/operator-chain/index.js +83 -0
  154. package/es/components/operator-chain/index.module.scss.js +232 -0
  155. package/es/components/permission-editor/index.js +9 -0
  156. package/es/components/permission-editor/permissionEditModal/index.js +37 -0
  157. package/es/components/permission-editor/permissionEditor/index.js +253 -0
  158. package/es/components/permission-editor/permissionEditor/index.module.scss.js +22 -0
  159. package/es/components/permission-editor/permissionViewPopover/index.js +9 -0
  160. package/es/components/popover-select/index.js +42 -0
  161. package/es/components/popover-select/index.module.scss.js +22 -0
  162. package/es/components/radio-card/index.js +23 -0
  163. package/es/components/radio-card/index.scss.js +58 -0
  164. package/es/components/section-heading/classNames.js +22 -0
  165. package/es/components/section-heading/components.js +27 -0
  166. package/es/components/section-heading/context.js +13 -0
  167. package/es/components/section-heading/index.css.js +648 -0
  168. package/es/components/section-heading/index.js +36 -0
  169. package/es/components/status-tag/index.js +31 -0
  170. package/es/components/tag-group-filter/dataSizeFilter.js +100 -0
  171. package/es/components/tag-group-filter/index.js +53 -0
  172. package/es/components/tag-group-filter/index.module.scss.js +134 -0
  173. package/es/components/tag-group-filter/tagFilter.js +19 -0
  174. package/es/components/tag-view/index.js +138 -0
  175. package/es/components/tag-view/index.module.scss.js +56 -0
  176. package/es/components/tag-view/useSize.js +41 -0
  177. package/es/components/tip-tap/bubble-menu.js +47 -0
  178. package/es/components/tip-tap/editor.js +34 -0
  179. package/es/components/tip-tap/extensions/index.js +133 -0
  180. package/es/components/tip-tap/extensions/markdown-paste.js +148 -0
  181. package/es/components/tip-tap/icons/index.js +29 -0
  182. package/es/components/tip-tap/reader.js +15 -0
  183. package/es/components/tip-tap/styles/editor.css.js +863 -0
  184. package/es/components/tip-tap/toolbar/components/color-picker.js +76 -0
  185. package/es/components/tip-tap/toolbar/components/heading-dropdown.js +44 -0
  186. package/es/components/tip-tap/toolbar/components/image-button.js +26 -0
  187. package/es/components/tip-tap/toolbar/components/link-button.js +107 -0
  188. package/es/components/tip-tap/toolbar/components/table-button.js +37 -0
  189. package/es/components/tip-tap/toolbar/components/toolbar-button.js +7 -0
  190. package/es/components/tip-tap/toolbar/index.js +39 -0
  191. package/es/components/uploadDrawer/UploadStoreProvider.js +61 -0
  192. package/es/components/uploadDrawer/fileUploadDrawer.js +66 -0
  193. package/es/components/uploadDrawer/fileUploadDrawerFileDragger.js +71 -0
  194. package/es/components/uploadDrawer/fileUploadDrawerList.js +54 -0
  195. package/es/components/uploadDrawer/fileUploadDrawerListProgressButton.js +54 -0
  196. package/es/components/uploadDrawer/hooks/useCancelUpload.js +37 -0
  197. package/es/components/uploadDrawer/hooks/useFilterFiles.js +107 -0
  198. package/es/components/uploadDrawer/hooks/useFinishUpload.js +33 -0
  199. package/es/components/uploadDrawer/hooks/useFormatFiles.js +54 -0
  200. package/es/components/uploadDrawer/hooks/useProgressButtonRef.js +22 -0
  201. package/es/components/uploadDrawer/hooks/useRemoveFilesInUploadQueue.js +21 -0
  202. package/es/components/uploadDrawer/hooks/useResumeUnfinishedUploads.js +52 -0
  203. package/es/components/uploadDrawer/hooks/useRetryUpload.js +35 -0
  204. package/es/components/uploadDrawer/hooks/useSaveUnfinishedUploads.js +42 -0
  205. package/es/components/uploadDrawer/hooks/useSetupUpload.js +80 -0
  206. package/es/components/uploadDrawer/hooks/useUploadFileToOSS.js +23 -0
  207. package/es/components/uploadDrawer/index.css.js +511 -0
  208. package/es/components/uploadDrawer/index.js +42 -0
  209. package/es/components/uploadDrawer/utils/calcDisplaySize.js +19 -0
  210. package/es/components/uploadDrawer/utils/constant.js +16 -0
  211. package/es/components/uploadDrawer/utils/createFileToUpload.js +51 -0
  212. package/es/components/uploadDrawer/utils/fileDB/deleteFileInStore.js +28 -0
  213. package/es/components/uploadDrawer/utils/fileDB/deleteObjectStore.js +28 -0
  214. package/es/components/uploadDrawer/utils/fileDB/handleAddFilesToDB.js +37 -0
  215. package/es/components/uploadDrawer/utils/fileDB/index.js +9 -0
  216. package/es/components/uploadDrawer/utils/fileDB/openDB.js +111 -0
  217. package/es/components/uploadDrawer/utils/retrieveAllFiles.js +110 -0
  218. package/es/components/uploadDrawer/utils/shouldCreateNewFile.js +13 -0
  219. package/es/components/uploadDrawer/utils/splitFileIntoChunk.js +15 -0
  220. package/es/index.js +40 -1
  221. package/es/lib/utils.js +8 -0
  222. package/lib/index.js +1 -1
  223. package/package.json +33 -6
  224. package/rollup.es.config.mjs +177 -0
  225. package/tsconfig.rollup.json +7 -0
  226. package/dist/types/components/FileUploader/FileUploaderContextProvider.d.ts +0 -9
  227. package/dist/types/components/FileUploader/FileUploaderFileDragger.d.ts +0 -11
  228. package/dist/types/components/FileUploader/FileUploaderFileDraggerDragAreaDescription.d.ts +0 -4
  229. package/dist/types/components/FileUploader/FileUploaderList.d.ts +0 -1
  230. package/dist/types/components/FileUploader/FileUploaderListItem.d.ts +0 -26
  231. package/dist/types/components/FileUploader/FileUploaderListItemFail.d.ts +0 -5
  232. package/dist/types/components/FileUploader/FileUploaderListItemPaused.d.ts +0 -5
  233. package/dist/types/components/FileUploader/FileUploaderListItemUploading.d.ts +0 -2
  234. package/dist/types/components/FileUploader/FileUploaderMain.d.ts +0 -7
  235. package/dist/types/components/FileUploader/FileUploaderlListItemFinished.d.ts +0 -5
  236. package/dist/types/components/FileUploader/UploadStoreProvider.d.ts +0 -41
  237. package/dist/types/components/FileUploader/hooks/useCheckForDuplicates.d.ts +0 -1
  238. package/dist/types/components/FileUploader/hooks/useCurrentFIleOnInit.d.ts +0 -5
  239. package/dist/types/components/FileUploader/hooks/useCurrentFileOnAllUploaded.d.ts +0 -1
  240. package/dist/types/components/FileUploader/hooks/useCurrentFileOnCancel.d.ts +0 -2
  241. package/dist/types/components/FileUploader/hooks/useCurrentFileOnFail.d.ts +0 -2
  242. package/dist/types/components/FileUploader/hooks/useCurrentFileOnFinished.d.ts +0 -2
  243. package/dist/types/components/FileUploader/hooks/useFileDragAndDrop.d.ts +0 -9
  244. package/dist/types/components/FileUploader/hooks/useRemoveFilesInUploadQueue.d.ts +0 -1
  245. package/dist/types/components/FileUploader/hooks/useResumeUnfinishedUploads.d.ts +0 -1
  246. package/dist/types/components/FileUploader/hooks/useSaveUnfinishedUploads.d.ts +0 -11
  247. package/dist/types/components/FileUploader/hooks/useTranslate.d.ts +0 -1
  248. package/dist/types/components/FileUploader/hooks/useUploadContext.d.ts +0 -26
  249. package/dist/types/components/FileUploader/hooks/useWathUploadQueueAndSetupCurrentFile.d.ts +0 -1
  250. package/dist/types/components/FileUploader/translations.d.ts +0 -4
  251. package/dist/types/components/file-uploader/hooks/use-upload-batch.d.ts +0 -36
  252. package/dist/types/components/file-uploader/hooks/use-upload-control.d.ts +0 -37
  253. package/dist/types/components/file-uploader/hooks/use-upload-files.d.ts +0 -40
  254. package/dist/types/components/file-uploader/hooks/use-upload-operations.d.ts +0 -43
  255. package/dist/types/components/tip-tap/actions/BoldItalicStrikeUnderline.d.ts +0 -4
  256. package/dist/types/components/tip-tap/actions/CodeQuoteHorizontalRule.d.ts +0 -4
  257. package/dist/types/components/tip-tap/actions/Image.d.ts +0 -4
  258. package/dist/types/components/tip-tap/actions/Link.d.ts +0 -5
  259. package/dist/types/components/tip-tap/actions/LinkModifier.d.ts +0 -4
  260. package/dist/types/components/tip-tap/actions/List.d.ts +0 -4
  261. package/dist/types/components/tip-tap/actions/ParagraphHeadings.d.ts +0 -13
  262. package/dist/types/components/tip-tap/actions/Table.d.ts +0 -4
  263. package/dist/types/components/tip-tap/actions/TextAligment.d.ts +0 -4
  264. package/dist/types/components/tip-tap/actions/UndoRedo.d.ts +0 -4
  265. package/dist/types/components/tip-tap/actions/action-image.d.ts +0 -4
  266. package/dist/types/components/tip-tap/actions/action-link.d.ts +0 -5
  267. package/dist/types/components/tip-tap/actions/action-list.d.ts +0 -4
  268. package/dist/types/components/tip-tap/actions/action-table.d.ts +0 -4
  269. package/dist/types/components/tip-tap/actions/bold-italic-strike-underline.d.ts +0 -4
  270. package/dist/types/components/tip-tap/actions/code-quote-horizontalRule.d.ts +0 -4
  271. package/dist/types/components/tip-tap/actions/highlight-textcolor-fontsize.d.ts +0 -4
  272. package/dist/types/components/tip-tap/actions/link-modifier.d.ts +0 -4
  273. package/dist/types/components/tip-tap/actions/paragraph-headings.d.ts +0 -13
  274. package/dist/types/components/tip-tap/actions/text-aligment.d.ts +0 -4
  275. package/dist/types/components/tip-tap/actions/undo-redo.d.ts +0 -4
  276. package/dist/types/components/tip-tap/extensions/DropHandler.d.ts +0 -2
  277. package/dist/types/components/tip-tap/extensions/FontSize.d.ts +0 -20
  278. package/dist/types/components/tip-tap/extensions/PatseHandler.d.ts +0 -3
  279. package/dist/types/components/tip-tap/extensions/drop-handler.d.ts +0 -2
  280. package/dist/types/components/tip-tap/extensions/font-size.d.ts +0 -20
  281. package/dist/types/components/tip-tap/extensions/patse-handler.d.ts +0 -3
  282. package/dist/types/components/tip-tap/icons/HumbleiconsAlignTextCenter.d.ts +0 -3
  283. package/dist/types/components/tip-tap/icons/HumbleiconsAlignTextJustify.d.ts +0 -3
  284. package/dist/types/components/tip-tap/icons/HumbleiconsAlignTextLeft.d.ts +0 -3
  285. package/dist/types/components/tip-tap/icons/HumbleiconsAlignTextRight.d.ts +0 -3
  286. package/dist/types/components/tip-tap/icons/MaterialSymbolsAddLink.d.ts +0 -3
  287. package/dist/types/components/tip-tap/icons/MaterialSymbolsAddPhotoAlternateOutline.d.ts +0 -3
  288. package/dist/types/components/tip-tap/icons/MaterialSymbolsCode.d.ts +0 -3
  289. package/dist/types/components/tip-tap/icons/MaterialSymbolsEditOutline.d.ts +0 -3
  290. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatColorText.d.ts +0 -3
  291. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatH1.d.ts +0 -3
  292. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatH2.d.ts +0 -3
  293. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatH3.d.ts +0 -3
  294. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatH4.d.ts +0 -3
  295. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatH5.d.ts +0 -3
  296. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatH6.d.ts +0 -3
  297. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatInkHighlighterOutlineSharp.d.ts +0 -3
  298. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatListBulleted.d.ts +0 -3
  299. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatListNumbered.d.ts +0 -3
  300. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatParagraph.d.ts +0 -3
  301. package/dist/types/components/tip-tap/icons/MaterialSymbolsFormatQuote.d.ts +0 -3
  302. package/dist/types/components/tip-tap/icons/MaterialSymbolsHorizontalRule.d.ts +0 -3
  303. package/dist/types/components/tip-tap/icons/MaterialSymbolsLinkOff.d.ts +0 -3
  304. package/dist/types/components/tip-tap/icons/MaterialSymbolsRedo.d.ts +0 -3
  305. package/dist/types/components/tip-tap/icons/MaterialSymbolsTable.d.ts +0 -3
  306. package/dist/types/components/tip-tap/icons/MaterialSymbolsUndo.d.ts +0 -3
  307. package/dist/types/components/tip-tap/icons/MdiCodeBlockTags.d.ts +0 -3
  308. package/dist/types/components/tip-tap/icons/MdiFormatBold.d.ts +0 -3
  309. package/dist/types/components/tip-tap/icons/MdiFormatItalic.d.ts +0 -3
  310. package/dist/types/components/tip-tap/icons/MdiFormatStrikethroughVariant.d.ts +0 -3
  311. package/dist/types/components/tip-tap/icons/MdiFormatUnderline.d.ts +0 -3
  312. package/dist/types/components/tip-tap/menus/BubbleMenu.d.ts +0 -7
  313. package/dist/types/components/tip-tap/menus/FixedMenu.d.ts +0 -9
  314. package/dist/types/components/tip-tap/menus/LinkFloatingMenu.d.ts +0 -6
  315. package/dist/types/components/tip-tap/menus/ParagraphFloatingMenu.d.ts +0 -6
  316. package/dist/types/components/tip-tap/menus/bubble-menu.d.ts +0 -7
  317. package/dist/types/components/tip-tap/menus/fixed-menu.d.ts +0 -9
  318. package/dist/types/components/tip-tap/menus/link-floating-menu.d.ts +0 -6
  319. package/dist/types/components/tip-tap/menus/paragraph-floating-menu.d.ts +0 -6
  320. package/dist/types/components/tip-tap/the-editor.d.ts +0 -4
  321. package/dist/types/components/tip-tap/utils/add-image-to-editor.d.ts +0 -2
  322. package/dist/types/components/tip-tap/utils/addImageToEditor.d.ts +0 -2
  323. package/dist/types/components/tip-tap/utils/markdown-detector.d.ts +0 -33
  324. package/dist/types/components/tip-tap/utils/parse-markdown.d.ts +0 -2
  325. package/dist/types/components/tip-tap/utils/parseMarkDown.d.ts +0 -2
  326. package/dist/types/components/tip-tap-2/demo/index.d.ts +0 -1
  327. package/dist/types/components/tip-tap-2/index.d.ts +0 -26
  328. package/dist/types/demo/layout/index.d.ts +0 -2
@@ -0,0 +1,1055 @@
1
+ var style = document.createElement('style');
2
+ style.textContent = `.index-module__wrap___d8k-1 .markdown-body {
3
+ --base-size-4: 0.25rem;
4
+ --base-size-8: 0.5rem;
5
+ --base-size-16: 1rem;
6
+ --base-size-24: 1.5rem;
7
+ --base-size-40: 2.5rem;
8
+ --base-text-weight-normal: 400;
9
+ --base-text-weight-medium: 500;
10
+ --base-text-weight-semibold: 600;
11
+ --fontStack-monospace: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono,
12
+ monospace;
13
+ --fgColor-accent: Highlight;
14
+ }
15
+ @media (prefers-color-scheme: dark) {
16
+ .index-module__wrap___d8k-1 .markdown-body,
17
+ .index-module__wrap___d8k-1 [data-theme=dark] {
18
+ /* dark */
19
+ color-scheme: dark;
20
+ --focus-outlineColor: #1f6feb;
21
+ --fgColor-default: #f0f6fc;
22
+ --fgColor-muted: #9198a1;
23
+ --fgColor-accent: #4493f8;
24
+ --fgColor-success: #3fb950;
25
+ --fgColor-attention: #d29922;
26
+ --fgColor-danger: #f85149;
27
+ --fgColor-done: #ab7df8;
28
+ --bgColor-default: #0d1117;
29
+ --bgColor-muted: #151b23;
30
+ --bgColor-neutral-muted: #656c7633;
31
+ --bgColor-attention-muted: #bb800926;
32
+ --borderColor-default: #3d444d;
33
+ --borderColor-muted: #3d444db3;
34
+ --borderColor-neutral-muted: #3d444db3;
35
+ --borderColor-accent-emphasis: #1f6feb;
36
+ --borderColor-success-emphasis: #238636;
37
+ --borderColor-attention-emphasis: #9e6a03;
38
+ --borderColor-danger-emphasis: #da3633;
39
+ --borderColor-done-emphasis: #8957e5;
40
+ --color-prettylights-syntax-comment: #9198a1;
41
+ --color-prettylights-syntax-constant: #79c0ff;
42
+ --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
43
+ --color-prettylights-syntax-entity: #d2a8ff;
44
+ --color-prettylights-syntax-storage-modifier-import: #f0f6fc;
45
+ --color-prettylights-syntax-entity-tag: #7ee787;
46
+ --color-prettylights-syntax-keyword: #ff7b72;
47
+ --color-prettylights-syntax-string: #a5d6ff;
48
+ --color-prettylights-syntax-variable: #ffa657;
49
+ --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
50
+ --color-prettylights-syntax-brackethighlighter-angle: #9198a1;
51
+ --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
52
+ --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
53
+ --color-prettylights-syntax-carriage-return-text: #f0f6fc;
54
+ --color-prettylights-syntax-carriage-return-bg: #b62324;
55
+ --color-prettylights-syntax-string-regexp: #7ee787;
56
+ --color-prettylights-syntax-markup-list: #f2cc60;
57
+ --color-prettylights-syntax-markup-heading: #1f6feb;
58
+ --color-prettylights-syntax-markup-italic: #f0f6fc;
59
+ --color-prettylights-syntax-markup-bold: #f0f6fc;
60
+ --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
61
+ --color-prettylights-syntax-markup-deleted-bg: #67060c;
62
+ --color-prettylights-syntax-markup-inserted-text: #aff5b4;
63
+ --color-prettylights-syntax-markup-inserted-bg: #033a16;
64
+ --color-prettylights-syntax-markup-changed-text: #ffdfb6;
65
+ --color-prettylights-syntax-markup-changed-bg: #5a1e02;
66
+ --color-prettylights-syntax-markup-ignored-text: #f0f6fc;
67
+ --color-prettylights-syntax-markup-ignored-bg: #1158c7;
68
+ --color-prettylights-syntax-meta-diff-range: #d2a8ff;
69
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #3d444d;
70
+ }
71
+ }
72
+ @media (prefers-color-scheme: light) {
73
+ .index-module__wrap___d8k-1 .markdown-body,
74
+ .index-module__wrap___d8k-1 [data-theme=light] {
75
+ /* light */
76
+ color-scheme: light;
77
+ --focus-outlineColor: #0969da;
78
+ --fgColor-default: #1f2328;
79
+ --fgColor-muted: #59636e;
80
+ --fgColor-accent: #0969da;
81
+ --fgColor-success: #1a7f37;
82
+ --fgColor-attention: #9a6700;
83
+ --fgColor-danger: #d1242f;
84
+ --fgColor-done: #8250df;
85
+ --bgColor-default: #ffffff;
86
+ --bgColor-muted: #f6f8fa;
87
+ --bgColor-neutral-muted: #818b981f;
88
+ --bgColor-attention-muted: #fff8c5;
89
+ --borderColor-default: #d1d9e0;
90
+ --borderColor-muted: #d1d9e0b3;
91
+ --borderColor-neutral-muted: #d1d9e0b3;
92
+ --borderColor-accent-emphasis: #0969da;
93
+ --borderColor-success-emphasis: #1a7f37;
94
+ --borderColor-attention-emphasis: #9a6700;
95
+ --borderColor-danger-emphasis: #cf222e;
96
+ --borderColor-done-emphasis: #8250df;
97
+ --color-prettylights-syntax-comment: #59636e;
98
+ --color-prettylights-syntax-constant: #0550ae;
99
+ --color-prettylights-syntax-constant-other-reference-link: #0a3069;
100
+ --color-prettylights-syntax-entity: #6639ba;
101
+ --color-prettylights-syntax-storage-modifier-import: #1f2328;
102
+ --color-prettylights-syntax-entity-tag: #0550ae;
103
+ --color-prettylights-syntax-keyword: #cf222e;
104
+ --color-prettylights-syntax-string: #0a3069;
105
+ --color-prettylights-syntax-variable: #953800;
106
+ --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
107
+ --color-prettylights-syntax-brackethighlighter-angle: #59636e;
108
+ --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
109
+ --color-prettylights-syntax-invalid-illegal-bg: #82071e;
110
+ --color-prettylights-syntax-carriage-return-text: #f6f8fa;
111
+ --color-prettylights-syntax-carriage-return-bg: #cf222e;
112
+ --color-prettylights-syntax-string-regexp: #116329;
113
+ --color-prettylights-syntax-markup-list: #3b2300;
114
+ --color-prettylights-syntax-markup-heading: #0550ae;
115
+ --color-prettylights-syntax-markup-italic: #1f2328;
116
+ --color-prettylights-syntax-markup-bold: #1f2328;
117
+ --color-prettylights-syntax-markup-deleted-text: #82071e;
118
+ --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
119
+ --color-prettylights-syntax-markup-inserted-text: #116329;
120
+ --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
121
+ --color-prettylights-syntax-markup-changed-text: #953800;
122
+ --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
123
+ --color-prettylights-syntax-markup-ignored-text: #d1d9e0;
124
+ --color-prettylights-syntax-markup-ignored-bg: #0550ae;
125
+ --color-prettylights-syntax-meta-diff-range: #8250df;
126
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #818b98;
127
+ }
128
+ }
129
+ .index-module__wrap___d8k-1 .markdown-body {
130
+ -ms-text-size-adjust: 100%;
131
+ -webkit-text-size-adjust: 100%;
132
+ margin: 0;
133
+ color: var(--fgColor-default);
134
+ background-color: var(--bgColor-default);
135
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
136
+ font-size: 16px;
137
+ line-height: 1.5;
138
+ word-wrap: break-word;
139
+ }
140
+ .index-module__wrap___d8k-1 .markdown-body .octicon {
141
+ display: inline-block;
142
+ fill: currentColor;
143
+ vertical-align: text-bottom;
144
+ }
145
+ .index-module__wrap___d8k-1 .markdown-body h1:hover .anchor .octicon-link:before,
146
+ .index-module__wrap___d8k-1 .markdown-body h2:hover .anchor .octicon-link:before,
147
+ .index-module__wrap___d8k-1 .markdown-body h3:hover .anchor .octicon-link:before,
148
+ .index-module__wrap___d8k-1 .markdown-body h4:hover .anchor .octicon-link:before,
149
+ .index-module__wrap___d8k-1 .markdown-body h5:hover .anchor .octicon-link:before,
150
+ .index-module__wrap___d8k-1 .markdown-body h6:hover .anchor .octicon-link:before {
151
+ width: 16px;
152
+ height: 16px;
153
+ content: " ";
154
+ display: inline-block;
155
+ background-color: currentColor;
156
+ -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
157
+ mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
158
+ }
159
+ .index-module__wrap___d8k-1 .markdown-body details,
160
+ .index-module__wrap___d8k-1 .markdown-body figcaption,
161
+ .index-module__wrap___d8k-1 .markdown-body figure {
162
+ display: block;
163
+ }
164
+ .index-module__wrap___d8k-1 .markdown-body summary {
165
+ display: list-item;
166
+ }
167
+ .index-module__wrap___d8k-1 .markdown-body [hidden] {
168
+ display: none !important;
169
+ }
170
+ .index-module__wrap___d8k-1 .markdown-body a {
171
+ background-color: transparent;
172
+ color: var(--fgColor-accent);
173
+ text-decoration: none;
174
+ }
175
+ .index-module__wrap___d8k-1 .markdown-body abbr[title] {
176
+ border-bottom: none;
177
+ -webkit-text-decoration: underline dotted;
178
+ text-decoration: underline dotted;
179
+ }
180
+ .index-module__wrap___d8k-1 .markdown-body b,
181
+ .index-module__wrap___d8k-1 .markdown-body strong {
182
+ font-weight: var(--base-text-weight-semibold, 600);
183
+ }
184
+ .index-module__wrap___d8k-1 .markdown-body dfn {
185
+ font-style: italic;
186
+ }
187
+ .index-module__wrap___d8k-1 .markdown-body h1 {
188
+ margin: 0.67em 0;
189
+ font-weight: var(--base-text-weight-semibold, 600);
190
+ padding-bottom: 0.3em;
191
+ font-size: 2em;
192
+ border-bottom: 1px solid var(--borderColor-muted);
193
+ }
194
+ .index-module__wrap___d8k-1 .markdown-body mark {
195
+ background-color: var(--bgColor-attention-muted);
196
+ color: var(--fgColor-default);
197
+ }
198
+ .index-module__wrap___d8k-1 .markdown-body small {
199
+ font-size: 90%;
200
+ }
201
+ .index-module__wrap___d8k-1 .markdown-body sub,
202
+ .index-module__wrap___d8k-1 .markdown-body sup {
203
+ font-size: 75%;
204
+ line-height: 0;
205
+ position: relative;
206
+ vertical-align: baseline;
207
+ }
208
+ .index-module__wrap___d8k-1 .markdown-body sub {
209
+ bottom: -0.25em;
210
+ }
211
+ .index-module__wrap___d8k-1 .markdown-body sup {
212
+ top: -0.5em;
213
+ }
214
+ .index-module__wrap___d8k-1 .markdown-body img {
215
+ border-style: none;
216
+ max-width: 100%;
217
+ box-sizing: content-box;
218
+ }
219
+ .index-module__wrap___d8k-1 .markdown-body code,
220
+ .index-module__wrap___d8k-1 .markdown-body kbd,
221
+ .index-module__wrap___d8k-1 .markdown-body pre,
222
+ .index-module__wrap___d8k-1 .markdown-body samp {
223
+ font-family: monospace;
224
+ font-size: 1em;
225
+ }
226
+ .index-module__wrap___d8k-1 .markdown-body figure {
227
+ margin: 1em var(--base-size-40);
228
+ }
229
+ .index-module__wrap___d8k-1 .markdown-body hr {
230
+ box-sizing: content-box;
231
+ overflow: hidden;
232
+ background: transparent;
233
+ border-bottom: 1px solid var(--borderColor-muted);
234
+ height: 0.25em;
235
+ padding: 0;
236
+ margin: var(--base-size-24) 0;
237
+ background-color: var(--borderColor-default);
238
+ border: 0;
239
+ }
240
+ .index-module__wrap___d8k-1 .markdown-body input {
241
+ font: inherit;
242
+ margin: 0;
243
+ overflow: visible;
244
+ font-family: inherit;
245
+ font-size: inherit;
246
+ line-height: inherit;
247
+ }
248
+ .index-module__wrap___d8k-1 .markdown-body [type=button],
249
+ .index-module__wrap___d8k-1 .markdown-body [type=reset],
250
+ .index-module__wrap___d8k-1 .markdown-body [type=submit] {
251
+ -webkit-appearance: button;
252
+ -moz-appearance: button;
253
+ appearance: button;
254
+ }
255
+ .index-module__wrap___d8k-1 .markdown-body [type=checkbox],
256
+ .index-module__wrap___d8k-1 .markdown-body [type=radio] {
257
+ box-sizing: border-box;
258
+ padding: 0;
259
+ }
260
+ .index-module__wrap___d8k-1 .markdown-body [type=number]::-webkit-inner-spin-button,
261
+ .index-module__wrap___d8k-1 .markdown-body [type=number]::-webkit-outer-spin-button {
262
+ height: auto;
263
+ }
264
+ .index-module__wrap___d8k-1 .markdown-body [type=search]::-webkit-search-cancel-button,
265
+ .index-module__wrap___d8k-1 .markdown-body [type=search]::-webkit-search-decoration {
266
+ -webkit-appearance: none;
267
+ appearance: none;
268
+ }
269
+ .index-module__wrap___d8k-1 .markdown-body ::-webkit-input-placeholder {
270
+ color: inherit;
271
+ opacity: 0.54;
272
+ }
273
+ .index-module__wrap___d8k-1 .markdown-body ::-webkit-file-upload-button {
274
+ -webkit-appearance: button;
275
+ appearance: button;
276
+ font: inherit;
277
+ }
278
+ .index-module__wrap___d8k-1 .markdown-body a:hover {
279
+ text-decoration: underline;
280
+ }
281
+ .index-module__wrap___d8k-1 .markdown-body ::-moz-placeholder {
282
+ color: var(--fgColor-muted);
283
+ opacity: 1;
284
+ }
285
+ .index-module__wrap___d8k-1 .markdown-body ::placeholder {
286
+ color: var(--fgColor-muted);
287
+ opacity: 1;
288
+ }
289
+ .index-module__wrap___d8k-1 .markdown-body hr::before {
290
+ display: table;
291
+ content: "";
292
+ }
293
+ .index-module__wrap___d8k-1 .markdown-body hr::after {
294
+ display: table;
295
+ clear: both;
296
+ content: "";
297
+ }
298
+ .index-module__wrap___d8k-1 .markdown-body table {
299
+ border-spacing: 0;
300
+ border-collapse: collapse;
301
+ display: block;
302
+ width: -moz-max-content;
303
+ width: max-content;
304
+ max-width: 100%;
305
+ overflow: auto;
306
+ font-variant: tabular-nums;
307
+ }
308
+ .index-module__wrap___d8k-1 .markdown-body td,
309
+ .index-module__wrap___d8k-1 .markdown-body th {
310
+ padding: 0;
311
+ }
312
+ .index-module__wrap___d8k-1 .markdown-body details summary {
313
+ cursor: pointer;
314
+ }
315
+ .index-module__wrap___d8k-1 .markdown-body a:focus,
316
+ .index-module__wrap___d8k-1 .markdown-body [role=button]:focus,
317
+ .index-module__wrap___d8k-1 .markdown-body input[type=radio]:focus,
318
+ .index-module__wrap___d8k-1 .markdown-body input[type=checkbox]:focus {
319
+ outline: 2px solid var(--focus-outlineColor);
320
+ outline-offset: -2px;
321
+ box-shadow: none;
322
+ }
323
+ .index-module__wrap___d8k-1 .markdown-body a:focus:not(:focus-visible),
324
+ .index-module__wrap___d8k-1 .markdown-body [role=button]:focus:not(:focus-visible),
325
+ .index-module__wrap___d8k-1 .markdown-body input[type=radio]:focus:not(:focus-visible),
326
+ .index-module__wrap___d8k-1 .markdown-body input[type=checkbox]:focus:not(:focus-visible) {
327
+ outline: solid 1px transparent;
328
+ }
329
+ .index-module__wrap___d8k-1 .markdown-body a:focus-visible,
330
+ .index-module__wrap___d8k-1 .markdown-body [role=button]:focus-visible,
331
+ .index-module__wrap___d8k-1 .markdown-body input[type=radio]:focus-visible,
332
+ .index-module__wrap___d8k-1 .markdown-body input[type=checkbox]:focus-visible {
333
+ outline: 2px solid var(--focus-outlineColor);
334
+ outline-offset: -2px;
335
+ box-shadow: none;
336
+ }
337
+ .index-module__wrap___d8k-1 .markdown-body a:not([class]):focus,
338
+ .index-module__wrap___d8k-1 .markdown-body a:not([class]):focus-visible,
339
+ .index-module__wrap___d8k-1 .markdown-body input[type=radio]:focus,
340
+ .index-module__wrap___d8k-1 .markdown-body input[type=radio]:focus-visible,
341
+ .index-module__wrap___d8k-1 .markdown-body input[type=checkbox]:focus,
342
+ .index-module__wrap___d8k-1 .markdown-body input[type=checkbox]:focus-visible {
343
+ outline-offset: 0;
344
+ }
345
+ .index-module__wrap___d8k-1 .markdown-body kbd {
346
+ display: inline-block;
347
+ padding: var(--base-size-4);
348
+ font: 11px var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
349
+ line-height: 10px;
350
+ color: var(--fgColor-default);
351
+ vertical-align: middle;
352
+ background-color: var(--bgColor-muted);
353
+ border: solid 1px var(--borderColor-neutral-muted);
354
+ border-bottom-color: var(--borderColor-neutral-muted);
355
+ border-radius: 6px;
356
+ box-shadow: inset 0 -1px 0 var(--borderColor-neutral-muted);
357
+ }
358
+ .index-module__wrap___d8k-1 .markdown-body h1,
359
+ .index-module__wrap___d8k-1 .markdown-body h2,
360
+ .index-module__wrap___d8k-1 .markdown-body h3,
361
+ .index-module__wrap___d8k-1 .markdown-body h4,
362
+ .index-module__wrap___d8k-1 .markdown-body h5,
363
+ .index-module__wrap___d8k-1 .markdown-body h6 {
364
+ margin-top: var(--base-size-24);
365
+ margin-bottom: var(--base-size-16);
366
+ font-weight: var(--base-text-weight-semibold, 600);
367
+ line-height: 1.25;
368
+ }
369
+ .index-module__wrap___d8k-1 .markdown-body h2 {
370
+ font-weight: var(--base-text-weight-semibold, 600);
371
+ padding-bottom: 0.3em;
372
+ font-size: 1.5em;
373
+ border-bottom: 1px solid var(--borderColor-muted);
374
+ }
375
+ .index-module__wrap___d8k-1 .markdown-body h3 {
376
+ font-weight: var(--base-text-weight-semibold, 600);
377
+ font-size: 1.25em;
378
+ }
379
+ .index-module__wrap___d8k-1 .markdown-body h4 {
380
+ font-weight: var(--base-text-weight-semibold, 600);
381
+ font-size: 1em;
382
+ }
383
+ .index-module__wrap___d8k-1 .markdown-body h5 {
384
+ font-weight: var(--base-text-weight-semibold, 600);
385
+ font-size: 0.875em;
386
+ }
387
+ .index-module__wrap___d8k-1 .markdown-body h6 {
388
+ font-weight: var(--base-text-weight-semibold, 600);
389
+ font-size: 0.85em;
390
+ color: var(--fgColor-muted);
391
+ }
392
+ .index-module__wrap___d8k-1 .markdown-body p {
393
+ margin-top: 0;
394
+ margin-bottom: 10px;
395
+ }
396
+ .index-module__wrap___d8k-1 .markdown-body blockquote {
397
+ margin: 0;
398
+ padding: 0 1em;
399
+ color: var(--fgColor-muted);
400
+ border-left: 0.25em solid var(--borderColor-default);
401
+ }
402
+ .index-module__wrap___d8k-1 .markdown-body ul,
403
+ .index-module__wrap___d8k-1 .markdown-body ol {
404
+ margin-top: 0;
405
+ margin-bottom: 0;
406
+ padding-left: 2em;
407
+ }
408
+ .index-module__wrap___d8k-1 .markdown-body ol ol,
409
+ .index-module__wrap___d8k-1 .markdown-body ul ol {
410
+ list-style-type: lower-roman;
411
+ }
412
+ .index-module__wrap___d8k-1 .markdown-body ul ul ol,
413
+ .index-module__wrap___d8k-1 .markdown-body ul ol ol,
414
+ .index-module__wrap___d8k-1 .markdown-body ol ul ol,
415
+ .index-module__wrap___d8k-1 .markdown-body ol ol ol {
416
+ list-style-type: lower-alpha;
417
+ }
418
+ .index-module__wrap___d8k-1 .markdown-body dd {
419
+ margin-left: 0;
420
+ }
421
+ .index-module__wrap___d8k-1 .markdown-body tt,
422
+ .index-module__wrap___d8k-1 .markdown-body code,
423
+ .index-module__wrap___d8k-1 .markdown-body samp {
424
+ font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
425
+ font-size: 12px;
426
+ }
427
+ .index-module__wrap___d8k-1 .markdown-body pre {
428
+ margin-top: 0;
429
+ margin-bottom: 0;
430
+ font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace);
431
+ font-size: 12px;
432
+ word-wrap: normal;
433
+ }
434
+ .index-module__wrap___d8k-1 .markdown-body .octicon {
435
+ display: inline-block;
436
+ overflow: visible !important;
437
+ vertical-align: text-bottom;
438
+ fill: currentColor;
439
+ }
440
+ .index-module__wrap___d8k-1 .markdown-body input::-webkit-outer-spin-button,
441
+ .index-module__wrap___d8k-1 .markdown-body input::-webkit-inner-spin-button {
442
+ margin: 0;
443
+ -webkit-appearance: none;
444
+ appearance: none;
445
+ }
446
+ .index-module__wrap___d8k-1 .markdown-body .mr-2 {
447
+ margin-right: var(--base-size-8, 8px) !important;
448
+ }
449
+ .index-module__wrap___d8k-1 .markdown-body::before {
450
+ display: table;
451
+ content: "";
452
+ }
453
+ .index-module__wrap___d8k-1 .markdown-body::after {
454
+ display: table;
455
+ clear: both;
456
+ content: "";
457
+ }
458
+ .index-module__wrap___d8k-1 .markdown-body > *:first-child {
459
+ margin-top: 0 !important;
460
+ }
461
+ .index-module__wrap___d8k-1 .markdown-body > *:last-child {
462
+ margin-bottom: 0 !important;
463
+ }
464
+ .index-module__wrap___d8k-1 .markdown-body a:not([href]) {
465
+ color: inherit;
466
+ text-decoration: none;
467
+ }
468
+ .index-module__wrap___d8k-1 .markdown-body .absent {
469
+ color: var(--fgColor-danger);
470
+ }
471
+ .index-module__wrap___d8k-1 .markdown-body .anchor {
472
+ float: left;
473
+ padding-right: var(--base-size-4);
474
+ margin-left: -20px;
475
+ line-height: 1;
476
+ }
477
+ .index-module__wrap___d8k-1 .markdown-body .anchor:focus {
478
+ outline: none;
479
+ }
480
+ .index-module__wrap___d8k-1 .markdown-body p,
481
+ .index-module__wrap___d8k-1 .markdown-body blockquote,
482
+ .index-module__wrap___d8k-1 .markdown-body ul,
483
+ .index-module__wrap___d8k-1 .markdown-body ol,
484
+ .index-module__wrap___d8k-1 .markdown-body dl,
485
+ .index-module__wrap___d8k-1 .markdown-body table,
486
+ .index-module__wrap___d8k-1 .markdown-body pre,
487
+ .index-module__wrap___d8k-1 .markdown-body details {
488
+ margin-top: 0;
489
+ margin-bottom: var(--base-size-16);
490
+ }
491
+ .index-module__wrap___d8k-1 .markdown-body blockquote > :first-child {
492
+ margin-top: 0;
493
+ }
494
+ .index-module__wrap___d8k-1 .markdown-body blockquote > :last-child {
495
+ margin-bottom: 0;
496
+ }
497
+ .index-module__wrap___d8k-1 .markdown-body h1 .octicon-link,
498
+ .index-module__wrap___d8k-1 .markdown-body h2 .octicon-link,
499
+ .index-module__wrap___d8k-1 .markdown-body h3 .octicon-link,
500
+ .index-module__wrap___d8k-1 .markdown-body h4 .octicon-link,
501
+ .index-module__wrap___d8k-1 .markdown-body h5 .octicon-link,
502
+ .index-module__wrap___d8k-1 .markdown-body h6 .octicon-link {
503
+ color: var(--fgColor-default);
504
+ vertical-align: middle;
505
+ visibility: hidden;
506
+ }
507
+ .index-module__wrap___d8k-1 .markdown-body h1:hover .anchor,
508
+ .index-module__wrap___d8k-1 .markdown-body h2:hover .anchor,
509
+ .index-module__wrap___d8k-1 .markdown-body h3:hover .anchor,
510
+ .index-module__wrap___d8k-1 .markdown-body h4:hover .anchor,
511
+ .index-module__wrap___d8k-1 .markdown-body h5:hover .anchor,
512
+ .index-module__wrap___d8k-1 .markdown-body h6:hover .anchor {
513
+ text-decoration: none;
514
+ }
515
+ .index-module__wrap___d8k-1 .markdown-body h1:hover .anchor .octicon-link,
516
+ .index-module__wrap___d8k-1 .markdown-body h2:hover .anchor .octicon-link,
517
+ .index-module__wrap___d8k-1 .markdown-body h3:hover .anchor .octicon-link,
518
+ .index-module__wrap___d8k-1 .markdown-body h4:hover .anchor .octicon-link,
519
+ .index-module__wrap___d8k-1 .markdown-body h5:hover .anchor .octicon-link,
520
+ .index-module__wrap___d8k-1 .markdown-body h6:hover .anchor .octicon-link {
521
+ visibility: visible;
522
+ }
523
+ .index-module__wrap___d8k-1 .markdown-body h1 tt,
524
+ .index-module__wrap___d8k-1 .markdown-body h1 code,
525
+ .index-module__wrap___d8k-1 .markdown-body h2 tt,
526
+ .index-module__wrap___d8k-1 .markdown-body h2 code,
527
+ .index-module__wrap___d8k-1 .markdown-body h3 tt,
528
+ .index-module__wrap___d8k-1 .markdown-body h3 code,
529
+ .index-module__wrap___d8k-1 .markdown-body h4 tt,
530
+ .index-module__wrap___d8k-1 .markdown-body h4 code,
531
+ .index-module__wrap___d8k-1 .markdown-body h5 tt,
532
+ .index-module__wrap___d8k-1 .markdown-body h5 code,
533
+ .index-module__wrap___d8k-1 .markdown-body h6 tt,
534
+ .index-module__wrap___d8k-1 .markdown-body h6 code {
535
+ padding: 0 0.2em;
536
+ font-size: inherit;
537
+ }
538
+ .index-module__wrap___d8k-1 .markdown-body summary h1,
539
+ .index-module__wrap___d8k-1 .markdown-body summary h2,
540
+ .index-module__wrap___d8k-1 .markdown-body summary h3,
541
+ .index-module__wrap___d8k-1 .markdown-body summary h4,
542
+ .index-module__wrap___d8k-1 .markdown-body summary h5,
543
+ .index-module__wrap___d8k-1 .markdown-body summary h6 {
544
+ display: inline-block;
545
+ }
546
+ .index-module__wrap___d8k-1 .markdown-body summary h1 .anchor,
547
+ .index-module__wrap___d8k-1 .markdown-body summary h2 .anchor,
548
+ .index-module__wrap___d8k-1 .markdown-body summary h3 .anchor,
549
+ .index-module__wrap___d8k-1 .markdown-body summary h4 .anchor,
550
+ .index-module__wrap___d8k-1 .markdown-body summary h5 .anchor,
551
+ .index-module__wrap___d8k-1 .markdown-body summary h6 .anchor {
552
+ margin-left: -40px;
553
+ }
554
+ .index-module__wrap___d8k-1 .markdown-body summary h1,
555
+ .index-module__wrap___d8k-1 .markdown-body summary h2 {
556
+ padding-bottom: 0;
557
+ border-bottom: 0;
558
+ }
559
+ .index-module__wrap___d8k-1 .markdown-body ul.no-list,
560
+ .index-module__wrap___d8k-1 .markdown-body ol.no-list {
561
+ padding: 0;
562
+ list-style-type: none;
563
+ }
564
+ .index-module__wrap___d8k-1 .markdown-body ol[type="a s"] {
565
+ list-style-type: lower-alpha;
566
+ }
567
+ .index-module__wrap___d8k-1 .markdown-body ol[type="A s"] {
568
+ list-style-type: upper-alpha;
569
+ }
570
+ .index-module__wrap___d8k-1 .markdown-body ol[type="i s"] {
571
+ list-style-type: lower-roman;
572
+ }
573
+ .index-module__wrap___d8k-1 .markdown-body ol[type="I s"] {
574
+ list-style-type: upper-roman;
575
+ }
576
+ .index-module__wrap___d8k-1 .markdown-body ol[type="1"] {
577
+ list-style-type: decimal;
578
+ }
579
+ .index-module__wrap___d8k-1 .markdown-body div > ol:not([type]) {
580
+ list-style-type: decimal;
581
+ }
582
+ .index-module__wrap___d8k-1 .markdown-body ul ul,
583
+ .index-module__wrap___d8k-1 .markdown-body ul ol,
584
+ .index-module__wrap___d8k-1 .markdown-body ol ol,
585
+ .index-module__wrap___d8k-1 .markdown-body ol ul {
586
+ margin-top: 0;
587
+ margin-bottom: 0;
588
+ }
589
+ .index-module__wrap___d8k-1 .markdown-body li > p {
590
+ margin-top: var(--base-size-16);
591
+ }
592
+ .index-module__wrap___d8k-1 .markdown-body li + li {
593
+ margin-top: 0.25em;
594
+ }
595
+ .index-module__wrap___d8k-1 .markdown-body dl {
596
+ padding: 0;
597
+ }
598
+ .index-module__wrap___d8k-1 .markdown-body dl dt {
599
+ padding: 0;
600
+ margin-top: var(--base-size-16);
601
+ font-size: 1em;
602
+ font-style: italic;
603
+ font-weight: var(--base-text-weight-semibold, 600);
604
+ }
605
+ .index-module__wrap___d8k-1 .markdown-body dl dd {
606
+ padding: 0 var(--base-size-16);
607
+ margin-bottom: var(--base-size-16);
608
+ }
609
+ .index-module__wrap___d8k-1 .markdown-body table th {
610
+ font-weight: var(--base-text-weight-semibold, 600);
611
+ }
612
+ .index-module__wrap___d8k-1 .markdown-body table th,
613
+ .index-module__wrap___d8k-1 .markdown-body table td {
614
+ padding: 6px 13px;
615
+ border: 1px solid var(--borderColor-default);
616
+ }
617
+ .index-module__wrap___d8k-1 .markdown-body table td > :last-child {
618
+ margin-bottom: 0;
619
+ }
620
+ .index-module__wrap___d8k-1 .markdown-body table tr {
621
+ background-color: var(--bgColor-default);
622
+ border-top: 1px solid var(--borderColor-muted);
623
+ }
624
+ .index-module__wrap___d8k-1 .markdown-body table tr:nth-child(2n) {
625
+ background-color: var(--bgColor-muted);
626
+ }
627
+ .index-module__wrap___d8k-1 .markdown-body table img {
628
+ background-color: transparent;
629
+ }
630
+ .index-module__wrap___d8k-1 .markdown-body img[align=right] {
631
+ padding-left: 20px;
632
+ }
633
+ .index-module__wrap___d8k-1 .markdown-body img[align=left] {
634
+ padding-right: 20px;
635
+ }
636
+ .index-module__wrap___d8k-1 .markdown-body .emoji {
637
+ max-width: none;
638
+ vertical-align: text-top;
639
+ background-color: transparent;
640
+ }
641
+ .index-module__wrap___d8k-1 .markdown-body span.frame {
642
+ display: block;
643
+ overflow: hidden;
644
+ }
645
+ .index-module__wrap___d8k-1 .markdown-body span.frame > span {
646
+ display: block;
647
+ float: left;
648
+ width: auto;
649
+ padding: 7px;
650
+ margin: 13px 0 0;
651
+ overflow: hidden;
652
+ border: 1px solid var(--borderColor-default);
653
+ }
654
+ .index-module__wrap___d8k-1 .markdown-body span.frame span img {
655
+ display: block;
656
+ float: left;
657
+ }
658
+ .index-module__wrap___d8k-1 .markdown-body span.frame span span {
659
+ display: block;
660
+ padding: 5px 0 0;
661
+ clear: both;
662
+ color: var(--fgColor-default);
663
+ }
664
+ .index-module__wrap___d8k-1 .markdown-body span.align-center {
665
+ display: block;
666
+ overflow: hidden;
667
+ clear: both;
668
+ }
669
+ .index-module__wrap___d8k-1 .markdown-body span.align-center > span {
670
+ display: block;
671
+ margin: 13px auto 0;
672
+ overflow: hidden;
673
+ text-align: center;
674
+ }
675
+ .index-module__wrap___d8k-1 .markdown-body span.align-center span img {
676
+ margin: 0 auto;
677
+ text-align: center;
678
+ }
679
+ .index-module__wrap___d8k-1 .markdown-body span.align-right {
680
+ display: block;
681
+ overflow: hidden;
682
+ clear: both;
683
+ }
684
+ .index-module__wrap___d8k-1 .markdown-body span.align-right > span {
685
+ display: block;
686
+ margin: 13px 0 0;
687
+ overflow: hidden;
688
+ text-align: right;
689
+ }
690
+ .index-module__wrap___d8k-1 .markdown-body span.align-right span img {
691
+ margin: 0;
692
+ text-align: right;
693
+ }
694
+ .index-module__wrap___d8k-1 .markdown-body span.float-left {
695
+ display: block;
696
+ float: left;
697
+ margin-right: 13px;
698
+ overflow: hidden;
699
+ }
700
+ .index-module__wrap___d8k-1 .markdown-body span.float-left span {
701
+ margin: 13px 0 0;
702
+ }
703
+ .index-module__wrap___d8k-1 .markdown-body span.float-right {
704
+ display: block;
705
+ float: right;
706
+ margin-left: 13px;
707
+ overflow: hidden;
708
+ }
709
+ .index-module__wrap___d8k-1 .markdown-body span.float-right > span {
710
+ display: block;
711
+ margin: 13px auto 0;
712
+ overflow: hidden;
713
+ text-align: right;
714
+ }
715
+ .index-module__wrap___d8k-1 .markdown-body code,
716
+ .index-module__wrap___d8k-1 .markdown-body tt {
717
+ padding: 0.2em 0.4em;
718
+ margin: 0;
719
+ font-size: 85%;
720
+ white-space: break-spaces;
721
+ background-color: var(--bgColor-neutral-muted);
722
+ border-radius: 6px;
723
+ }
724
+ .index-module__wrap___d8k-1 .markdown-body code br,
725
+ .index-module__wrap___d8k-1 .markdown-body tt br {
726
+ display: none;
727
+ }
728
+ .index-module__wrap___d8k-1 .markdown-body del code {
729
+ text-decoration: inherit;
730
+ }
731
+ .index-module__wrap___d8k-1 .markdown-body samp {
732
+ font-size: 85%;
733
+ }
734
+ .index-module__wrap___d8k-1 .markdown-body pre code {
735
+ font-size: 100%;
736
+ }
737
+ .index-module__wrap___d8k-1 .markdown-body pre > code {
738
+ padding: 0;
739
+ margin: 0;
740
+ word-break: normal;
741
+ white-space: pre;
742
+ background: transparent;
743
+ border: 0;
744
+ }
745
+ .index-module__wrap___d8k-1 .markdown-body .highlight {
746
+ margin-bottom: var(--base-size-16);
747
+ }
748
+ .index-module__wrap___d8k-1 .markdown-body .highlight pre {
749
+ margin-bottom: 0;
750
+ word-break: normal;
751
+ }
752
+ .index-module__wrap___d8k-1 .markdown-body .highlight pre,
753
+ .index-module__wrap___d8k-1 .markdown-body pre {
754
+ padding: var(--base-size-16);
755
+ overflow: auto;
756
+ font-size: 85%;
757
+ line-height: 1.45;
758
+ color: var(--fgColor-default);
759
+ background-color: var(--bgColor-muted);
760
+ border-radius: 6px;
761
+ }
762
+ .index-module__wrap___d8k-1 .markdown-body pre code,
763
+ .index-module__wrap___d8k-1 .markdown-body pre tt {
764
+ display: inline;
765
+ max-width: auto;
766
+ padding: 0;
767
+ margin: 0;
768
+ overflow: visible;
769
+ line-height: inherit;
770
+ word-wrap: normal;
771
+ background-color: transparent;
772
+ border: 0;
773
+ }
774
+ .index-module__wrap___d8k-1 .markdown-body .csv-data td,
775
+ .index-module__wrap___d8k-1 .markdown-body .csv-data th {
776
+ padding: 5px;
777
+ overflow: hidden;
778
+ font-size: 12px;
779
+ line-height: 1;
780
+ text-align: left;
781
+ white-space: nowrap;
782
+ }
783
+ .index-module__wrap___d8k-1 .markdown-body .csv-data .blob-num {
784
+ padding: 10px var(--base-size-8) 9px;
785
+ text-align: right;
786
+ background: var(--bgColor-default);
787
+ border: 0;
788
+ }
789
+ .index-module__wrap___d8k-1 .markdown-body .csv-data tr {
790
+ border-top: 0;
791
+ }
792
+ .index-module__wrap___d8k-1 .markdown-body .csv-data th {
793
+ font-weight: var(--base-text-weight-semibold, 600);
794
+ background: var(--bgColor-muted);
795
+ border-top: 0;
796
+ }
797
+ .index-module__wrap___d8k-1 .markdown-body [data-footnote-ref]::before {
798
+ content: "[";
799
+ }
800
+ .index-module__wrap___d8k-1 .markdown-body [data-footnote-ref]::after {
801
+ content: "]";
802
+ }
803
+ .index-module__wrap___d8k-1 .markdown-body .footnotes {
804
+ font-size: 12px;
805
+ color: var(--fgColor-muted);
806
+ border-top: 1px solid var(--borderColor-default);
807
+ }
808
+ .index-module__wrap___d8k-1 .markdown-body .footnotes ol {
809
+ padding-left: var(--base-size-16);
810
+ }
811
+ .index-module__wrap___d8k-1 .markdown-body .footnotes ol ul {
812
+ display: inline-block;
813
+ padding-left: var(--base-size-16);
814
+ margin-top: var(--base-size-16);
815
+ }
816
+ .index-module__wrap___d8k-1 .markdown-body .footnotes li {
817
+ position: relative;
818
+ }
819
+ .index-module__wrap___d8k-1 .markdown-body .footnotes li:target::before {
820
+ position: absolute;
821
+ top: calc(var(--base-size-8) * -1);
822
+ right: calc(var(--base-size-8) * -1);
823
+ bottom: calc(var(--base-size-8) * -1);
824
+ left: calc(var(--base-size-24) * -1);
825
+ pointer-events: none;
826
+ content: "";
827
+ border: 2px solid var(--borderColor-accent-emphasis);
828
+ border-radius: 6px;
829
+ }
830
+ .index-module__wrap___d8k-1 .markdown-body .footnotes li:target {
831
+ color: var(--fgColor-default);
832
+ }
833
+ .index-module__wrap___d8k-1 .markdown-body .footnotes .data-footnote-backref g-emoji {
834
+ font-family: monospace;
835
+ }
836
+ .index-module__wrap___d8k-1 .markdown-body body:has(:modal) {
837
+ padding-right: var(--dialog-scrollgutter) !important;
838
+ }
839
+ .index-module__wrap___d8k-1 .markdown-body .pl-c {
840
+ color: var(--color-prettylights-syntax-comment);
841
+ }
842
+ .index-module__wrap___d8k-1 .markdown-body .pl-c1,
843
+ .index-module__wrap___d8k-1 .markdown-body .pl-s .pl-v {
844
+ color: var(--color-prettylights-syntax-constant);
845
+ }
846
+ .index-module__wrap___d8k-1 .markdown-body .pl-e,
847
+ .index-module__wrap___d8k-1 .markdown-body .pl-en {
848
+ color: var(--color-prettylights-syntax-entity);
849
+ }
850
+ .index-module__wrap___d8k-1 .markdown-body .pl-smi,
851
+ .index-module__wrap___d8k-1 .markdown-body .pl-s .pl-s1 {
852
+ color: var(--color-prettylights-syntax-storage-modifier-import);
853
+ }
854
+ .index-module__wrap___d8k-1 .markdown-body .pl-ent {
855
+ color: var(--color-prettylights-syntax-entity-tag);
856
+ }
857
+ .index-module__wrap___d8k-1 .markdown-body .pl-k {
858
+ color: var(--color-prettylights-syntax-keyword);
859
+ }
860
+ .index-module__wrap___d8k-1 .markdown-body .pl-s,
861
+ .index-module__wrap___d8k-1 .markdown-body .pl-pds,
862
+ .index-module__wrap___d8k-1 .markdown-body .pl-s .pl-pse .pl-s1,
863
+ .index-module__wrap___d8k-1 .markdown-body .pl-sr,
864
+ .index-module__wrap___d8k-1 .markdown-body .pl-sr .pl-cce,
865
+ .index-module__wrap___d8k-1 .markdown-body .pl-sr .pl-sre,
866
+ .index-module__wrap___d8k-1 .markdown-body .pl-sr .pl-sra {
867
+ color: var(--color-prettylights-syntax-string);
868
+ }
869
+ .index-module__wrap___d8k-1 .markdown-body .pl-v,
870
+ .index-module__wrap___d8k-1 .markdown-body .pl-smw {
871
+ color: var(--color-prettylights-syntax-variable);
872
+ }
873
+ .index-module__wrap___d8k-1 .markdown-body .pl-bu {
874
+ color: var(--color-prettylights-syntax-brackethighlighter-unmatched);
875
+ }
876
+ .index-module__wrap___d8k-1 .markdown-body .pl-ii {
877
+ color: var(--color-prettylights-syntax-invalid-illegal-text);
878
+ background-color: var(--color-prettylights-syntax-invalid-illegal-bg);
879
+ }
880
+ .index-module__wrap___d8k-1 .markdown-body .pl-c2 {
881
+ color: var(--color-prettylights-syntax-carriage-return-text);
882
+ background-color: var(--color-prettylights-syntax-carriage-return-bg);
883
+ }
884
+ .index-module__wrap___d8k-1 .markdown-body .pl-sr .pl-cce {
885
+ font-weight: bold;
886
+ color: var(--color-prettylights-syntax-string-regexp);
887
+ }
888
+ .index-module__wrap___d8k-1 .markdown-body .pl-ml {
889
+ color: var(--color-prettylights-syntax-markup-list);
890
+ }
891
+ .index-module__wrap___d8k-1 .markdown-body .pl-mh,
892
+ .index-module__wrap___d8k-1 .markdown-body .pl-mh .pl-en,
893
+ .index-module__wrap___d8k-1 .markdown-body .pl-ms {
894
+ font-weight: bold;
895
+ color: var(--color-prettylights-syntax-markup-heading);
896
+ }
897
+ .index-module__wrap___d8k-1 .markdown-body .pl-mi {
898
+ font-style: italic;
899
+ color: var(--color-prettylights-syntax-markup-italic);
900
+ }
901
+ .index-module__wrap___d8k-1 .markdown-body .pl-mb {
902
+ font-weight: bold;
903
+ color: var(--color-prettylights-syntax-markup-bold);
904
+ }
905
+ .index-module__wrap___d8k-1 .markdown-body .pl-md {
906
+ color: var(--color-prettylights-syntax-markup-deleted-text);
907
+ background-color: var(--color-prettylights-syntax-markup-deleted-bg);
908
+ }
909
+ .index-module__wrap___d8k-1 .markdown-body .pl-mi1 {
910
+ color: var(--color-prettylights-syntax-markup-inserted-text);
911
+ background-color: var(--color-prettylights-syntax-markup-inserted-bg);
912
+ }
913
+ .index-module__wrap___d8k-1 .markdown-body .pl-mc {
914
+ color: var(--color-prettylights-syntax-markup-changed-text);
915
+ background-color: var(--color-prettylights-syntax-markup-changed-bg);
916
+ }
917
+ .index-module__wrap___d8k-1 .markdown-body .pl-mi2 {
918
+ color: var(--color-prettylights-syntax-markup-ignored-text);
919
+ background-color: var(--color-prettylights-syntax-markup-ignored-bg);
920
+ }
921
+ .index-module__wrap___d8k-1 .markdown-body .pl-mdr {
922
+ font-weight: bold;
923
+ color: var(--color-prettylights-syntax-meta-diff-range);
924
+ }
925
+ .index-module__wrap___d8k-1 .markdown-body .pl-ba {
926
+ color: var(--color-prettylights-syntax-brackethighlighter-angle);
927
+ }
928
+ .index-module__wrap___d8k-1 .markdown-body .pl-sg {
929
+ color: var(--color-prettylights-syntax-sublimelinter-gutter-mark);
930
+ }
931
+ .index-module__wrap___d8k-1 .markdown-body .pl-corl {
932
+ text-decoration: underline;
933
+ color: var(--color-prettylights-syntax-constant-other-reference-link);
934
+ }
935
+ .index-module__wrap___d8k-1 .markdown-body [role=button]:focus:not(:focus-visible),
936
+ .index-module__wrap___d8k-1 .markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),
937
+ .index-module__wrap___d8k-1 .markdown-body button:focus:not(:focus-visible),
938
+ .index-module__wrap___d8k-1 .markdown-body summary:focus:not(:focus-visible),
939
+ .index-module__wrap___d8k-1 .markdown-body a:focus:not(:focus-visible) {
940
+ outline: none;
941
+ box-shadow: none;
942
+ }
943
+ .index-module__wrap___d8k-1 .markdown-body [tabindex="0"]:focus:not(:focus-visible),
944
+ .index-module__wrap___d8k-1 .markdown-body details-dialog:focus:not(:focus-visible) {
945
+ outline: none;
946
+ }
947
+ .index-module__wrap___d8k-1 .markdown-body g-emoji {
948
+ display: inline-block;
949
+ min-width: 1ch;
950
+ font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
951
+ font-size: 1em;
952
+ font-style: normal !important;
953
+ font-weight: var(--base-text-weight-normal, 400);
954
+ line-height: 1;
955
+ vertical-align: -0.075em;
956
+ }
957
+ .index-module__wrap___d8k-1 .markdown-body g-emoji img {
958
+ width: 1em;
959
+ height: 1em;
960
+ }
961
+ .index-module__wrap___d8k-1 .markdown-body .task-list-item {
962
+ list-style-type: none;
963
+ }
964
+ .index-module__wrap___d8k-1 .markdown-body .task-list-item label {
965
+ font-weight: var(--base-text-weight-normal, 400);
966
+ }
967
+ .index-module__wrap___d8k-1 .markdown-body .task-list-item.enabled label {
968
+ cursor: pointer;
969
+ }
970
+ .index-module__wrap___d8k-1 .markdown-body .task-list-item + .task-list-item {
971
+ margin-top: var(--base-size-4);
972
+ }
973
+ .index-module__wrap___d8k-1 .markdown-body .task-list-item .handle {
974
+ display: none;
975
+ }
976
+ .index-module__wrap___d8k-1 .markdown-body .task-list-item-checkbox {
977
+ margin: 0 0.2em 0.25em -1.4em;
978
+ vertical-align: middle;
979
+ }
980
+ .index-module__wrap___d8k-1 .markdown-body ul:dir(rtl) .task-list-item-checkbox {
981
+ margin: 0 -1.6em 0.25em 0.2em;
982
+ }
983
+ .index-module__wrap___d8k-1 .markdown-body ol:dir(rtl) .task-list-item-checkbox {
984
+ margin: 0 -1.6em 0.25em 0.2em;
985
+ }
986
+ .index-module__wrap___d8k-1 .markdown-body .contains-task-list:hover .task-list-item-convert-container,
987
+ .index-module__wrap___d8k-1 .markdown-body .contains-task-list:focus-within .task-list-item-convert-container {
988
+ display: block;
989
+ width: auto;
990
+ height: 24px;
991
+ overflow: visible;
992
+ clip: auto;
993
+ }
994
+ .index-module__wrap___d8k-1 .markdown-body ::-webkit-calendar-picker-indicator {
995
+ filter: invert(50%);
996
+ }
997
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert {
998
+ padding: var(--base-size-8) var(--base-size-16);
999
+ margin-bottom: var(--base-size-16);
1000
+ color: inherit;
1001
+ border-left: 0.25em solid var(--borderColor-default);
1002
+ }
1003
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert > :first-child {
1004
+ margin-top: 0;
1005
+ }
1006
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert > :last-child {
1007
+ margin-bottom: 0;
1008
+ }
1009
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert .markdown-alert-title {
1010
+ display: flex;
1011
+ font-weight: var(--base-text-weight-medium, 500);
1012
+ align-items: center;
1013
+ line-height: 1;
1014
+ }
1015
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-note {
1016
+ border-left-color: var(--borderColor-accent-emphasis);
1017
+ }
1018
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title {
1019
+ color: var(--fgColor-accent);
1020
+ }
1021
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-important {
1022
+ border-left-color: var(--borderColor-done-emphasis);
1023
+ }
1024
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title {
1025
+ color: var(--fgColor-done);
1026
+ }
1027
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-warning {
1028
+ border-left-color: var(--borderColor-attention-emphasis);
1029
+ }
1030
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title {
1031
+ color: var(--fgColor-attention);
1032
+ }
1033
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-tip {
1034
+ border-left-color: var(--borderColor-success-emphasis);
1035
+ }
1036
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title {
1037
+ color: var(--fgColor-success);
1038
+ }
1039
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-caution {
1040
+ border-left-color: var(--borderColor-danger-emphasis);
1041
+ }
1042
+ .index-module__wrap___d8k-1 .markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title {
1043
+ color: var(--fgColor-danger);
1044
+ }
1045
+ .index-module__wrap___d8k-1 .markdown-body > *:first-child > .heading-element:first-child {
1046
+ margin-top: 0 !important;
1047
+ }
1048
+ .index-module__wrap___d8k-1 .markdown-body .highlight pre:has(+ .zeroclipboard-container) {
1049
+ min-height: 52px;
1050
+ }`;
1051
+ document.head.appendChild(style);
1052
+
1053
+ var wrap = "index-module__wrap___d8k-1";
1054
+
1055
+ export { wrap };