ortoni-report 2.0.9 → 3.0.1
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/LICENSE.md +675 -675
- package/changelog.md +347 -305
- package/dist/chunk-ZSIRUQUA.mjs +68 -0
- package/dist/cli/cli.d.mts +1 -0
- package/dist/cli/cli.js +21 -25789
- package/dist/cli/cli.mjs +2 -3052
- package/dist/ortoni-report.d.mts +115 -0
- package/dist/ortoni-report.d.ts +109 -103
- package/dist/ortoni-report.js +105 -29430
- package/dist/ortoni-report.mjs +92 -6696
- package/dist/style/main.css +80 -93
- package/dist/views/head.hbs +10 -10
- package/dist/views/main.hbs +1248 -599
- package/dist/views/project.hbs +237 -237
- package/dist/views/sidebar.hbs +236 -0
- package/dist/views/summaryCard.hbs +14 -7
- package/dist/views/testIcons.hbs +12 -12
- package/dist/views/testPanel.hbs +44 -44
- package/dist/views/testStatus.hbs +8 -8
- package/dist/views/userInfo.hbs +270 -208
- package/package.json +55 -56
- package/readme.md +212 -178
- package/dist/chunk-RHM5OWYN.mjs +0 -22816
- package/dist/views/navbar.hbs +0 -36
package/dist/views/navbar.hbs
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
<nav class="navbar is-primary is-fixed-top" role="navigation" aria-label="main navigation">
|
|
2
|
-
<div class="navbar-brand">
|
|
3
|
-
<a class="navbar-item">
|
|
4
|
-
{{#if logo}}
|
|
5
|
-
<img src="{{logo}}" alt="{{projectName}}" class="logoimage">
|
|
6
|
-
{{/if}}
|
|
7
|
-
{{#if projectName}}
|
|
8
|
-
<span class="ml-2 has-text-weight-bold has-text-white">{{projectName}}</span>
|
|
9
|
-
{{/if}}
|
|
10
|
-
</a>
|
|
11
|
-
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
|
|
12
|
-
<span aria-hidden="true"></span>
|
|
13
|
-
<span aria-hidden="true"></span>
|
|
14
|
-
<span aria-hidden="true"></span>
|
|
15
|
-
</a>
|
|
16
|
-
</div>
|
|
17
|
-
<div class="navbar-menu">
|
|
18
|
-
<div class="navbar-end">
|
|
19
|
-
<div class="navbar-item">
|
|
20
|
-
<button id="toggle-theme" class="" data-theme-status="{{preferredTheme}}">
|
|
21
|
-
<span class="icon">
|
|
22
|
-
<i class="" id="theme-icon"></i>
|
|
23
|
-
</span>
|
|
24
|
-
</button>
|
|
25
|
-
</div>
|
|
26
|
-
<div class="navbar-item">
|
|
27
|
-
<figure class="image">
|
|
28
|
-
<a href="https://www.letcode.in" target="_blank">
|
|
29
|
-
<img
|
|
30
|
-
src="https://raw.githubusercontent.com/ortoniKC/ortoni-report/refs/heads/main/ortoni.png" />
|
|
31
|
-
</a>
|
|
32
|
-
</figure>
|
|
33
|
-
</div>
|
|
34
|
-
</div>
|
|
35
|
-
</div>
|
|
36
|
-
</nav>
|