umberto 7.0.2 → 8.0.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 (554) hide show
  1. package/CHANGELOG.md +20 -1799
  2. package/LICENSE.md +44 -5
  3. package/README.md +194 -9
  4. package/package.json +4 -8
  5. package/scripts/filter/after-post-render/gloria/append-copy-heading-buttons.js +99 -0
  6. package/scripts/filter/after-post-render/gloria/apply-design-doc-classes.js +145 -0
  7. package/scripts/filter/after-post-render/gloria/wrap-table-into-wrappers.js +30 -0
  8. package/scripts/filter/after-post-render/img-linker.js +1 -1
  9. package/scripts/filter/after-post-render/insert-error-codes.js +1 -1
  10. package/scripts/filter/after-post-render/linker.js +1 -1
  11. package/scripts/filter/after-post-render/snippets.js +5 -1
  12. package/scripts/filter/after-render/gloria/inline-svg.js +14 -0
  13. package/scripts/filter/after-render/gloria/spritesheet-svg.js +14 -0
  14. package/scripts/filter/before-post-render/add-project-info-to-page.js +1 -1
  15. package/scripts/filter/before-post-render/code-switcher.js +4 -0
  16. package/scripts/filter/before-post-render/execute-and-insert-function-results.js +3 -1
  17. package/scripts/filter/before-post-render/gloria/add-breadcrumbs-data-to-page.js +269 -0
  18. package/scripts/filter/before-post-render/gloria/prerender-admonitions.js +27 -0
  19. package/scripts/filter/before-post-render/gloria/prerender-xml-pug-components.js +339 -0
  20. package/scripts/filter/before-post-render/gloria/render-post-render-pug-components.js +94 -0
  21. package/scripts/filter/before-post-render/set-layout.js +4 -2
  22. package/scripts/helper/parse-href.js +28 -0
  23. package/scripts/helper/u-capitalize.js +13 -0
  24. package/scripts/helper/u-random-id.js +16 -0
  25. package/scripts/helper/u-remove-indentation.js +13 -0
  26. package/scripts/helper/u-toc.js +2 -63
  27. package/scripts/utils/add-indention.js +16 -0
  28. package/scripts/utils/capitalize.js +17 -0
  29. package/scripts/utils/concat-url-parts.js +19 -0
  30. package/scripts/utils/decode-html-entities.js +25 -0
  31. package/scripts/utils/drop-init-slash.js +14 -0
  32. package/scripts/utils/drop-trailing-slash.js +14 -0
  33. package/scripts/utils/drop-url-protocol.js +10 -0
  34. package/scripts/utils/inline-svg.js +152 -0
  35. package/scripts/utils/measure-call.js +16 -0
  36. package/scripts/utils/parse-href.js +37 -0
  37. package/scripts/utils/parseicontag.js +1 -1
  38. package/scripts/utils/parselinks.js +27 -6
  39. package/scripts/utils/parser-cursor.js +280 -0
  40. package/scripts/utils/pipe.js +17 -0
  41. package/scripts/utils/pug-renderer/create-prerender-pug-template.js +172 -0
  42. package/scripts/utils/pug-renderer/render-pug-component.js +73 -0
  43. package/scripts/utils/pug-to-xml-binding/parser/walk-xml-tree.js +150 -0
  44. package/scripts/utils/pug-to-xml-binding/parser/xml-components-parser.js +414 -0
  45. package/scripts/utils/pug-to-xml-binding/render-xml-pug-components-in-markdown.js +193 -0
  46. package/scripts/utils/pug-to-xml-binding/transform-xml-tree-to-pug.js +144 -0
  47. package/scripts/utils/random-id.js +67 -0
  48. package/scripts/utils/remove-indentation.js +48 -0
  49. package/scripts/utils/spritesheet-svg.js +183 -0
  50. package/scripts/utils/toc.js +71 -0
  51. package/scripts/utils/transform-markdown-admonitions.js +98 -0
  52. package/scripts/utils/uniq-by-last.js +32 -0
  53. package/src/api-builder/api-builder.js +49 -18
  54. package/src/api-builder/classes/description-parser.js +61 -10
  55. package/src/api-builder/classes/doc-data-factory.js +2 -2
  56. package/src/helpers/github-url.js +1 -1
  57. package/src/helpers/templates/scripts/default.js +1 -1
  58. package/src/helpers/templates/scripts/group.js +1 -1
  59. package/src/hexo/filter/project-locals.js +9 -0
  60. package/src/hexo/get-repo-urls.js +1 -1
  61. package/src/hexo/project-globals.js +4 -0
  62. package/src/hexo-manager.js +7 -2
  63. package/src/sdk-builder/sdk-builder.js +4 -4
  64. package/src/tasks/build-api-docs.js +5 -5
  65. package/src/tasks/build-documentation.js +45 -22
  66. package/src/tasks/cache-files.js +2 -2
  67. package/src/tasks/compile-sass.js +12 -0
  68. package/src/tasks/copy-assets.js +4 -0
  69. package/src/tasks/copy-project-icons.js +1 -1
  70. package/src/tasks/get-extra-files.js +1 -1
  71. package/src/tasks/get-project-config.js +1 -1
  72. package/src/tasks/overwrite-api-guides.js +1 -1
  73. package/themes/umberto/layout/gloria/404.pug +25 -16
  74. package/themes/umberto/layout/gloria/_api-docs/_header/_style.scss +31 -0
  75. package/themes/umberto/layout/gloria/_api-docs/_header/index.pug +50 -0
  76. package/themes/umberto/layout/gloria/_api-docs/_mixin/_api-see-source.pug +1 -4
  77. package/themes/umberto/layout/gloria/_api-docs/_mixin/_api-tree-item.pug +34 -26
  78. package/themes/umberto/layout/gloria/_api-docs/_mixin/_class-item.pug +20 -13
  79. package/themes/umberto/layout/gloria/_api-docs/_mixin/_dev-names.pug +1 -1
  80. package/themes/umberto/layout/gloria/_api-docs/_mixin/_error.pug +10 -5
  81. package/themes/umberto/layout/gloria/_api-docs/_mixin/_hierarchy-list.pug +1 -1
  82. package/themes/umberto/layout/gloria/_api-docs/_mixin/_link-or-text.pug +1 -1
  83. package/themes/umberto/layout/gloria/_api-docs/_mixin/_method.pug +45 -39
  84. package/themes/umberto/layout/gloria/_api-docs/_mixin/_property.pug +26 -20
  85. package/themes/umberto/layout/gloria/_api-docs/_mixin/_related.pug +1 -1
  86. package/themes/umberto/layout/gloria/_api-docs/_mixin/_toc-list-item.pug +11 -0
  87. package/themes/umberto/layout/gloria/_api-docs/_partial/api-subheader.pug +0 -11
  88. package/themes/umberto/layout/gloria/_api-docs/_partial/api-toc.pug +33 -0
  89. package/themes/umberto/layout/gloria/_api-docs/_partial/classes.pug +5 -4
  90. package/themes/umberto/layout/gloria/_api-docs/_partial/config-options.pug +5 -4
  91. package/themes/umberto/layout/gloria/_api-docs/_partial/constants.pug +1 -1
  92. package/themes/umberto/layout/gloria/_api-docs/_partial/description.pug +2 -2
  93. package/themes/umberto/layout/gloria/_api-docs/_partial/events.pug +5 -4
  94. package/themes/umberto/layout/gloria/_api-docs/_partial/functions.pug +5 -4
  95. package/themes/umberto/layout/gloria/_api-docs/_partial/interfaces.pug +1 -1
  96. package/themes/umberto/layout/gloria/_api-docs/_partial/methods.pug +14 -13
  97. package/themes/umberto/layout/gloria/_api-docs/_partial/namespaces.pug +1 -1
  98. package/themes/umberto/layout/gloria/_api-docs/_partial/navtree.pug +4 -11
  99. package/themes/umberto/layout/gloria/_api-docs/_partial/properties.pug +14 -13
  100. package/themes/umberto/layout/gloria/_api-docs/_partial/type-parameters.pug +15 -12
  101. package/themes/umberto/layout/gloria/_api-docs/_partial/typedefs.pug +5 -4
  102. package/themes/umberto/layout/gloria/_api-docs/_subheader/_style.scss +5 -0
  103. package/themes/umberto/layout/gloria/_api-docs/_subheader/index.pug +10 -0
  104. package/themes/umberto/layout/gloria/_api-docs/_toc/_style.scss +227 -0
  105. package/themes/umberto/layout/gloria/_api-docs/_toc/index.pug +11 -0
  106. package/themes/umberto/layout/gloria/_api-docs/api-base.pug +24 -24
  107. package/themes/umberto/layout/gloria/_api-docs/class.pug +4 -4
  108. package/themes/umberto/layout/gloria/_api-docs/errors.pug +3 -3
  109. package/themes/umberto/layout/gloria/_api-docs/index.pug +3 -0
  110. package/themes/umberto/layout/gloria/_api-docs/interface.pug +4 -4
  111. package/themes/umberto/layout/gloria/_api-docs/mixin.pug +4 -4
  112. package/themes/umberto/layout/gloria/_api-docs/module.pug +4 -4
  113. package/themes/umberto/layout/gloria/_api-docs/namespace.pug +4 -4
  114. package/themes/umberto/layout/gloria/_api-docs/typedef.pug +22 -22
  115. package/themes/umberto/layout/gloria/_components/badge/_style.scss +27 -0
  116. package/themes/umberto/layout/gloria/_components/badge/index.pug +30 -0
  117. package/themes/umberto/layout/gloria/_components/banner/_style.scss +133 -0
  118. package/themes/umberto/layout/gloria/_components/banner/index.pug +3 -0
  119. package/themes/umberto/layout/gloria/_components/button/_style.scss +183 -0
  120. package/themes/umberto/layout/gloria/_components/button/index.pug +140 -0
  121. package/themes/umberto/layout/gloria/_components/callout/_style.scss +56 -0
  122. package/themes/umberto/layout/gloria/_components/callout/index.pug +87 -0
  123. package/themes/umberto/layout/gloria/_components/card/_style.scss +101 -0
  124. package/themes/umberto/layout/gloria/_components/card/index.pug +131 -0
  125. package/themes/umberto/layout/gloria/_components/card-learn-more-links/_style.scss +9 -0
  126. package/themes/umberto/layout/gloria/_components/card-learn-more-links/index.pug +56 -0
  127. package/themes/umberto/layout/gloria/_components/checkbox/_style.scss +117 -0
  128. package/themes/umberto/layout/gloria/_components/checkbox/index.pug +35 -0
  129. package/themes/umberto/layout/gloria/_components/cke5-code-switcher/index.pug +39 -0
  130. package/themes/umberto/layout/gloria/_components/code-block/_style.scss +111 -0
  131. package/themes/umberto/layout/gloria/_components/code-block/index.pug +67 -0
  132. package/themes/umberto/layout/gloria/_components/code-switcher/_style.scss +41 -0
  133. package/themes/umberto/layout/gloria/_components/code-switcher/index.pug +31 -0
  134. package/themes/umberto/layout/gloria/_components/columns/_style.scss +54 -0
  135. package/themes/umberto/layout/gloria/_components/columns/index.pug +30 -0
  136. package/themes/umberto/layout/gloria/_components/divider/_style.scss +6 -0
  137. package/themes/umberto/layout/gloria/_components/divider/index.pug +13 -0
  138. package/themes/umberto/layout/gloria/_components/dropdown/_style.scss +88 -0
  139. package/themes/umberto/layout/gloria/_components/dropdown/index.pug +77 -0
  140. package/themes/umberto/layout/gloria/_components/fake-devtools/_style.scss +233 -0
  141. package/themes/umberto/layout/gloria/_components/fake-devtools/index.pug +27 -0
  142. package/themes/umberto/layout/gloria/_components/heading-badge/index.pug +17 -0
  143. package/themes/umberto/layout/gloria/_components/heading-link/_style.scss +47 -0
  144. package/themes/umberto/layout/gloria/_components/heading-link/index.pug +26 -0
  145. package/themes/umberto/layout/gloria/_components/icon/_style.scss +12 -0
  146. package/themes/umberto/layout/gloria/_components/icon/index.pug +75 -0
  147. package/themes/umberto/layout/gloria/_components/icon-message/_style.scss +13 -0
  148. package/themes/umberto/layout/gloria/_components/icon-message/index.pug +17 -0
  149. package/themes/umberto/layout/gloria/_components/iframe/_style.scss +10 -0
  150. package/themes/umberto/layout/gloria/_components/iframe/index.pug +22 -0
  151. package/themes/umberto/layout/gloria/_components/img/index.pug +17 -0
  152. package/themes/umberto/layout/gloria/_components/index.pug +31 -0
  153. package/themes/umberto/layout/gloria/_components/input/_style.scss +82 -0
  154. package/themes/umberto/layout/gloria/_components/input/index.pug +34 -0
  155. package/themes/umberto/layout/gloria/_components/json-ld/index.pug +3 -0
  156. package/themes/umberto/layout/gloria/_components/keyboard-shortcut/_style.scss +49 -0
  157. package/themes/umberto/layout/gloria/_components/keyboard-shortcut/index.pug +23 -0
  158. package/themes/umberto/layout/gloria/_components/menu-dropdown/_style.scss +27 -0
  159. package/themes/umberto/layout/gloria/_components/menu-dropdown/index.pug +40 -0
  160. package/themes/umberto/layout/gloria/_components/mobile-overlay/_style.scss +70 -0
  161. package/themes/umberto/layout/gloria/_components/mobile-overlay/index.pug +37 -0
  162. package/themes/umberto/layout/gloria/_components/nav-tree/_style.scss +104 -0
  163. package/themes/umberto/layout/gloria/_components/nav-tree/index.pug +6 -0
  164. package/themes/umberto/layout/gloria/_components/nav-tree/nav-tree-item.pug +23 -0
  165. package/themes/umberto/layout/gloria/{_mixin → _components/nav-tree}/nav-tree-level.pug +31 -11
  166. package/themes/umberto/layout/gloria/_components/skeleton/_style.scss +22 -0
  167. package/themes/umberto/layout/gloria/_components/skeleton/index.pug +16 -0
  168. package/themes/umberto/layout/gloria/_components/spacer/_style.scss +9 -0
  169. package/themes/umberto/layout/gloria/_components/spacer/index.pug +19 -0
  170. package/themes/umberto/layout/gloria/_components/svg/index.pug +70 -0
  171. package/themes/umberto/layout/gloria/_components/tabs/_style.scss +80 -0
  172. package/themes/umberto/layout/gloria/_components/tabs/index.pug +81 -0
  173. package/themes/umberto/layout/gloria/_components/tag/_style.scss +79 -0
  174. package/themes/umberto/layout/gloria/_components/tag/index.pug +17 -0
  175. package/themes/umberto/layout/gloria/_components/tooltip-popover/_style.scss +194 -0
  176. package/themes/umberto/layout/gloria/_components/tooltip-popover/index.pug +38 -0
  177. package/themes/umberto/layout/gloria/_head/head-preloads.pug +32 -0
  178. package/themes/umberto/layout/gloria/{_partial → _head}/head.pug +8 -4
  179. package/themes/umberto/layout/gloria/_head/index.pug +1 -0
  180. package/themes/umberto/layout/gloria/_modules/algolia-search/_style.scss +202 -0
  181. package/themes/umberto/layout/gloria/_modules/algolia-search/_third-party.scss +1 -0
  182. package/themes/umberto/layout/gloria/_modules/algolia-search/index.pug +38 -0
  183. package/themes/umberto/layout/gloria/_modules/breadcrumbs/_style.scss +68 -0
  184. package/themes/umberto/layout/gloria/_modules/breadcrumbs/index.pug +18 -0
  185. package/themes/umberto/layout/gloria/_modules/footer/_style.scss +40 -0
  186. package/themes/umberto/layout/gloria/_modules/footer/index.pug +87 -0
  187. package/themes/umberto/layout/gloria/_modules/header/_style.scss +181 -0
  188. package/themes/umberto/layout/gloria/_modules/header/index.pug +70 -0
  189. package/themes/umberto/layout/gloria/_modules/header/nav-link.pug +19 -0
  190. package/themes/umberto/layout/gloria/_modules/header/nav-links.pug +11 -0
  191. package/themes/umberto/layout/gloria/_modules/header/nav-project-select-dropdown.pug +16 -0
  192. package/themes/umberto/layout/gloria/_modules/header/nav-suffix-links.pug +20 -0
  193. package/themes/umberto/layout/gloria/_modules/header-bar/_style.scss +56 -0
  194. package/themes/umberto/layout/gloria/_modules/header-bar/index.pug +40 -0
  195. package/themes/umberto/layout/gloria/_modules/header-legacy-warning/index.pug +11 -0
  196. package/themes/umberto/layout/gloria/_modules/header-nightly-info/index.pug +20 -0
  197. package/themes/umberto/layout/gloria/_modules/header-promobar/index.pug +18 -0
  198. package/themes/umberto/layout/gloria/_modules/index.pug +14 -0
  199. package/themes/umberto/layout/gloria/_modules/main/_style.scss +54 -0
  200. package/themes/umberto/layout/gloria/_modules/main/index.pug +10 -0
  201. package/themes/umberto/layout/gloria/_modules/mobile-nav/_style.scss +106 -0
  202. package/themes/umberto/layout/gloria/_modules/mobile-nav/index.pug +121 -0
  203. package/themes/umberto/layout/gloria/_modules/mobile-nav/slide-parts.pug +67 -0
  204. package/themes/umberto/layout/gloria/_modules/not-found/_style.scss +38 -0
  205. package/themes/umberto/layout/gloria/_modules/not-found/index.pug +16 -0
  206. package/themes/umberto/layout/gloria/_modules/sidebar/_style.scss +147 -0
  207. package/themes/umberto/layout/gloria/_modules/sidebar/index.pug +24 -0
  208. package/themes/umberto/layout/gloria/_modules/sidebar-api/_style.scss +2 -0
  209. package/themes/umberto/layout/gloria/_modules/sidebar-api/index.pug +6 -0
  210. package/themes/umberto/layout/gloria/_modules/toc/_style.scss +201 -0
  211. package/themes/umberto/layout/gloria/_modules/toc/index.pug +10 -0
  212. package/themes/umberto/layout/gloria/_trackers/google-tag-manager.pug +14 -0
  213. package/themes/umberto/layout/gloria/_trackers/index.pug +2 -0
  214. package/themes/umberto/layout/gloria/api.pug +43 -20
  215. package/themes/umberto/layout/gloria/base.pug +23 -32
  216. package/themes/umberto/layout/gloria/index.pug +19 -13
  217. package/themes/umberto/layout/gloria/page.pug +30 -11
  218. package/themes/umberto/layout/gloria/sdk.pug +1 -1
  219. package/themes/umberto/layout/gloria/theme.pug +304 -0
  220. package/themes/umberto/layout/umberto/404.pug +0 -1
  221. package/themes/umberto/layout/umberto/_partial/report-issue-widget.pug +0 -3
  222. package/themes/umberto/source/gloria/assets/_fonts/Menlo/Menlo-Regular.ttf +0 -0
  223. package/themes/umberto/source/gloria/assets/_fonts/Menlo/Menlo-Regular.woff +0 -0
  224. package/themes/umberto/source/gloria/assets/_fonts/Mulish/Mulish-Italic-VariableFont_wght.ttf +0 -0
  225. package/themes/umberto/source/gloria/assets/_fonts/Mulish/Mulish-Italic-VariableFont_wght.woff2 +0 -0
  226. package/themes/umberto/source/gloria/assets/_fonts/Mulish/Mulish-VariableFont_wght.ttf +0 -0
  227. package/themes/umberto/source/gloria/assets/_fonts/Mulish/Mulish-VariableFont_wght.woff2 +0 -0
  228. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-Black.ttf +0 -0
  229. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-BlackItalic.ttf +0 -0
  230. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-Bold.ttf +0 -0
  231. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-BoldItalic.ttf +0 -0
  232. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-ExtraBold.ttf +0 -0
  233. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-ExtraBoldItalic.ttf +0 -0
  234. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-ExtraLight.ttf +0 -0
  235. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-ExtraLightItalic.ttf +0 -0
  236. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-Italic.ttf +0 -0
  237. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-Light.ttf +0 -0
  238. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-LightItalic.ttf +0 -0
  239. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-Medium.ttf +0 -0
  240. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-MediumItalic.ttf +0 -0
  241. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-Regular.ttf +0 -0
  242. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-SemiBold.ttf +0 -0
  243. package/themes/umberto/source/gloria/assets/_fonts/Mulish/static/Mulish-SemiBoldItalic.ttf +0 -0
  244. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/PublicSans-Italic-VariableFont_wght.ttf +0 -0
  245. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/PublicSans-Italic-VariableFont_wght.woff2 +0 -0
  246. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/PublicSans-VariableFont_wght.ttf +0 -0
  247. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/PublicSans-VariableFont_wght.woff2 +0 -0
  248. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-Black.ttf +0 -0
  249. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-BlackItalic.ttf +0 -0
  250. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-Bold.ttf +0 -0
  251. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-BoldItalic.ttf +0 -0
  252. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-ExtraBold.ttf +0 -0
  253. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-ExtraBoldItalic.ttf +0 -0
  254. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-ExtraLight.ttf +0 -0
  255. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-ExtraLightItalic.ttf +0 -0
  256. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-Italic.ttf +0 -0
  257. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-Light.ttf +0 -0
  258. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-LightItalic.ttf +0 -0
  259. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-Medium.ttf +0 -0
  260. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-MediumItalic.ttf +0 -0
  261. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-Regular.ttf +0 -0
  262. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-SemiBold.ttf +0 -0
  263. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-SemiBoldItalic.ttf +0 -0
  264. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-Thin.ttf +0 -0
  265. package/themes/umberto/source/gloria/assets/_fonts/Public_Sans/static/PublicSans-ThinItalic.ttf +0 -0
  266. package/themes/umberto/source/gloria/assets/_img/404-billboard.svg +181 -0
  267. package/themes/umberto/source/gloria/assets/_img/ckeditor-logo.svg +15 -0
  268. package/themes/umberto/source/gloria/assets/_img/hex-bg-2.svg +10 -0
  269. package/themes/umberto/source/gloria/assets/_img/hex-bg.svg +10 -0
  270. package/themes/umberto/source/gloria/assets/_img/icons/api-class.svg +10 -0
  271. package/themes/umberto/source/gloria/assets/_img/icons/api-folder.svg +3 -0
  272. package/themes/umberto/source/gloria/assets/_img/icons/api-interface.svg +3 -0
  273. package/themes/umberto/source/gloria/assets/_img/icons/api-module.svg +3 -0
  274. package/themes/umberto/source/gloria/assets/_img/icons/api-package.svg +4 -0
  275. package/themes/umberto/source/gloria/assets/_img/icons/api-typedef.svg +3 -0
  276. package/themes/umberto/source/gloria/assets/_img/icons/bulb.svg +3 -0
  277. package/themes/umberto/source/gloria/assets/_img/icons/check-circle.svg +4 -0
  278. package/themes/umberto/source/gloria/assets/_img/icons/check.svg +3 -0
  279. package/themes/umberto/source/gloria/assets/_img/icons/chevron-down.svg +3 -0
  280. package/themes/umberto/source/gloria/assets/_img/icons/chevron-right.svg +3 -0
  281. package/themes/umberto/source/gloria/assets/_img/icons/close-circle.svg +4 -0
  282. package/themes/umberto/source/gloria/assets/_img/icons/close.svg +3 -0
  283. package/themes/umberto/source/gloria/assets/_img/icons/copy.svg +10 -0
  284. package/themes/umberto/source/gloria/assets/_img/icons/dislike.svg +3 -0
  285. package/themes/umberto/source/gloria/assets/_img/icons/download.svg +3 -0
  286. package/themes/umberto/source/gloria/assets/_img/icons/edit.svg +3 -0
  287. package/themes/umberto/source/gloria/assets/_img/icons/exclamation-circle.svg +4 -0
  288. package/themes/umberto/source/gloria/assets/_img/icons/experiment.svg +3 -0
  289. package/themes/umberto/source/gloria/assets/_img/icons/export.svg +4 -0
  290. package/themes/umberto/source/gloria/assets/_img/icons/eye.svg +3 -0
  291. package/themes/umberto/source/gloria/assets/_img/icons/filter.svg +3 -0
  292. package/themes/umberto/source/gloria/assets/_img/icons/github.svg +10 -0
  293. package/themes/umberto/source/gloria/assets/_img/icons/info-circle.svg +4 -0
  294. package/themes/umberto/source/gloria/assets/_img/icons/like.svg +3 -0
  295. package/themes/umberto/source/gloria/assets/_img/icons/link.svg +3 -0
  296. package/themes/umberto/source/gloria/assets/_img/icons/lock.svg +3 -0
  297. package/themes/umberto/source/gloria/assets/_img/icons/menu-fold.svg +3 -0
  298. package/themes/umberto/source/gloria/assets/_img/icons/menu-list.svg +3 -0
  299. package/themes/umberto/source/gloria/assets/_img/icons/menu.svg +3 -0
  300. package/themes/umberto/source/gloria/assets/_img/icons/more.svg +3 -0
  301. package/themes/umberto/source/gloria/assets/_img/icons/notification.svg +3 -0
  302. package/themes/umberto/source/gloria/assets/_img/icons/number.svg +3 -0
  303. package/themes/umberto/source/gloria/assets/_img/icons/premium.svg +3 -0
  304. package/themes/umberto/source/gloria/assets/_img/icons/right.svg +3 -0
  305. package/themes/umberto/source/gloria/assets/_img/icons/search.svg +3 -0
  306. package/themes/umberto/source/gloria/assets/_img/icons/status.svg +3 -0
  307. package/themes/umberto/source/gloria/assets/_img/icons/trash.svg +3 -0
  308. package/themes/umberto/source/gloria/assets/_img/icons/unordered-list.svg +5 -0
  309. package/themes/umberto/source/gloria/assets/_img/icons/warning.svg +10 -0
  310. package/themes/umberto/src/gloria/css/_fonts.scss +51 -0
  311. package/themes/umberto/src/gloria/css/_layers.scss +1 -0
  312. package/themes/umberto/src/gloria/css/_normalize.scss +118 -0
  313. package/themes/umberto/src/gloria/css/a11y/_focusable.scss +7 -0
  314. package/themes/umberto/src/gloria/css/a11y/_index.scss +4 -0
  315. package/themes/umberto/src/gloria/css/a11y/_mixins.scss +32 -0
  316. package/themes/umberto/src/gloria/css/a11y/_reduce-motion.scss +9 -0
  317. package/themes/umberto/src/gloria/css/a11y/_screen-reader.scss +15 -0
  318. package/themes/umberto/src/gloria/css/base/_buttons.scss +13 -0
  319. package/themes/umberto/src/gloria/css/base/_descriptions-list.scss +33 -0
  320. package/themes/umberto/src/gloria/css/base/_details.scss +7 -0
  321. package/themes/umberto/src/gloria/css/base/_headings.scss +111 -0
  322. package/themes/umberto/src/gloria/css/base/_iframes.scss +7 -0
  323. package/themes/umberto/src/gloria/css/base/_index.scss +12 -0
  324. package/themes/umberto/src/gloria/css/base/_inline-code.scss +15 -0
  325. package/themes/umberto/src/gloria/css/base/_links.scss +30 -0
  326. package/themes/umberto/src/gloria/css/base/_lists.scss +58 -0
  327. package/themes/umberto/src/gloria/css/base/_mixins.scss +3 -0
  328. package/themes/umberto/src/gloria/css/base/_paragraphs.scss +15 -0
  329. package/themes/umberto/src/gloria/css/base/_tables.scss +68 -0
  330. package/themes/umberto/src/gloria/css/base/_typography.scss +62 -0
  331. package/themes/umberto/src/gloria/css/components/_api-collapsing-list.scss +148 -0
  332. package/themes/umberto/src/gloria/css/components/_api-filter-dropdown.scss +17 -0
  333. package/themes/umberto/src/gloria/css/components/_api-item-heading.scss +58 -0
  334. package/themes/umberto/src/gloria/css/components/_api-tree.scss +202 -0
  335. package/themes/umberto/src/gloria/css/components/_hierarchy-list.scss +35 -0
  336. package/themes/umberto/src/gloria/css/components/_image-zoom.scss +13 -0
  337. package/themes/umberto/src/gloria/css/components/_index.scss +55 -0
  338. package/themes/umberto/src/gloria/css/components/_notification.scss +36 -0
  339. package/themes/umberto/src/gloria/css/components/_utils.scss +5 -0
  340. package/themes/umberto/src/gloria/css/doc/_details.scss +11 -0
  341. package/themes/umberto/src/gloria/css/doc/_editor-icons.scss +21 -0
  342. package/themes/umberto/src/gloria/css/doc/_images.scss +9 -0
  343. package/themes/umberto/src/gloria/css/doc/_index.scss +5 -0
  344. package/themes/umberto/src/gloria/css/doc/_snippets.scss +126 -0
  345. package/themes/umberto/src/gloria/css/doc/_typography.scss +5 -0
  346. package/themes/umberto/src/gloria/css/layout/_base.scss +27 -0
  347. package/themes/umberto/src/gloria/css/layout/_breakpoints.scss +88 -0
  348. package/themes/umberto/src/gloria/css/layout/_container.scss +38 -0
  349. package/themes/umberto/src/gloria/css/layout/_index.scss +6 -0
  350. package/themes/umberto/src/gloria/css/layout/_layout.scss +64 -0
  351. package/themes/umberto/src/gloria/css/layout/_mixins.scss +34 -0
  352. package/themes/umberto/src/gloria/css/layout/_zindex.scss +12 -0
  353. package/themes/umberto/src/gloria/css/modules/_index.scss +29 -0
  354. package/themes/umberto/src/gloria/css/modules/_utils.scss +7 -0
  355. package/themes/umberto/src/gloria/css/styles.scss +11 -117
  356. package/themes/umberto/src/gloria/css/theme/_light.scss +344 -0
  357. package/themes/umberto/src/gloria/css/utilities/_animation.scss +32 -0
  358. package/themes/umberto/src/gloria/css/utilities/_colors.scss +14 -0
  359. package/themes/umberto/src/gloria/css/utilities/_display.scss +13 -0
  360. package/themes/umberto/src/gloria/css/utilities/_flex.scss +33 -0
  361. package/themes/umberto/src/gloria/css/utilities/_gap.scss +8 -0
  362. package/themes/umberto/src/gloria/css/utilities/_index.scss +11 -0
  363. package/themes/umberto/src/gloria/css/utilities/_radius.scss +21 -0
  364. package/themes/umberto/src/gloria/css/utilities/_rotation.scss +8 -0
  365. package/themes/umberto/src/gloria/css/utilities/_shadows.scss +13 -0
  366. package/themes/umberto/src/gloria/css/utilities/_spacing.scss +96 -0
  367. package/themes/umberto/src/gloria/css/utilities/_stop-scrolling.scss +9 -0
  368. package/themes/umberto/src/gloria/css/utilities/_text.scss +42 -0
  369. package/themes/umberto/src/gloria/js/app.js +92 -54
  370. package/themes/umberto/src/gloria/js/components/api-nav-tree.js +171 -0
  371. package/themes/umberto/src/gloria/js/components/api-toggle.js +92 -0
  372. package/themes/umberto/src/gloria/js/components/base-component.js +41 -0
  373. package/themes/umberto/src/gloria/js/components/breadcrumbs.js +115 -0
  374. package/themes/umberto/src/gloria/js/components/code-block.js +226 -0
  375. package/themes/umberto/src/gloria/js/components/code-switcher.js +177 -0
  376. package/themes/umberto/src/gloria/js/components/dropdown.js +516 -0
  377. package/themes/umberto/src/gloria/js/components/expandable.js +79 -0
  378. package/themes/umberto/src/gloria/js/components/fake-devtools.js +722 -0
  379. package/themes/umberto/src/gloria/js/components/hash-link.js +60 -0
  380. package/themes/umberto/src/gloria/js/components/heading-link.js +135 -0
  381. package/themes/umberto/src/gloria/js/components/iframe.js +158 -0
  382. package/themes/umberto/src/gloria/js/{_imageModal.js → components/image-zoom.js} +1 -1
  383. package/themes/umberto/src/gloria/js/components/mobile-overlay.js +315 -0
  384. package/themes/umberto/src/gloria/js/components/nav-tree.js +164 -0
  385. package/themes/umberto/src/gloria/js/components/tabs.js +284 -0
  386. package/themes/umberto/src/gloria/js/components/tooltip-popover.js +576 -0
  387. package/themes/umberto/src/gloria/js/helpers/after-dom-ready.js +16 -0
  388. package/themes/umberto/src/gloria/js/helpers/animate-element.js +78 -0
  389. package/themes/umberto/src/gloria/js/helpers/body-scroll.js +22 -0
  390. package/themes/umberto/src/gloria/js/helpers/clamp.js +16 -0
  391. package/themes/umberto/src/gloria/js/helpers/classnames.js +64 -0
  392. package/themes/umberto/src/gloria/js/helpers/copy-to-clipboard.js +19 -0
  393. package/themes/umberto/src/gloria/js/helpers/create-anchor-positioning-watcher.js +46 -0
  394. package/themes/umberto/src/gloria/js/helpers/create-cleanup-registry.js +88 -0
  395. package/themes/umberto/src/gloria/js/helpers/create-hover-manager.js +93 -0
  396. package/themes/umberto/src/gloria/js/helpers/create-keyboard-blur-watcher.js +90 -0
  397. package/themes/umberto/src/gloria/js/helpers/create-keyboard-focus-cycler.js +251 -0
  398. package/themes/umberto/src/gloria/js/helpers/create-mutation-observer.js +49 -0
  399. package/themes/umberto/src/gloria/js/helpers/create-outside-click-watcher.js +39 -0
  400. package/themes/umberto/src/gloria/js/helpers/cubic-bezier.js +55 -0
  401. package/themes/umberto/src/gloria/js/helpers/date-time.js +21 -0
  402. package/themes/umberto/src/gloria/js/helpers/decode-html-entities.js +23 -0
  403. package/themes/umberto/src/gloria/js/helpers/escape-handler.js +59 -0
  404. package/themes/umberto/src/gloria/js/helpers/fetch-stylesheet.js +25 -0
  405. package/themes/umberto/src/gloria/js/helpers/find-code-lang.js +85 -0
  406. package/themes/umberto/src/gloria/js/helpers/focus-first-interactive.js +50 -0
  407. package/themes/umberto/src/gloria/js/helpers/format-html.js +181 -0
  408. package/themes/umberto/src/gloria/js/helpers/get-all-scrollable-parents.js +34 -0
  409. package/themes/umberto/src/gloria/js/helpers/get-parents-until.js +26 -0
  410. package/themes/umberto/src/gloria/js/helpers/highlight-code.js +18 -0
  411. package/themes/umberto/src/gloria/js/helpers/html-builder.js +69 -0
  412. package/themes/umberto/src/gloria/js/helpers/identity.js +8 -0
  413. package/themes/umberto/src/gloria/js/helpers/inject-resource-preload.js +51 -0
  414. package/themes/umberto/src/gloria/js/helpers/inject-script.js +79 -0
  415. package/themes/umberto/src/gloria/js/helpers/inject-stylesheet.js +108 -0
  416. package/themes/umberto/src/gloria/js/helpers/is-element-attached.js +28 -0
  417. package/themes/umberto/src/gloria/js/helpers/is-focusable.js +14 -0
  418. package/themes/umberto/src/gloria/js/helpers/is-hidden-element.js +8 -0
  419. package/themes/umberto/src/gloria/js/helpers/is-mobile.js +8 -0
  420. package/themes/umberto/src/gloria/js/helpers/is-unsafe-key.js +14 -0
  421. package/themes/umberto/src/gloria/js/helpers/lerp.js +27 -0
  422. package/themes/umberto/src/gloria/js/helpers/local-storage-helper.js +133 -0
  423. package/themes/umberto/src/gloria/js/helpers/pipe.js +8 -0
  424. package/themes/umberto/src/gloria/js/helpers/prefers-reduced-motion.js +13 -0
  425. package/themes/umberto/src/gloria/js/helpers/random-id.js +51 -0
  426. package/themes/umberto/src/gloria/js/helpers/sanitize-text.js +27 -0
  427. package/themes/umberto/src/gloria/js/helpers/scroll-to-hash.js +31 -0
  428. package/themes/umberto/src/gloria/js/helpers/take-last.js +19 -0
  429. package/themes/umberto/src/gloria/js/helpers/tap.js +11 -0
  430. package/themes/umberto/src/gloria/js/helpers/throttle.js +46 -0
  431. package/themes/umberto/src/gloria/js/helpers/timeout.js +14 -0
  432. package/themes/umberto/src/gloria/js/helpers/toggle-height.js +46 -0
  433. package/themes/umberto/src/gloria/js/helpers/tween.js +100 -0
  434. package/themes/umberto/src/gloria/js/helpers/wrap-around.js +39 -0
  435. package/themes/umberto/src/gloria/js/modules/algolia-search.js +168 -0
  436. package/themes/umberto/src/gloria/js/modules/api-filter.js +184 -0
  437. package/themes/umberto/src/gloria/js/modules/header-bar.js +154 -0
  438. package/themes/umberto/src/gloria/js/modules/header.js +242 -0
  439. package/themes/umberto/src/gloria/js/modules/links-prefetch.js +196 -0
  440. package/themes/umberto/src/gloria/js/modules/mobile-nav.js +327 -0
  441. package/themes/umberto/src/gloria/js/modules/sidebar.js +114 -0
  442. package/themes/umberto/src/gloria/js/modules/table-of-contents-api.js +214 -0
  443. package/themes/umberto/src/gloria/js/modules/table-of-contents.js +287 -0
  444. package/themes/umberto/src/gloria/js/public-api.js +75 -0
  445. package/themes/umberto/src/gloria/js/web-components/svg-icon.js +117 -0
  446. package/themes/umberto/src/umberto/js/_codeswitcherbuttons.js +1 -1
  447. package/themes/umberto/layout/gloria/_api-docs/_mixin/_api-title.pug +0 -17
  448. package/themes/umberto/layout/gloria/_mixin/nav-tree-item.pug +0 -13
  449. package/themes/umberto/layout/gloria/_partial/docsearch.pug +0 -21
  450. package/themes/umberto/layout/gloria/_partial/dropdown.pug +0 -12
  451. package/themes/umberto/layout/gloria/_partial/feedback-widget.pug +0 -20
  452. package/themes/umberto/layout/gloria/_partial/footer.pug +0 -6
  453. package/themes/umberto/layout/gloria/_partial/gh-contribute.pug +0 -8
  454. package/themes/umberto/layout/gloria/_partial/google-tag-manager.pug +0 -18
  455. package/themes/umberto/layout/gloria/_partial/header.pug +0 -64
  456. package/themes/umberto/layout/gloria/_partial/nav-tree.pug +0 -9
  457. package/themes/umberto/layout/gloria/_partial/report-issue-widget.pug +0 -26
  458. package/themes/umberto/layout/gloria/_partial/rwd-breadcrumbs.pug +0 -13
  459. package/themes/umberto/layout/gloria/_partial/search-box.pug +0 -6
  460. package/themes/umberto/layout/gloria/_partial/vwo.pug +0 -11
  461. package/themes/umberto/source/gloria/assets/_img/arrows.svg +0 -1
  462. package/themes/umberto/source/gloria/assets/_img/book.svg +0 -1
  463. package/themes/umberto/source/gloria/assets/_img/box-brown.svg +0 -1
  464. package/themes/umberto/source/gloria/assets/_img/box-orange.svg +0 -1
  465. package/themes/umberto/source/gloria/assets/_img/box-red.svg +0 -1
  466. package/themes/umberto/source/gloria/assets/_img/bulb.svg +0 -1
  467. package/themes/umberto/source/gloria/assets/_img/clipboard.svg +0 -1
  468. package/themes/umberto/source/gloria/assets/_img/cog.svg +0 -1
  469. package/themes/umberto/source/gloria/assets/_img/data.svg +0 -1
  470. package/themes/umberto/source/gloria/assets/_img/documentation.svg +0 -1
  471. package/themes/umberto/source/gloria/assets/_img/download.svg +0 -1
  472. package/themes/umberto/source/gloria/assets/_img/edit.svg +0 -2
  473. package/themes/umberto/source/gloria/assets/_img/exclamation-circle.svg +0 -2
  474. package/themes/umberto/source/gloria/assets/_img/eye.svg +0 -1
  475. package/themes/umberto/source/gloria/assets/_img/filter.svg +0 -1
  476. package/themes/umberto/source/gloria/assets/_img/filtering.svg +0 -1
  477. package/themes/umberto/source/gloria/assets/_img/folder.svg +0 -1
  478. package/themes/umberto/source/gloria/assets/_img/github.svg +0 -6
  479. package/themes/umberto/source/gloria/assets/_img/header-info-configs.svg +0 -1
  480. package/themes/umberto/source/gloria/assets/_img/header-info-events.svg +0 -1
  481. package/themes/umberto/source/gloria/assets/_img/header-info-methods.svg +0 -1
  482. package/themes/umberto/source/gloria/assets/_img/header-info-properties.svg +0 -1
  483. package/themes/umberto/source/gloria/assets/_img/heart.svg +0 -1
  484. package/themes/umberto/source/gloria/assets/_img/info-circle.svg +0 -4
  485. package/themes/umberto/source/gloria/assets/_img/info.svg +0 -1
  486. package/themes/umberto/source/gloria/assets/_img/list-nest.svg +0 -1
  487. package/themes/umberto/source/gloria/assets/_img/loupe.svg +0 -1
  488. package/themes/umberto/source/gloria/assets/_img/menu.svg +0 -4
  489. package/themes/umberto/source/gloria/assets/_img/plug.svg +0 -1
  490. package/themes/umberto/source/gloria/assets/_img/star-in-circle.svg +0 -1
  491. package/themes/umberto/source/gloria/assets/_img/tick.svg +0 -1
  492. package/themes/umberto/source/gloria/assets/_img/triangle-down.svg +0 -1
  493. package/themes/umberto/source/gloria/assets/_img/triangle-right.svg +0 -1
  494. package/themes/umberto/src/gloria/css/_api-content.scss +0 -32
  495. package/themes/umberto/src/gloria/css/_api-info-box.scss +0 -86
  496. package/themes/umberto/src/gloria/css/_api-props-filter.scss +0 -106
  497. package/themes/umberto/src/gloria/css/_api-see-source.scss +0 -35
  498. package/themes/umberto/src/gloria/css/_api-subheader.scss +0 -167
  499. package/themes/umberto/src/gloria/css/_api-tree.scss +0 -121
  500. package/themes/umberto/src/gloria/css/_badge.scss +0 -74
  501. package/themes/umberto/src/gloria/css/_code-switcher.scss +0 -61
  502. package/themes/umberto/src/gloria/css/_collapsinglist.scss +0 -262
  503. package/themes/umberto/src/gloria/css/_content.scss +0 -236
  504. package/themes/umberto/src/gloria/css/_docsearch.scss +0 -109
  505. package/themes/umberto/src/gloria/css/_dropdown.scss +0 -63
  506. package/themes/umberto/src/gloria/css/_editor-icon.scss +0 -26
  507. package/themes/umberto/src/gloria/css/_feedback-widget.scss +0 -11
  508. package/themes/umberto/src/gloria/css/_font-external.scss +0 -8
  509. package/themes/umberto/src/gloria/css/_footer.scss +0 -40
  510. package/themes/umberto/src/gloria/css/_formatted.scss +0 -285
  511. package/themes/umberto/src/gloria/css/_guide-content.scss +0 -37
  512. package/themes/umberto/src/gloria/css/_guide-sdk-tree.scss +0 -14
  513. package/themes/umberto/src/gloria/css/_loading-spinner.scss +0 -33
  514. package/themes/umberto/src/gloria/css/_main.scss +0 -59
  515. package/themes/umberto/src/gloria/css/_navigation.scss +0 -35
  516. package/themes/umberto/src/gloria/css/_notice.scss +0 -116
  517. package/themes/umberto/src/gloria/css/_print.scss +0 -20
  518. package/themes/umberto/src/gloria/css/_prism.scss +0 -223
  519. package/themes/umberto/src/gloria/css/_rwd-breadcrumbs.scss +0 -28
  520. package/themes/umberto/src/gloria/css/_rwd-menu.scss +0 -89
  521. package/themes/umberto/src/gloria/css/_secondary-navigation.scss +0 -152
  522. package/themes/umberto/src/gloria/css/_theme-dark.scss +0 -175
  523. package/themes/umberto/src/gloria/css/_toggler.scss +0 -46
  524. package/themes/umberto/src/gloria/css/_top.scss +0 -350
  525. package/themes/umberto/src/gloria/css/_tree.scss +0 -218
  526. package/themes/umberto/src/gloria/css/_warning-banner.scss +0 -46
  527. package/themes/umberto/src/gloria/css/components/_lightbox.scss +0 -12
  528. package/themes/umberto/src/gloria/css/helpers/_color.scss +0 -49
  529. package/themes/umberto/src/gloria/css/helpers/_font.scss +0 -60
  530. package/themes/umberto/src/gloria/css/helpers/_globals.scss +0 -129
  531. package/themes/umberto/src/gloria/css/helpers/_reset.scss +0 -52
  532. package/themes/umberto/src/gloria/css/helpers/_spacing.scss +0 -21
  533. package/themes/umberto/src/gloria/css/pages/_sdk.scss +0 -111
  534. package/themes/umberto/src/gloria/js/_anchors.js +0 -57
  535. package/themes/umberto/src/gloria/js/_apisearch.js +0 -126
  536. package/themes/umberto/src/gloria/js/_apitree.js +0 -67
  537. package/themes/umberto/src/gloria/js/_attachpermalinklistener.js +0 -50
  538. package/themes/umberto/src/gloria/js/_codeswitcherbuttons.js +0 -146
  539. package/themes/umberto/src/gloria/js/_collapsables.js +0 -135
  540. package/themes/umberto/src/gloria/js/_copymobileapinavigation.js +0 -26
  541. package/themes/umberto/src/gloria/js/_devnames.js +0 -37
  542. package/themes/umberto/src/gloria/js/_dropdowns.js +0 -55
  543. package/themes/umberto/src/gloria/js/_filtering.js +0 -139
  544. package/themes/umberto/src/gloria/js/_pagenavigation.js +0 -93
  545. package/themes/umberto/src/gloria/js/_prism.js +0 -104
  546. package/themes/umberto/src/gloria/js/_rwdmenu.js +0 -15
  547. package/themes/umberto/src/gloria/js/_samplecode.js +0 -23
  548. package/themes/umberto/src/gloria/js/_sidenavigation.js +0 -59
  549. package/themes/umberto/src/gloria/js/_toc.js +0 -93
  550. package/themes/umberto/src/gloria/js/_tooltips.js +0 -39
  551. package/themes/umberto/src/gloria/js/_warningbanner.js +0 -18
  552. package/themes/umberto/src/gloria/js/vendor/prism.js +0 -45
  553. /package/themes/umberto/layout/gloria/_api-docs/_partial/{api-info-box.pug → api-hierarchy.pug} +0 -0
  554. /package/themes/umberto/layout/gloria/{_partial → _trackers}/google-analytics.pug +0 -0
package/CHANGELOG.md CHANGED
@@ -1,1839 +1,60 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
- ## [7.0.2](https://github.com/cksource/umberto/compare/v7.0.1...v7.0.2) (2025-05-20)
5
-
6
- ### Bug fixes
7
-
8
- * Fixed an invalid protocol (should be `https://` instead of `https:/`) in the generated index sitemap file. Closes [#1277](https://github.com/cksource/umberto/issues/1277). ([commit](https://github.com/cksource/umberto/commit/6f59654e85b1230fbfe029efe68f708755ec6342))
9
-
10
-
11
- ## [7.0.1](https://github.com/cksource/umberto/compare/v7.0.0...v7.0.1) (2025-05-14)
12
-
13
- ### Other changes
14
-
15
- * Updated the project dependencies. Closes [#1253](https://github.com/cksource/umberto/issues/1253). ([commit](https://github.com/cksource/umberto/commit/28d74364207ab055ad76c2857d58cccb1866559b))
16
- * Removed dependencies that can be replaced with native APIs or other already used dependencies. ([commit](https://github.com/cksource/umberto/commit/28d74364207ab055ad76c2857d58cccb1866559b))
17
- * Sitemaps will be generated separately for each project. Closes [#1254](https://github.com/cksource/umberto/issues/1254). ([commit](https://github.com/cksource/umberto/commit/7968755b2a4b1c23768a9420292eb1d168b898b3))
18
-
19
-
20
- ## [7.0.0](https://github.com/cksource/umberto/compare/v6.1.2...v7.0.0) (2025-05-05)
21
-
22
- ### BREAKING CHANGES
23
-
24
- * Rendering TypeScript-based API pages requires an input file generated by Typedoc in version `0.28.0` or later.
25
-
26
- ### Features
27
-
28
- * Support for rendering TypeScript API pages based on output from `typedoc@0.28`. Closes [#1188](https://github.com/cksource/umberto/issues/1188). ([commit](https://github.com/cksource/umberto/commit/561f94c6b025a0f1dbcc01c0c0e70ee5eeae387e))
29
-
30
-
31
- ## [6.1.2](https://github.com/cksource/umberto/compare/v6.1.1...v6.1.2) (2025-04-23)
32
-
33
- ### Bug fixes
34
-
35
- * Umberto attempts to load the theme's favicons in case a project does not define its own, rather than generating links to non-existent resources. Closes [#1256](https://github.com/cksource/umberto/issues/1256). ([commit](https://github.com/cksource/umberto/commit/a6de17b195a67e78010773f420e54fa16b154378))
36
-
37
-
38
- ## [6.1.1](https://github.com/cksource/umberto/compare/v6.1.0...v6.1.1) (2025-04-17)
39
-
40
- ### Bug fixes
41
-
42
- * Displaying arguments names in callbacks before the types in API docs. ([commit](https://github.com/cksource/umberto/commit/2974f7f34b4549907d233b35bd3b0756d0d1177e))
43
-
44
-
45
- ## [6.1.0](https://github.com/cksource/umberto/compare/v6.0.0...v6.1.0) (2025-04-15)
46
-
47
- ### Features
48
-
49
- * Added the `skipSitemap` (for ignoring generating the sitemap) and `skipThemes` (for skipping preparing assets) flags. ([commit](https://github.com/cksource/umberto/commit/8ec19222e970d2f68ace87a108ead619827124f0))
50
- * Ability to define a theme per project. Closes [#1242](https://github.com/cksource/umberto/issues/1242). ([commit](https://github.com/cksource/umberto/commit/3bec129a57e224f574674543d9224bda55d1e081))
51
- * Use the provided `mainConfig` if available when creating symlinks. ([commit](https://github.com/cksource/umberto/commit/5b61d25ff96cbc0cdce7dc5a218e1ab6ca544189))
52
-
53
-
54
- ## [6.0.0](https://github.com/cksource/umberto/compare/v5.0.2...v6.0.0) (2025-04-01)
55
-
56
- ### BREAKING CHANGES
57
-
58
- * The support for cross-project links in all tags (all variants of the `@link`, `@glink` and `@icon` tags) is now dropped. In case you want to insert a link to another project, use Markdown syntax (`[link text](link target)`) or a regular HTML `<a>` tag.
59
-
60
- ### Other changes
61
-
62
- * Cross-project links in `@link` (and all its variants), `@glink` and `@icon` tags are no longer supported. When detected, error message is printed in the console. Closes [#1243](https://github.com/cksource/umberto/issues/1243). ([commit](https://github.com/cksource/umberto/commit/0929fafee7e770a618496bd1ad43abac280d58c6))
63
-
64
-
65
- ## [5.0.2](https://github.com/cksource/umberto/compare/v5.0.1...v5.0.2) (2025-03-24)
66
-
67
- ### Bug fixes
68
-
69
- * Improve handling CKEditor 5 icons on the API pages. ([commit](https://github.com/cksource/umberto/commit/89f1856de2fcbd99dbdf24d17cdd05b89a08a147))
70
-
71
-
72
- ## [5.0.1](https://github.com/cksource/umberto/compare/v5.0.0...v5.0.1) (2025-03-13)
73
-
74
- Internal changes only (updated dependencies, documentation, etc.).
75
-
76
-
77
- ## [5.0.0](https://github.com/cksource/umberto/compare/v4.4.2...v5.0.0) (2025-03-12)
4
+ ## [8.0.0](https://github.com/cksource/umberto/compare/v7.0.2...v8.0.0) (July 18, 2025)
78
5
 
79
6
  ### BREAKING CHANGES
80
7
 
81
- * Upgraded the minimal version of Node.js to 20.0.0 due to the end of LTS.
82
-
83
- ### Bug fixes
84
-
85
- * Fixed links validation parsing URLs from code blocks inside docs. Closes [#1234](https://github.com/cksource/umberto/issues/1234). ([commit](https://github.com/cksource/umberto/commit/c78e5ddba331fe6ad3dabd912458254d1488fdd2))
86
-
87
- ### Other changes
88
-
89
- * Updated the required version of Node.js to 20. ([commit](https://github.com/cksource/umberto/commit/1ad50842b58c1351944ee33ccbd277d5e807bf20))
90
-
91
-
92
- ## [4.4.2](https://github.com/cksource/umberto/compare/v4.4.1...v4.4.2) (2024-11-25)
93
-
94
- ### Bug fixes
95
-
96
- * Fixed code switcher icons which were incorrectly displayed in the docs. ([commit](https://github.com/cksource/umberto/commit/3319526a4461a47f5a96b8de767fb9e3db51d9c4))
97
-
98
-
99
- ## [4.4.1](https://github.com/cksource/umberto/compare/v4.4.0...v4.4.1) (2024-10-30)
100
-
101
- ### Other changes
102
-
103
- * The SASS deprecation warnings are no longer displayed when building the documentation. Closes [#1224](https://github.com/cksource/umberto/issues/1224). ([commit](https://github.com/cksource/umberto/commit/1bcbb5babcf7aa047e8c41d5962ef5dc085fc0fd))
104
- * Remove the _book_ icon from titles (from the `<h1>` element).
105
-
106
-
107
- ## [4.4.0](https://github.com/cksource/umberto/compare/v4.3.0...v4.4.0) (2024-10-02)
108
-
109
- ### Features
110
-
111
- * Added support for loading hooks (`beforeHexo` and `afterHexo`) and `scripts` in ESM format in Umberto. Closes [#1214](https://github.com/cksource/umberto/issues/1214). ([commit](https://github.com/cksource/umberto/commit/2849bef1e59108f863ea0a64314ab980a7f543b6))
112
-
113
-
114
- ## [4.4.0-alpha.1](https://github.com/cksource/umberto/compare/v4.4.0-alpha.0...v4.4.0-alpha.1) (2024-09-24)
115
-
116
- Internal changes only (updated dependencies, documentation, etc.).
117
-
118
-
119
- ## [4.4.0-alpha.0](https://github.com/cksource/umberto/compare/v4.3.0...v4.4.0-alpha.0) (2024-09-20)
120
-
121
- ### Features
122
-
123
- * Added support for loading hooks (`beforeHexo` and `afterHexo`) and `scripts` in ESM format in Umberto. Closes [#1214](https://github.com/cksource/umberto/issues/1214). ([commit](https://github.com/cksource/umberto/commit/2849bef1e59108f863ea0a64314ab980a7f543b6))
124
-
125
-
126
- ## [4.3.0](https://github.com/cksource/umberto/compare/v4.2.6...v4.3.0) (2024-09-16)
127
-
128
- ### Features
129
-
130
- * Added code switcher for Self-hosted and Cloud snippets. ([commit](https://github.com/cksource/umberto/commit/a8fc9e470d3b671dc5c960da35c2bdacbe10fb8d))
131
-
132
-
133
- ## [4.2.6](https://github.com/cksource/umberto/compare/v4.2.5...v4.2.6) (2024-08-12)
134
-
135
- ### Bug fixes
136
-
137
- * Fixed the API dropdown lists (the "Properties", "Methods" and "Events" lists) to be rendered on top of the "See source" link. Closes [#1205](https://github.com/cksource/umberto/issues/1205). ([commit](https://github.com/cksource/umberto/commit/7bbb3d5fa4b46a6fe5df5887297e9225241829ba))
138
-
139
-
140
- ## [4.2.5](https://github.com/cksource/umberto/compare/v4.2.4...v4.2.5) (2024-07-25)
141
-
142
- ### Other changes
143
-
144
- * Fixed SASS deprecation warnings when compiling CSS files. Closes [#1200](https://github.com/cksource/umberto/issues/1200). ([commit](https://github.com/cksource/umberto/commit/5aa1aa949670f846dba02d94575a94b56a22179a))
145
-
146
-
147
- ## [4.2.4](https://github.com/cksource/umberto/compare/v4.2.3...v4.2.4) (2024-07-17)
148
-
149
- Internal changes only (updated dependencies, documentation, etc.).
150
-
151
-
152
- ## [4.2.3](https://github.com/cksource/umberto/compare/v4.2.2...v4.2.3) (2024-07-10)
153
-
154
- ### Other changes
155
-
156
- * Replaced Goptimize with VWO. Closes [#1196](https://github.com/cksource/umberto/issues/1196). ([commit](https://github.com/cksource/umberto/commit/6390d8a56b74a202ed81d68764a087c3a2d09f0c))
157
-
158
-
159
- ## [4.2.2](https://github.com/cksource/umberto/compare/v4.2.1...v4.2.2) (2024-06-25)
160
-
161
- ### Other changes
162
-
163
- * Changed the feedback callout text content to include info about `42.0.0` release. ([commit](https://github.com/cksource/umberto/commit/e3980a447d030ca2dd19b671ab93c5677e709030))
164
-
165
-
166
- ## [4.2.1](https://github.com/cksource/umberto/compare/v4.2.0...v4.2.1) (2024-04-15)
167
-
168
- ### Bug fixes
169
-
170
- * Used a regular font in `<kbd>` to improve readability. Closes [#1191](https://github.com/cksource/umberto/issues/1191). ([commit](https://github.com/cksource/umberto/commit/720f1d63ddb8f0c93f32566b5a93d24c3d835030))
171
-
172
-
173
- ## [4.2.0](https://github.com/cksource/umberto/compare/v4.1.2...v4.2.0) (2024-02-28)
174
-
175
- ### Features
176
-
177
- * The event structures (typedef) will now include a list of classes that fire an event with the given type. Closes [#1139](https://github.com/cksource/umberto/issues/1139). ([commit](https://github.com/cksource/umberto/commit/0bb26f63d922f1e6164210db2c25a54f83f1d752))
178
-
179
- ### Bug fixes
180
-
181
- * Support for converting nested arrays which are a part of a union structure. Closes [#1189](https://github.com/cksource/umberto/issues/1189). ([commit](https://github.com/cksource/umberto/commit/472250c6cabc6146bc7ebe92b1cd6b47a0329dd7))
182
-
183
-
184
- ## [4.1.2](https://github.com/cksource/umberto/compare/v4.1.1...v4.1.2) (2023-11-13)
185
-
186
- ### Bug fixes
187
-
188
- * Fixed invalid metadata elements generation in case of `permalinkDisableDomains` not being defined in `umberto.json`. ([commit](https://github.com/cksource/umberto/commit/2130f52361c4536ac44f33a15a58d906d63ec599))
189
-
190
-
191
- ## [4.1.1](https://github.com/cksource/umberto/compare/v4.1.0...v4.1.1) (2023-11-10)
192
-
193
- ### Bug fixes
194
-
195
- * Umberto will no longer throw an error if the configuration file does not include the `permalinkDisableDomains` property. ([commit](https://github.com/cksource/umberto/commit/1435ac3c169c55683773e155f19e2c5fd7ebdccb))
196
-
197
-
198
- ## [4.1.0](https://github.com/cksource/umberto/compare/v4.0.1...v4.1.0) (2023-11-10)
8
+ * Updated the required version of Node.js to 22.
199
9
 
200
10
  ### Features
201
11
 
202
- * Umberto config file now allows `permalinkDisableDomains` array that can specify domains for which the perm-link feature should not work. Closes [#1168](https://github.com/cksource/umberto/issues/1168). ([commit](https://github.com/cksource/umberto/commit/f1370bbdb38deae3b99fb4277352bdb84cacf809))
203
-
204
- ### Bug fixes
205
-
206
- * Generate a link (`{@link ...}`) to an existing type's property, resulting in a proper markup instead of displaying an error that the given structure (doclet) could not be found. Closes [#1182](https://github.com/cksource/umberto/issues/1182). ([commit](https://github.com/cksource/umberto/commit/972cb27cd81c6f1c83e1fc7cb42187782a60a58f))
207
-
208
-
209
- ## [4.0.1](https://github.com/cksource/umberto/compare/v4.0.0...v4.0.1) (2023-10-16)
210
-
211
- ### Bug fixes
212
-
213
- * Fixed invalid rendering double braces in code snippets. Closes [#1179](https://github.com/cksource/umberto/issues/1179). ([commit](https://github.com/cksource/umberto/commit/68122163660d9e6a3105ac5361cde05c7d4a8a49))
214
-
215
-
216
- ## [4.0.0](https://github.com/cksource/umberto/compare/v3.2.2...v4.0.0) (2023-10-10)
217
-
218
- ### BREAKING CHANGES
219
-
220
- * Upgraded the minimal versions of Node.js to `18.0.0` due to the end of LTS.
12
+ * We have introduced a brand-new theme to elevate your UI experience. Enjoy a fresh look with improved aesthetics and feel.
221
13
 
222
14
  ### Bug fixes
223
15
 
224
- * Added support for perm-link feature on API pages. Closes [#1167](https://github.com/cksource/umberto/issues/1167). ([commit](https://github.com/cksource/umberto/commit/20d167082e126541d3f2867ebebcf57b6c3173f8))
225
- * Added the `[title]` attribute to the Table of Content and the navigation menu items. Closes [#1175](https://github.com/cksource/umberto/issues/1175). ([commit](https://github.com/cksource/umberto/commit/8f3c15f96864a4e8320d26fb2b0c00746529e06b))
226
- * Fixed the "See source" button to be clickable when an item does not have a description. Closes [#1172](https://github.com/cksource/umberto/issues/1172). ([commit](https://github.com/cksource/umberto/commit/05b4e3c6893a8d4fdafd5e48c0293a1a50670a35))
16
+ * Removed link to unnecessary stylesheet that results in a 404.
17
+ * Fixed output path calculation on Windows environment for generated HTML files. Previously, non-normalized CWD was used which caused the generated output path to contain invalid characters and be incorrect.
227
18
 
228
19
  ### Other changes
229
20
 
230
- * Replaced the hyphen-minus (`-`) separator with a vertical pipe (`|`) in the generated title of pages. ([commit](https://github.com/cksource/umberto/commit/8bf6a3afb7337d7d816c3a5206eb3088bc1edf29))
231
- * Updated the required version of Node.js to 18. See [ckeditor/ckeditor5#14924](https://github.com/ckeditor/ckeditor5/issues/14924). ([commit](https://github.com/cksource/umberto/commit/c7ee14ee127ae5b497569a687e731c40fa6378ef))
21
+ * The repository now uses ESLint v9. Therefore, the required Node.js version has been upgraded to 22 to match the ESLint requirements.
22
+ * Update `LICENSE.md` file to include licenses of direct dependencies
232
23
 
233
24
 
234
- ## [3.2.2](https://github.com/cksource/umberto/compare/v3.2.1...v3.2.2) (2023-08-28)
25
+ ## [7.0.2](https://github.com/cksource/umberto/compare/v7.0.1...v7.0.2) (2025-05-20)
235
26
 
236
27
  ### Bug fixes
237
28
 
238
- * Fixed jumping layout in the secondary (table of content) navigation in a case when a text is just barely fitting a single line. When it gets highlighted and the font geometry changes, and it gets to two lines. Closes [cksource/umberto#1152](https://github.com/cksource/umberto/issues/1152). ([commit](https://github.com/cksource/umberto/commit/102674435ea8f70c321d7c029bf984ddc16f7855))
239
- * HTML tags will no longer render in ToC. Closes [#1157](https://github.com/cksource/umberto/issues/1157). ([commit](https://github.com/cksource/umberto/commit/cc44e61f496bef25f34d8e2d41eca8e849a54924))
240
- * Skip search results from API on the root page in documentation. Closes [#1029](https://github.com/cksource/umberto/issues/1029). ([commit](https://github.com/cksource/umberto/commit/b4f9250a43ff887da6da7f042434aa1542582ea7))
241
-
242
- ### Other changes
243
-
244
- * The Google Analytics `<script>` tag produces output compatible with the latest version (v4). Closes [#1166](https://github.com/cksource/umberto/issues/1166). ([commit](https://github.com/cksource/umberto/commit/0cefecde3ccc12f171580dded361895bfb0b12cd))
245
-
246
-
247
- ## [3.2.1](https://github.com/cksource/umberto/compare/v3.2.0...v3.2.1) (2023-06-21)
248
-
249
- Internal changes only (updated dependencies, documentation, etc.).
250
-
251
-
252
- ## [3.2.0](https://github.com/cksource/umberto/compare/v3.1.0...v3.2.0) (2023-06-02)
253
-
254
- ### Features
255
-
256
- * Ability to render categories as folded by default. Closes [#1082](https://github.com/cksource/umberto/issues/1082). ([commit](https://github.com/cksource/umberto/commit/e7b7f33a31577617d76ddb7a4dcd37a05afa651f))
257
- * Added support for rendering computed properties in API docs for the TypeScript code. Closes [#1134](https://github.com/cksource/umberto/issues/1134). ([commit](https://github.com/cksource/umberto/commit/2bdfb41a3064bc857e6f9b10084f0392ea823044))
258
- * The side navigation remembers a user's choices when folding categories and does not open them after switching a page. ([commit](https://github.com/cksource/umberto/commit/e7b7f33a31577617d76ddb7a4dcd37a05afa651f))
29
+ * Fixed an invalid protocol (should be `https://` instead of `https:/`) in the generated index sitemap file. Closes [#1277](https://github.com/cksource/umberto/issues/1277). ([commit](https://github.com/cksource/umberto/commit/6f59654e85b1230fbfe029efe68f708755ec6342))
259
30
 
260
- ### Bug fixes
261
31
 
262
- * Disabled Nunjucks templating language in the Markdown renderer. Closes [ckeditor/ckeditor5#14189](https://github.com/ckeditor/ckeditor5/issues/14189). ([commit](https://github.com/cksource/umberto/commit/451934f5d1959e443457ed6ab5de82fe1e6eb592))
263
- * Fixed position of the API subheader navigation buttons to be on the right side of the page. Closes [#1136](https://github.com/cksource/umberto/issues/1136). ([commit](https://github.com/cksource/umberto/commit/52d06db3b7e0eac5ddc11abd86e01bb8d57e32b4))
32
+ ## [7.0.1](https://github.com/cksource/umberto/compare/v7.0.0...v7.0.1) (2025-05-14)
264
33
 
265
34
  ### Other changes
266
35
 
267
- * Improved rendering types for the typedefs, so now they are wrapped in the code style and positioned on the right side of the badge. Closes [#1132](https://github.com/cksource/umberto/issues/1132). ([commit](https://github.com/cksource/umberto/commit/52d06db3b7e0eac5ddc11abd86e01bb8d57e32b4))
268
-
269
-
270
- ## [3.1.0](https://github.com/cksource/umberto/compare/v3.0.0...v3.1.0) (2023-04-19)
271
-
272
- ### Features
273
-
274
- * Support generating nested properties from an object argument when preparing API docs from the TypeScript code. Closes [#1129](https://github.com/cksource/umberto/issues/1129). ([commit](https://github.com/cksource/umberto/commit/1171804eee79977059506fe84f59273a3dfe2f15))
275
-
276
- ### Bug fixes
277
-
278
- * Generics extending types will now display their default values. Closes [#1128](https://github.com/cksource/umberto/issues/1128). ([commit](https://github.com/cksource/umberto/commit/e2a289bdc0e1a71f4500c6eab9c5e274dd217ca5))
279
- * Typedoc API pages – restored missing "See source" buttons. Closes [#1131](https://github.com/cksource/umberto/issues/1131). ([commit](https://github.com/cksource/umberto/commit/7fb0697176f789ffecb00f976edb1f4170a8c9e3))
36
+ * Updated the project dependencies. Closes [#1253](https://github.com/cksource/umberto/issues/1253). ([commit](https://github.com/cksource/umberto/commit/28d74364207ab055ad76c2857d58cccb1866559b))
37
+ * Removed dependencies that can be replaced with native APIs or other already used dependencies. ([commit](https://github.com/cksource/umberto/commit/28d74364207ab055ad76c2857d58cccb1866559b))
38
+ * Sitemaps will be generated separately for each project. Closes [#1254](https://github.com/cksource/umberto/issues/1254). ([commit](https://github.com/cksource/umberto/commit/7968755b2a4b1c23768a9420292eb1d168b898b3))
280
39
 
281
40
 
282
- ## [3.0.0](https://github.com/cksource/umberto/compare/v2.5.2...v3.0.0) (2023-03-29)
41
+ ## [7.0.0](https://github.com/cksource/umberto/compare/v6.1.2...v7.0.0) (2025-05-05)
283
42
 
284
43
  ### BREAKING CHANGES
285
44
 
286
- * Upgraded the minimal versions of Node.js to `16.0.0` due to the end of LTS.
287
-
288
- ### Other changes
289
-
290
- * Updated the required version of Node.js to 16. ([commit](https://github.com/cksource/umberto/commit/f131a4feb8f5cdb2d7d725e0e10417622de58ea6))
291
-
292
-
293
- ## [2.5.2](https://github.com/cksource/umberto/compare/v2.5.1...v2.5.2) (2023-03-28)
294
-
295
- ### Bug fixes
296
-
297
- * Updated a regex expression used in the make permalink feature to work on Safari. Closes [#1130](https://github.com/cksource/umberto/issues/1130). ([commit](https://github.com/cksource/umberto/commit/7c30339b952bdd47081ebdd48e9e68ca4ffdbe6e))
298
-
299
-
300
- ## [2.5.1](https://github.com/cksource/umberto/compare/v2.5.0...v2.5.1) (2023-03-27)
301
-
302
- ### Bug fixes
303
-
304
- * Fixed detecting `@internal` visibility when processing accessors. ([commit](https://github.com/cksource/umberto/commit/6ccc6298f34261b313812e3054f632c68819bd4e))
305
- * Umberto should build the main entry file (`/index.html`) without errors, even while building without projects. Closes [#1126](https://github.com/cksource/umberto/issues/1126). ([commit](https://github.com/cksource/umberto/commit/0ceb4bb215c4a44c01b7efa90500471033245140))
306
-
307
-
308
- ## [2.5.0](https://github.com/cksource/umberto/compare/v2.4.0...v2.5.0) (2023-03-23)
309
-
310
- ### Features
311
-
312
- * Pressing the `Y` key will replace the `latest` version in the URL with a permalink to the exact version of the project. Closes [#886](https://github.com/cksource/umberto/issues/886). ([commit](https://github.com/cksource/umberto/commit/d4aa8f8304201cb23d188612219a07abb8095df2))
313
-
314
- ### Bug fixes
315
-
316
- * Changed warning hint color from red to yellow. Closes [#849](https://github.com/cksource/umberto/issues/849). ([commit](https://github.com/cksource/umberto/commit/fe15f1089373784a749b9b7ad8d52aec3db57cf5))
317
- * Fixed incorrectly displayed code block snppets inside info-boxes. Closes [#1046](https://github.com/cksource/umberto/issues/1046). ([commit](https://github.com/cksource/umberto/commit/33e084228f5bf07334f5ab2ac7b4f1a9b6f90320))
318
- * Fixed invalid assignment of a visibility level for methods when generating API pages from TypeScript. ([commit](https://github.com/cksource/umberto/commit/237a549f027737b90d4a7b29283141948e41eb2c))
319
-
320
- ### Other changes
321
-
322
- * Added the "error" style for the info-box elements. ([commit](https://github.com/cksource/umberto/commit/ce9f414d36af4ddbfad725ab13ab911c386fe615))
323
- * The "Copy code" button displayed inside the code snippets is no longer removed on narrow viewports. Closes [#980](https://github.com/cksource/umberto/issues/980). ([commit](https://github.com/cksource/umberto/commit/5e5be7db4c688ac1b43c80d4de233bc4d708153c))
324
-
325
-
326
- ## [2.4.0](https://github.com/cksource/umberto/compare/v2.3.1...v2.4.0) (2023-02-20)
327
-
328
- ### Features
329
-
330
- * Added support for displaying default values from the TypeScript code in API docs by defining them in the `@default` or `@defaultValue` annotations. Closes [#1114](https://github.com/cksource/umberto/issues/1114). ([commit](https://github.com/cksource/umberto/commit/4514b666af5f616101ac222f7ecd77aca609838c))
331
-
332
- ### Bug fixes
333
-
334
- * Default TypeScript constructors will not be displayed on API pages. ([commit](https://github.com/cksource/umberto/commit/f2c3b3e88873a796fe7821b7fce93648b2ed00fa))
335
-
336
- ### Other changes
337
-
338
- * Improved rendering of API links for inherited and derived structures when processing the TypeScript code. Closes [#1109](https://github.com/cksource/umberto/issues/1109). ([commit](https://github.com/cksource/umberto/commit/99b10545947ee49d994a25100791c6f50234c3b6))
339
-
340
-
341
- ## [2.3.1](https://github.com/cksource/umberto/compare/v2.3.0...v2.3.1) (2023-02-08)
342
-
343
- ### Bug fixes
344
-
345
- * Fixed displaying special characters when processing the "@errors" tag. Closes [#1105](https://github.com/cksource/umberto/issues/1105). ([commit](https://github.com/cksource/umberto/commit/8c1db256e61546b8b8044c889f17f9c27fbfefe2))
346
- * Fixed rendering spaces/tabs in the <info-box> elements. ([commit](https://github.com/cksource/umberto/commit/e1236994d51190b6c2257aa5b5a053a7e093a946))
347
- * The highlight mechanism verifies if a node where we want to enable highlighting still exists in DOM. ([commit](https://github.com/cksource/umberto/commit/aa006c8aa10b40cf1ec2747aa6910118d5e8f1d4))
348
- * When processing a TypeScript code from a private package, Umberto should not try to generate the "See source" button in API docs. Closes [#1112](https://github.com/cksource/umberto/issues/1112). ([commit](https://github.com/cksource/umberto/commit/6dd9aa905a0a1ffb56a7daf3461b48371231d687))
349
-
350
-
351
- ## [2.3.0](https://github.com/cksource/umberto/compare/v2.2.0...v2.3.0) (2023-01-17)
352
-
353
- ### Features
354
-
355
- * Support for TypeScript (typedoc) in API pages. Closes [#1055](https://github.com/cksource/umberto/issues/1055), [#1007](https://github.com/cksource/umberto/issues/1007). ([commit](https://github.com/cksource/umberto/commit/01ce7891be7280ad945a11ba724f5152e717df78))
356
-
357
-
358
- ## [2.2.0](https://github.com/cksource/umberto/compare/v2.1.8...v2.2.0) (2022-12-22)
45
+ * Rendering TypeScript-based API pages requires an input file generated by Typedoc in version `0.28.0` or later.
359
46
 
360
47
  ### Features
361
48
 
362
- * Added support for the Google Optimize tool. ([commit](https://github.com/cksource/umberto/commit/06b866d6779edc2453669a45f9ca91468dce6bc5))
363
-
364
-
365
- ## [2.1.8](https://github.com/cksource/umberto/compare/v2.1.7...v2.1.8) (2022-12-07)
366
-
367
- ### Bug fixes
368
-
369
- * Fixed incorrect grammar in the report issue widget. Closes [ckeditor/ckeditor5#12677](https://github.com/ckeditor/ckeditor5/issues/12677). ([commit](https://github.com/cksource/umberto/commit/bb6e081515374bb4e8719d0f0f4b357b287957b5))
370
- * Improved display of items in API docs. Closes [#1022](https://github.com/cksource/umberto/issues/1022). ([commit](https://github.com/cksource/umberto/commit/dfff3d1ec70eefda6be9f15be40a843ab3236847))
371
- * The `getProjectConfig()` function does not add an asterisk when resolving paths specified in the "packagesDir" array in the configuration file. Closes [#1096](https://github.com/cksource/umberto/issues/1096). ([commit](https://github.com/cksource/umberto/commit/68900924bf91133fa78af83ffaca9d8432662ef2))
372
-
373
-
374
- ## [2.1.7](https://github.com/cksource/umberto/compare/v2.1.6...v2.1.7) (2022-09-19)
375
-
376
- ### Bug fixes
377
-
378
- * Restored missing "See source" links in API docs. Closes [#1005](https://github.com/cksource/umberto/issues/1005). ([commit](https://github.com/cksource/umberto/commit/9abedf511f982483c01da0278dcfc19f05de5f4c))
379
-
380
-
381
- ## [2.1.6](https://github.com/cksource/umberto/compare/v2.1.5...v2.1.6) (2022-09-02)
382
-
383
- ### Other changes
384
-
385
- * Disable auto converting URL-like text to links. Closes [#999](https://github.com/cksource/umberto/issues/999). ([commit](https://github.com/cksource/umberto/commit/30f1fc252cb6a253b6c6c64473c55805adfff22b))
386
- * Redesigned the layout of API pages. Starting from this release, the toggleable elements (class names, functions, error codes, etc.) do not contain the excerpt element. Instead, the full description is hidden. You must click the title to toggle full details to read their details. Closes [#994](https://github.com/cksource/umberto/issues/994). ([commit](https://github.com/cksource/umberto/commit/761bcee38a6dd01ab963ad3b240b45d14f2a2aa6))
387
-
388
-
389
- ## [2.1.5](https://github.com/cksource/umberto/compare/v2.1.4...v2.1.5) (2022-07-29)
390
-
391
- ### Bug fixes
392
-
393
- * When adding a link to the top-level landing page in the side navigation, find a page from the same project. ([commit](https://github.com/cksource/umberto/commit/b1193179fec0b75df09dc3a7d4770b4a44500b69))
49
+ * Support for rendering TypeScript API pages based on output from `typedoc@0.28`. Closes [#1188](https://github.com/cksource/umberto/issues/1188). ([commit](https://github.com/cksource/umberto/commit/561f94c6b025a0f1dbcc01c0c0e70ee5eeae387e))
394
50
 
395
51
 
396
- ## [2.1.5](https://github.com/cksource/umberto/compare/v2.1.4...v2.1.5) (2022-07-29)
52
+ ## [6.1.2](https://github.com/cksource/umberto/compare/v6.1.1...v6.1.2) (2025-04-23)
397
53
 
398
54
  ### Bug fixes
399
55
 
400
- * When adding a link to the top-level landing page in the side navigation, find a page from the same project. ([commit](https://github.com/cksource/umberto/commit/b1193179fec0b75df09dc3a7d4770b4a44500b69))
401
-
402
-
403
- ## [2.1.4](https://github.com/cksource/umberto/compare/v2.1.3...v2.1.4) (2022-07-28)
404
-
405
- ### Bug fixes
406
-
407
- * The report issue widget is always rendered at the bottom of each page (including API pages). Closes [#990](https://github.com/cksource/umberto/issues/990). ([commit](https://github.com/cksource/umberto/commit/a6e0cfdf8e74a4d45c0b765d5e72659396e6e9b6))
408
-
409
- ### Other changes
410
-
411
- * Added an option for adding a link to a landing page for a top-level category in the navigation tree. Closes [#996](https://github.com/cksource/umberto/issues/996). ([commit](https://github.com/cksource/umberto/commit/356e39fb74cc17d669e7c42c8cec94b3ae167864))
412
-
413
-
414
- ## [2.1.3](https://github.com/cksource/umberto/compare/v2.1.2...v2.1.3) (2022-05-25)
415
-
416
- ### Other changes
417
-
418
- * Added project version to the "Report issue" widget. ([commit](https://github.com/cksource/umberto/commit/817f585442dcdbf62d5870b234af37d01dd7aa38))
419
-
420
-
421
- ## [2.1.2](https://github.com/cksource/umberto/compare/v2.1.1...v2.1.2) (2022-05-24)
422
-
423
- ### Bug fixes
424
-
425
- * The search box on landing pages should filter a project too. ([commit](https://github.com/cksource/umberto/commit/c6fecfeba5341ee8f9537032fd51b5d37c2f0270))
426
-
427
-
428
- ## [2.1.1](https://github.com/cksource/umberto/compare/v2.1.0...v2.1.1) (2022-05-19)
429
-
430
- ### Bug fixes
431
-
432
- * Algolia should filter out records that do not belong to a project where a user acts with the search box. Closes [#987](https://github.com/cksource/umberto/issues/987). ([commit](https://github.com/cksource/umberto/commit/2c67eb76a211a8060e81cd75958473b03552c64a))
433
-
434
-
435
- ## [2.1.0](https://github.com/cksource/umberto/compare/v2.0.2...v2.1.0) (2022-05-13)
436
-
437
- ### Features
438
-
439
- * Introduced the "Report issue" widget, which, if enabled, adds a container at the bottom of each page in the documentation that allows reporting an issue regarding the current page. ([commit](https://github.com/cksource/umberto/commit/70c4caa4ff6e345584963154db91394423761fba))
440
-
441
- ### Other changes
442
-
443
- * Upgraded the "@ckeditor/jsdoc-plugins" package to the latest version. ([commit](https://github.com/cksource/umberto/commit/d61c9d2da7ec135b0385d51b008bac2bded00913))
444
-
445
-
446
- ## [2.0.2](https://github.com/cksource/umberto/compare/v2.0.1...v2.0.2) (2022-05-12)
447
-
448
- ### Bug fixes
449
-
450
- * A query provided by a user in the search box should be escaped to avoid errors when creating an instance of the `RegExp` class. Closes [#984](https://github.com/cksource/umberto/issues/984). ([commit](https://github.com/cksource/umberto/commit/4e783475d2ea09382da6fa104c6d932cb6ffa479))
451
-
452
-
453
- ## [2.0.1](https://github.com/cksource/umberto/compare/v2.0.0...v2.0.1) (2022-05-12)
454
-
455
- ### Bug fixes
456
-
457
- * Umberto should not apply additional filters when a user sends a request to Algolia when using the search field. ([commit](https://github.com/cksource/umberto/commit/ea18f9aa2b9acd9e05ee2b2cded30ae28c48c7f1))
458
-
459
- ### Other changes
460
-
461
- * Enabled the code highlighting for python snippets. Closes [#981](https://github.com/cksource/umberto/issues/981). ([commit](https://github.com/cksource/umberto/commit/061428e2b75056126e0605ce9e3fdcb7f65cc86e))
462
-
463
-
464
- ## [2.0.0](https://github.com/cksource/umberto/compare/v1.18.0...v2.0.0) (2022-03-10)
465
-
466
- ### BREAKING CHANGES
467
-
468
- * Upgraded the minimal versions of Node.js to `14.0.0` due to the end of LTS.
469
-
470
- ### Bug fixes
471
-
472
- * Fixed missing arrows for toggling properties description visibility in API docs. Closes [#972](https://github.com/cksource/umberto/issues/972). ([commit](https://github.com/cksource/umberto/commit/594517fd78974ff83a531b219f639f8f1aaa9edd))
473
- * Hidden flashing API list items behind a loading spinner. Closes [#970](https://github.com/cksource/umberto/issues/970). ([commit](https://github.com/cksource/umberto/commit/2783b8197af4d9f071a3fe9e544a076d93c5ddc2))
474
-
475
- ### Other changes
476
-
477
- * Updated the required version of Node.js to 14. See [ckeditor/ckeditor5#10972](https://github.com/ckeditor/ckeditor5/issues/10972). ([commit](https://github.com/cksource/umberto/commit/425c7ac6d4ca051426294ec7bf0402b97a06eaf4))
478
-
479
-
480
- ## [1.18.0](https://github.com/cksource/umberto/compare/v1.17.0...v1.18.0) (2021-12-08)
481
-
482
- ### Features
483
-
484
- * Added the option to limit the depth of "Table of contents". Closes [#801](https://github.com/cksource/umberto/issues/801). ([commit](https://github.com/cksource/umberto/commit/3c827acce7b87660c49ff282aa359d025255d925))
485
-
486
- ### Other changes
487
-
488
- * Migrated from the `node-sass` package to `sass` due to deprecation. Read more: https://sass-lang.com/blog/libsass-is-deprecated. Closes [#965](https://github.com/cksource/umberto/issues/965). ([commit](https://github.com/cksource/umberto/commit/119563baa7fed9d9e2f7e76c50cf1f4e0e13766c))
489
- * Migration to webpack 5. Closes [#955](https://github.com/cksource/umberto/issues/955). ([commit](https://github.com/cksource/umberto/commit/d7342e49b34f96c85efc266e9e99b924aa329b01))
490
-
491
-
492
- ## [1.17.0](https://github.com/cksource/umberto/compare/v1.16.0...v1.17.0) (2021-11-16)
493
-
494
- ### Features
495
-
496
- * Made it possible to use the "Premium" badge in the guide content. Closes [#962](https://github.com/cksource/umberto/issues/962). ([commit](https://github.com/cksource/umberto/commit/1e096fd156c8d7ef85f212f654e61dcca9bce44b))
497
-
498
- ### Other changes
499
-
500
- * Added the `<meta>` tag called `[name="x-generated-at"]` that contains the date of generation particular page. Closes [#958](https://github.com/cksource/umberto/issues/958). ([commit](https://github.com/cksource/umberto/commit/64a9dcd0acff412d0b00baf4afbbca196421100b))
501
-
502
-
503
- ## [1.16.0](https://github.com/cksource/umberto/compare/v1.15.0...v1.16.0) (2021-10-25)
504
-
505
- ### Features
506
-
507
- * Introduced tooltips for badges in the navigation. Closes [#954](https://github.com/cksource/umberto/issues/954). ([commit](https://github.com/cksource/umberto/commit/917ec5303bf9df6ae6e25d106d9a9066ce2bb606))
508
-
509
-
510
- ## [1.15.0](https://github.com/cksource/umberto/compare/v1.14.0...v1.15.0) (2021-10-18)
511
-
512
- ### Features
513
-
514
- * Introduced support for configurable badges in the navigation tree. ([commit](https://github.com/cksource/umberto/commit/fb71da3f8187f81baddf76e61a750f4fa76b0ef0))
515
-
516
- ### Other changes
517
-
518
- * When building partial docs (using the `--guides` or `--skip-guides` options), links will now be included whenever possible. Closes [#952](https://github.com/cksource/umberto/issues/952). ([commit](https://github.com/cksource/umberto/commit/fc873075d11036d79b744f73a02c8ec05d457aec))
519
-
520
-
521
- ## [1.14.0](https://github.com/cksource/umberto/compare/v1.13.0...v1.14.0) (2021-09-21)
522
-
523
- ### Features
524
-
525
- * Ability for filtering which guides should be processed by Umberto. Closes [#946](https://github.com/cksource/umberto/issues/946). ([commit](https://github.com/cksource/umberto/commit/e31caf8ee748d183c13c36cf231f105c817e4245))
526
-
527
-
528
- ## [1.13.0](https://github.com/cksource/umberto/compare/v1.12.1...v1.13.0) (2021-08-24)
529
-
530
- ### Features
531
-
532
- * Added support for the [`@callback`](https://jsdoc.app/tags-callback.html) tag in API docs. Closes [#789](https://github.com/cksource/umberto/issues/789), [#762](https://github.com/cksource/umberto/issues/762). ([commit](https://github.com/cksource/umberto/commit/f8eccf7063162716f2b12c474079bc0a1bb30b80))
533
-
534
-
535
- ## [1.12.1](https://github.com/cksource/umberto/compare/v1.12.0...v1.12.1) (2021-08-13)
536
-
537
- ### Bug fixes
538
-
539
- * The polyfill scripts must be loaded before other scripts in the `app.js` file produced by webpack. ([commit](https://github.com/cksource/umberto/commit/c074c26ad685c8513cf96f8ee52be320d3906ae7))
540
-
541
-
542
- ## [1.12.0](https://github.com/cksource/umberto/compare/v1.11.0...v1.12.0) (2021-08-13)
543
-
544
- ### Features
545
-
546
- * Added support for executing custom callbacks while the process of building the documentation is in progress. Closes [#938](https://github.com/cksource/umberto/issues/938). ([commit](https://github.com/cksource/umberto/commit/ff3f8ccae31f245c71a295413d801c0e2c531c4a))
547
-
548
- Currently, two hooks are supported:
549
-
550
- * `beforeHexo` - called before Hexo starts processing the documentation,
551
- * `afterHexo` - called when Hexo finished building the documentation.
552
-
553
- To use the new option, add the `hooks` object with the following properties (as an array with paths to the callbacks to execute) to the configuration file.
554
- * All code snippets contain an icon that allows copying the content of the snippet. Closes [#756](https://github.com/cksource/umberto/issues/756). ([commit](https://github.com/cksource/umberto/commit/c17d91f75cfbbeb4305e5925de27f851f39e1bd5))
555
- * Implemented the `extraScripts` option that allows executing additional scripts per project. Closes [#942](https://github.com/cksource/umberto/issues/942). ([commit](https://github.com/cksource/umberto/commit/31f76a6ca429e89772c3fad8363104398c9c9c65))
556
- * Implemented the warning banner feature available under `window.umberto.showWarningBanner( message )`. Closes [#940](https://github.com/cksource/umberto/issues/940). ([commit](https://github.com/cksource/umberto/commit/31f76a6ca429e89772c3fad8363104398c9c9c65))
557
-
558
- ### Other changes
559
-
560
- * Added a polyfill for the `Element#closest()` method. ([commit](https://github.com/cksource/umberto/commit/31f76a6ca429e89772c3fad8363104398c9c9c65))
561
- * Removed the `app-polyfill.js` script produced by Umberto. Now, the polyfill is included in the main `app.js` file. ([commit](https://github.com/cksource/umberto/commit/31f76a6ca429e89772c3fad8363104398c9c9c65))
562
- * Renamed internal util from `./src/tasks/get-extra-styles.js` to `./src/tasks/get-extra-files.js`. ([commit](https://github.com/cksource/umberto/commit/31f76a6ca429e89772c3fad8363104398c9c9c65))
563
- * Replaced text labels in SDK code samples with icons. ([commit](https://github.com/cksource/umberto/commit/c17d91f75cfbbeb4305e5925de27f851f39e1bd5))
564
- * The main script file (`app.js`) is now placed at the end of the document, before the closing `</body>` tag. ([commit](https://github.com/cksource/umberto/commit/31f76a6ca429e89772c3fad8363104398c9c9c65))
565
-
566
-
567
- ## [1.11.0](https://github.com/cksource/umberto/compare/v1.10.1...v1.11.0) (2021-08-04)
568
-
569
- ### Features
570
-
571
- * Added support for `{@exec path/to/function.js}` expression, that allows executing and inserting a value returned by a function specified in the `path/to/function.js` module directly from a single guide page. Closes [#930](https://github.com/cksource/umberto/issues/930). ([commit](https://github.com/cksource/umberto/commit/585b95d954a190f862e2bf0f03aff3d4a613c55f))
572
-
573
- ### Bug fixes
574
-
575
- * Fixed error message in insertchangelog.js not being a template literal. Closes [#932](https://github.com/cksource/umberto/issues/932). ([commit](https://github.com/cksource/umberto/commit/d7ee4799b46da9b7d4d4719a0048dbb3d1c0871e))
576
-
577
- ### Other changes
578
-
579
- * Used a badge instead of the 🆕 emoji in the sidebar tree. Closes [#935](https://github.com/cksource/umberto/issues/935). ([commit](https://github.com/cksource/umberto/commit/e274e7a0569b8b705700a9cb3aa479b9a562107a))
580
-
581
-
582
- ## [1.10.1](https://github.com/cksource/umberto/compare/v1.10.0...v1.10.1) (2021-07-13)
583
-
584
- ### Bug fixes
585
-
586
- * When processing a page without a project assignment, the `insertChangelog()` function should not throw an error. Closes [#931](https://github.com/cksource/umberto/issues/931). ([commit](https://github.com/cksource/umberto/commit/e66fee9930d745e767ff915e845ca2509bcb35b1))
587
-
588
-
589
- ## [1.10.0](https://github.com/cksource/umberto/compare/v1.9.1...v1.10.0) (2021-07-13)
590
-
591
- ### Features
592
-
593
- * Allow inserting a changelog into a guide by typing an expression: `{@changelog X.Y.Z}`. `X.Y.Z` must follow the [Semantic Versioning](https://semver.org/) specification. A project configuration must contain a path as `scripts.insert-changelog` to a module responsible for delivering changes. The callback must be a synchronous function. ([commit](https://github.com/cksource/umberto/commit/d8a3ea720fc7667efa9c4229778ed29850ea6b82))
594
-
595
-
596
- ## [1.9.1](https://github.com/cksource/umberto/compare/v1.9.0...v1.9.1) (2021-06-29)
597
-
598
- ### Bug fixes
599
-
600
- * Fixed invalid CSS definition for the `.editor-icon__image` selector. Closes [#922](https://github.com/cksource/umberto/issues/922). ([commit](https://github.com/cksource/umberto/commit/9b854e0fdb9fbb4b467e3c9dcb64b26581974ae6))
601
-
602
-
603
- ## [1.9.0](https://github.com/cksource/umberto/compare/v1.8.1...v1.9.0) (2021-06-24)
604
-
605
- ### Features
606
-
607
- * Allow inserting images, e.g. icons from an editor's toolbar by using `{@icon [@projectName] [npm path]}` expression. Closes [#915](https://github.com/cksource/umberto/issues/915). ([commit](https://github.com/cksource/umberto/commit/2b7c335cdb31399c2a3202a5bc60bd6e79133404))
608
-
609
- ### Bug fixes
610
-
611
- * Links to projects should be rendered if they point to project from they come. Closes [#914](https://github.com/cksource/umberto/issues/914). ([commit](https://github.com/cksource/umberto/commit/387991cb2864566508870d61d7a3f801012767b1))
612
-
613
- ### Other changes
614
-
615
- * Shortened the update indicator display time from 90 to 60 days. Closes [#916](https://github.com/cksource/umberto/issues/916). ([commit](https://github.com/cksource/umberto/commit/3794aaca153c82d3e5db252ebd3868c720be4d4d))
616
-
617
-
618
- ## [1.8.1](https://github.com/cksource/umberto/compare/v1.8.0...v1.8.1) (2021-06-10)
619
-
620
- ### Bug fixes
621
-
622
- * Added more languages (`Java`, `C#`, `Nginx`) to Prism.js. As a result, strings in the YAML snippets will be green (`#a6e22e`). Closes [#912](https://github.com/cksource/umberto/issues/912). ([commit](https://github.com/cksource/umberto/commit/90b6346bcaa72bbfede0435b270ec0d1d0e9371c))
623
-
624
-
625
- ## [1.8.0](https://github.com/cksource/umberto/compare/v1.7.2...v1.8.0) (2021-06-08)
626
-
627
- ### Features
628
-
629
- * Replaced Highlight.js with the Prism.js library for the code highlighting. Closes [#606](https://github.com/cksource/umberto/issues/606), [#167](https://github.com/cksource/umberto/issues/167). ([commit](https://github.com/cksource/umberto/commit/544a854b8840c3c7405ad9fe32215826892718f8))
630
-
631
-
632
- ## [1.7.2](https://github.com/cksource/umberto/compare/v1.7.1...v1.7.2) (2021-05-25)
633
-
634
- ### Bug fixes
635
-
636
- * The "validate-links.js" module that checks whether generated links are correct will resolve paths to files correctly. Closes [#909](https://github.com/cksource/umberto/issues/909). ([commit](https://github.com/cksource/umberto/commit/8c0a2e7550d1b3073ddc8df563e3b7e2662fe60d))
637
-
638
- Before the patch, the resolved path might have been invalid. It could happen if the absolute URL to the resource started with a directory that was also present in the destination directory (where the documentation was saved):
639
-
640
- * An absolute path where the documentation was generated: `/home/docs/build/docs`
641
- * An absolute URL from a guide: `/docs/ckeditor5/27.1.0/file.html`
642
- * Resolved path before the fix: `/home/build/docs/docs/ckeditor5/27.1.0/file.html`
643
- * And after the fix: `/home/docs/build/docs/ckeditor5/27.1.0/file.html`
644
-
645
-
646
- ## [1.7.1](https://github.com/cksource/umberto/compare/v1.7.0...v1.7.1) (2021-05-10)
647
-
648
- Internal changes only (updated dependencies, documentation, etc.).
649
-
650
-
651
- ## [1.7.0](https://github.com/cksource/umberto/compare/v1.6.6...v1.7.0) (2021-05-10)
652
-
653
- ### Features
654
-
655
- * Introduced a new indicator (🆕) in the project navigation informing users about new changes in a guide. To add the indicator, add the `modified_at` tag in the guide metadata. The date should follow the format `YYYY-MM-DD`. Starting from the date, the indicator will be visible over 90 days. Closes [#882](https://github.com/cksource/umberto/issues/882). ([commit](https://github.com/cksource/umberto/commit/90980392c6a1a4e107f797b72615e52b570cf53b))
656
-
657
-
658
- ## [1.6.6](https://github.com/cksource/umberto/compare/v1.6.5...v1.6.6) (2021-03-12)
659
-
660
- ### Bug fixes
661
-
662
- * Made sure only those headers in guides that have IDs/anchors get position: relative to avoid collisions with editor features. Closes [#899](https://github.com/cksource/umberto/issues/899). ([commit](https://github.com/cksource/umberto/commit/d816a78cbe2194b14c32510ca4669f273c57655b))
663
-
664
-
665
- ## [1.6.5](https://github.com/cksource/umberto/compare/v1.6.4...v1.6.5) (2021-03-08)
666
-
667
- ### Bug fixes
668
-
669
- * Loose the regexp for extracting a URL while preparing the sitemap. Closes [#897](https://github.com/cksource/umberto/issues/897). ([commit](https://github.com/cksource/umberto/commit/7dcde271d7beaf4ddd71f77e29b0376e45543629))
670
-
671
-
672
- ## [1.6.4](https://github.com/cksource/umberto/compare/v1.6.3...v1.6.4) (2021-01-27)
673
-
674
- ### Other changes
675
-
676
- * Links to the "ckeditor.com" domain should not use the `target="_blank"` attribute. Closes [#879](https://github.com/cksource/umberto/issues/879). ([commit](https://github.com/cksource/umberto/commit/72c98327c8e3bdcf3a5502e1fb306490e54e27d8))
677
-
678
-
679
- ## [1.6.3](https://github.com/cksource/umberto/compare/v1.6.2...v1.6.3) (2020-12-01)
680
-
681
- ### Other changes
682
-
683
- * Upgraded the version of the `Highlight.js` library. Closes [#887](https://github.com/cksource/umberto/issues/887). ([commit](https://github.com/cksource/umberto/commit/bead5824340602af1ee7efc588539832e7c54ef7))
684
-
685
-
686
- ## [1.6.2](https://github.com/cksource/umberto/compare/v1.6.1...v1.6.2) (2020-11-16)
687
-
688
- ### Bug fixes
689
-
690
- * Assets (relative) paths inside snippets in SDK should be generated properly. Closes [#881](https://github.com/cksource/umberto/issues/881). ([commit](https://github.com/cksource/umberto/commit/69d45b2c4a6f3b05113a24006414645748642c7b))
691
-
692
-
693
- ## [1.6.1](https://github.com/cksource/umberto/compare/v1.6.0...v1.6.1) (2020-11-09)
694
-
695
- ### Bug fixes
696
-
697
- * The documentation builder should work on Windows environments. Closes [#555](https://github.com/cksource/umberto/issues/555). ([commit](https://github.com/cksource/umberto/commit/c99caeef76f49f8789c1bc0687d5bc8297b4a67a))
698
-
699
-
700
- ## [1.6.0](https://github.com/cksource/umberto/compare/v1.5.4...v1.6.0) (2020-09-01)
701
-
702
- ### Features
703
-
704
- * Ability to hide the `See source` link in the API docs when used the `@skipsource` annotation. Closes [#864](https://github.com/cksource/umberto/issues/864). ([commit](https://github.com/cksource/umberto/commit/52278db828eea628c1bdae70e46db493a30802e2))
705
-
706
-
707
- ## [1.5.4](https://github.com/cksource/umberto/compare/v1.5.3...v1.5.4) (2020-08-20)
708
-
709
- ### Other changes
710
-
711
- * Do not copy "docs/constants.js" file while preparing the documentation structure. ([commit](https://github.com/cksource/umberto/commit/037efa02f53cfb4a270f3c630b62e48461f4ece8))
712
-
713
-
714
- ## [1.5.3](https://github.com/cksource/umberto/compare/v1.5.2...v1.5.3) (2020-08-20)
715
-
716
- ### Other changes
717
-
718
- * The Snippet object will contain an absolute path to the source (`*.md`) file that uses the `{@snippet ...}` tags. ([commit](https://github.com/cksource/umberto/commit/ad14c5a364c347aa73713ed3743fb13c9e8692d5))
719
-
720
-
721
- ## [1.5.2](https://github.com/cksource/umberto/compare/v1.5.1...v1.5.2) (2020-07-21)
722
-
723
- ### Bug fixes
724
-
725
- * Fixed links for internal module functions. Part of [ckeditor/ckeditor5#7575](https://github.com/ckeditor/ckeditor5/issues/7575). ([commit](https://github.com/cksource/umberto/commit/29c5ab10365a7c1a518bae0dfa50c9b4e81d3389))
726
-
727
-
728
- ## [1.5.1](https://github.com/cksource/umberto/compare/v1.5.0...v1.5.1) (2020-07-21)
729
-
730
- ### Bug fixes
731
-
732
- * URLs to method and event names should be escaped. E.g. curly braces in the following name: `set:{property}` should be escaped and looks like: `set:%7Bproperty%7D`. Closes [ckeditor/ckeditor5#7653](https://github.com/ckeditor/ckeditor5/issues/7653). ([commit](https://github.com/cksource/umberto/commit/f4b250468d155df7500aa8835a956d907cc880c0))
733
-
734
-
735
- ## [1.5.0](https://github.com/cksource/umberto/compare/v1.4.1...v1.5.0) (2020-07-13)
736
-
737
- ### Other changes
738
-
739
- * Upgraded dependencies and aligned the code to the changes in dependencies. The documentation should be built properly on Node 14. Closes [ckeditor/ckeditor5#7365](https://github.com/ckeditor/ckeditor5/issues/7365). ([commit](https://github.com/cksource/umberto/commit/5834007bd377f26cfe11e0d602ede127b976a287))
740
-
741
-
742
- ## [1.4.1](https://github.com/cksource/umberto/compare/v1.4.0...v1.4.1) (2020-06-22)
743
-
744
- ### Bug fixes
745
-
746
- * Removed "process.exit()" that was called if validation passes without any error. Closes [#867](https://github.com/cksource/umberto/issues/867). ([7038feb](https://github.com/cksource/umberto/commit/7038feb))
747
-
748
-
749
- ## [1.4.0](https://github.com/cksource/umberto/compare/v1.3.2...v1.4.0) (2020-06-19)
750
-
751
- ### Features
752
-
753
- * Added the `--strict` flag to fail docs build if there are warnings in the API docs. Closes [#865](https://github.com/cksource/umberto/issues/865). ([7baf236](https://github.com/cksource/umberto/commit/7baf236))
754
-
755
-
756
- ## [1.3.2](https://github.com/cksource/umberto/compare/v1.3.1...v1.3.2) (2020-05-26)
757
-
758
- ### Bug fixes
759
-
760
- * Fixed invalid HTML markup in navigation tree. Closes [#780](https://github.com/cksource/umberto/issues/780). ([2e55f85](https://github.com/cksource/umberto/commit/2e55f85))
761
- * Fixed invalid links in the API navigation tree. Main packages items were not generated as links if they came outside `ckeditor5` repository or didn't start with the `ckeditor5-` prefix. Closes [#821](https://github.com/cksource/umberto/issues/821). ([70aa3c1](https://github.com/cksource/umberto/commit/70aa3c1))
762
-
763
- ### Other changes
764
-
765
- * The "See source" button on API docs won't be displayed for private `ckeditor5` packages. ([c4e8041](https://github.com/cksource/umberto/commit/c4e8041))
766
-
767
-
768
- ## [1.3.1](https://github.com/cksource/umberto/compare/v1.3.0...v1.3.1) (2020-05-25)
769
-
770
- ### Bug fixes
771
-
772
- * Fixed invalid contribute URLs in the mono repository project. Closes [#860](https://github.com/cksource/umberto/issues/860). ([481830b](https://github.com/cksource/umberto/commit/481830b))
773
-
774
-
775
- ## [1.3.0](https://github.com/cksource/umberto/compare/v1.2.4...v1.3.0) (2020-05-14)
776
-
777
- ### Features
778
-
779
- * Allowed umberto to check multiple packages directories. See [ckeditor/ckeditor5#6787](https://github.com/ckeditor/ckeditor5/issues/6787). ([18ff868](https://github.com/cksource/umberto/commit/18ff868))
780
-
781
-
782
- ## [1.2.4](https://github.com/cksource/umberto/compare/v1.2.3...v1.2.4) (2020-04-16)
783
-
784
- ### Other changes
785
-
786
- * Locked the version of jQuery due to a breaking change in the minor version. Closes [#857](https://github.com/cksource/umberto/issues/857). ([53fa218](https://github.com/cksource/umberto/commit/53fa218))
787
-
788
-
789
- ## [1.2.3](https://github.com/cksource/umberto/compare/v1.2.2...v1.2.3) (2020-03-17)
790
-
791
- ### Bug fixes
792
-
793
- * Replace `<` and `>` with HTML entities in the title section. Closes [#853](https://github.com/cksource/umberto/issues/853). ([bd72b50](https://github.com/cksource/umberto/commit/bd72b50))
794
-
795
-
796
- ## [1.2.2](https://github.com/cksource/umberto/compare/v1.2.1...v1.2.2) (2020-02-26)
797
-
798
- ### Bug fixes
799
-
800
- * Disabled server-side rendering of snippets since their syntax is being modified and they are no longer valid. Closes [#850](https://github.com/cksource/umberto/issues/850). Closes [#823](https://github.com/cksource/umberto/issues/823). ([26185ec](https://github.com/cksource/umberto/commit/26185ec))
801
-
802
-
803
- ## [1.2.1](https://github.com/cksource/umberto/compare/v1.2.0...v1.2.1) (2020-01-16)
804
-
805
- ### Bug fixes
806
-
807
- * Extended style definitions to cover all CKFinder connectors. Closes [#836](https://github.com/cksource/umberto/issues/836). ([1184075](https://github.com/cksource/umberto/commit/1184075))
808
- * Formatted styles should not apply to `<code>` inside `<pre>`. Closes [#841](https://github.com/cksource/umberto/issues/841). ([b8c9196](https://github.com/cksource/umberto/commit/b8c9196))
809
- * Invalid canonical URLs for ckeditor4 examples pages. Closes [#833](https://github.com/cksource/umberto/issues/833). ([880da38](https://github.com/cksource/umberto/commit/880da38))
810
-
811
- ### Other changes
812
-
813
- * Changed monospace font stack in order to unify the design of the menu across all browsers. Closes [#843](https://github.com/cksource/umberto/issues/843). ([f3204c3](https://github.com/cksource/umberto/commit/f3204c3))
814
-
815
-
816
- ## [1.2.0](https://github.com/cksource/umberto/compare/v1.1.3...v1.2.0) (2019-11-19)
817
-
818
- ### Features
819
-
820
- * Introduced support for highlighting snippets wrote in Gradle. Closes [#834](https://github.com/cksource/umberto/issues/834). ([a67e507](https://github.com/cksource/umberto/commit/a67e507))
821
-
822
- ### Bug fixes
823
-
824
- * Code snippets inside `.ck-content` (editor content) should not be auto–highlighted by hljs. Closes [#838](https://github.com/cksource/umberto/issues/838). ([94128df](https://github.com/cksource/umberto/commit/94128df))
825
- * The title of a page in a menu is now sorted correctly if the `menu-title` option was provided. Closes [#831](https://github.com/cksource/umberto/issues/831). ([aa8c442](https://github.com/cksource/umberto/commit/aa8c442))
826
-
827
-
828
- ## [1.1.3](https://github.com/cksource/umberto/compare/v1.1.2...v1.1.3) (2019-10-07)
829
-
830
- ### Bug fixes
831
-
832
- * "Contribute URL" and "Issue URL" don't update their enndings. Closes [#773](https://github.com/cksource/umberto/issues/773). ([a356fdf](https://github.com/cksource/umberto/commit/a356fdf))
833
- * The "See source" link was not provided for the `ckeditor4-docs` repository when `ckeditor4` name was used. Closes [#826](https://github.com/cksource/umberto/issues/826). ([fcefc18](https://github.com/cksource/umberto/commit/fcefc18))
834
-
835
-
836
- ## [1.1.2](https://github.com/cksource/umberto/compare/v1.1.1...v1.1.2) (2019-08-21)
837
-
838
- ### Bug fixes
839
-
840
- * Support for RTL lists. ([3d6537a](https://github.com/cksource/umberto/commit/3d6537a))
841
-
842
-
843
- ## [1.1.1](https://github.com/cksource/umberto/compare/v1.1.0...v1.1.1) (2019-07-30)
844
-
845
- ### Bug fixes
846
-
847
- * Removed resetting `list-style` type to none. Closes [#814](https://github.com/cksource/umberto/issues/814). ([41a4a49](https://github.com/cksource/umberto/commit/41a4a49))
848
- * The double ending brackets `}}` won't be replaced with `{% raw|endraw %}` tags if they are followed by `%`. Closes [#811](https://github.com/cksource/umberto/issues/811). ([6a56d0e](https://github.com/cksource/umberto/commit/6a56d0e))
849
-
850
- ### Other changes
851
-
852
- * Added styles for `<abbr>` element. Closes [#696](https://github.com/cksource/umberto/issues/696). ([f7a748a](https://github.com/cksource/umberto/commit/f7a748a))
853
- * Updated dependencies and releasing scripts. ([6b2066a](https://github.com/cksource/umberto/commit/6b2066a))
854
-
855
-
856
- ## [1.1.0](https://github.com/cksource/umberto/compare/v1.0.0...v1.1.0) (2019-07-15)
857
-
858
- ### Features
859
-
860
- * Introduced an option for customizing a "Contribute to guide" URL. Now you can specify the URL as `github.contributeUrl` in the `umberto.json` file. Closes [#773](https://github.com/cksource/umberto/issues/773). ([5498786](https://github.com/cksource/umberto/commit/5498786))
861
- * Introduced an option for customizing a "Report an issue" URL. Now you can specify the URL as `github.reportIssueUrl` in the `umberto.json` file. Closes [#772](https://github.com/cksource/umberto/issues/772). ([dfafa75](https://github.com/cksource/umberto/commit/dfafa75))
862
- * Introduced support for highlighting snippets wrote in Java. Closes [#806](https://github.com/cksource/umberto/issues/806). ([844ad5b](https://github.com/cksource/umberto/commit/844ad5b))
863
-
864
- ### Bug fixes
865
-
866
- * Correctly wrap an excerpt of API item. Closes [#791](https://github.com/cksource/umberto/issues/791). ([691ddee](https://github.com/cksource/umberto/commit/691ddee))
867
- * Deprecated items will be displayed properly at API pages. Closes [#799](https://github.com/cksource/umberto/issues/799). ([e3e329b](https://github.com/cksource/umberto/commit/e3e329b))
868
- * Properties defined as `@typedef` will have a proper anchor. Closes [#796](https://github.com/cksource/umberto/issues/796). ([da9a3f0](https://github.com/cksource/umberto/commit/da9a3f0))
869
- * Table should be displayed properly with a code block. Closes [#794](https://github.com/cksource/umberto/issues/794). ([ce36599](https://github.com/cksource/umberto/commit/ce36599))
870
-
871
-
872
- ## [1.0.0](https://github.com/cksource/umberto/compare/v0.23.1...v1.0.0) (2019-04-23)
873
-
874
- ### Features
875
-
876
- * Improved a mechanism that builds snippets for a specified project. Instead of calling this function n-times, now it will be called once per projects. It should not produce out of memory error anymore. Closes [#749](https://github.com/cksource/umberto/issues/749). ([9adf5fa](https://github.com/cksource/umberto/commit/9adf5fa))
877
-
878
- The `SnippetAdapter` function is being called with 3 parameters and it must return an instance of `Promise`:
879
- 1. `snippetsCollection` which is a collection of snippets (pure JavaScript objects) that Umberto found in Markdown files. See `scripts/filter/after-post-render/snippets.js` in order to read the type definition. It is placed at the end of the file.
880
- 2. `snippetOptions` which is an object that is being passed to Umberto at the beginning of the script.
881
- 3. `umbertoHelpers` which is an object that contains helpers that can be useful for parsing snippets.
882
-
883
-
884
- ## [0.23.1](https://github.com/cksource/umberto/compare/v0.23.0...v0.23.1) (2019-04-17)
885
-
886
- ### Bug fixes
887
-
888
- * `See source` link should be displayed properly. Closes [#788](https://github.com/cksource/umberto/issues/788).
889
-
890
-
891
- ## [0.23.0](https://github.com/cksource/umberto/compare/v0.22.0...v0.23.0) (2019-04-11)
892
-
893
- ### Features
894
-
895
- * Changed the lightbox library to the `medium-zoom`. Closes [#781](https://github.com/cksource/umberto/issues/781). ([c5e47c4](https://github.com/cksource/umberto/commit/c5e47c4))
896
-
897
- ### Bug fixes
898
-
899
- * Excerpt of API expanded item should be displayed properly. Closes [#784](https://github.com/cksource/umberto/issues/784). ([5b433fc](https://github.com/cksource/umberto/commit/5b433fc))
900
-
901
-
902
- ## [0.22.0](https://github.com/cksource/umberto/compare/v0.21.0...v0.22.0) (2019-04-01)
903
-
904
- ### Features
905
-
906
- * Lightbox will be enabled by default for the `@{img}` tag. Closes [#771](https://github.com/cksource/umberto/issues/771). ([886f247](https://github.com/cksource/umberto/commit/886f247))
907
-
908
- ### Other changes
909
-
910
- * Added the `CHANGELOG.md` file which contains entries downloaded from the "Releases" section from Github. Introduced release tools that automate the releasing process. Closes [#767](https://github.com/cksource/umberto/issues/767). ([f22e02f](https://github.com/cksource/umberto/commit/f22e02f))
911
-
912
-
913
- ## [0.21.0](https://github.com/cksource/umberto/compare/v0.20.1...v0.21.0) (2019-03-25)
914
-
915
- ### Minor
916
-
917
- * [#769](https://github.com/cksource/umberto/issues/769) - Remove and update dependencies
918
- * [#763](https://github.com/cksource/umberto/issues/763) - Add lightbox
919
-
920
-
921
- ## [0.20.1](https://github.com/cksource/umberto/compare/v0.20.0...v0.20.1) (2019-02-28)
922
-
923
- ### Patch
924
-
925
- * [#759](https://github.com/cksource/umberto/issues/759) update highlight.js to support YAML and SQL syntax
926
-
927
-
928
- ## [0.20.0](https://github.com/cksource/umberto/compare/v0.19.3...v0.20.0) (2019-02-27)
929
-
930
- ### Minor
931
-
932
- * [#710](https://github.com/cksource/umberto/issues/710) Feedback widget implementation
933
-
934
- ### Patch
935
-
936
- * [#753](https://github.com/cksource/umberto/issues/753) Fix unrecognized syntax for C#
937
- * [#751](https://github.com/cksource/umberto/issues/751) Prevent of bug for wrong GH links
938
- * [#638](https://github.com/cksource/umberto/issues/638) Disabled github header buttons on mobile devices
939
-
940
-
941
- ## [0.19.3](https://github.com/cksource/umberto/compare/v0.19.2...v0.19.3) (2019-02-18)
942
-
943
- ### Patch
944
-
945
- * Fix bug with variables used for single projects. Related to [#697](https://github.com/cksource/umberto/issues/697) and https://github.com/ckeditor/ckeditor-docs/pull/205
946
-
947
-
948
- ## [0.19.2](https://github.com/cksource/umberto/compare/v0.19.1...v0.19.2) (2019-02-15)
949
-
950
- ### Patch
951
-
952
- * [#738](https://github.com/cksource/umberto/issues/738) Improved "See source" link appearance
953
- * [#745](https://github.com/cksource/umberto/issues/745) Fix bug with missing link for CKEditor4 docs
954
- * [#729](https://github.com/cksource/umberto/issues/729) Remove highlight from search window
955
-
956
-
957
- ## [0.19.1](https://github.com/cksource/umberto/compare/v0.19.0...v0.19.1) (2019-02-08)
958
-
959
- ### Patch
960
-
961
- * [#735](https://github.com/cksource/umberto/issues/735) Update footer date
962
- * [#739](https://github.com/cksource/umberto/issues/739) Remove "Overrides" link
963
- * [#673](https://github.com/cksource/umberto/issues/673) Fix problem with navigation, which could display empty categories
964
-
965
-
966
- ## [0.19.0](https://github.com/cksource/umberto/compare/v0.18.0...v0.19.0) (2019-02-01)
967
-
968
- ### Minor
969
-
970
- * [#629](https://github.com/cksource/umberto/issues/629) Simplify dependencies - remove postinstall script
971
-
972
- ### Patch
973
-
974
- * [#730](https://github.com/cksource/umberto/issues/730) Improve way how git hash are obtained
975
-
976
-
977
- ## [0.18.0](https://github.com/cksource/umberto/compare/v0.17.0...v0.18.0) (2019-01-25)
978
-
979
- ### Minor
980
-
981
- * [#357](https://github.com/cksource/umberto/issues/357) Added observable icon for API badge.
982
- * [#688](https://github.com/cksource/umberto/issues/688) Add "related" section to methods and properties description.
983
-
984
- ### Patch
985
-
986
- * [#494](https://github.com/cksource/umberto/issues/494) Long words in titles should be broken.
987
- * [#720](https://github.com/cksource/umberto/issues/720) Dark theme API docs visual issues
988
-
989
-
990
- ## [0.17.0](https://github.com/cksource/umberto/compare/v0.16.1...v0.17.0) (2019-01-18)
991
-
992
- ### Minor
993
-
994
- * [#721](https://github.com/cksource/umberto/issues/721) Define printing styles
995
- * [#337](https://github.com/cksource/umberto/issues/337) Add link to GitHub from which given API docs are generated
996
-
997
- ### Patch
998
-
999
- * [#723](https://github.com/cksource/umberto/issues/723) Fix: Increased spacing for a product menu item
1000
-
1001
-
1002
- ## [0.16.1](https://github.com/cksource/umberto/compare/v0.16.0...v0.16.1) (2019-01-10)
1003
-
1004
- ### Patch
1005
-
1006
- * [#711](https://github.com/cksource/umberto/issues/711) - Make API entries visible by default
1007
- * [#715](https://github.com/cksource/umberto/issues/715) - Correct style for CKE4 examples
1008
- * [#713](https://github.com/cksource/umberto/issues/713) - Fix search in Examples of CKEditor4
1009
- * [#709](https://github.com/cksource/umberto/issues/709), [#707](https://github.com/cksource/umberto/issues/707) - Dark theme improvements
1010
-
1011
-
1012
- ## [0.16.0](https://github.com/cksource/umberto/compare/v0.15.0...v0.16.0) (2018-12-21)
1013
-
1014
- ### Minor
1015
-
1016
- * [#706](https://github.com/cksource/umberto/issues/706) Introduced dark mode
1017
-
1018
-
1019
- ## [0.15.0](https://github.com/cksource/umberto/compare/v0.14.0...v0.15.0) (2018-12-21)
1020
-
1021
- ### Minor
1022
-
1023
- * [#597](https://github.com/cksource/umberto/issues/597) - Introduce `<blockquote>` styling
1024
- * [#697](https://github.com/cksource/umberto/issues/697) - Add macros and variables support in Umberto
1025
-
1026
- ### Patch
1027
-
1028
- * [#690](https://github.com/cksource/umberto/issues/690) - Fixed: `Get Sample Source Code` with wrong offset
1029
- * [#567](https://github.com/cksource/umberto/issues/567) - Fixed: Parameters are not displayed in properties of a class
1030
-
1031
-
1032
- ## [0.14.0](https://github.com/cksource/umberto/compare/v0.13.4...v0.14.0) (2018-12-07)
1033
-
1034
- ### Minor
1035
-
1036
- * [#695](https://github.com/cksource/umberto/issues/695) - Provide support for custom tags in Examples, to have better control over code outputted as "Get source code"
1037
-
1038
-
1039
- ## [0.13.4](https://github.com/cksource/umberto/compare/v0.13.3...v0.13.4) (2018-12-05)
1040
-
1041
- ### Patch
1042
-
1043
- * [#687](https://github.com/cksource/umberto/issues/687) - Another approach to improve link styling for documentation inside CKE4 examples.
1044
-
1045
-
1046
- ## [0.13.3](https://github.com/cksource/umberto/compare/v0.13.2...v0.13.3) (2018-12-05)
1047
-
1048
- ### Patch
1049
-
1050
- * [#685](https://github.com/cksource/umberto/issues/685) Fix link validator to check also non-html files
1051
-
1052
-
1053
- ## [0.13.2](https://github.com/cksource/umberto/compare/v0.13.1...v0.13.2) (2018-12-05)
1054
-
1055
- ### Patch
1056
-
1057
- * [#681](https://github.com/cksource/umberto/issues/681) - improve styling of anchors in examples of CKEditor4
1058
- * [#683](https://github.com/cksource/umberto/issues/683) - Add support for tag with `linkexample` as replacement to former `linksdk`
1059
-
1060
-
1061
- ## [0.13.1](https://github.com/cksource/umberto/compare/v0.13.0...v0.13.1) (2018-11-30)
1062
-
1063
- ### Patch
1064
-
1065
- * [#678](https://github.com/cksource/umberto/issues/678) - Fix: Left navigation stop being scrolled
1066
- * Add source map for app.js
1067
-
1068
-
1069
- ## [0.13.0](https://github.com/cksource/umberto/compare/v0.12.1...v0.13.0) (2018-11-30)
1070
-
1071
- ### Minor
1072
-
1073
- * [#615](https://github.com/cksource/umberto/issues/615): Add option to build only one snippet
1074
- * [#611](https://github.com/cksource/umberto/issues/611), [#674](https://github.com/cksource/umberto/issues/674): Improve link validator to check hash fragment.
1075
-
1076
- ### Patch
1077
-
1078
- * [#648](https://github.com/cksource/umberto/issues/648): Fix: missing required og tags on pages
1079
- * [#666](https://github.com/cksource/umberto/issues/666): Fix: misaligned search input on tablet width
1080
- * [#631](https://github.com/cksource/umberto/issues/631): Fix: highlighter issue, where not all languages was properly highlighted
1081
- * [#619](https://github.com/cksource/umberto/issues/619): Fix: Added extra top-margin to the main navigation
1082
- * [#563](https://github.com/cksource/umberto/issues/563): Fix: Enlarged link space in the API subheader.
1083
- * [#469](https://github.com/cksource/umberto/issues/469): Fix: Bolded method name in the API collapse list.
1084
-
1085
-
1086
- ## [0.12.1](https://github.com/cksource/umberto/compare/v0.12.0...v0.12.1) (2018-11-20)
1087
-
1088
- ### Patch
1089
-
1090
- * [#662](https://github.com/cksource/umberto/issues/662) - Fix: missing data attribute for Example pages for CKE4
1091
- * [#661](https://github.com/cksource/umberto/issues/661) - Fix: properly aligned hamburger menu without flex support
1092
- * [#626](https://github.com/cksource/umberto/issues/626) - Fix: Wrong css for code blocks in narrow screens
1093
-
1094
-
1095
- ## [0.12.0](https://github.com/cksource/umberto/compare/v0.11.0...v0.12.0) (2018-11-27)
1096
-
1097
- ### Minor
1098
-
1099
- * [#633](https://github.com/cksource/umberto/issues/633) [#634](https://github.com/cksource/umberto/issues/634) Feature: Introduced breadcrumbs for mobile design
1100
-
1101
- ### Patch
1102
-
1103
- * [#639](https://github.com/cksource/umberto/issues/639) Fix: Improved design of mobile navigation menu.
1104
- * [#656](https://github.com/cksource/umberto/issues/656) Fix: Lack of navigation of SDK on mobile devices
1105
-
1106
-
1107
- ## [0.11.0](https://github.com/cksource/umberto/compare/v0.10.0...v0.11.0) (2018-11-14)
1108
-
1109
- ### Minor
1110
-
1111
- * [#616](https://github.com/cksource/umberto/issues/616) Provide option to hide linking errors for ignored projects
1112
-
1113
- ### Patch
1114
-
1115
- * [#620](https://github.com/cksource/umberto/issues/620) Fixed: Some links don't have hover style in the navigation menu
1116
- * [#637](https://github.com/cksource/umberto/issues/637) Fixed: focus ring does not match searchbox on iOS
1117
- * [#625](https://github.com/cksource/umberto/issues/625) Fixed: highlighter doesn't work when docs was not served from `/docs` path
1118
-
1119
-
1120
- ## [0.10.0](https://github.com/cksource/umberto/compare/v0.9.1...v0.10.0) (2018-11-09)
1121
-
1122
- ### Minor
1123
-
1124
- * [#588](https://github.com/cksource/umberto/issues/588) - New mobile layout for Umberto
1125
-
1126
-
1127
- ## [0.9.1](https://github.com/cksource/umberto/compare/v0.9.0...v0.9.1) (2018-11-09)
1128
-
1129
- ### Patch
1130
-
1131
- * [#617](https://github.com/cksource/umberto/issues/617) - hotfix for top navigation to work properly with CKE5 snippets
1132
-
1133
-
1134
- ## [0.9.0](https://github.com/cksource/umberto/compare/v0.8.2...v0.9.0) (2018-10-18)
1135
-
1136
- ### Minor
1137
-
1138
- * [#595](https://github.com/cksource/umberto/issues/595) - add support for meta-description tag in API docs
1139
- * [#594](https://github.com/cksource/umberto/issues/594) - Extend meta tags with DC and twitter cards
1140
- * [#607](https://github.com/cksource/umberto/issues/607) - Update dependencies (webpack, babel, etc.), move highlighter to worker, what effects in reducing library size
1141
- * [#580](https://github.com/cksource/umberto/issues/580) - Introduce new docs design. Thanks to @dkonopka.
1142
-
1143
-
1144
- ## [0.8.2](https://github.com/cksource/umberto/compare/v0.8.1...v0.8.2) (2018-10-05)
1145
-
1146
- ### Patch
1147
-
1148
- * [#603](https://github.com/cksource/umberto/issues/603) - Fix wrongly created canonical urls.
1149
-
1150
-
1151
- ## [0.8.1](https://github.com/cksource/umberto/compare/v0.8.0...v0.8.1) (2018-09-28)
1152
-
1153
- ### Patch
1154
-
1155
- * [#585](https://github.com/cksource/umberto/issues/585) Update typography in headers.
1156
- * [#556](https://github.com/cksource/umberto/issues/556) Update year in footer
1157
- * [#8](https://github.com/cksource/umberto/issues/8) Add w3c validation flag which force Umberto to validate builded files
1158
- * [#559](https://github.com/cksource/umberto/issues/559) Add possibility to watch files after building documentation. Building process is not finishing and watch guides files for changes.
1159
-
1160
-
1161
- ## [0.8.0](https://github.com/cksource/umberto/compare/v0.7.3...v0.8.0) (2018-09-07)
1162
-
1163
- ### Minor
1164
-
1165
- * Allow on building Samples from CKEditor4 (https://github.com/ckeditor/ckeditor-sdk/issues/259)
1166
-
1167
- ### Patch
1168
-
1169
- * [#581](https://github.com/cksource/umberto/issues/581) - Fix: wrong link generation for `@fire` keywords
1170
-
1171
-
1172
- ## [0.7.3](https://github.com/cksource/umberto/compare/v0.7.2...v0.7.3) (2018-08-30)
1173
-
1174
- ### Patch
1175
-
1176
- * [#579](https://github.com/cksource/umberto/issues/579) - double curly brackets are now escaped during markdown files processing.
1177
-
1178
-
1179
- ## [0.7.2](https://github.com/cksource/umberto/compare/v0.7.1...v0.7.2) (2018-08-06)
1180
-
1181
- ### Patch
1182
-
1183
- * [#573](https://github.com/cksource/umberto/issues/573) - remove unnecessary bracket in code
1184
- * [#575](https://github.com/cksource/umberto/issues/575) - fix wrongly created canonical paths together with og image
1185
-
1186
-
1187
- ## [0.7.1](https://github.com/cksource/umberto/compare/v0.7.0...v0.7.1) (2018-08-02)
1188
-
1189
- ### Patch
1190
-
1191
- * [#569](https://github.com/cksource/umberto/issues/569) - Fix API navigation styling
1192
-
1193
-
1194
- ## [0.7.0](https://github.com/cksource/umberto/compare/v0.6.4...v0.7.0) (2018-07-30)
1195
-
1196
- ### Minor
1197
-
1198
- * [#538](https://github.com/cksource/umberto/issues/538) - add different table of content styling
1199
- * [#568](https://github.com/cksource/umberto/issues/568) - add support of Google Tag Manager
1200
-
1201
-
1202
- ## [0.6.4](https://github.com/cksource/umberto/compare/v0.6.3...v0.6.4) (2018-07-24)
1203
-
1204
- ### Patch
1205
-
1206
- * [#548](https://github.com/cksource/umberto/issues/548) - Symlinks are now created as relative paths
1207
- * [#549](https://github.com/cksource/umberto/issues/549) - `app-polyfill.js` is now skipped when dev flag is turned on
1208
- * [#560](https://github.com/cksource/umberto/issues/560) - update documentation with information about possibility of redirects
1209
- * [#552](https://github.com/cksource/umberto/issues/552) - fix alignment of dropdown navigation
1210
- * [#558](https://github.com/cksource/umberto/issues/558) - fix encoding entities in codeblock
1211
- * [#561](https://github.com/cksource/umberto/issues/561) - fix styling in search box
1212
-
1213
-
1214
- ## [0.6.3](https://github.com/cksource/umberto/compare/v0.6.2...v0.6.3) (2018-07-03)
1215
-
1216
- ### Patch
1217
-
1218
- * [#550](https://github.com/cksource/umberto/issues/550) - Fix order of guides displayed in navigation tree.
1219
-
1220
-
1221
- ## [0.6.2](https://github.com/cksource/umberto/compare/v0.6.1...v0.6.2) (2018-07-02)
1222
-
1223
- ### Patch
1224
-
1225
- * [#547](https://github.com/cksource/umberto/issues/547) - correct bug where navigation tree had bad template, what caus scrolling issue for navigation tree.
1226
-
1227
-
1228
- ## [0.6.1](https://github.com/cksource/umberto/compare/v0.6.0...v0.6.1) (2018-06-28)
1229
-
1230
- ### Patch
1231
-
1232
- * [#537](https://github.com/cksource/umberto/issues/537) - provide better time measurements during building process showed after activating `verbose` option.
1233
- * [#551](https://github.com/cksource/umberto/issues/551) - prevent of throwing error when links are created between projects in single builds
1234
-
1235
-
1236
- ## [0.6.0](https://github.com/cksource/umberto/compare/v0.5.0...v0.6.0) (2018-06-08)
1237
-
1238
- ### Features
1239
-
1240
- [#505](https://github.com/cksource/umberto/issues/505) - Provide shortcut <kbd>Shift</kbd>+<kbd>D</kbd> for displaying longnames in documentation.
1241
-
1242
- ### Patch
1243
-
1244
- [#351](https://github.com/cksource/umberto/issues/351) - Align npm badge to the left.
1245
- [#540](https://github.com/cksource/umberto/issues/540) - Replace font to look nicer.
1246
-
1247
-
1248
- ## [0.5.0](https://github.com/cksource/umberto/compare/v0.4.9...v0.5.0) (2018-05-17)
1249
-
1250
- ### Features
1251
-
1252
- * [#451](https://github.com/cksource/umberto/issues/451) - add dropdown menu with properties/methods/events.
1253
- * links for `latest` will be now generated automatically.
1254
-
1255
- ### Bug fixes
1256
-
1257
- * [#479](https://github.com/cksource/umberto/issues/479) - correct color of info-boxes in guides.
1258
- * [#328](https://github.com/cksource/umberto/issues/328) - correct position of expand arrow.
1259
-
1260
-
1261
- ## [0.4.9](https://github.com/cksource/umberto/compare/v0.4.7...v0.4.9) (2018-04-27)
1262
-
1263
- * [#530](https://github.com/cksource/umberto/issues/530) - add possibility to output symbolic links with `latest`.
1264
-
1265
-
1266
- ## [0.4.7](https://github.com/cksource/umberto/compare/v0.4.6...v0.4.7) (2018-04-26)
1267
-
1268
- ### Patch
1269
-
1270
- * [#532](https://github.com/cksource/umberto/issues/532) - Add configuration option `startPage` which will be used as links in dropdown menu for given project.
1271
-
1272
-
1273
- ## [0.4.6](https://github.com/cksource/umberto/compare/v0.4.5...v0.4.6) (2018-04-23)
1274
-
1275
- ### Patch
1276
-
1277
- [#529](https://github.com/cksource/umberto/issues/529) - Fix highlighting of active element in navigation tree
1278
-
1279
-
1280
- ## [0.4.5](https://github.com/cksource/umberto/compare/v0.4.4...v0.4.5) (2018-04-20)
1281
-
1282
- ### Patch
1283
-
1284
- * [#527](https://github.com/cksource/umberto/issues/527) - Allow to override or disable default `contributeUrl` and `issuesUrl` in specific guides.
1285
-
1286
-
1287
- ## [0.4.4](https://github.com/cksource/umberto/compare/v0.4.3...v0.4.4) (2018-04-19)
1288
-
1289
- ### Patch
1290
-
1291
- * [#516](https://github.com/cksource/umberto/issues/516) - Add library with polyfill for browsers which doesn't support es6.
1292
-
1293
-
1294
- ## [0.4.3](https://github.com/cksource/umberto/compare/v0.4.2...v0.4.3) (2018-04-18)
1295
-
1296
- ### Patch
1297
-
1298
- * [#522](https://github.com/cksource/umberto/issues/522) - Umberto will now rethrow hexo errors in non-verbose mode.
1299
- * [#523](https://github.com/cksource/umberto/issues/523) - Empty categories won't be created in navigation tree.
1300
-
1301
-
1302
- ## [0.4.2](https://github.com/cksource/umberto/compare/v0.4.1...v0.4.2) (2018-04-17)
1303
-
1304
- ### Patch
1305
-
1306
- * [#524](https://github.com/cksource/umberto/issues/524) - Allow on publish documentation from multiple locations.
1307
-
1308
-
1309
- ## [0.4.1](https://github.com/cksource/umberto/compare/v0.4.0...v0.4.1) (2018-04-13)
1310
-
1311
- ### Patch
1312
-
1313
- * [#499](https://github.com/cksource/umberto/issues/499) - IDs of `<h2>` sections are now lowercase.
1314
- * [#450](https://github.com/cksource/umberto/issues/450) - Add little space between hamburger and project title.
1315
- * [#465](https://github.com/cksource/umberto/issues/465) - Location.hash is now updated when member on page is clicked.
1316
-
1317
-
1318
- ## [0.4.0](https://github.com/cksource/umberto/compare/v0.3.67...v0.4.0) (2018-03-16)
1319
-
1320
- ### Minor
1321
-
1322
- * [#427](https://github.com/cksource/umberto/issues/427) - Provide possibility to make `sitemap.xml`
1323
- * [#509](https://github.com/cksource/umberto/issues/509) - Allow on escaping links in guides
1324
- * [#511](https://github.com/cksource/umberto/issues/511) - Add verbose parameter, by default Umberto will now hide most of the non-error messages.
1325
-
1326
- ### Patches
1327
-
1328
- * [#508](https://github.com/cksource/umberto/issues/508) - Improve styling for `<em>`
1329
- * [#507](https://github.com/cksource/umberto/issues/507) - Links to non-existing doclets now threw an error
1330
- * [#512](https://github.com/cksource/umberto/issues/512) - Cross-project links are not transformed in single project
1331
- * [#504](https://github.com/cksource/umberto/issues/504) - Filter out duplicated methods generated in JSDoc
1332
-
1333
- ### Other
1334
-
1335
- * Update `.gitignore` to ignore all hidden files/folder
1336
- * Bump hexo version to `3.6.0`
1337
-
1338
-
1339
- ## [0.3.67](https://github.com/cksource/umberto/compare/v0.3.66...v0.3.67) (2018-03-05)
1340
-
1341
- Fixed:
1342
- [#498](https://github.com/cksource/umberto/issues/498)
1343
- [#500](https://github.com/cksource/umberto/issues/500)
1344
-
1345
-
1346
- ## [0.3.66](https://github.com/cksource/umberto/compare/v0.3.61...v0.3.66) (2018-02-21)
1347
-
1348
- Fixed:
1349
- [#475](https://github.com/cksource/umberto/issues/475)
1350
- [#491](https://github.com/cksource/umberto/issues/491)
1351
- [#487](https://github.com/cksource/umberto/issues/487)
1352
-
1353
-
1354
- ## [0.3.61](https://github.com/cksource/umberto/compare/v0.3.60...v0.3.61) (2018-02-09)
1355
-
1356
- * Corrections to API docs search,
1357
- * Added bunch of source code comments.
1358
-
1359
-
1360
- ## [0.3.60](https://github.com/cksource/umberto/compare/v0.3.55...v0.3.60) (2018-02-05)
1361
-
1362
- Hotfixed [#472](https://github.com/cksource/umberto/issues/472)
1363
-
1364
-
1365
- ## [0.3.55](https://github.com/cksource/umberto/compare/v0.3.54...v0.3.55) (2018-02-01)
1366
-
1367
- Introduced enhanced search for API docs.
1368
-
1369
-
1370
- ## [0.3.54](https://github.com/cksource/umberto/compare/v0.3.53...v0.3.54) (2018-01-23)
1371
-
1372
- Closed [#436](https://github.com/cksource/umberto/issues/436)
1373
-
1374
-
1375
- ## [0.3.53](https://github.com/cksource/umberto/compare/v0.3.51...v0.3.53) (2018-01-22)
1376
-
1377
- Closed [#447](https://github.com/cksource/umberto/issues/447) .
1378
- Added support for extended typedefs.
1379
-
1380
-
1381
- ## [0.3.51](https://github.com/cksource/umberto/compare/v0.3.49...v0.3.51) (2018-01-18)
1382
-
1383
- Closed issues:
1384
-
1385
- [#432](https://github.com/cksource/umberto/issues/432)
1386
- [#433](https://github.com/cksource/umberto/issues/433)
1387
- [#434](https://github.com/cksource/umberto/issues/434)
1388
- [#441](https://github.com/cksource/umberto/issues/441)
1389
- [#442](https://github.com/cksource/umberto/issues/442)
1390
-
1391
-
1392
-
1393
- ## [0.3.49](https://github.com/cksource/umberto/compare/v0.3.48...v0.3.49) (2018-01-16)
1394
-
1395
- Closes issues:
1396
- [#410](https://github.com/cksource/umberto/issues/410)
1397
- [#422](https://github.com/cksource/umberto/issues/422)
1398
- [#425](https://github.com/cksource/umberto/issues/425)
1399
-
1400
-
1401
- ## [0.3.48](https://github.com/cksource/umberto/compare/v0.3.47...v0.3.48) (2018-01-10)
1402
-
1403
- Fixed [#419](https://github.com/cksource/umberto/issues/419)
1404
-
1405
-
1406
- ## [0.3.47](https://github.com/cksource/umberto/compare/v0.3.42...v0.3.47) (2018-01-09)
1407
-
1408
- Fixed: [#347](https://github.com/cksource/umberto/issues/347), [#398](https://github.com/cksource/umberto/issues/398), [#411](https://github.com/cksource/umberto/issues/411)
1409
-
1410
- Fixed Typedefs rendering
1411
-
1412
-
1413
- ## [0.3.42](https://github.com/cksource/umberto/compare/v0.3.41...v0.3.42) (2017-12-15)
1414
-
1415
- Fixed [#391](https://github.com/cksource/umberto/issues/391), [#392](https://github.com/cksource/umberto/issues/392)
1416
-
1417
-
1418
- ## [0.3.41](https://github.com/cksource/umberto/compare/v0.3.40...v0.3.41) (2017-12-14)
1419
-
1420
- Fixed [#392](https://github.com/cksource/umberto/issues/392)
1421
-
1422
-
1423
- ## [0.3.40](https://github.com/cksource/umberto/compare/v0.3.39...v0.3.40) (2017-11-24)
1424
-
1425
- * Marking items in ToC improved
1426
- * Code optimizations
1427
-
1428
-
1429
- ## [0.3.39](https://github.com/cksource/umberto/compare/v0.3.38...v0.3.39) (2017-11-21)
1430
-
1431
- * Adding favicons [#378](https://github.com/cksource/umberto/issues/378)
1432
- * Tracking article position in table of contents [#188](https://github.com/cksource/umberto/issues/188)
1433
- * Build optimizations
1434
-
1435
-
1436
- ## [0.3.38](https://github.com/cksource/umberto/compare/v0.3.37...v0.3.38) (2017-11-11)
1437
-
1438
- Module pages which only link to classes etc are ranked lower in search results by default.
1439
-
1440
-
1441
- ## [0.3.37](https://github.com/cksource/umberto/compare/v0.3.35...v0.3.37) (2017-10-31)
1442
-
1443
- * Added link to GitHub [#367](https://github.com/cksource/umberto/issues/367),
1444
- * Added custom ranking to search results.
1445
-
1446
-
1447
- ## [0.3.35](https://github.com/cksource/umberto/compare/v0.3.34...v0.3.35) (2017-10-26)
1448
-
1449
- Improved searching:
1450
-
1451
- * Displaying some results for every category, if available,
1452
- * Scrolling search results,
1453
- * Added possibility to change page's rank.
1454
-
1455
-
1456
- ## [0.3.34](https://github.com/cksource/umberto/compare/v0.3.33...v0.3.34) (2017-10-18)
1457
-
1458
- Resizing top menu on narrow screens.
1459
-
1460
-
1461
- ## [0.3.33](https://github.com/cksource/umberto/compare/v0.3.32...v0.3.33) (2017-10-11)
1462
-
1463
- * Disabled search boosting temporarily as it doesn't work as expected
1464
-
1465
-
1466
- ## [0.3.32](https://github.com/cksource/umberto/compare/v0.3.31...v0.3.32) (2017-10-11)
1467
-
1468
- * Support for "observables", [#338](https://github.com/cksource/umberto/issues/338)
1469
- * Fixed link validation, [#356](https://github.com/cksource/umberto/issues/356)
1470
- * Changes related to DocSearch
1471
-
1472
-
1473
- ## [0.3.31](https://github.com/cksource/umberto/compare/v0.3.30...v0.3.31) (2017-10-06)
1474
-
1475
- Closed [#304](https://github.com/cksource/umberto/issues/304).
1476
-
1477
-
1478
- ## [0.3.30](https://github.com/cksource/umberto/compare/v0.3.29...v0.3.30) (2017-10-04)
1479
-
1480
- Closed issues:
1481
- * [#346](https://github.com/cksource/umberto/issues/346)
1482
- * [#350](https://github.com/cksource/umberto/issues/350)
1483
-
1484
- Fixed 404 page
1485
-
1486
-
1487
- ## [0.3.29](https://github.com/cksource/umberto/compare/v0.3.28...v0.3.29) (2017-10-04)
1488
-
1489
- Closed:
1490
- * [#348](https://github.com/cksource/umberto/issues/348)
1491
-
1492
-
1493
- ## [0.3.28](https://github.com/cksource/umberto/compare/v0.3.27...v0.3.28) (2017-10-03)
1494
-
1495
- Closed issues:
1496
- * [#291](https://github.com/cksource/umberto/issues/291)
1497
- * [#343](https://github.com/cksource/umberto/issues/343)
1498
-
1499
-
1500
- ## [0.3.27](https://github.com/cksource/umberto/compare/v0.3.26...v0.3.27) (2017-10-03)
1501
-
1502
- Closes issues:
1503
- * [#327](https://github.com/cksource/umberto/issues/327)
1504
- * [#340](https://github.com/cksource/umberto/issues/340)
1505
- * https://github.com/ckeditor/ckeditor5/issues/575
1506
-
1507
-
1508
- ## [0.3.26](https://github.com/cksource/umberto/compare/v0.3.25...v0.3.26) (2017-09-29)
1509
-
1510
- Closed issues:
1511
- * [#324](https://github.com/cksource/umberto/issues/324)
1512
- * [#329](https://github.com/cksource/umberto/issues/329)
1513
-
1514
-
1515
- ## [0.3.25](https://github.com/cksource/umberto/compare/v0.3.24...v0.3.25) (2017-09-28)
1516
-
1517
- Closed issues:
1518
- * [#308](https://github.com/cksource/umberto/issues/308)
1519
- * [#272](https://github.com/cksource/umberto/issues/272)
1520
- * [#67](https://github.com/cksource/umberto/issues/67)
1521
-
1522
-
1523
- ## [0.3.24](https://github.com/cksource/umberto/compare/v0.3.23...v0.3.24) (2017-09-26)
1524
-
1525
- * Google Analytics support,
1526
- * Fixed [#320](https://github.com/cksource/umberto/issues/320)
1527
-
1528
-
1529
- ## [0.3.23](https://github.com/cksource/umberto/compare/v0.3.22...v0.3.23) (2017-09-22)
1530
-
1531
- * Improved project switcher
1532
- * Added `sitenav: false` option to front-matter
1533
- * Made search box label contextual
1534
-
1535
-
1536
- ## [0.3.22](https://github.com/cksource/umberto/compare/v0.3.21...v0.3.22) (2017-09-22)
1537
-
1538
- New:
1539
- * `disableSearch: true` option supported by `umberto.json` which removes search box per project,
1540
- * Umberto supports `production: true` option allowing to minify javascript
1541
-
1542
-
1543
- ## [0.3.21](https://github.com/cksource/umberto/compare/v0.3.18...v0.3.21) (2017-09-20)
1544
-
1545
- Changes required for home page support in multi-docs scenario.
1546
-
1547
-
1548
- ## [0.3.18](https://github.com/cksource/umberto/compare/v0.3.17...v0.3.18) (2017-09-20)
1549
-
1550
- Closes issues:
1551
- * [#297](https://github.com/cksource/umberto/issues/297)
1552
- * [#301](https://github.com/cksource/umberto/issues/301)
1553
- * [#302](https://github.com/cksource/umberto/issues/302)
1554
- * [#303](https://github.com/cksource/umberto/issues/303)
1555
-
1556
-
1557
- ## [0.3.17](https://github.com/cksource/umberto/compare/v0.3.16...v0.3.17) (2017-09-18)
1558
-
1559
- Restyled GitHub contribution links.
1560
-
1561
-
1562
- ## [0.3.16](https://github.com/cksource/umberto/compare/v0.3.15...v0.3.16) (2017-09-14)
1563
-
1564
- New:
1565
- Different Docsearch scripts per page depending on documentation group (API, Builds etc). Meaning that when searching from Builds group, search results from Builds will be displayed higher.
1566
-
1567
- Fixed:
1568
- * [#269](https://github.com/cksource/umberto/issues/269)
1569
- * [#275](https://github.com/cksource/umberto/issues/275)
1570
- * [#283](https://github.com/cksource/umberto/issues/283)
1571
- * [#292](https://github.com/cksource/umberto/issues/292)
1572
-
1573
-
1574
- ## [0.3.15](https://github.com/cksource/umberto/compare/v0.3.14...v0.3.15) (2017-09-11)
1575
-
1576
- Changed DocSearch theme.
1577
-
1578
-
1579
- ## [0.3.14](https://github.com/cksource/umberto/compare/v0.3.13...v0.3.14) (2017-09-07)
1580
-
1581
- New:
1582
- * Make project version available as a variable inside guides. Closes [#279](https://github.com/cksource/umberto/issues/279).
1583
- * Allow building snippets as dependencies of other snippets.
1584
-
1585
-
1586
- ## [0.3.13](https://github.com/cksource/umberto/compare/v0.3.12...v0.3.13) (2017-09-05)
1587
-
1588
- Closed issues:
1589
- * [#262](https://github.com/cksource/umberto/issues/262)
1590
- * [#274](https://github.com/cksource/umberto/issues/274)
1591
-
1592
-
1593
- ## [0.3.12](https://github.com/cksource/umberto/compare/v0.3.10...v0.3.12) (2017-09-04)
1594
-
1595
- New:
1596
- * Link validation after build,
1597
- * Supporting links to guides in API docs,
1598
- * Styles for tables.
1599
-
1600
- Closed issues:
1601
- * [#267](https://github.com/cksource/umberto/issues/267),
1602
- * [#270](https://github.com/cksource/umberto/issues/270),
1603
- * [#126](https://github.com/cksource/umberto/issues/126).
1604
-
1605
-
1606
-
1607
- ## [0.3.10](https://github.com/cksource/umberto/compare/v0.3.8...v0.3.10) (2017-08-29)
1608
-
1609
- Fixed [#259](https://github.com/cksource/umberto/issues/259)
1610
-
1611
-
1612
- ## [0.3.8](https://github.com/cksource/umberto/compare/v0.3.7...v0.3.8) (2017-08-25)
1613
-
1614
- Added ids and links to Properties, Methods etc headings to see how it improves search experience.
1615
-
1616
- Fixed:
1617
- [#255](https://github.com/cksource/umberto/issues/255)
1618
-
1619
-
1620
- ## [0.3.7](https://github.com/cksource/umberto/compare/v0.3.6...v0.3.7) (2017-08-24)
1621
-
1622
- Changed to liveSnippets generator.
1623
-
1624
- Fixed:
1625
- * [#250](https://github.com/cksource/umberto/issues/250)
1626
- * [#252](https://github.com/cksource/umberto/issues/252)
1627
-
1628
-
1629
- ## [0.3.6](https://github.com/cksource/umberto/compare/v0.3.5...v0.3.6) (2017-08-23)
1630
-
1631
- Changes to liveSnippets:
1632
- * enabled snippetOptions,
1633
- * fixed --skip-snippets mode
1634
-
1635
-
1636
- ## [0.3.5](https://github.com/cksource/umberto/compare/v0.3.4...v0.3.5) (2017-08-21)
1637
-
1638
- Fixed [#243](https://github.com/cksource/umberto/issues/243)
1639
-
1640
-
1641
- ## [0.3.4](https://github.com/cksource/umberto/compare/v0.3.3...v0.3.4) (2017-08-21)
1642
-
1643
- * Removed some unwanted files which got into npm package before,
1644
- * Added possibility to extend default theme,
1645
- * Fixed [#225](https://github.com/cksource/umberto/issues/225)
1646
-
1647
-
1648
-
1649
- ## [0.3.3](https://github.com/cksource/umberto/compare/v0.3.2...v0.3.3) (2017-08-18)
1650
-
1651
- Fixed issues:
1652
- * [#54](https://github.com/cksource/umberto/issues/54)
1653
- * [#216](https://github.com/cksource/umberto/issues/216)
1654
- * [#218](https://github.com/cksource/umberto/issues/218)
1655
- * [#205](https://github.com/cksource/umberto/issues/205)
1656
- * [#147](https://github.com/cksource/umberto/issues/147)
1657
- * [#220](https://github.com/cksource/umberto/issues/220)
1658
- * [#214](https://github.com/cksource/umberto/issues/214)
1659
- * [#146](https://github.com/cksource/umberto/issues/146)
1660
- * [#204](https://github.com/cksource/umberto/issues/204)
1661
- * [#203](https://github.com/cksource/umberto/issues/203)
1662
- * [#223](https://github.com/cksource/umberto/issues/223)
1663
- * [#134](https://github.com/cksource/umberto/issues/134)
1664
- * [#230](https://github.com/cksource/umberto/issues/230)
1665
- * [#217](https://github.com/cksource/umberto/issues/217)
1666
- * [#221](https://github.com/cksource/umberto/issues/221)
1667
- * [#222](https://github.com/cksource/umberto/issues/222)
1668
- * [#219](https://github.com/cksource/umberto/issues/219)
1669
- * [#237](https://github.com/cksource/umberto/issues/237)
1670
-
1671
-
1672
- ## [0.3.2](https://github.com/cksource/umberto/compare/v0.3.1...v0.3.2) (2017-08-09)
1673
-
1674
- More layout changes,
1675
- Closed issues:
1676
- * [#213](https://github.com/cksource/umberto/issues/213)
1677
- * [#187](https://github.com/cksource/umberto/issues/187)
1678
- * [#145](https://github.com/cksource/umberto/issues/145)
1679
- * [#148](https://github.com/cksource/umberto/issues/148)
1680
- * [#198](https://github.com/cksource/umberto/issues/198)
1681
-
1682
-
1683
- ## [0.3.1](https://github.com/cksource/umberto/compare/v0.3.0...v0.3.1) (2017-08-08)
1684
-
1685
- * More layout changes
1686
- * Fixed some html issues
1687
-
1688
-
1689
- ## [0.3.0](https://github.com/cksource/umberto/compare/v0.2.25...v0.3.0) (2017-08-07)
1690
-
1691
- * Layout changes: improved table of contents, notice boxes, updated API docs look and more,
1692
- * [#181](https://github.com/cksource/umberto/issues/181)
1693
- * [#68](https://github.com/cksource/umberto/issues/68)
1694
- * [#191](https://github.com/cksource/umberto/issues/191)
1695
- * [#189](https://github.com/cksource/umberto/issues/189)
1696
- * [#193](https://github.com/cksource/umberto/issues/193)
1697
- * [#192](https://github.com/cksource/umberto/issues/192)
1698
- * [#183](https://github.com/cksource/umberto/issues/183)
1699
- * [#184](https://github.com/cksource/umberto/issues/184)
1700
- * [#185](https://github.com/cksource/umberto/issues/185)
1701
-
1702
-
1703
-
1704
- ## [0.2.25](https://github.com/cksource/umberto/compare/v0.2.24...v0.2.25) (2017-07-25)
1705
-
1706
- Allow copying common files like `robots.txt` to root directory of multi project build.
1707
-
1708
-
1709
- ## [0.2.24](https://github.com/cksource/umberto/compare/v0.2.20...v0.2.24) (2017-07-25)
1710
-
1711
- Fixed issues with building a "simple" projects (one-pagers containing only index.md file)
1712
-
1713
-
1714
- ## [0.2.20](https://github.com/cksource/umberto/compare/v0.2.18...v0.2.20) (2017-07-11)
1715
-
1716
- Changelog:
1717
- * Changed snippets output directory (Fixing: https://github.com/CKEditor5/ckeditor5.github.io/issues/34)
1718
- * Changed directory structure of doc pages and assets to include project versions.
1719
-
1720
-
1721
- ## [0.2.18](https://github.com/cksource/umberto/compare/v0.2.17...v0.2.18) (2017-07-05)
1722
-
1723
- New feature:
1724
- * Added Algolia DocSearch support
1725
-
1726
-
1727
- ## [0.2.17](https://github.com/cksource/umberto/compare/v0.2.15...v0.2.17) (2017-07-04)
1728
-
1729
- New feature:
1730
- * Support for live snippets.
1731
-
1732
-
1733
- ## [0.2.15](https://github.com/cksource/umberto/compare/v0.2.13...v0.2.15) (2017-07-04)
1734
-
1735
- Fixed issues:
1736
- * [#136](https://github.com/cksource/umberto/issues/136)
1737
- * [#159](https://github.com/cksource/umberto/issues/159)
1738
-
1739
- Internal:
1740
- * Some refactoring
1741
- * Updated README
1742
-
1743
-
1744
- ## [0.2.13](https://github.com/cksource/umberto/compare/v0.2.12...v0.2.13) (2017-06-28)
1745
-
1746
- Internal changes:
1747
- * Refactored templates
1748
- * Changed building process
1749
-
1750
-
1751
- ## [0.2.12](https://github.com/cksource/umberto/compare/v0.2.11...v0.2.12) (2017-06-26)
1752
-
1753
- Fixed issues:
1754
- * [#46](https://github.com/cksource/umberto/issues/46)
1755
- * Minor code block link styling
1756
-
1757
-
1758
- ## [0.2.11](https://github.com/cksource/umberto/compare/v0.2.10...v0.2.11) (2017-06-23)
1759
-
1760
- Patch:
1761
- * Fixed minor code block styling issue.
1762
-
1763
-
1764
- ## [0.2.10](https://github.com/cksource/umberto/compare/v0.2.9...v0.2.10) (2017-06-23)
1765
-
1766
- Fixed issues:
1767
- * [#91](https://github.com/cksource/umberto/issues/91)
1768
- * [#92](https://github.com/cksource/umberto/issues/92)
1769
- * [#109](https://github.com/cksource/umberto/issues/109)
1770
- * [#116](https://github.com/cksource/umberto/issues/116)
1771
- * [#130](https://github.com/cksource/umberto/issues/130)
1772
- * [#143](https://github.com/cksource/umberto/issues/143)
1773
- * [#154](https://github.com/cksource/umberto/issues/154)
1774
-
1775
-
1776
- ## [0.2.9](https://github.com/cksource/umberto/compare/v0.2.8...v0.2.9) (2017-06-19)
1777
-
1778
- Fixed issues:
1779
- * [#108](https://github.com/cksource/umberto/issues/108)
1780
- * [#149](https://github.com/cksource/umberto/issues/149)
1781
- * [#153](https://github.com/cksource/umberto/issues/153)
1782
-
1783
-
1784
- ## [0.2.8](https://github.com/cksource/umberto/compare/v0.2.7...v0.2.8) (2017-06-09)
1785
-
1786
- Fixed issues:
1787
- * [#52](https://github.com/cksource/umberto/issues/52)
1788
- * [#119](https://github.com/cksource/umberto/issues/119)
1789
- * [#129](https://github.com/cksource/umberto/issues/129)
1790
- * [#131](https://github.com/cksource/umberto/issues/131)
1791
-
1792
-
1793
- ## [0.2.7](https://github.com/cksource/umberto/compare/v0.2.6...v0.2.7) (2017-06-07)
1794
-
1795
- Fixed [#114](https://github.com/cksource/umberto/issues/114) Improve subclasses/hierarchy/mixes panel in the API docs.
1796
-
1797
-
1798
- ## [0.2.6](https://github.com/cksource/umberto/compare/v0.2.0...v0.2.6) (2017-05-31)
1799
-
1800
- Fixed issues:
1801
- * [#120](https://github.com/cksource/umberto/issues/120) Headings in API docs are not styled.
1802
- * [#124](https://github.com/cksource/umberto/issues/124) Fix backtick code blocks.
1803
-
1804
-
1805
- ## [0.2.0](https://github.com/cksource/umberto/compare/v0.1.1...v0.2.0) (2017-05-18)
1806
-
1807
- Published on npm v0.2.0
1808
-
1809
- Fixed issues:
1810
- * [#56](https://github.com/cksource/umberto/issues/56) Poor class list styling.
1811
- * [#86](https://github.com/cksource/umberto/issues/86) Add "Inherited" label next to properties.
1812
- * [#87](https://github.com/cksource/umberto/issues/87) Navigation tree is expanded on api docs index page.
1813
- * [#90](https://github.com/cksource/umberto/issues/90) Support links to API docs in guides.
1814
- * [#97](https://github.com/cksource/umberto/issues/97) Add support for namespaces and constants.
1815
-
1816
-
1817
- ## [0.1.1](https://github.com/cksource/umberto/compare/v0.1.0...v0.1.1) (2017-05-11)
1818
-
1819
- Published on npm v0.1.1
1820
-
1821
- Fixed issues:
1822
- * [#50](https://github.com/cksource/umberto/issues/50) The font used for the docs renders terribly on non-retina
1823
- * [#51](https://github.com/cksource/umberto/issues/51) Backgrounds of preformatted text overlap
1824
- * [#59](https://github.com/cksource/umberto/issues/59) "event:" prefix should be removed from event names
1825
- * [#65](https://github.com/cksource/umberto/issues/65) Protected/private filter doesn't work for inherited properties
1826
- * [#69](https://github.com/cksource/umberto/issues/69) Sidebar of API docs should have separate scroll
1827
-
1828
-
1829
- ## [0.1.0](https://github.com/cksource/umberto/releases/tag/v0.1.0) (2017-05-09)
1830
-
1831
- Published on npm v0.1.0
56
+ * Umberto attempts to load the theme's favicons in case a project does not define its own, rather than generating links to non-existent resources. Closes [#1256](https://github.com/cksource/umberto/issues/1256). ([commit](https://github.com/cksource/umberto/commit/a6de17b195a67e78010773f420e54fa16b154378))
1832
57
 
1833
- Fixed issues:
58
+ ---
1834
59
 
1835
- * [#49](https://github.com/cksource/umberto/issues/49) The heading looks really out of place
1836
- * [#58](https://github.com/cksource/umberto/issues/58) Filter options are not remembered
1837
- * [#62](https://github.com/cksource/umberto/issues/62) Module names are incorrectly parsed
1838
- * [#66](https://github.com/cksource/umberto/issues/66) Pages miss <title>
1839
- * [#70](https://github.com/cksource/umberto/issues/70) Directories should be listed before packages
60
+ To see all releases, visit the [release page](https://github.com/cksource/umberto/releases).