@ttoss/cloud-auth 0.3.1 → 0.5.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.
- package/.turbo/turbo-build.log +6 -6
- package/.turbo/turbo-test.log +29 -0
- package/CHANGELOG.md +12 -0
- package/README.md +19 -0
- package/babel.config.js +3 -0
- package/coverage/clover.xml +209 -0
- package/coverage/coverage-final.json +4 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/config.ts.html +88 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +146 -0
- package/coverage/lcov-report/index.ts.html +91 -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 +196 -0
- package/coverage/lcov-report/template.ts.html +658 -0
- package/coverage/lcov.info +237 -0
- package/dist/esm/index.js +61 -33
- package/dist/index.d.ts +34 -104
- package/dist/index.js +61 -33
- package/jest.config.ts +5 -0
- package/package.json +9 -5
- package/src/template.ts +110 -47
- package/tests/unit/template.test.ts +80 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,10 +8,10 @@ $ tsup
|
|
|
8
8
|
[34mCLI[39m Cleaning output folder
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
-
[32mESM[39m [1mdist/esm/index.js [22m[
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m5.07 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 71ms
|
|
13
|
+
[32mESM[39m [1mdist/esm/index.js [22m[32m4.00 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 74ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 15085ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.59 KB[39m
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
warning package.json: No license field
|
|
2
|
+
$ jest
|
|
3
|
+
PASS tests/unit/template.test.ts (7.517 s)
|
|
4
|
+
✓ do not add schema if not provided (71 ms)
|
|
5
|
+
✓ add schema if provided (1 ms)
|
|
6
|
+
✓ should have autoVerifiedAttributes equal email by default
|
|
7
|
+
✓ should have autoVerifiedAttributes undefined: []
|
|
8
|
+
✓ should have autoVerifiedAttributes undefined: null
|
|
9
|
+
✓ should have autoVerifiedAttributes undefined: false (13 ms)
|
|
10
|
+
✓ should have identity pool by default or true: true (1 ms)
|
|
11
|
+
✓ should have identity pool by default or true: undefined
|
|
12
|
+
✓ should not have identity pool if false (10 ms)
|
|
13
|
+
✓ should have identity pool role attachment with roles
|
|
14
|
+
✓ should not have identity pool role attachment without roles
|
|
15
|
+
✓ default usernameAttributes should be email
|
|
16
|
+
|
|
17
|
+
-------------|---------|----------|---------|---------|-------------------
|
|
18
|
+
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
|
|
19
|
+
-------------|---------|----------|---------|---------|-------------------
|
|
20
|
+
All files | 98.96 | 71.42 | 100 | 98.96 |
|
|
21
|
+
config.ts | 100 | 100 | 100 | 100 |
|
|
22
|
+
index.ts | 100 | 57.14 | 100 | 100 | 1
|
|
23
|
+
template.ts | 98.95 | 85.71 | 100 | 98.95 | 166-167
|
|
24
|
+
-------------|---------|----------|---------|---------|-------------------
|
|
25
|
+
Test Suites: 1 passed, 1 total
|
|
26
|
+
Tests: 12 passed, 12 total
|
|
27
|
+
Snapshots: 0 total
|
|
28
|
+
Time: 8.161 s
|
|
29
|
+
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.5.0](https://github.com/ttoss/ttoss/compare/@ttoss/cloud-auth@0.4.0...@ttoss/cloud-auth@0.5.0) (2023-01-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add iam auth to appsync-api ([#151](https://github.com/ttoss/ttoss/issues/151)) ([c634cdf](https://github.com/ttoss/ttoss/commit/c634cdfc211ba30802907fd864c8db50a9e8c322))
|
|
11
|
+
|
|
12
|
+
# 0.4.0 (2023-01-11)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- task 445/improve cloud auth pedro arantes ([#148](https://github.com/ttoss/ttoss/issues/148)) ([e019266](https://github.com/ttoss/ttoss/commit/e0192663adf6b5a2a82eb0743827dba5ac72f85f))
|
|
17
|
+
|
|
6
18
|
## [0.3.1](https://github.com/ttoss/ttoss/compare/@ttoss/cloud-auth@0.3.0...@ttoss/cloud-auth@0.3.1) (2022-12-24)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @ttoss/cloud-auth
|
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @ttoss/cloud-auth
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
yarn install @ttoss/cloud-auth
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Quickstart
|
|
10
|
+
|
|
11
|
+
Create a `clouformation.ts` file in your project and export the template:
|
|
12
|
+
|
|
13
|
+
```typescript src/cloudformation.ts
|
|
14
|
+
import { createAuthTemplate } from '@ttoss/cloud-auth';
|
|
15
|
+
|
|
16
|
+
const template = createAuthTemplate();
|
|
17
|
+
|
|
18
|
+
export default template;
|
|
19
|
+
```
|
package/babel.config.js
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1673724913070" clover="3.2.0">
|
|
3
|
+
<project timestamp="1673724913070" name="All files">
|
|
4
|
+
<metrics statements="194" coveredstatements="192" conditionals="14" coveredconditionals="10" methods="1" coveredmethods="1" elements="209" coveredelements="203" complexity="0" loc="194" ncloc="194" packages="1" files="3" classes="3"/>
|
|
5
|
+
<file name="config.ts" path="/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/config.ts">
|
|
6
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
7
|
+
<line num="1" count="1" type="stmt"/>
|
|
8
|
+
</file>
|
|
9
|
+
<file name="index.ts" path="/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/index.ts">
|
|
10
|
+
<metrics statements="2" coveredstatements="2" conditionals="7" coveredconditionals="4" methods="0" coveredmethods="0"/>
|
|
11
|
+
<line num="1" count="1" type="cond" truecount="4" falsecount="3"/>
|
|
12
|
+
<line num="2" count="1" type="stmt"/>
|
|
13
|
+
</file>
|
|
14
|
+
<file name="template.ts" path="/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/template.ts">
|
|
15
|
+
<metrics statements="191" coveredstatements="189" conditionals="7" coveredconditionals="6" methods="1" coveredmethods="1"/>
|
|
16
|
+
<line num="1" count="1" type="stmt"/>
|
|
17
|
+
<line num="2" count="1" type="stmt"/>
|
|
18
|
+
<line num="3" count="1" type="stmt"/>
|
|
19
|
+
<line num="4" count="1" type="stmt"/>
|
|
20
|
+
<line num="5" count="1" type="stmt"/>
|
|
21
|
+
<line num="6" count="1" type="stmt"/>
|
|
22
|
+
<line num="7" count="1" type="stmt"/>
|
|
23
|
+
<line num="8" count="1" type="stmt"/>
|
|
24
|
+
<line num="9" count="1" type="stmt"/>
|
|
25
|
+
<line num="10" count="1" type="stmt"/>
|
|
26
|
+
<line num="11" count="1" type="stmt"/>
|
|
27
|
+
<line num="12" count="1" type="stmt"/>
|
|
28
|
+
<line num="13" count="1" type="stmt"/>
|
|
29
|
+
<line num="14" count="1" type="stmt"/>
|
|
30
|
+
<line num="15" count="1" type="stmt"/>
|
|
31
|
+
<line num="16" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
32
|
+
<line num="17" count="12" type="stmt"/>
|
|
33
|
+
<line num="18" count="12" type="stmt"/>
|
|
34
|
+
<line num="19" count="12" type="stmt"/>
|
|
35
|
+
<line num="20" count="12" type="stmt"/>
|
|
36
|
+
<line num="21" count="12" type="stmt"/>
|
|
37
|
+
<line num="22" count="12" type="stmt"/>
|
|
38
|
+
<line num="23" count="12" type="stmt"/>
|
|
39
|
+
<line num="24" count="12" type="stmt"/>
|
|
40
|
+
<line num="25" count="12" type="stmt"/>
|
|
41
|
+
<line num="26" count="12" type="stmt"/>
|
|
42
|
+
<line num="27" count="12" type="stmt"/>
|
|
43
|
+
<line num="28" count="12" type="stmt"/>
|
|
44
|
+
<line num="29" count="12" type="stmt"/>
|
|
45
|
+
<line num="30" count="12" type="stmt"/>
|
|
46
|
+
<line num="31" count="12" type="stmt"/>
|
|
47
|
+
<line num="32" count="12" type="stmt"/>
|
|
48
|
+
<line num="33" count="12" type="stmt"/>
|
|
49
|
+
<line num="34" count="12" type="stmt"/>
|
|
50
|
+
<line num="35" count="12" type="stmt"/>
|
|
51
|
+
<line num="36" count="12" type="stmt"/>
|
|
52
|
+
<line num="37" count="12" type="stmt"/>
|
|
53
|
+
<line num="38" count="12" type="stmt"/>
|
|
54
|
+
<line num="39" count="12" type="stmt"/>
|
|
55
|
+
<line num="40" count="12" type="stmt"/>
|
|
56
|
+
<line num="41" count="12" type="stmt"/>
|
|
57
|
+
<line num="42" count="12" type="stmt"/>
|
|
58
|
+
<line num="43" count="12" type="stmt"/>
|
|
59
|
+
<line num="44" count="12" type="stmt"/>
|
|
60
|
+
<line num="45" count="12" type="stmt"/>
|
|
61
|
+
<line num="46" count="12" type="stmt"/>
|
|
62
|
+
<line num="47" count="12" type="stmt"/>
|
|
63
|
+
<line num="48" count="12" type="stmt"/>
|
|
64
|
+
<line num="49" count="12" type="stmt"/>
|
|
65
|
+
<line num="50" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
66
|
+
<line num="51" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
67
|
+
<line num="52" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
68
|
+
<line num="53" count="12" type="stmt"/>
|
|
69
|
+
<line num="54" count="12" type="stmt"/>
|
|
70
|
+
<line num="55" count="12" type="stmt"/>
|
|
71
|
+
<line num="56" count="12" type="stmt"/>
|
|
72
|
+
<line num="57" count="12" type="stmt"/>
|
|
73
|
+
<line num="58" count="12" type="stmt"/>
|
|
74
|
+
<line num="59" count="12" type="stmt"/>
|
|
75
|
+
<line num="60" count="12" type="stmt"/>
|
|
76
|
+
<line num="61" count="12" type="stmt"/>
|
|
77
|
+
<line num="62" count="12" type="stmt"/>
|
|
78
|
+
<line num="63" count="12" type="stmt"/>
|
|
79
|
+
<line num="64" count="12" type="stmt"/>
|
|
80
|
+
<line num="65" count="12" type="stmt"/>
|
|
81
|
+
<line num="66" count="12" type="stmt"/>
|
|
82
|
+
<line num="67" count="12" type="stmt"/>
|
|
83
|
+
<line num="68" count="12" type="stmt"/>
|
|
84
|
+
<line num="69" count="12" type="stmt"/>
|
|
85
|
+
<line num="70" count="12" type="stmt"/>
|
|
86
|
+
<line num="71" count="12" type="stmt"/>
|
|
87
|
+
<line num="72" count="12" type="stmt"/>
|
|
88
|
+
<line num="73" count="12" type="stmt"/>
|
|
89
|
+
<line num="74" count="12" type="stmt"/>
|
|
90
|
+
<line num="75" count="12" type="stmt"/>
|
|
91
|
+
<line num="76" count="12" type="stmt"/>
|
|
92
|
+
<line num="77" count="12" type="stmt"/>
|
|
93
|
+
<line num="78" count="12" type="stmt"/>
|
|
94
|
+
<line num="79" count="12" type="stmt"/>
|
|
95
|
+
<line num="80" count="12" type="stmt"/>
|
|
96
|
+
<line num="81" count="12" type="stmt"/>
|
|
97
|
+
<line num="82" count="12" type="stmt"/>
|
|
98
|
+
<line num="83" count="12" type="stmt"/>
|
|
99
|
+
<line num="84" count="12" type="stmt"/>
|
|
100
|
+
<line num="85" count="12" type="stmt"/>
|
|
101
|
+
<line num="86" count="12" type="stmt"/>
|
|
102
|
+
<line num="87" count="12" type="stmt"/>
|
|
103
|
+
<line num="88" count="12" type="stmt"/>
|
|
104
|
+
<line num="89" count="12" type="stmt"/>
|
|
105
|
+
<line num="90" count="12" type="stmt"/>
|
|
106
|
+
<line num="91" count="12" type="stmt"/>
|
|
107
|
+
<line num="92" count="12" type="stmt"/>
|
|
108
|
+
<line num="93" count="12" type="stmt"/>
|
|
109
|
+
<line num="94" count="12" type="stmt"/>
|
|
110
|
+
<line num="95" count="12" type="stmt"/>
|
|
111
|
+
<line num="96" count="12" type="stmt"/>
|
|
112
|
+
<line num="97" count="12" type="stmt"/>
|
|
113
|
+
<line num="98" count="12" type="stmt"/>
|
|
114
|
+
<line num="99" count="12" type="stmt"/>
|
|
115
|
+
<line num="100" count="12" type="stmt"/>
|
|
116
|
+
<line num="101" count="12" type="stmt"/>
|
|
117
|
+
<line num="102" count="12" type="stmt"/>
|
|
118
|
+
<line num="103" count="12" type="stmt"/>
|
|
119
|
+
<line num="104" count="12" type="stmt"/>
|
|
120
|
+
<line num="105" count="12" type="stmt"/>
|
|
121
|
+
<line num="106" count="12" type="stmt"/>
|
|
122
|
+
<line num="107" count="12" type="stmt"/>
|
|
123
|
+
<line num="108" count="12" type="stmt"/>
|
|
124
|
+
<line num="109" count="12" type="stmt"/>
|
|
125
|
+
<line num="110" count="12" type="stmt"/>
|
|
126
|
+
<line num="111" count="12" type="stmt"/>
|
|
127
|
+
<line num="112" count="12" type="stmt"/>
|
|
128
|
+
<line num="113" count="12" type="stmt"/>
|
|
129
|
+
<line num="114" count="12" type="stmt"/>
|
|
130
|
+
<line num="115" count="12" type="stmt"/>
|
|
131
|
+
<line num="116" count="12" type="stmt"/>
|
|
132
|
+
<line num="117" count="12" type="stmt"/>
|
|
133
|
+
<line num="118" count="12" type="stmt"/>
|
|
134
|
+
<line num="119" count="12" type="stmt"/>
|
|
135
|
+
<line num="120" count="12" type="stmt"/>
|
|
136
|
+
<line num="121" count="12" type="stmt"/>
|
|
137
|
+
<line num="122" count="12" type="stmt"/>
|
|
138
|
+
<line num="123" count="12" type="stmt"/>
|
|
139
|
+
<line num="124" count="12" type="stmt"/>
|
|
140
|
+
<line num="125" count="12" type="stmt"/>
|
|
141
|
+
<line num="126" count="12" type="stmt"/>
|
|
142
|
+
<line num="127" count="12" type="stmt"/>
|
|
143
|
+
<line num="128" count="12" type="stmt"/>
|
|
144
|
+
<line num="129" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
145
|
+
<line num="130" count="11" type="stmt"/>
|
|
146
|
+
<line num="131" count="11" type="stmt"/>
|
|
147
|
+
<line num="132" count="11" type="stmt"/>
|
|
148
|
+
<line num="133" count="11" type="stmt"/>
|
|
149
|
+
<line num="134" count="11" type="stmt"/>
|
|
150
|
+
<line num="135" count="11" type="stmt"/>
|
|
151
|
+
<line num="136" count="11" type="stmt"/>
|
|
152
|
+
<line num="137" count="11" type="stmt"/>
|
|
153
|
+
<line num="138" count="11" type="stmt"/>
|
|
154
|
+
<line num="139" count="11" type="stmt"/>
|
|
155
|
+
<line num="140" count="11" type="stmt"/>
|
|
156
|
+
<line num="141" count="11" type="stmt"/>
|
|
157
|
+
<line num="142" count="11" type="stmt"/>
|
|
158
|
+
<line num="143" count="11" type="stmt"/>
|
|
159
|
+
<line num="144" count="11" type="stmt"/>
|
|
160
|
+
<line num="145" count="11" type="stmt"/>
|
|
161
|
+
<line num="146" count="11" type="stmt"/>
|
|
162
|
+
<line num="147" count="11" type="stmt"/>
|
|
163
|
+
<line num="148" count="11" type="stmt"/>
|
|
164
|
+
<line num="149" count="11" type="stmt"/>
|
|
165
|
+
<line num="150" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
166
|
+
<line num="151" count="1" type="stmt"/>
|
|
167
|
+
<line num="152" count="1" type="stmt"/>
|
|
168
|
+
<line num="153" count="1" type="stmt"/>
|
|
169
|
+
<line num="154" count="1" type="stmt"/>
|
|
170
|
+
<line num="155" count="1" type="stmt"/>
|
|
171
|
+
<line num="156" count="1" type="stmt"/>
|
|
172
|
+
<line num="157" count="1" type="stmt"/>
|
|
173
|
+
<line num="158" count="1" type="stmt"/>
|
|
174
|
+
<line num="159" count="1" type="stmt"/>
|
|
175
|
+
<line num="160" count="1" type="stmt"/>
|
|
176
|
+
<line num="161" count="1" type="stmt"/>
|
|
177
|
+
<line num="162" count="1" type="stmt"/>
|
|
178
|
+
<line num="163" count="1" type="stmt"/>
|
|
179
|
+
<line num="164" count="11" type="stmt"/>
|
|
180
|
+
<line num="165" count="11" type="cond" truecount="0" falsecount="1"/>
|
|
181
|
+
<line num="166" count="0" type="stmt"/>
|
|
182
|
+
<line num="167" count="0" type="stmt"/>
|
|
183
|
+
<line num="168" count="11" type="stmt"/>
|
|
184
|
+
<line num="169" count="11" type="stmt"/>
|
|
185
|
+
<line num="170" count="11" type="stmt"/>
|
|
186
|
+
<line num="171" count="11" type="stmt"/>
|
|
187
|
+
<line num="172" count="11" type="stmt"/>
|
|
188
|
+
<line num="173" count="11" type="stmt"/>
|
|
189
|
+
<line num="174" count="11" type="stmt"/>
|
|
190
|
+
<line num="175" count="11" type="stmt"/>
|
|
191
|
+
<line num="176" count="11" type="stmt"/>
|
|
192
|
+
<line num="177" count="11" type="stmt"/>
|
|
193
|
+
<line num="178" count="11" type="stmt"/>
|
|
194
|
+
<line num="179" count="11" type="stmt"/>
|
|
195
|
+
<line num="180" count="11" type="stmt"/>
|
|
196
|
+
<line num="181" count="11" type="stmt"/>
|
|
197
|
+
<line num="182" count="11" type="stmt"/>
|
|
198
|
+
<line num="183" count="11" type="stmt"/>
|
|
199
|
+
<line num="184" count="12" type="stmt"/>
|
|
200
|
+
<line num="185" count="12" type="stmt"/>
|
|
201
|
+
<line num="186" count="12" type="stmt"/>
|
|
202
|
+
<line num="187" count="1" type="stmt"/>
|
|
203
|
+
<line num="188" count="1" type="stmt"/>
|
|
204
|
+
<line num="189" count="1" type="stmt"/>
|
|
205
|
+
<line num="190" count="1" type="stmt"/>
|
|
206
|
+
<line num="191" count="1" type="stmt"/>
|
|
207
|
+
</file>
|
|
208
|
+
</project>
|
|
209
|
+
</coverage>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
{"/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/config.ts": {"path":"/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/config.ts","all":false,"statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":41}}},"s":{"0":1},"branchMap":{},"b":{},"fnMap":{},"f":{}}
|
|
2
|
+
,"/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/index.ts": {"path":"/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/index.ts","all":false,"statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":25}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":48}}},"s":{"0":1,"1":1},"branchMap":{"0":{"type":"branch","line":1,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":25}},"locations":[{"start":{"line":1,"column":0},"end":{"line":1,"column":25}}]},"1":{"type":"branch","line":1,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":25}},"locations":[{"start":{"line":1,"column":0},"end":{"line":1,"column":25}}]},"2":{"type":"branch","line":1,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":25}},"locations":[{"start":{"line":1,"column":0},"end":{"line":1,"column":25}}]},"3":{"type":"branch","line":1,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":25}},"locations":[{"start":{"line":1,"column":0},"end":{"line":1,"column":25}}]},"4":{"type":"branch","line":1,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":25}},"locations":[{"start":{"line":1,"column":0},"end":{"line":1,"column":25}}]},"5":{"type":"branch","line":1,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":25}},"locations":[{"start":{"line":1,"column":0},"end":{"line":1,"column":25}}]},"6":{"type":"branch","line":1,"loc":{"start":{"line":1,"column":0},"end":{"line":1,"column":25}},"locations":[{"start":{"line":1,"column":0},"end":{"line":1,"column":25}}]}},"b":{"0":[2],"1":[1],"2":[0],"3":[1],"4":[0],"5":[0],"6":[1]},"fnMap":{},"f":{}}
|
|
3
|
+
,"/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/template.ts": {"path":"/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/template.ts","all":false,"statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":63}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":51}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":0}},"3":{"start":{"line":4,"column":0},"end":{"line":4,"column":51}},"4":{"start":{"line":5,"column":0},"end":{"line":5,"column":0}},"5":{"start":{"line":6,"column":0},"end":{"line":6,"column":63}},"6":{"start":{"line":7,"column":0},"end":{"line":7,"column":0}},"7":{"start":{"line":8,"column":0},"end":{"line":8,"column":59}},"8":{"start":{"line":9,"column":0},"end":{"line":9,"column":0}},"9":{"start":{"line":10,"column":0},"end":{"line":10,"column":11}},"10":{"start":{"line":11,"column":0},"end":{"line":11,"column":10}},"11":{"start":{"line":12,"column":0},"end":{"line":12,"column":5}},"12":{"start":{"line":13,"column":0},"end":{"line":13,"column":32}},"13":{"start":{"line":14,"column":0},"end":{"line":14,"column":6}},"14":{"start":{"line":15,"column":0},"end":{"line":15,"column":0}},"15":{"start":{"line":16,"column":0},"end":{"line":16,"column":36}},"16":{"start":{"line":17,"column":0},"end":{"line":17,"column":37}},"17":{"start":{"line":18,"column":0},"end":{"line":18,"column":22}},"18":{"start":{"line":19,"column":0},"end":{"line":19,"column":8}},"19":{"start":{"line":20,"column":0},"end":{"line":20,"column":9}},"20":{"start":{"line":21,"column":0},"end":{"line":21,"column":33}},"21":{"start":{"line":22,"column":0},"end":{"line":22,"column":4}},"22":{"start":{"line":23,"column":0},"end":{"line":23,"column":74}},"23":{"start":{"line":24,"column":0},"end":{"line":24,"column":25}},"24":{"start":{"line":25,"column":0},"end":{"line":25,"column":11}},"25":{"start":{"line":26,"column":0},"end":{"line":26,"column":25}},"26":{"start":{"line":27,"column":0},"end":{"line":27,"column":27}},"27":{"start":{"line":28,"column":0},"end":{"line":28,"column":4}},"28":{"start":{"line":29,"column":0},"end":{"line":29,"column":5}},"29":{"start":{"line":30,"column":0},"end":{"line":30,"column":120}},"30":{"start":{"line":31,"column":0},"end":{"line":31,"column":5}},"31":{"start":{"line":32,"column":0},"end":{"line":32,"column":12}},"32":{"start":{"line":33,"column":0},"end":{"line":33,"column":69}},"33":{"start":{"line":34,"column":0},"end":{"line":34,"column":37}},"34":{"start":{"line":35,"column":0},"end":{"line":35,"column":22}},"35":{"start":{"line":36,"column":0},"end":{"line":36,"column":18}},"36":{"start":{"line":37,"column":0},"end":{"line":37,"column":34}},"37":{"start":{"line":38,"column":0},"end":{"line":38,"column":24}},"38":{"start":{"line":39,"column":0},"end":{"line":39,"column":24}},"39":{"start":{"line":40,"column":0},"end":{"line":40,"column":6}},"40":{"start":{"line":41,"column":0},"end":{"line":41,"column":23}},"41":{"start":{"line":42,"column":0},"end":{"line":42,"column":34}},"42":{"start":{"line":43,"column":0},"end":{"line":43,"column":24}},"43":{"start":{"line":44,"column":0},"end":{"line":44,"column":24}},"44":{"start":{"line":45,"column":0},"end":{"line":45,"column":6}},"45":{"start":{"line":46,"column":0},"end":{"line":46,"column":6}},"46":{"start":{"line":47,"column":0},"end":{"line":47,"column":62}},"47":{"start":{"line":48,"column":0},"end":{"line":48,"column":12}},"48":{"start":{"line":49,"column":0},"end":{"line":49,"column":32}},"49":{"start":{"line":50,"column":0},"end":{"line":50,"column":78}},"50":{"start":{"line":51,"column":0},"end":{"line":51,"column":30}},"51":{"start":{"line":52,"column":0},"end":{"line":52,"column":11}},"52":{"start":{"line":53,"column":0},"end":{"line":53,"column":0}},"53":{"start":{"line":54,"column":0},"end":{"line":54,"column":44}},"54":{"start":{"line":55,"column":0},"end":{"line":55,"column":43}},"55":{"start":{"line":56,"column":0},"end":{"line":56,"column":16}},"56":{"start":{"line":57,"column":0},"end":{"line":57,"column":35}},"57":{"start":{"line":58,"column":0},"end":{"line":58,"column":39}},"58":{"start":{"line":59,"column":0},"end":{"line":59,"column":21}},"59":{"start":{"line":60,"column":0},"end":{"line":60,"column":33}},"60":{"start":{"line":61,"column":0},"end":{"line":61,"column":21}},"61":{"start":{"line":62,"column":0},"end":{"line":62,"column":29}},"62":{"start":{"line":63,"column":0},"end":{"line":63,"column":53}},"63":{"start":{"line":64,"column":0},"end":{"line":64,"column":38}},"64":{"start":{"line":65,"column":0},"end":{"line":65,"column":36}},"65":{"start":{"line":66,"column":0},"end":{"line":66,"column":36}},"66":{"start":{"line":67,"column":0},"end":{"line":67,"column":38}},"67":{"start":{"line":68,"column":0},"end":{"line":68,"column":48}},"68":{"start":{"line":69,"column":0},"end":{"line":69,"column":14}},"69":{"start":{"line":70,"column":0},"end":{"line":70,"column":12}},"70":{"start":{"line":71,"column":0},"end":{"line":71,"column":25}},"71":{"start":{"line":72,"column":0},"end":{"line":72,"column":49}},"72":{"start":{"line":73,"column":0},"end":{"line":73,"column":34}},"73":{"start":{"line":74,"column":0},"end":{"line":74,"column":33}},"74":{"start":{"line":75,"column":0},"end":{"line":75,"column":12}},"75":{"start":{"line":76,"column":0},"end":{"line":76,"column":25}},"76":{"start":{"line":77,"column":0},"end":{"line":77,"column":34}},"77":{"start":{"line":78,"column":0},"end":{"line":78,"column":12}},"78":{"start":{"line":79,"column":0},"end":{"line":79,"column":10}},"79":{"start":{"line":80,"column":0},"end":{"line":80,"column":8}},"80":{"start":{"line":81,"column":0},"end":{"line":81,"column":41}},"81":{"start":{"line":82,"column":0},"end":{"line":82,"column":45}},"82":{"start":{"line":83,"column":0},"end":{"line":83,"column":21}},"83":{"start":{"line":84,"column":0},"end":{"line":84,"column":50}},"84":{"start":{"line":85,"column":0},"end":{"line":85,"column":23}},"85":{"start":{"line":86,"column":0},"end":{"line":86,"column":35}},"86":{"start":{"line":87,"column":0},"end":{"line":87,"column":12}},"87":{"start":{"line":88,"column":0},"end":{"line":88,"column":10}},"88":{"start":{"line":89,"column":0},"end":{"line":89,"column":8}},"89":{"start":{"line":90,"column":0},"end":{"line":90,"column":6}},"90":{"start":{"line":91,"column":0},"end":{"line":91,"column":14}},"91":{"start":{"line":92,"column":0},"end":{"line":92,"column":15}},"92":{"start":{"line":93,"column":0},"end":{"line":93,"column":68}},"93":{"start":{"line":94,"column":0},"end":{"line":94,"column":16}},"94":{"start":{"line":95,"column":0},"end":{"line":95,"column":29}},"95":{"start":{"line":96,"column":0},"end":{"line":96,"column":10}},"96":{"start":{"line":97,"column":0},"end":{"line":97,"column":17}},"97":{"start":{"line":98,"column":0},"end":{"line":98,"column":17}},"98":{"start":{"line":99,"column":0},"end":{"line":99,"column":69}},"99":{"start":{"line":100,"column":0},"end":{"line":100,"column":12}},"100":{"start":{"line":101,"column":0},"end":{"line":101,"column":10}},"101":{"start":{"line":102,"column":0},"end":{"line":102,"column":8}},"102":{"start":{"line":103,"column":0},"end":{"line":103,"column":19}},"103":{"start":{"line":104,"column":0},"end":{"line":104,"column":72}},"104":{"start":{"line":105,"column":0},"end":{"line":105,"column":16}},"105":{"start":{"line":106,"column":0},"end":{"line":106,"column":40}},"106":{"start":{"line":107,"column":0},"end":{"line":107,"column":10}},"107":{"start":{"line":108,"column":0},"end":{"line":108,"column":17}},"108":{"start":{"line":109,"column":0},"end":{"line":109,"column":17}},"109":{"start":{"line":110,"column":0},"end":{"line":110,"column":73}},"110":{"start":{"line":111,"column":0},"end":{"line":111,"column":12}},"111":{"start":{"line":112,"column":0},"end":{"line":112,"column":10}},"112":{"start":{"line":113,"column":0},"end":{"line":113,"column":8}},"113":{"start":{"line":114,"column":0},"end":{"line":114,"column":20}},"114":{"start":{"line":115,"column":0},"end":{"line":115,"column":20}},"115":{"start":{"line":116,"column":0},"end":{"line":116,"column":70}},"116":{"start":{"line":117,"column":0},"end":{"line":117,"column":16}},"117":{"start":{"line":118,"column":0},"end":{"line":118,"column":46}},"118":{"start":{"line":119,"column":0},"end":{"line":119,"column":10}},"119":{"start":{"line":120,"column":0},"end":{"line":120,"column":17}},"120":{"start":{"line":121,"column":0},"end":{"line":121,"column":17}},"121":{"start":{"line":122,"column":0},"end":{"line":122,"column":74}},"122":{"start":{"line":123,"column":0},"end":{"line":123,"column":12}},"123":{"start":{"line":124,"column":0},"end":{"line":124,"column":10}},"124":{"start":{"line":125,"column":0},"end":{"line":125,"column":8}},"125":{"start":{"line":126,"column":0},"end":{"line":126,"column":6}},"126":{"start":{"line":127,"column":0},"end":{"line":127,"column":4}},"127":{"start":{"line":128,"column":0},"end":{"line":128,"column":0}},"128":{"start":{"line":129,"column":0},"end":{"line":129,"column":21}},"129":{"start":{"line":130,"column":0},"end":{"line":130,"column":7}},"130":{"start":{"line":131,"column":0},"end":{"line":131,"column":108}},"131":{"start":{"line":132,"column":0},"end":{"line":132,"column":7}},"132":{"start":{"line":133,"column":0},"end":{"line":133,"column":56}},"133":{"start":{"line":134,"column":0},"end":{"line":134,"column":41}},"134":{"start":{"line":135,"column":0},"end":{"line":135,"column":19}},"135":{"start":{"line":136,"column":0},"end":{"line":136,"column":45}},"136":{"start":{"line":137,"column":0},"end":{"line":137,"column":35}},"137":{"start":{"line":138,"column":0},"end":{"line":138,"column":11}},"138":{"start":{"line":139,"column":0},"end":{"line":139,"column":23}},"139":{"start":{"line":140,"column":0},"end":{"line":140,"column":50}},"140":{"start":{"line":141,"column":0},"end":{"line":141,"column":14}},"141":{"start":{"line":142,"column":0},"end":{"line":142,"column":27}},"142":{"start":{"line":143,"column":0},"end":{"line":143,"column":71}},"143":{"start":{"line":144,"column":0},"end":{"line":144,"column":14}},"144":{"start":{"line":145,"column":0},"end":{"line":145,"column":12}},"145":{"start":{"line":146,"column":0},"end":{"line":146,"column":10}},"146":{"start":{"line":147,"column":0},"end":{"line":147,"column":8}},"147":{"start":{"line":148,"column":0},"end":{"line":148,"column":6}},"148":{"start":{"line":149,"column":0},"end":{"line":149,"column":0}},"149":{"start":{"line":150,"column":0},"end":{"line":150,"column":16}},"150":{"start":{"line":151,"column":0},"end":{"line":151,"column":9}},"151":{"start":{"line":152,"column":0},"end":{"line":152,"column":124}},"152":{"start":{"line":153,"column":0},"end":{"line":153,"column":9}},"153":{"start":{"line":154,"column":0},"end":{"line":154,"column":62}},"154":{"start":{"line":155,"column":0},"end":{"line":155,"column":57}},"155":{"start":{"line":156,"column":0},"end":{"line":156,"column":21}},"156":{"start":{"line":157,"column":0},"end":{"line":157,"column":27}},"157":{"start":{"line":158,"column":0},"end":{"line":158,"column":46}},"158":{"start":{"line":159,"column":0},"end":{"line":159,"column":12}},"159":{"start":{"line":160,"column":0},"end":{"line":160,"column":23}},"160":{"start":{"line":161,"column":0},"end":{"line":161,"column":10}},"161":{"start":{"line":162,"column":0},"end":{"line":162,"column":8}},"162":{"start":{"line":163,"column":0},"end":{"line":163,"column":5}},"163":{"start":{"line":164,"column":0},"end":{"line":164,"column":0}},"164":{"start":{"line":165,"column":0},"end":{"line":165,"column":28}},"165":{"start":{"line":166,"column":0},"end":{"line":166,"column":28}},"166":{"start":{"line":167,"column":0},"end":{"line":167,"column":5}},"167":{"start":{"line":168,"column":0},"end":{"line":168,"column":0}},"168":{"start":{"line":169,"column":0},"end":{"line":169,"column":39}},"169":{"start":{"line":170,"column":0},"end":{"line":170,"column":74}},"170":{"start":{"line":171,"column":0},"end":{"line":171,"column":14}},"171":{"start":{"line":172,"column":0},"end":{"line":172,"column":42}},"172":{"start":{"line":173,"column":0},"end":{"line":173,"column":8}},"173":{"start":{"line":174,"column":0},"end":{"line":174,"column":15}},"174":{"start":{"line":175,"column":0},"end":{"line":175,"column":15}},"175":{"start":{"line":176,"column":0},"end":{"line":176,"column":23}},"176":{"start":{"line":177,"column":0},"end":{"line":177,"column":16}},"177":{"start":{"line":178,"column":0},"end":{"line":178,"column":65}},"178":{"start":{"line":179,"column":0},"end":{"line":179,"column":12}},"179":{"start":{"line":180,"column":0},"end":{"line":180,"column":10}},"180":{"start":{"line":181,"column":0},"end":{"line":181,"column":8}},"181":{"start":{"line":182,"column":0},"end":{"line":182,"column":6}},"182":{"start":{"line":183,"column":0},"end":{"line":183,"column":3}},"183":{"start":{"line":184,"column":0},"end":{"line":184,"column":0}},"184":{"start":{"line":185,"column":0},"end":{"line":185,"column":18}},"185":{"start":{"line":186,"column":0},"end":{"line":186,"column":2}},"186":{"start":{"line":187,"column":0},"end":{"line":187,"column":0}},"187":{"start":{"line":188,"column":0},"end":{"line":188,"column":71}},"188":{"start":{"line":189,"column":0},"end":{"line":189,"column":51}},"189":{"start":{"line":190,"column":0},"end":{"line":190,"column":33}},"190":{"start":{"line":191,"column":0},"end":{"line":191,"column":79}}},"s":{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":12,"17":12,"18":12,"19":12,"20":12,"21":12,"22":12,"23":12,"24":12,"25":12,"26":12,"27":12,"28":12,"29":12,"30":12,"31":12,"32":12,"33":12,"34":12,"35":12,"36":12,"37":12,"38":12,"39":12,"40":12,"41":12,"42":12,"43":12,"44":12,"45":12,"46":12,"47":12,"48":12,"49":12,"50":9,"51":12,"52":12,"53":12,"54":12,"55":12,"56":12,"57":12,"58":12,"59":12,"60":12,"61":12,"62":12,"63":12,"64":12,"65":12,"66":12,"67":12,"68":12,"69":12,"70":12,"71":12,"72":12,"73":12,"74":12,"75":12,"76":12,"77":12,"78":12,"79":12,"80":12,"81":12,"82":12,"83":12,"84":12,"85":12,"86":12,"87":12,"88":12,"89":12,"90":12,"91":12,"92":12,"93":12,"94":12,"95":12,"96":12,"97":12,"98":12,"99":12,"100":12,"101":12,"102":12,"103":12,"104":12,"105":12,"106":12,"107":12,"108":12,"109":12,"110":12,"111":12,"112":12,"113":12,"114":12,"115":12,"116":12,"117":12,"118":12,"119":12,"120":12,"121":12,"122":12,"123":12,"124":12,"125":12,"126":12,"127":12,"128":12,"129":11,"130":11,"131":11,"132":11,"133":11,"134":11,"135":11,"136":11,"137":11,"138":11,"139":11,"140":11,"141":11,"142":11,"143":11,"144":11,"145":11,"146":11,"147":11,"148":11,"149":11,"150":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"161":1,"162":1,"163":11,"164":11,"165":0,"166":0,"167":11,"168":11,"169":11,"170":11,"171":11,"172":11,"173":11,"174":11,"175":11,"176":11,"177":11,"178":11,"179":11,"180":11,"181":11,"182":11,"183":12,"184":12,"185":12,"186":1,"187":1,"188":1,"189":1,"190":1},"branchMap":{"0":{"type":"branch","line":16,"loc":{"start":{"line":16,"column":34},"end":{"line":186,"column":2}},"locations":[{"start":{"line":16,"column":34},"end":{"line":186,"column":2}}]},"1":{"type":"branch","line":50,"loc":{"start":{"line":50,"column":41},"end":{"line":50,"column":78}},"locations":[{"start":{"line":50,"column":41},"end":{"line":50,"column":78}}]},"2":{"type":"branch","line":51,"loc":{"start":{"line":51,"column":-1},"end":{"line":51,"column":30}},"locations":[{"start":{"line":51,"column":-1},"end":{"line":51,"column":30}}]},"3":{"type":"branch","line":52,"loc":{"start":{"line":52,"column":-1},"end":{"line":52,"column":10}},"locations":[{"start":{"line":52,"column":-1},"end":{"line":52,"column":10}}]},"4":{"type":"branch","line":129,"loc":{"start":{"line":129,"column":20},"end":{"line":183,"column":3}},"locations":[{"start":{"line":129,"column":20},"end":{"line":183,"column":3}}]},"5":{"type":"branch","line":150,"loc":{"start":{"line":150,"column":15},"end":{"line":163,"column":5}},"locations":[{"start":{"line":150,"column":15},"end":{"line":163,"column":5}}]},"6":{"type":"branch","line":165,"loc":{"start":{"line":165,"column":27},"end":{"line":167,"column":5}},"locations":[{"start":{"line":165,"column":27},"end":{"line":167,"column":5}}]}},"b":{"0":[12],"1":[10],"2":[9],"3":[3],"4":[11],"5":[1],"6":[0]},"fnMap":{"0":{"name":"createAuthTemplate","decl":{"start":{"line":16,"column":34},"end":{"line":186,"column":2}},"loc":{"start":{"line":16,"column":34},"end":{"line":186,"column":2}},"line":16}},"f":{"0":12}}
|
|
4
|
+
}
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
body, html {
|
|
2
|
+
margin:0; padding: 0;
|
|
3
|
+
height: 100%;
|
|
4
|
+
}
|
|
5
|
+
body {
|
|
6
|
+
font-family: Helvetica Neue, Helvetica, Arial;
|
|
7
|
+
font-size: 14px;
|
|
8
|
+
color:#333;
|
|
9
|
+
}
|
|
10
|
+
.small { font-size: 12px; }
|
|
11
|
+
*, *:after, *:before {
|
|
12
|
+
-webkit-box-sizing:border-box;
|
|
13
|
+
-moz-box-sizing:border-box;
|
|
14
|
+
box-sizing:border-box;
|
|
15
|
+
}
|
|
16
|
+
h1 { font-size: 20px; margin: 0;}
|
|
17
|
+
h2 { font-size: 14px; }
|
|
18
|
+
pre {
|
|
19
|
+
font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
20
|
+
margin: 0;
|
|
21
|
+
padding: 0;
|
|
22
|
+
-moz-tab-size: 2;
|
|
23
|
+
-o-tab-size: 2;
|
|
24
|
+
tab-size: 2;
|
|
25
|
+
}
|
|
26
|
+
a { color:#0074D9; text-decoration:none; }
|
|
27
|
+
a:hover { text-decoration:underline; }
|
|
28
|
+
.strong { font-weight: bold; }
|
|
29
|
+
.space-top1 { padding: 10px 0 0 0; }
|
|
30
|
+
.pad2y { padding: 20px 0; }
|
|
31
|
+
.pad1y { padding: 10px 0; }
|
|
32
|
+
.pad2x { padding: 0 20px; }
|
|
33
|
+
.pad2 { padding: 20px; }
|
|
34
|
+
.pad1 { padding: 10px; }
|
|
35
|
+
.space-left2 { padding-left:55px; }
|
|
36
|
+
.space-right2 { padding-right:20px; }
|
|
37
|
+
.center { text-align:center; }
|
|
38
|
+
.clearfix { display:block; }
|
|
39
|
+
.clearfix:after {
|
|
40
|
+
content:'';
|
|
41
|
+
display:block;
|
|
42
|
+
height:0;
|
|
43
|
+
clear:both;
|
|
44
|
+
visibility:hidden;
|
|
45
|
+
}
|
|
46
|
+
.fl { float: left; }
|
|
47
|
+
@media only screen and (max-width:640px) {
|
|
48
|
+
.col3 { width:100%; max-width:100%; }
|
|
49
|
+
.hide-mobile { display:none!important; }
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.quiet {
|
|
53
|
+
color: #7f7f7f;
|
|
54
|
+
color: rgba(0,0,0,0.5);
|
|
55
|
+
}
|
|
56
|
+
.quiet a { opacity: 0.7; }
|
|
57
|
+
|
|
58
|
+
.fraction {
|
|
59
|
+
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
60
|
+
font-size: 10px;
|
|
61
|
+
color: #555;
|
|
62
|
+
background: #E8E8E8;
|
|
63
|
+
padding: 4px 5px;
|
|
64
|
+
border-radius: 3px;
|
|
65
|
+
vertical-align: middle;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
div.path a:link, div.path a:visited { color: #333; }
|
|
69
|
+
table.coverage {
|
|
70
|
+
border-collapse: collapse;
|
|
71
|
+
margin: 10px 0 0 0;
|
|
72
|
+
padding: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
table.coverage td {
|
|
76
|
+
margin: 0;
|
|
77
|
+
padding: 0;
|
|
78
|
+
vertical-align: top;
|
|
79
|
+
}
|
|
80
|
+
table.coverage td.line-count {
|
|
81
|
+
text-align: right;
|
|
82
|
+
padding: 0 5px 0 20px;
|
|
83
|
+
}
|
|
84
|
+
table.coverage td.line-coverage {
|
|
85
|
+
text-align: right;
|
|
86
|
+
padding-right: 10px;
|
|
87
|
+
min-width:20px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
table.coverage td span.cline-any {
|
|
91
|
+
display: inline-block;
|
|
92
|
+
padding: 0 5px;
|
|
93
|
+
width: 100%;
|
|
94
|
+
}
|
|
95
|
+
.missing-if-branch {
|
|
96
|
+
display: inline-block;
|
|
97
|
+
margin-right: 5px;
|
|
98
|
+
border-radius: 3px;
|
|
99
|
+
position: relative;
|
|
100
|
+
padding: 0 4px;
|
|
101
|
+
background: #333;
|
|
102
|
+
color: yellow;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.skip-if-branch {
|
|
106
|
+
display: none;
|
|
107
|
+
margin-right: 10px;
|
|
108
|
+
position: relative;
|
|
109
|
+
padding: 0 4px;
|
|
110
|
+
background: #ccc;
|
|
111
|
+
color: white;
|
|
112
|
+
}
|
|
113
|
+
.missing-if-branch .typ, .skip-if-branch .typ {
|
|
114
|
+
color: inherit !important;
|
|
115
|
+
}
|
|
116
|
+
.coverage-summary {
|
|
117
|
+
border-collapse: collapse;
|
|
118
|
+
width: 100%;
|
|
119
|
+
}
|
|
120
|
+
.coverage-summary tr { border-bottom: 1px solid #bbb; }
|
|
121
|
+
.keyline-all { border: 1px solid #ddd; }
|
|
122
|
+
.coverage-summary td, .coverage-summary th { padding: 10px; }
|
|
123
|
+
.coverage-summary tbody { border: 1px solid #bbb; }
|
|
124
|
+
.coverage-summary td { border-right: 1px solid #bbb; }
|
|
125
|
+
.coverage-summary td:last-child { border-right: none; }
|
|
126
|
+
.coverage-summary th {
|
|
127
|
+
text-align: left;
|
|
128
|
+
font-weight: normal;
|
|
129
|
+
white-space: nowrap;
|
|
130
|
+
}
|
|
131
|
+
.coverage-summary th.file { border-right: none !important; }
|
|
132
|
+
.coverage-summary th.pct { }
|
|
133
|
+
.coverage-summary th.pic,
|
|
134
|
+
.coverage-summary th.abs,
|
|
135
|
+
.coverage-summary td.pct,
|
|
136
|
+
.coverage-summary td.abs { text-align: right; }
|
|
137
|
+
.coverage-summary td.file { white-space: nowrap; }
|
|
138
|
+
.coverage-summary td.pic { min-width: 120px !important; }
|
|
139
|
+
.coverage-summary tfoot td { }
|
|
140
|
+
|
|
141
|
+
.coverage-summary .sorter {
|
|
142
|
+
height: 10px;
|
|
143
|
+
width: 7px;
|
|
144
|
+
display: inline-block;
|
|
145
|
+
margin-left: 0.5em;
|
|
146
|
+
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
|
|
147
|
+
}
|
|
148
|
+
.coverage-summary .sorted .sorter {
|
|
149
|
+
background-position: 0 -20px;
|
|
150
|
+
}
|
|
151
|
+
.coverage-summary .sorted-desc .sorter {
|
|
152
|
+
background-position: 0 -10px;
|
|
153
|
+
}
|
|
154
|
+
.status-line { height: 10px; }
|
|
155
|
+
/* yellow */
|
|
156
|
+
.cbranch-no { background: yellow !important; color: #111; }
|
|
157
|
+
/* dark red */
|
|
158
|
+
.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
|
|
159
|
+
.low .chart { border:1px solid #C21F39 }
|
|
160
|
+
.highlighted,
|
|
161
|
+
.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
|
|
162
|
+
background: #C21F39 !important;
|
|
163
|
+
}
|
|
164
|
+
/* medium red */
|
|
165
|
+
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
|
|
166
|
+
/* light red */
|
|
167
|
+
.low, .cline-no { background:#FCE1E5 }
|
|
168
|
+
/* light green */
|
|
169
|
+
.high, .cline-yes { background:rgb(230,245,208) }
|
|
170
|
+
/* medium green */
|
|
171
|
+
.cstat-yes { background:rgb(161,215,106) }
|
|
172
|
+
/* dark green */
|
|
173
|
+
.status-line.high, .high .cover-fill { background:rgb(77,146,33) }
|
|
174
|
+
.high .chart { border:1px solid rgb(77,146,33) }
|
|
175
|
+
/* dark yellow (gold) */
|
|
176
|
+
.status-line.medium, .medium .cover-fill { background: #f9cd0b; }
|
|
177
|
+
.medium .chart { border:1px solid #f9cd0b; }
|
|
178
|
+
/* light yellow */
|
|
179
|
+
.medium { background: #fff4c2; }
|
|
180
|
+
|
|
181
|
+
.cstat-skip { background: #ddd; color: #111; }
|
|
182
|
+
.fstat-skip { background: #ddd; color: #111 !important; }
|
|
183
|
+
.cbranch-skip { background: #ddd !important; color: #111; }
|
|
184
|
+
|
|
185
|
+
span.cline-neutral { background: #eaeaea; }
|
|
186
|
+
|
|
187
|
+
.coverage-summary td.empty {
|
|
188
|
+
opacity: .5;
|
|
189
|
+
padding-top: 4px;
|
|
190
|
+
padding-bottom: 4px;
|
|
191
|
+
line-height: 1;
|
|
192
|
+
color: #888;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.cover-fill, .cover-empty {
|
|
196
|
+
display:inline-block;
|
|
197
|
+
height: 12px;
|
|
198
|
+
}
|
|
199
|
+
.chart {
|
|
200
|
+
line-height: 0;
|
|
201
|
+
}
|
|
202
|
+
.cover-empty {
|
|
203
|
+
background: white;
|
|
204
|
+
}
|
|
205
|
+
.cover-full {
|
|
206
|
+
border-right: none !important;
|
|
207
|
+
}
|
|
208
|
+
pre.prettyprint {
|
|
209
|
+
border: none !important;
|
|
210
|
+
padding: 0 !important;
|
|
211
|
+
margin: 0 !important;
|
|
212
|
+
}
|
|
213
|
+
.com { color: #999 !important; }
|
|
214
|
+
.ignore-none { color: #999; font-weight: normal; }
|
|
215
|
+
|
|
216
|
+
.wrapper {
|
|
217
|
+
min-height: 100%;
|
|
218
|
+
height: auto !important;
|
|
219
|
+
height: 100%;
|
|
220
|
+
margin: 0 auto -48px;
|
|
221
|
+
}
|
|
222
|
+
.footer, .push {
|
|
223
|
+
height: 48px;
|
|
224
|
+
}
|