@primer/gatsby-theme-doctocat 0.0.0-202181617303
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/CHANGELOG.md +110 -0
- package/babel.config.js +3 -0
- package/coverage/clover.xml +424 -0
- package/coverage/coverage-final.json +51 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +79 -0
- package/coverage/lcov-report/index.html +125 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +170 -0
- package/coverage/lcov-report/src/components/blockquote.js.html +136 -0
- package/coverage/lcov-report/src/components/caption.js.html +103 -0
- package/coverage/lcov-report/src/components/clipboard-copy.js.html +184 -0
- package/coverage/lcov-report/src/components/code.js.html +280 -0
- package/coverage/lcov-report/src/components/container.js.html +115 -0
- package/coverage/lcov-report/src/components/contributors.js.html +238 -0
- package/coverage/lcov-report/src/components/dark-button.js.html +112 -0
- package/coverage/lcov-report/src/components/dark-text-input.js.html +142 -0
- package/coverage/lcov-report/src/components/description-list.js.html +142 -0
- package/coverage/lcov-report/src/components/details.js.html +283 -0
- package/coverage/lcov-report/src/components/do-dont.js.html +259 -0
- package/coverage/lcov-report/src/components/drawer.js.html +247 -0
- package/coverage/lcov-report/src/components/frame.js.html +184 -0
- package/coverage/lcov-report/src/components/head.js.html +151 -0
- package/coverage/lcov-report/src/components/header.js.html +544 -0
- package/coverage/lcov-report/src/components/heading.js.html +319 -0
- package/coverage/lcov-report/src/components/hero-layout.js.html +205 -0
- package/coverage/lcov-report/src/components/hero.js.html +148 -0
- package/coverage/lcov-report/src/components/horizontal-rule.js.html +115 -0
- package/coverage/lcov-report/src/components/image-container.js.html +121 -0
- package/coverage/lcov-report/src/components/image.js.html +109 -0
- package/coverage/lcov-report/src/components/index.html +755 -0
- package/coverage/lcov-report/src/components/inline-code.js.html +115 -0
- package/coverage/lcov-report/src/components/layout.js.html +496 -0
- package/coverage/lcov-report/src/components/list.js.html +157 -0
- package/coverage/lcov-report/src/components/live-code.js.html +367 -0
- package/coverage/lcov-report/src/components/live-preview-wrapper.js.html +130 -0
- package/coverage/lcov-report/src/components/mobile-search.js.html +487 -0
- package/coverage/lcov-report/src/components/nav-drawer.js.html +556 -0
- package/coverage/lcov-report/src/components/nav-dropdown.js.html +238 -0
- package/coverage/lcov-report/src/components/nav-items.js.html +328 -0
- package/coverage/lcov-report/src/components/note.js.html +190 -0
- package/coverage/lcov-report/src/components/page-footer.js.html +166 -0
- package/coverage/lcov-report/src/components/paragraph.js.html +103 -0
- package/coverage/lcov-report/src/components/search-results.js.html +244 -0
- package/coverage/lcov-report/src/components/search.js.html +355 -0
- package/coverage/lcov-report/src/components/sidebar.js.html +256 -0
- package/coverage/lcov-report/src/components/skip-link.js.html +208 -0
- package/coverage/lcov-report/src/components/source-link.js.html +127 -0
- package/coverage/lcov-report/src/components/status-label.js.html +160 -0
- package/coverage/lcov-report/src/components/storybook-link.js.html +169 -0
- package/coverage/lcov-report/src/components/table-of-contents.js.html +178 -0
- package/coverage/lcov-report/src/components/table.js.html +181 -0
- package/coverage/lcov-report/src/components/wrap-page-element.js.html +121 -0
- package/coverage/lcov-report/src/components/wrap-root-element.js.html +250 -0
- package/coverage/lcov-report/src/github.js.html +301 -0
- package/coverage/lcov-report/src/index.html +185 -0
- package/coverage/lcov-report/src/live-code-scope.js.html +88 -0
- package/coverage/lcov-report/src/prism.js.html +160 -0
- package/coverage/lcov-report/src/search.worker.js.html +175 -0
- package/coverage/lcov-report/src/use-search.js.html +307 -0
- package/coverage/lcov-report/src/use-site-metadata.js.html +136 -0
- package/coverage/lcov.info +1109 -0
- package/gatsby-browser.js +2 -0
- package/gatsby-config.js +44 -0
- package/gatsby-node.js +145 -0
- package/gatsby-ssr.js +2 -0
- package/index.js +13 -0
- package/jest.config.js +5 -0
- package/package.json +72 -0
- package/setup-tests.js +1 -0
- package/src/components/__tests__/contributors.test.js +73 -0
- package/src/components/__tests__/page-footer.test.js +41 -0
- package/src/components/blockquote.js +19 -0
- package/src/components/caption.js +8 -0
- package/src/components/clipboard-copy.js +35 -0
- package/src/components/code.js +67 -0
- package/src/components/container.js +12 -0
- package/src/components/contributors.js +53 -0
- package/src/components/dark-button.js +11 -0
- package/src/components/dark-text-input.js +21 -0
- package/src/components/description-list.js +21 -0
- package/src/components/details.js +68 -0
- package/src/components/do-dont.js +60 -0
- package/src/components/drawer.js +56 -0
- package/src/components/frame.js +35 -0
- package/src/components/head.js +24 -0
- package/src/components/header.js +155 -0
- package/src/components/heading.js +80 -0
- package/src/components/hero-layout.js +42 -0
- package/src/components/hero.js +23 -0
- package/src/components/horizontal-rule.js +12 -0
- package/src/components/image-container.js +14 -0
- package/src/components/image.js +10 -0
- package/src/components/inline-code.js +12 -0
- package/src/components/layout.js +139 -0
- package/src/components/list.js +26 -0
- package/src/components/live-code.js +96 -0
- package/src/components/live-preview-wrapper.js +17 -0
- package/src/components/mobile-search.js +136 -0
- package/src/components/nav-drawer.js +159 -0
- package/src/components/nav-dropdown.js +53 -0
- package/src/components/nav-items.js +83 -0
- package/src/components/note.js +37 -0
- package/src/components/page-footer.js +29 -0
- package/src/components/paragraph.js +8 -0
- package/src/components/search-results.js +55 -0
- package/src/components/search.js +92 -0
- package/src/components/sidebar.js +59 -0
- package/src/components/skip-link.js +43 -0
- package/src/components/source-link.js +16 -0
- package/src/components/status-label.js +27 -0
- package/src/components/storybook-link.js +30 -0
- package/src/components/table-of-contents.js +33 -0
- package/src/components/table.js +34 -0
- package/src/components/wrap-page-element.js +14 -0
- package/src/components/wrap-root-element.js +57 -0
- package/src/github.js +74 -0
- package/src/images/favicon.png +0 -0
- package/src/live-code-scope.js +3 -0
- package/src/nav.yml +3 -0
- package/src/primer-nav.yml +28 -0
- package/src/prism.js +27 -0
- package/src/search.worker.js +32 -0
- package/src/use-search.js +76 -0
- package/src/use-site-metadata.js +19 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# @primer/gatsby-theme-doctocat
|
|
2
|
+
|
|
3
|
+
## 0.0.0-202181617303
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`7502f6c`](https://github.com/primer/doctocat/commit/7502f6ce137485ce162c6082067070b576279701) [#251](https://github.com/primer/doctocat/pull/251) Thanks [@colebemis](https://github.com/colebemis)! - Add [Contribute](https://primer.style/contribute) to global navigation
|
|
8
|
+
|
|
9
|
+
## 1.7.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`fa4fb2e`](https://github.com/primer/doctocat/commit/fa4fb2eed2eeb003ee3294f61b456005c03e5c1e) [#239](https://github.com/primer/doctocat/pull/239) Thanks [@colebemis](https://github.com/colebemis)! - Auto-populate title and description when valid `componentId` frontmatter variable is defined
|
|
14
|
+
|
|
15
|
+
## 1.6.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [`6aafb95`](https://github.com/primer/doctocat/commit/6aafb95bd47f611cffd7b6c5c6528343c53b42e3) [#225](https://github.com/primer/doctocat/pull/225) Thanks [@colebemis](https://github.com/colebemis)! - Reduce table of contents depth (only list `h2`s)
|
|
20
|
+
|
|
21
|
+
* [`31d9e8c`](https://github.com/primer/doctocat/commit/31d9e8cfe93d997a154928829b49c5d2f60dc35e) [#217](https://github.com/primer/doctocat/pull/217) Thanks [@srt32](https://github.com/srt32)! - Update supported statuses
|
|
22
|
+
|
|
23
|
+
```diff
|
|
24
|
+
- New, Experimental, Review, Stable, Deprecated
|
|
25
|
+
+ Alpha, Beta, Stable, Deprecated
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- [`c97e4ed`](https://github.com/primer/doctocat/commit/c97e4ed348cde43e7da638fd77893317d3db0ee4) [#224](https://github.com/primer/doctocat/pull/224) Thanks [@colebemis](https://github.com/colebemis)! - Replace `>` with `/` in the header
|
|
31
|
+
|
|
32
|
+
## 1.5.0
|
|
33
|
+
|
|
34
|
+
### Minor Changes
|
|
35
|
+
|
|
36
|
+
- [`d7af544`](https://github.com/primer/doctocat/commit/d7af544369e8a592c05a65fef8813652d9a2842b) [#220](https://github.com/primer/doctocat/pull/220) Thanks [@colebemis](https://github.com/colebemis)! - Add support for "storybook" frontmatter variable
|
|
37
|
+
|
|
38
|
+
## 1.4.0
|
|
39
|
+
|
|
40
|
+
### Minor Changes
|
|
41
|
+
|
|
42
|
+
- [`60a7f4a`](https://github.com/primer/doctocat/commit/60a7f4a3a91eda6fec83600b8886f9d0e19029ea) [#203](https://github.com/primer/doctocat/pull/203) Thanks [@colebemis](https://github.com/colebemis)! - Add syntax highlighting support for `ruby` and `erb` code examples
|
|
43
|
+
|
|
44
|
+
* [`d4116cb`](https://github.com/primer/doctocat/commit/d4116cbf0906c594285ef470ae60b8845e6f5380) [#214](https://github.com/primer/doctocat/pull/214) Thanks [@colebemis](https://github.com/colebemis)! - Add ImageContainer component
|
|
45
|
+
|
|
46
|
+
## 1.3.0
|
|
47
|
+
|
|
48
|
+
### Minor Changes
|
|
49
|
+
|
|
50
|
+
- [`eaa57f7`](https://github.com/primer/doctocat/commit/eaa57f79f6fbc11032e3ee535f7950a240f5ae94) [#211](https://github.com/primer/doctocat/pull/211) Thanks [@colebemis](https://github.com/colebemis)! - Remove Prototyping link from Design dropdown in the global navigation
|
|
51
|
+
|
|
52
|
+
* [`a699326`](https://github.com/primer/doctocat/commit/a699326fb9d788fcc798a1c9881000fa2cc339bb) [#210](https://github.com/primer/doctocat/pull/210) Thanks [@colebemis](https://github.com/colebemis)! - Add https://primer.style/desktop link to the global navigation
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- [`328099e`](https://github.com/primer/doctocat/commit/328099ee5913adf38145248ba8dad0666f9b4865) [#209](https://github.com/primer/doctocat/pull/209) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump ini from 1.3.5 to 1.3.7
|
|
57
|
+
|
|
58
|
+
## 1.2.0
|
|
59
|
+
|
|
60
|
+
### Minor Changes
|
|
61
|
+
|
|
62
|
+
- [`44ed070`](https://github.com/primer/doctocat/commit/44ed070e4340f1b01f258414b903c9550156b05e) [#204](https://github.com/primer/doctocat/pull/204) Thanks [@colebemis](https://github.com/colebemis)! - Add https://primer.style/view-components link to the global navigation
|
|
63
|
+
|
|
64
|
+
* [`79654e5`](https://github.com/primer/doctocat/commit/79654e54762000884040b0f068162a10148b34cf) [#201](https://github.com/primer/doctocat/pull/201) Thanks [@colebemis](https://github.com/colebemis)! - Add https://primer.style/mobile link to the global navigation
|
|
65
|
+
|
|
66
|
+
### Patch Changes
|
|
67
|
+
|
|
68
|
+
- [`e412c29`](https://github.com/primer/doctocat/commit/e412c29c69dfd9b584fbe21c60327444ac9fd727) [#199](https://github.com/primer/doctocat/pull/199) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump object-path from 0.11.4 to 0.11.5
|
|
69
|
+
|
|
70
|
+
* [`f35c5b3`](https://github.com/primer/doctocat/commit/f35c5b3b57c0c0fe0fce42167628fabb0a11b74e) [#205](https://github.com/primer/doctocat/pull/205) Thanks [@colebemis](https://github.com/colebemis)! - Remove border-radius on bottom page border
|
|
71
|
+
|
|
72
|
+
## 1.1.0
|
|
73
|
+
|
|
74
|
+
### Minor Changes
|
|
75
|
+
|
|
76
|
+
- [`81978aa`](https://github.com/primer/doctocat/commit/81978aa70cf6bcdd6b9099b24b1232cd7a350153) [#195](https://github.com/primer/doctocat/pull/195) Thanks [@colebemis](https://github.com/colebemis)! - Add https://primer.style/cli link to the global navigation
|
|
77
|
+
|
|
78
|
+
## 1.0.0
|
|
79
|
+
|
|
80
|
+
### Major Changes
|
|
81
|
+
|
|
82
|
+
- [`152402c`](https://github.com/primer/doctocat/commit/152402cd09f32a491f59283cc02570b0142f4bd9) [#184](https://github.com/primer/doctocat/pull/184) Thanks [@colebemis](https://github.com/colebemis)! - Update the `Do` and `Dont` component APIs to allow consumers to control how images are rendered:
|
|
83
|
+
|
|
84
|
+
```diff
|
|
85
|
+
- <Do src="https://example.com/do.png">
|
|
86
|
+
- Use brief and direct communication
|
|
87
|
+
- </Do>
|
|
88
|
+
+ <Do>
|
|
89
|
+
+ <img src="https://example.com/do.png" alt="" />
|
|
90
|
+
+ <Caption>Use brief and direct communication</Caption>
|
|
91
|
+
+ </Do>
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Minor Changes
|
|
95
|
+
|
|
96
|
+
- [`f6f5619`](https://github.com/primer/doctocat/commit/f6f56192406dd7d3144cbe1ec75955c8c383a689) [#186](https://github.com/primer/doctocat/pull/186) Thanks [@colebemis](https://github.com/colebemis)! - Make `Caption` component globally available in all markdown files as a [shortcode](https://mdxjs.com/blog/shortcodes)
|
|
97
|
+
|
|
98
|
+
* [`ea38980`](https://github.com/primer/doctocat/commit/ea38980e188f8a6eae562961b8a68c85449296dc) [#184](https://github.com/primer/doctocat/pull/184) Thanks [@colebemis](https://github.com/colebemis)! - Make `Do`, `Dont`, and `DoDontContainer` components globally available in all markdown files as [shortcodes](https://mdxjs.com/blog/shortcodes)
|
|
99
|
+
|
|
100
|
+
- [`ce82f93`](https://github.com/primer/doctocat/commit/ce82f93e026d820c282e188241b6b0807edd7a27) [#185](https://github.com/primer/doctocat/pull/185) Thanks [@colebemis](https://github.com/colebemis)! - Polish code example styles
|
|
101
|
+
|
|
102
|
+
### Patch Changes
|
|
103
|
+
|
|
104
|
+
- [`8ca48d1`](https://github.com/primer/doctocat/commit/8ca48d1b6262b54ae63654d19a74861501cdb451) [#194](https://github.com/primer/doctocat/pull/194) Thanks [@colebemis](https://github.com/colebemis)! - Fetch contributor data on deploy builds again
|
|
105
|
+
|
|
106
|
+
* [`cab38c3`](https://github.com/primer/doctocat/commit/cab38c38eb00a9645991147b28a47a535dcd1d41) [#190](https://github.com/primer/doctocat/pull/190) Thanks [@colebemis](https://github.com/colebemis)! - Make the navigation dropdown background color dark
|
|
107
|
+
|
|
108
|
+
- [`5fb29c9`](https://github.com/primer/doctocat/commit/5fb29c9000dd2a26919f661d969142fa1938d329) [#187](https://github.com/primer/doctocat/pull/187) Thanks [@mvasilkov](https://github.com/mvasilkov)! - Fix typo in an internal import
|
|
109
|
+
|
|
110
|
+
* [`cab38c3`](https://github.com/primer/doctocat/commit/cab38c38eb00a9645991147b28a47a535dcd1d41) [#190](https://github.com/primer/doctocat/pull/190) Thanks [@colebemis](https://github.com/colebemis)! - Update the navigation dropdown icon from a `chrevon` to a `caret` to follow our [progressive disclosure guidelines](https://primer.style/design/ui-patterns/progressive-disclosure#progressive-disclosure-ui-patterns)
|
package/babel.config.js
ADDED
|
@@ -0,0 +1,424 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1631813401449" clover="3.2.0">
|
|
3
|
+
<project timestamp="1631813401450" name="All files">
|
|
4
|
+
<metrics statements="262" coveredstatements="6" conditionals="155" coveredconditionals="12" methods="121" coveredmethods="3" elements="538" coveredelements="21" complexity="0" loc="262" ncloc="262" packages="2" files="50" classes="50"/>
|
|
5
|
+
<package name="src">
|
|
6
|
+
<metrics statements="35" coveredstatements="0" conditionals="17" coveredconditionals="0" methods="12" coveredmethods="0"/>
|
|
7
|
+
<file name="github.js" path="/home/runner/work/doctocat/doctocat/theme/src/github.js">
|
|
8
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
9
|
+
</file>
|
|
10
|
+
<file name="live-code-scope.js" path="/home/runner/work/doctocat/doctocat/theme/src/live-code-scope.js">
|
|
11
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
12
|
+
</file>
|
|
13
|
+
<file name="prism.js" path="/home/runner/work/doctocat/doctocat/theme/src/prism.js">
|
|
14
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
15
|
+
</file>
|
|
16
|
+
<file name="search.worker.js" path="/home/runner/work/doctocat/doctocat/theme/src/search.worker.js">
|
|
17
|
+
<metrics statements="10" coveredstatements="0" conditionals="4" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
18
|
+
<line num="4" count="0" type="stmt"/>
|
|
19
|
+
<line num="5" count="0" type="stmt"/>
|
|
20
|
+
<line num="16" count="0" type="stmt"/>
|
|
21
|
+
<line num="17" count="0" type="stmt"/>
|
|
22
|
+
<line num="18" count="0" type="stmt"/>
|
|
23
|
+
<line num="21" count="0" type="stmt"/>
|
|
24
|
+
<line num="22" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
25
|
+
<line num="23" count="0" type="stmt"/>
|
|
26
|
+
<line num="28" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
27
|
+
<line num="29" count="0" type="stmt"/>
|
|
28
|
+
</file>
|
|
29
|
+
<file name="use-search.js" path="/home/runner/work/doctocat/doctocat/theme/src/use-search.js">
|
|
30
|
+
<metrics statements="23" coveredstatements="0" conditionals="13" coveredconditionals="0" methods="8" coveredmethods="0"/>
|
|
31
|
+
<line num="6" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
32
|
+
<line num="9" count="0" type="stmt"/>
|
|
33
|
+
<line num="10" count="0" type="stmt"/>
|
|
34
|
+
<line num="12" count="0" type="stmt"/>
|
|
35
|
+
<line num="32" count="0" type="stmt"/>
|
|
36
|
+
<line num="34" count="0" type="stmt"/>
|
|
37
|
+
<line num="45" count="0" type="stmt"/>
|
|
38
|
+
<line num="47" count="0" type="stmt"/>
|
|
39
|
+
<line num="48" count="0" type="cond" truecount="0" falsecount="5"/>
|
|
40
|
+
<line num="49" count="0" type="stmt"/>
|
|
41
|
+
<line num="53" count="0" type="stmt"/>
|
|
42
|
+
<line num="54" count="0" type="stmt"/>
|
|
43
|
+
<line num="55" count="0" type="stmt"/>
|
|
44
|
+
<line num="56" count="0" type="stmt"/>
|
|
45
|
+
<line num="57" count="0" type="stmt"/>
|
|
46
|
+
<line num="59" count="0" type="stmt"/>
|
|
47
|
+
<line num="60" count="0" type="stmt"/>
|
|
48
|
+
<line num="64" count="0" type="stmt"/>
|
|
49
|
+
<line num="65" count="0" type="stmt"/>
|
|
50
|
+
<line num="66" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
51
|
+
<line num="67" count="0" type="stmt"/>
|
|
52
|
+
<line num="69" count="0" type="stmt"/>
|
|
53
|
+
<line num="73" count="0" type="stmt"/>
|
|
54
|
+
</file>
|
|
55
|
+
<file name="use-site-metadata.js" path="/home/runner/work/doctocat/doctocat/theme/src/use-site-metadata.js">
|
|
56
|
+
<metrics statements="2" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
57
|
+
<line num="4" count="0" type="stmt"/>
|
|
58
|
+
<line num="16" count="0" type="stmt"/>
|
|
59
|
+
</file>
|
|
60
|
+
</package>
|
|
61
|
+
<package name="src.components">
|
|
62
|
+
<metrics statements="227" coveredstatements="6" conditionals="138" coveredconditionals="12" methods="109" coveredmethods="3"/>
|
|
63
|
+
<file name="blockquote.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/blockquote.js">
|
|
64
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
65
|
+
<line num="4" count="0" type="stmt"/>
|
|
66
|
+
</file>
|
|
67
|
+
<file name="caption.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/caption.js">
|
|
68
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
69
|
+
<line num="5" count="0" type="stmt"/>
|
|
70
|
+
</file>
|
|
71
|
+
<file name="clipboard-copy.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/clipboard-copy.js">
|
|
72
|
+
<metrics statements="8" coveredstatements="0" conditionals="4" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
73
|
+
<line num="7" count="0" type="stmt"/>
|
|
74
|
+
<line num="9" count="0" type="stmt"/>
|
|
75
|
+
<line num="10" count="0" type="stmt"/>
|
|
76
|
+
<line num="11" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
77
|
+
<line num="14" count="0" type="stmt"/>
|
|
78
|
+
<line num="17" count="0" type="stmt"/>
|
|
79
|
+
<line num="22" count="0" type="stmt"/>
|
|
80
|
+
<line num="23" count="0" type="stmt"/>
|
|
81
|
+
</file>
|
|
82
|
+
<file name="code.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/code.js">
|
|
83
|
+
<metrics statements="8" coveredstatements="0" conditionals="4" coveredconditionals="0" methods="4" coveredmethods="0"/>
|
|
84
|
+
<line num="10" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
85
|
+
<line num="11" count="0" type="stmt"/>
|
|
86
|
+
<line num="13" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
87
|
+
<line num="14" count="0" type="stmt"/>
|
|
88
|
+
<line num="17" count="0" type="stmt"/>
|
|
89
|
+
<line num="38" count="0" type="stmt"/>
|
|
90
|
+
<line num="49" count="0" type="stmt"/>
|
|
91
|
+
<line num="51" count="0" type="stmt"/>
|
|
92
|
+
</file>
|
|
93
|
+
<file name="container.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/container.js">
|
|
94
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
95
|
+
<line num="5" count="0" type="stmt"/>
|
|
96
|
+
</file>
|
|
97
|
+
<file name="contributors.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/contributors.js">
|
|
98
|
+
<metrics statements="4" coveredstatements="4" conditionals="4" coveredconditionals="4" methods="2" coveredmethods="2"/>
|
|
99
|
+
<line num="10" count="6" type="stmt"/>
|
|
100
|
+
<line num="11" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
101
|
+
<line num="13" count="6" type="stmt"/>
|
|
102
|
+
<line num="21" count="6" type="stmt"/>
|
|
103
|
+
</file>
|
|
104
|
+
<file name="dark-button.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/dark-button.js">
|
|
105
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
106
|
+
<line num="4" count="0" type="stmt"/>
|
|
107
|
+
</file>
|
|
108
|
+
<file name="dark-text-input.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/dark-text-input.js">
|
|
109
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
110
|
+
<line num="4" count="0" type="stmt"/>
|
|
111
|
+
</file>
|
|
112
|
+
<file name="description-list.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/description-list.js">
|
|
113
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
114
|
+
<line num="4" count="0" type="stmt"/>
|
|
115
|
+
</file>
|
|
116
|
+
<file name="details.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/details.js">
|
|
117
|
+
<metrics statements="16" coveredstatements="0" conditionals="11" coveredconditionals="0" methods="6" coveredmethods="0"/>
|
|
118
|
+
<line num="7" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
119
|
+
<line num="9" count="0" type="stmt"/>
|
|
120
|
+
<line num="15" count="0" type="stmt"/>
|
|
121
|
+
<line num="30" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
122
|
+
<line num="34" count="0" type="stmt"/>
|
|
123
|
+
<line num="37" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
124
|
+
<line num="38" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
125
|
+
<line num="39" count="0" type="stmt"/>
|
|
126
|
+
<line num="41" count="0" type="stmt"/>
|
|
127
|
+
<line num="46" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
128
|
+
<line num="47" count="0" type="stmt"/>
|
|
129
|
+
<line num="48" count="0" type="stmt"/>
|
|
130
|
+
<line num="53" count="0" type="stmt"/>
|
|
131
|
+
<line num="54" count="0" type="stmt"/>
|
|
132
|
+
<line num="57" count="0" type="stmt"/>
|
|
133
|
+
<line num="64" count="0" type="stmt"/>
|
|
134
|
+
</file>
|
|
135
|
+
<file name="do-dont.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/do-dont.js">
|
|
136
|
+
<metrics statements="5" coveredstatements="0" conditionals="2" coveredconditionals="0" methods="4" coveredmethods="0"/>
|
|
137
|
+
<line num="6" count="0" type="stmt"/>
|
|
138
|
+
<line num="17" count="0" type="stmt"/>
|
|
139
|
+
<line num="22" count="0" type="stmt"/>
|
|
140
|
+
<line num="33" count="0" type="stmt"/>
|
|
141
|
+
<line num="44" count="0" type="stmt"/>
|
|
142
|
+
</file>
|
|
143
|
+
<file name="drawer.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/drawer.js">
|
|
144
|
+
<metrics statements="5" coveredstatements="0" conditionals="2" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
145
|
+
<line num="7" count="0" type="stmt"/>
|
|
146
|
+
<line num="14" count="0" type="stmt"/>
|
|
147
|
+
<line num="15" count="0" type="stmt"/>
|
|
148
|
+
<line num="17" count="0" type="stmt"/>
|
|
149
|
+
<line num="30" count="0" type="stmt"/>
|
|
150
|
+
</file>
|
|
151
|
+
<file name="frame.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/frame.js">
|
|
152
|
+
<metrics statements="5" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="0"/>
|
|
153
|
+
<line num="7" count="0" type="stmt"/>
|
|
154
|
+
<line num="8" count="0" type="stmt"/>
|
|
155
|
+
<line num="16" count="0" type="stmt"/>
|
|
156
|
+
<line num="23" count="0" type="stmt"/>
|
|
157
|
+
<line num="25" count="0" type="stmt"/>
|
|
158
|
+
</file>
|
|
159
|
+
<file name="head.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/head.js">
|
|
160
|
+
<metrics statements="4" coveredstatements="0" conditionals="4" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
161
|
+
<line num="6" count="0" type="stmt"/>
|
|
162
|
+
<line num="7" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
163
|
+
<line num="10" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
164
|
+
<line num="12" count="0" type="stmt"/>
|
|
165
|
+
</file>
|
|
166
|
+
<file name="header.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/header.js">
|
|
167
|
+
<metrics statements="16" coveredstatements="0" conditionals="10" coveredconditionals="0" methods="8" coveredmethods="0"/>
|
|
168
|
+
<line num="14" count="0" type="stmt"/>
|
|
169
|
+
<line num="17" count="0" type="stmt"/>
|
|
170
|
+
<line num="18" count="0" type="stmt"/>
|
|
171
|
+
<line num="21" count="0" type="stmt"/>
|
|
172
|
+
<line num="22" count="0" type="stmt"/>
|
|
173
|
+
<line num="23" count="0" type="stmt"/>
|
|
174
|
+
<line num="88" count="0" type="stmt"/>
|
|
175
|
+
<line num="94" count="0" type="stmt"/>
|
|
176
|
+
<line num="101" count="0" type="stmt"/>
|
|
177
|
+
<line num="108" count="0" type="stmt"/>
|
|
178
|
+
<line num="117" count="0" type="stmt"/>
|
|
179
|
+
<line num="122" count="0" type="stmt"/>
|
|
180
|
+
<line num="125" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
181
|
+
<line num="126" count="0" type="stmt"/>
|
|
182
|
+
<line num="130" count="0" type="stmt"/>
|
|
183
|
+
<line num="139" count="0" type="stmt"/>
|
|
184
|
+
</file>
|
|
185
|
+
<file name="heading.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/heading.js">
|
|
186
|
+
<metrics statements="17" coveredstatements="0" conditionals="4" coveredconditionals="0" methods="7" coveredmethods="0"/>
|
|
187
|
+
<line num="10" count="0" type="stmt"/>
|
|
188
|
+
<line num="26" count="0" type="stmt"/>
|
|
189
|
+
<line num="27" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
190
|
+
<line num="28" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
191
|
+
<line num="30" count="0" type="stmt"/>
|
|
192
|
+
<line num="46" count="0" type="stmt"/>
|
|
193
|
+
<line num="52" count="0" type="stmt"/>
|
|
194
|
+
<line num="58" count="0" type="stmt"/>
|
|
195
|
+
<line num="62" count="0" type="stmt"/>
|
|
196
|
+
<line num="66" count="0" type="stmt"/>
|
|
197
|
+
<line num="70" count="0" type="stmt"/>
|
|
198
|
+
<line num="75" count="0" type="stmt"/>
|
|
199
|
+
<line num="76" count="0" type="stmt"/>
|
|
200
|
+
<line num="77" count="0" type="stmt"/>
|
|
201
|
+
<line num="78" count="0" type="stmt"/>
|
|
202
|
+
<line num="79" count="0" type="stmt"/>
|
|
203
|
+
<line num="80" count="0" type="stmt"/>
|
|
204
|
+
</file>
|
|
205
|
+
<file name="hero-layout.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/hero-layout.js">
|
|
206
|
+
<metrics statements="5" coveredstatements="0" conditionals="2" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
207
|
+
<line num="11" count="0" type="stmt"/>
|
|
208
|
+
<line num="13" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
209
|
+
<line num="14" count="0" type="stmt"/>
|
|
210
|
+
<line num="17" count="0" type="stmt"/>
|
|
211
|
+
<line num="32" count="0" type="stmt"/>
|
|
212
|
+
</file>
|
|
213
|
+
<file name="hero.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/hero.js">
|
|
214
|
+
<metrics statements="2" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
215
|
+
<line num="7" count="0" type="stmt"/>
|
|
216
|
+
<line num="9" count="0" type="stmt"/>
|
|
217
|
+
</file>
|
|
218
|
+
<file name="horizontal-rule.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/horizontal-rule.js">
|
|
219
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
220
|
+
<line num="4" count="0" type="stmt"/>
|
|
221
|
+
</file>
|
|
222
|
+
<file name="image-container.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/image-container.js">
|
|
223
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
224
|
+
<line num="5" count="0" type="stmt"/>
|
|
225
|
+
</file>
|
|
226
|
+
<file name="image.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/image.js">
|
|
227
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
228
|
+
<line num="4" count="0" type="stmt"/>
|
|
229
|
+
</file>
|
|
230
|
+
<file name="inline-code.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/inline-code.js">
|
|
231
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
232
|
+
<line num="4" count="0" type="stmt"/>
|
|
233
|
+
</file>
|
|
234
|
+
<file name="layout.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/layout.js">
|
|
235
|
+
<metrics statements="9" coveredstatements="0" conditionals="20" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
236
|
+
<line num="30" count="0" type="stmt"/>
|
|
237
|
+
<line num="32" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
238
|
+
<line num="33" count="0" type="stmt"/>
|
|
239
|
+
<line num="36" count="0" type="stmt"/>
|
|
240
|
+
<line num="39" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
241
|
+
<line num="40" count="0" type="stmt"/>
|
|
242
|
+
<line num="41" count="0" type="stmt"/>
|
|
243
|
+
<line num="44" count="0" type="stmt"/>
|
|
244
|
+
<line num="129" count="0" type="stmt"/>
|
|
245
|
+
</file>
|
|
246
|
+
<file name="list.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/list.js">
|
|
247
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
248
|
+
<line num="4" count="0" type="stmt"/>
|
|
249
|
+
</file>
|
|
250
|
+
<file name="live-code.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/live-code.js">
|
|
251
|
+
<metrics statements="13" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="7" coveredmethods="0"/>
|
|
252
|
+
<line num="12" count="0" type="stmt"/>
|
|
253
|
+
<line num="13" count="0" type="stmt"/>
|
|
254
|
+
<line num="14" count="0" type="stmt"/>
|
|
255
|
+
<line num="18" count="0" type="stmt"/>
|
|
256
|
+
<line num="19" count="0" type="stmt"/>
|
|
257
|
+
<line num="23" count="0" type="stmt"/>
|
|
258
|
+
<line num="25" count="0" type="stmt"/>
|
|
259
|
+
<line num="30" count="0" type="stmt"/>
|
|
260
|
+
<line num="34" count="0" type="stmt"/>
|
|
261
|
+
<line num="38" count="0" type="stmt"/>
|
|
262
|
+
<line num="39" count="0" type="stmt"/>
|
|
263
|
+
<line num="40" count="0" type="stmt"/>
|
|
264
|
+
<line num="42" count="0" type="stmt"/>
|
|
265
|
+
</file>
|
|
266
|
+
<file name="live-preview-wrapper.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/live-preview-wrapper.js">
|
|
267
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
268
|
+
<line num="8" count="0" type="stmt"/>
|
|
269
|
+
</file>
|
|
270
|
+
<file name="mobile-search.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/mobile-search.js">
|
|
271
|
+
<metrics statements="18" coveredstatements="0" conditionals="15" coveredconditionals="0" methods="8" coveredmethods="0"/>
|
|
272
|
+
<line num="14" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
273
|
+
<line num="16" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
274
|
+
<line num="18" count="0" type="stmt"/>
|
|
275
|
+
<line num="20" count="0" type="stmt"/>
|
|
276
|
+
<line num="23" count="0" type="stmt"/>
|
|
277
|
+
<line num="25" count="0" type="stmt"/>
|
|
278
|
+
<line num="30" count="0" type="stmt"/>
|
|
279
|
+
<line num="31" count="0" type="stmt"/>
|
|
280
|
+
<line num="34" count="0" type="stmt"/>
|
|
281
|
+
<line num="35" count="0" type="stmt"/>
|
|
282
|
+
<line num="38" count="0" type="stmt"/>
|
|
283
|
+
<line num="41" count="0" type="stmt"/>
|
|
284
|
+
<line num="58" count="0" type="stmt"/>
|
|
285
|
+
<line num="61" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
286
|
+
<line num="62" count="0" type="stmt"/>
|
|
287
|
+
<line num="63" count="0" type="stmt"/>
|
|
288
|
+
<line num="66" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
289
|
+
<line num="77" count="0" type="stmt"/>
|
|
290
|
+
</file>
|
|
291
|
+
<file name="nav-drawer.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/nav-drawer.js">
|
|
292
|
+
<metrics statements="20" coveredstatements="0" conditionals="14" coveredconditionals="0" methods="9" coveredmethods="0"/>
|
|
293
|
+
<line num="16" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
294
|
+
<line num="17" count="0" type="stmt"/>
|
|
295
|
+
<line num="19" count="0" type="stmt"/>
|
|
296
|
+
<line num="21" count="0" type="stmt"/>
|
|
297
|
+
<line num="22" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
298
|
+
<line num="23" count="0" type="stmt"/>
|
|
299
|
+
<line num="27" count="0" type="stmt"/>
|
|
300
|
+
<line num="31" count="0" type="stmt"/>
|
|
301
|
+
<line num="32" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
302
|
+
<line num="33" count="0" type="stmt"/>
|
|
303
|
+
<line num="34" count="0" type="stmt"/>
|
|
304
|
+
<line num="36" count="0" type="stmt"/>
|
|
305
|
+
<line num="37" count="0" type="stmt"/>
|
|
306
|
+
<line num="42" count="0" type="stmt"/>
|
|
307
|
+
<line num="46" count="0" type="stmt"/>
|
|
308
|
+
<line num="47" count="0" type="stmt"/>
|
|
309
|
+
<line num="112" count="0" type="stmt"/>
|
|
310
|
+
<line num="113" count="0" type="stmt"/>
|
|
311
|
+
<line num="125" count="0" type="stmt"/>
|
|
312
|
+
<line num="134" count="0" type="stmt"/>
|
|
313
|
+
</file>
|
|
314
|
+
<file name="nav-dropdown.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/nav-dropdown.js">
|
|
315
|
+
<metrics statements="3" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
316
|
+
<line num="14" count="0" type="stmt"/>
|
|
317
|
+
<line num="17" count="0" type="stmt"/>
|
|
318
|
+
<line num="40" count="0" type="stmt"/>
|
|
319
|
+
</file>
|
|
320
|
+
<file name="nav-items.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/nav-items.js">
|
|
321
|
+
<metrics statements="5" coveredstatements="0" conditionals="4" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
322
|
+
<line num="9" count="0" type="stmt"/>
|
|
323
|
+
<line num="20" count="0" type="stmt"/>
|
|
324
|
+
<line num="28" count="0" type="stmt"/>
|
|
325
|
+
<line num="31" count="0" type="stmt"/>
|
|
326
|
+
<line num="51" count="0" type="stmt"/>
|
|
327
|
+
</file>
|
|
328
|
+
<file name="note.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/note.js">
|
|
329
|
+
<metrics statements="2" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
330
|
+
<line num="5" count="0" type="stmt"/>
|
|
331
|
+
<line num="33" count="0" type="stmt"/>
|
|
332
|
+
</file>
|
|
333
|
+
<file name="page-footer.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/page-footer.js">
|
|
334
|
+
<metrics statements="2" coveredstatements="2" conditionals="8" coveredconditionals="8" methods="1" coveredmethods="1"/>
|
|
335
|
+
<line num="7" count="5" type="cond" truecount="4" falsecount="0"/>
|
|
336
|
+
<line num="25" count="1" type="stmt"/>
|
|
337
|
+
</file>
|
|
338
|
+
<file name="paragraph.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/paragraph.js">
|
|
339
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
340
|
+
<line num="4" count="0" type="stmt"/>
|
|
341
|
+
</file>
|
|
342
|
+
<file name="search-results.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/search-results.js">
|
|
343
|
+
<metrics statements="6" coveredstatements="0" conditionals="8" coveredconditionals="0" methods="3" coveredmethods="0"/>
|
|
344
|
+
<line num="7" count="0" type="stmt"/>
|
|
345
|
+
<line num="9" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
346
|
+
<line num="10" count="0" type="stmt"/>
|
|
347
|
+
<line num="17" count="0" type="stmt"/>
|
|
348
|
+
<line num="18" count="0" type="stmt"/>
|
|
349
|
+
<line num="43" count="0" type="stmt"/>
|
|
350
|
+
</file>
|
|
351
|
+
<file name="search.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/search.js">
|
|
352
|
+
<metrics statements="15" coveredstatements="0" conditionals="10" coveredconditionals="0" methods="6" coveredmethods="0"/>
|
|
353
|
+
<line num="11" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
354
|
+
<line num="13" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
355
|
+
<line num="15" count="0" type="stmt"/>
|
|
356
|
+
<line num="17" count="0" type="stmt"/>
|
|
357
|
+
<line num="19" count="0" type="stmt"/>
|
|
358
|
+
<line num="24" count="0" type="stmt"/>
|
|
359
|
+
<line num="25" count="0" type="stmt"/>
|
|
360
|
+
<line num="26" count="0" type="stmt"/>
|
|
361
|
+
<line num="28" count="0" type="stmt"/>
|
|
362
|
+
<line num="31" count="0" type="stmt"/>
|
|
363
|
+
<line num="38" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
364
|
+
<line num="39" count="0" type="stmt"/>
|
|
365
|
+
<line num="40" count="0" type="stmt"/>
|
|
366
|
+
<line num="43" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
367
|
+
<line num="54" count="0" type="stmt"/>
|
|
368
|
+
</file>
|
|
369
|
+
<file name="sidebar.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/sidebar.js">
|
|
370
|
+
<metrics statements="10" coveredstatements="0" conditionals="4" coveredconditionals="0" methods="4" coveredmethods="0"/>
|
|
371
|
+
<line num="8" count="0" type="stmt"/>
|
|
372
|
+
<line num="10" count="0" type="stmt"/>
|
|
373
|
+
<line num="12" count="0" type="stmt"/>
|
|
374
|
+
<line num="16" count="0" type="stmt"/>
|
|
375
|
+
<line num="18" count="0" type="stmt"/>
|
|
376
|
+
<line num="19" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
377
|
+
<line num="20" count="0" type="stmt"/>
|
|
378
|
+
<line num="25" count="0" type="stmt"/>
|
|
379
|
+
<line num="32" count="0" type="stmt"/>
|
|
380
|
+
<line num="34" count="0" type="stmt"/>
|
|
381
|
+
</file>
|
|
382
|
+
<file name="skip-link.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/skip-link.js">
|
|
383
|
+
<metrics statements="2" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
384
|
+
<line num="6" count="0" type="stmt"/>
|
|
385
|
+
<line num="20" count="0" type="stmt"/>
|
|
386
|
+
</file>
|
|
387
|
+
<file name="source-link.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/source-link.js">
|
|
388
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
389
|
+
<line num="6" count="0" type="stmt"/>
|
|
390
|
+
</file>
|
|
391
|
+
<file name="status-label.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/status-label.js">
|
|
392
|
+
<metrics statements="3" coveredstatements="0" conditionals="2" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
393
|
+
<line num="4" count="0" type="stmt"/>
|
|
394
|
+
<line num="12" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
395
|
+
<line num="16" count="0" type="stmt"/>
|
|
396
|
+
</file>
|
|
397
|
+
<file name="storybook-link.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/storybook-link.js">
|
|
398
|
+
<metrics statements="2" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
399
|
+
<line num="5" count="0" type="stmt"/>
|
|
400
|
+
<line num="16" count="0" type="stmt"/>
|
|
401
|
+
</file>
|
|
402
|
+
<file name="table-of-contents.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/table-of-contents.js">
|
|
403
|
+
<metrics statements="3" coveredstatements="0" conditionals="6" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
404
|
+
<line num="5" count="0" type="stmt"/>
|
|
405
|
+
<line num="8" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
406
|
+
<line num="29" count="0" type="stmt"/>
|
|
407
|
+
</file>
|
|
408
|
+
<file name="table.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/table.js">
|
|
409
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
410
|
+
<line num="4" count="0" type="stmt"/>
|
|
411
|
+
</file>
|
|
412
|
+
<file name="wrap-page-element.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/wrap-page-element.js">
|
|
413
|
+
<metrics statements="1" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
414
|
+
<line num="6" count="0" type="stmt"/>
|
|
415
|
+
</file>
|
|
416
|
+
<file name="wrap-root-element.js" path="/home/runner/work/doctocat/doctocat/theme/src/components/wrap-root-element.js">
|
|
417
|
+
<metrics statements="3" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
418
|
+
<line num="20" count="0" type="stmt"/>
|
|
419
|
+
<line num="22" count="0" type="stmt"/>
|
|
420
|
+
<line num="50" count="0" type="stmt"/>
|
|
421
|
+
</file>
|
|
422
|
+
</package>
|
|
423
|
+
</project>
|
|
424
|
+
</coverage>
|