@qubit-ltd/jsdoc-theme 1.3.5 → 1.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qubit-ltd/jsdoc-theme",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "A customized JSDoc theme based on clean-jsdoc-theme, enhanced with properties table and constructor detection features for Qubit projects.",
5
5
  "main": "publish.js",
6
6
  "author": "Haixing Hu (starfish.hu@gmail.com)",
@@ -11,11 +11,6 @@
11
11
  }
12
12
  ?>
13
13
  <?js if (doc.kind === 'mainpage' || (doc.kind === 'package')) { ?>
14
- <?js if (packageInfo && packageInfo.version) { ?>
15
- <div class="package-version-info">
16
- <p class="package-version"><?js= t('version') ?>: v<?js= packageInfo.version ?></p>
17
- </div>
18
- <?js } ?>
19
14
  <?js= self.partial('mainpage.tmpl', doc) ?>
20
15
  <?js } else if (doc.kind === 'source') { ?>
21
16
  <?js= self.partial('source.tmpl', doc) ?>
@@ -46,9 +41,6 @@
46
41
  <h1 id="<?js= module.name ?>-title" class="has-anchor">
47
42
  <?js= module.name ?>
48
43
  </h1>
49
- <?js if (module.version) { ?>
50
- <p class="module-version"><?js= t('version') ?>: v<?js= module.version ?></p>
51
- <?js } ?>
52
44
  <?js } ?>
53
45
  <?js if (module.classdesc) { ?>
54
46
  <div class="class-description"><?js= module.classdesc ?></div>