@ttoss/cloud-auth 0.3.1 → 0.4.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 +28 -0
- package/CHANGELOG.md +6 -0
- package/README.md +19 -0
- package/babel.config.js +3 -0
- package/coverage/clover.xml +207 -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 +652 -0
- package/coverage/lcov.info +235 -0
- package/dist/esm/index.js +59 -32
- package/dist/index.d.ts +33 -104
- package/dist/index.js +59 -32
- package/jest.config.ts +5 -0
- package/package.json +9 -5
- package/src/template.ts +107 -46
- package/tests/unit/template.test.ts +73 -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[32m3.
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m5.03 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 79ms
|
|
13
|
+
[32mESM[39m [1mdist/esm/index.js [22m[32m3.97 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 76ms
|
|
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 20806ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.49 KB[39m
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
warning package.json: No license field
|
|
2
|
+
$ jest
|
|
3
|
+
PASS tests/unit/template.test.ts (10.966 s)
|
|
4
|
+
✓ do not add schema if not provided (3 ms)
|
|
5
|
+
✓ add schema if provided (1 ms)
|
|
6
|
+
✓ should have autoVerifiedAttributes equal email by default (20 ms)
|
|
7
|
+
✓ should have autoVerifiedAttributes undefined: []
|
|
8
|
+
✓ should have autoVerifiedAttributes undefined: null
|
|
9
|
+
✓ should have autoVerifiedAttributes undefined: false
|
|
10
|
+
✓ should have identity pool by default or true: true (1 ms)
|
|
11
|
+
✓ should have identity pool by default or true: undefined (1 ms)
|
|
12
|
+
✓ should not have identity pool if false (31 ms)
|
|
13
|
+
✓ should have identity pool role attachment with roles (1 ms)
|
|
14
|
+
✓ should not have identity pool role attachment without roles
|
|
15
|
+
|
|
16
|
+
-------------|---------|----------|---------|---------|-------------------
|
|
17
|
+
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
|
|
18
|
+
-------------|---------|----------|---------|---------|-------------------
|
|
19
|
+
All files | 98.95 | 71.42 | 100 | 98.95 |
|
|
20
|
+
config.ts | 100 | 100 | 100 | 100 |
|
|
21
|
+
index.ts | 100 | 57.14 | 100 | 100 | 1
|
|
22
|
+
template.ts | 98.94 | 85.71 | 100 | 98.94 | 164-165
|
|
23
|
+
-------------|---------|----------|---------|---------|-------------------
|
|
24
|
+
Test Suites: 1 passed, 1 total
|
|
25
|
+
Tests: 11 passed, 11 total
|
|
26
|
+
Snapshots: 0 total
|
|
27
|
+
Time: 11.856 s
|
|
28
|
+
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.4.0 (2023-01-11)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- task 445/improve cloud auth pedro arantes ([#148](https://github.com/ttoss/ttoss/issues/148)) ([e019266](https://github.com/ttoss/ttoss/commit/e0192663adf6b5a2a82eb0743827dba5ac72f85f))
|
|
11
|
+
|
|
6
12
|
## [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
13
|
|
|
8
14
|
**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,207 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1673401967034" clover="3.2.0">
|
|
3
|
+
<project timestamp="1673401967034" name="All files">
|
|
4
|
+
<metrics statements="192" coveredstatements="190" conditionals="14" coveredconditionals="10" methods="1" coveredmethods="1" elements="207" coveredelements="201" complexity="0" loc="192" ncloc="192" 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="189" coveredstatements="187" 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="11" type="stmt"/>
|
|
33
|
+
<line num="18" count="11" type="stmt"/>
|
|
34
|
+
<line num="19" count="11" type="stmt"/>
|
|
35
|
+
<line num="20" count="11" type="stmt"/>
|
|
36
|
+
<line num="21" count="11" type="stmt"/>
|
|
37
|
+
<line num="22" count="11" type="stmt"/>
|
|
38
|
+
<line num="23" count="11" type="stmt"/>
|
|
39
|
+
<line num="24" count="11" type="stmt"/>
|
|
40
|
+
<line num="25" count="11" type="stmt"/>
|
|
41
|
+
<line num="26" count="11" type="stmt"/>
|
|
42
|
+
<line num="27" count="11" type="stmt"/>
|
|
43
|
+
<line num="28" count="11" type="stmt"/>
|
|
44
|
+
<line num="29" count="11" type="stmt"/>
|
|
45
|
+
<line num="30" count="11" type="stmt"/>
|
|
46
|
+
<line num="31" count="11" type="stmt"/>
|
|
47
|
+
<line num="32" count="11" type="stmt"/>
|
|
48
|
+
<line num="33" count="11" type="stmt"/>
|
|
49
|
+
<line num="34" count="11" type="stmt"/>
|
|
50
|
+
<line num="35" count="11" type="stmt"/>
|
|
51
|
+
<line num="36" count="11" type="stmt"/>
|
|
52
|
+
<line num="37" count="11" type="stmt"/>
|
|
53
|
+
<line num="38" count="11" type="stmt"/>
|
|
54
|
+
<line num="39" count="11" type="stmt"/>
|
|
55
|
+
<line num="40" count="11" type="stmt"/>
|
|
56
|
+
<line num="41" count="11" type="stmt"/>
|
|
57
|
+
<line num="42" count="11" type="stmt"/>
|
|
58
|
+
<line num="43" count="11" type="stmt"/>
|
|
59
|
+
<line num="44" count="11" type="stmt"/>
|
|
60
|
+
<line num="45" count="11" type="stmt"/>
|
|
61
|
+
<line num="46" count="11" type="stmt"/>
|
|
62
|
+
<line num="47" count="11" type="stmt"/>
|
|
63
|
+
<line num="48" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
64
|
+
<line num="49" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
65
|
+
<line num="50" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
66
|
+
<line num="51" count="11" type="stmt"/>
|
|
67
|
+
<line num="52" count="11" type="stmt"/>
|
|
68
|
+
<line num="53" count="11" type="stmt"/>
|
|
69
|
+
<line num="54" count="11" type="stmt"/>
|
|
70
|
+
<line num="55" count="11" type="stmt"/>
|
|
71
|
+
<line num="56" count="11" type="stmt"/>
|
|
72
|
+
<line num="57" count="11" type="stmt"/>
|
|
73
|
+
<line num="58" count="11" type="stmt"/>
|
|
74
|
+
<line num="59" count="11" type="stmt"/>
|
|
75
|
+
<line num="60" count="11" type="stmt"/>
|
|
76
|
+
<line num="61" count="11" type="stmt"/>
|
|
77
|
+
<line num="62" count="11" type="stmt"/>
|
|
78
|
+
<line num="63" count="11" type="stmt"/>
|
|
79
|
+
<line num="64" count="11" type="stmt"/>
|
|
80
|
+
<line num="65" count="11" type="stmt"/>
|
|
81
|
+
<line num="66" count="11" type="stmt"/>
|
|
82
|
+
<line num="67" count="11" type="stmt"/>
|
|
83
|
+
<line num="68" count="11" type="stmt"/>
|
|
84
|
+
<line num="69" count="11" type="stmt"/>
|
|
85
|
+
<line num="70" count="11" type="stmt"/>
|
|
86
|
+
<line num="71" count="11" type="stmt"/>
|
|
87
|
+
<line num="72" count="11" type="stmt"/>
|
|
88
|
+
<line num="73" count="11" type="stmt"/>
|
|
89
|
+
<line num="74" count="11" type="stmt"/>
|
|
90
|
+
<line num="75" count="11" type="stmt"/>
|
|
91
|
+
<line num="76" count="11" type="stmt"/>
|
|
92
|
+
<line num="77" count="11" type="stmt"/>
|
|
93
|
+
<line num="78" count="11" type="stmt"/>
|
|
94
|
+
<line num="79" count="11" type="stmt"/>
|
|
95
|
+
<line num="80" count="11" type="stmt"/>
|
|
96
|
+
<line num="81" count="11" type="stmt"/>
|
|
97
|
+
<line num="82" count="11" type="stmt"/>
|
|
98
|
+
<line num="83" count="11" type="stmt"/>
|
|
99
|
+
<line num="84" count="11" type="stmt"/>
|
|
100
|
+
<line num="85" count="11" type="stmt"/>
|
|
101
|
+
<line num="86" count="11" type="stmt"/>
|
|
102
|
+
<line num="87" count="11" type="stmt"/>
|
|
103
|
+
<line num="88" count="11" type="stmt"/>
|
|
104
|
+
<line num="89" count="11" type="stmt"/>
|
|
105
|
+
<line num="90" count="11" type="stmt"/>
|
|
106
|
+
<line num="91" count="11" type="stmt"/>
|
|
107
|
+
<line num="92" count="11" type="stmt"/>
|
|
108
|
+
<line num="93" count="11" type="stmt"/>
|
|
109
|
+
<line num="94" count="11" type="stmt"/>
|
|
110
|
+
<line num="95" count="11" type="stmt"/>
|
|
111
|
+
<line num="96" count="11" type="stmt"/>
|
|
112
|
+
<line num="97" count="11" type="stmt"/>
|
|
113
|
+
<line num="98" count="11" type="stmt"/>
|
|
114
|
+
<line num="99" count="11" type="stmt"/>
|
|
115
|
+
<line num="100" count="11" type="stmt"/>
|
|
116
|
+
<line num="101" count="11" type="stmt"/>
|
|
117
|
+
<line num="102" count="11" type="stmt"/>
|
|
118
|
+
<line num="103" count="11" type="stmt"/>
|
|
119
|
+
<line num="104" count="11" type="stmt"/>
|
|
120
|
+
<line num="105" count="11" type="stmt"/>
|
|
121
|
+
<line num="106" count="11" type="stmt"/>
|
|
122
|
+
<line num="107" count="11" type="stmt"/>
|
|
123
|
+
<line num="108" count="11" type="stmt"/>
|
|
124
|
+
<line num="109" count="11" type="stmt"/>
|
|
125
|
+
<line num="110" count="11" type="stmt"/>
|
|
126
|
+
<line num="111" count="11" type="stmt"/>
|
|
127
|
+
<line num="112" count="11" type="stmt"/>
|
|
128
|
+
<line num="113" count="11" type="stmt"/>
|
|
129
|
+
<line num="114" count="11" type="stmt"/>
|
|
130
|
+
<line num="115" count="11" type="stmt"/>
|
|
131
|
+
<line num="116" count="11" type="stmt"/>
|
|
132
|
+
<line num="117" count="11" type="stmt"/>
|
|
133
|
+
<line num="118" count="11" type="stmt"/>
|
|
134
|
+
<line num="119" count="11" type="stmt"/>
|
|
135
|
+
<line num="120" count="11" type="stmt"/>
|
|
136
|
+
<line num="121" count="11" type="stmt"/>
|
|
137
|
+
<line num="122" count="11" type="stmt"/>
|
|
138
|
+
<line num="123" count="11" type="stmt"/>
|
|
139
|
+
<line num="124" count="11" type="stmt"/>
|
|
140
|
+
<line num="125" count="11" type="stmt"/>
|
|
141
|
+
<line num="126" count="11" type="stmt"/>
|
|
142
|
+
<line num="127" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
143
|
+
<line num="128" count="10" type="stmt"/>
|
|
144
|
+
<line num="129" count="10" type="stmt"/>
|
|
145
|
+
<line num="130" count="10" type="stmt"/>
|
|
146
|
+
<line num="131" count="10" type="stmt"/>
|
|
147
|
+
<line num="132" count="10" type="stmt"/>
|
|
148
|
+
<line num="133" count="10" type="stmt"/>
|
|
149
|
+
<line num="134" count="10" type="stmt"/>
|
|
150
|
+
<line num="135" count="10" type="stmt"/>
|
|
151
|
+
<line num="136" count="10" type="stmt"/>
|
|
152
|
+
<line num="137" count="10" type="stmt"/>
|
|
153
|
+
<line num="138" count="10" type="stmt"/>
|
|
154
|
+
<line num="139" count="10" type="stmt"/>
|
|
155
|
+
<line num="140" count="10" type="stmt"/>
|
|
156
|
+
<line num="141" count="10" type="stmt"/>
|
|
157
|
+
<line num="142" count="10" type="stmt"/>
|
|
158
|
+
<line num="143" count="10" type="stmt"/>
|
|
159
|
+
<line num="144" count="10" type="stmt"/>
|
|
160
|
+
<line num="145" count="10" type="stmt"/>
|
|
161
|
+
<line num="146" count="10" type="stmt"/>
|
|
162
|
+
<line num="147" count="10" type="stmt"/>
|
|
163
|
+
<line num="148" count="10" type="cond" truecount="1" falsecount="0"/>
|
|
164
|
+
<line num="149" count="1" type="stmt"/>
|
|
165
|
+
<line num="150" count="1" type="stmt"/>
|
|
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="10" type="stmt"/>
|
|
178
|
+
<line num="163" count="10" type="cond" truecount="0" falsecount="1"/>
|
|
179
|
+
<line num="164" count="0" type="stmt"/>
|
|
180
|
+
<line num="165" count="0" type="stmt"/>
|
|
181
|
+
<line num="166" count="10" type="stmt"/>
|
|
182
|
+
<line num="167" count="10" type="stmt"/>
|
|
183
|
+
<line num="168" count="10" type="stmt"/>
|
|
184
|
+
<line num="169" count="10" type="stmt"/>
|
|
185
|
+
<line num="170" count="10" type="stmt"/>
|
|
186
|
+
<line num="171" count="10" type="stmt"/>
|
|
187
|
+
<line num="172" count="10" type="stmt"/>
|
|
188
|
+
<line num="173" count="10" type="stmt"/>
|
|
189
|
+
<line num="174" count="10" type="stmt"/>
|
|
190
|
+
<line num="175" count="10" type="stmt"/>
|
|
191
|
+
<line num="176" count="10" type="stmt"/>
|
|
192
|
+
<line num="177" count="10" type="stmt"/>
|
|
193
|
+
<line num="178" count="10" type="stmt"/>
|
|
194
|
+
<line num="179" count="10" type="stmt"/>
|
|
195
|
+
<line num="180" count="10" type="stmt"/>
|
|
196
|
+
<line num="181" count="10" type="stmt"/>
|
|
197
|
+
<line num="182" count="11" type="stmt"/>
|
|
198
|
+
<line num="183" count="11" type="stmt"/>
|
|
199
|
+
<line num="184" count="11" type="stmt"/>
|
|
200
|
+
<line num="185" count="1" type="stmt"/>
|
|
201
|
+
<line num="186" count="1" 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
|
+
</file>
|
|
206
|
+
</project>
|
|
207
|
+
</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":4}},"21":{"start":{"line":22,"column":0},"end":{"line":22,"column":74}},"22":{"start":{"line":23,"column":0},"end":{"line":23,"column":25}},"23":{"start":{"line":24,"column":0},"end":{"line":24,"column":11}},"24":{"start":{"line":25,"column":0},"end":{"line":25,"column":25}},"25":{"start":{"line":26,"column":0},"end":{"line":26,"column":27}},"26":{"start":{"line":27,"column":0},"end":{"line":27,"column":4}},"27":{"start":{"line":28,"column":0},"end":{"line":28,"column":5}},"28":{"start":{"line":29,"column":0},"end":{"line":29,"column":120}},"29":{"start":{"line":30,"column":0},"end":{"line":30,"column":5}},"30":{"start":{"line":31,"column":0},"end":{"line":31,"column":12}},"31":{"start":{"line":32,"column":0},"end":{"line":32,"column":69}},"32":{"start":{"line":33,"column":0},"end":{"line":33,"column":37}},"33":{"start":{"line":34,"column":0},"end":{"line":34,"column":22}},"34":{"start":{"line":35,"column":0},"end":{"line":35,"column":18}},"35":{"start":{"line":36,"column":0},"end":{"line":36,"column":34}},"36":{"start":{"line":37,"column":0},"end":{"line":37,"column":24}},"37":{"start":{"line":38,"column":0},"end":{"line":38,"column":24}},"38":{"start":{"line":39,"column":0},"end":{"line":39,"column":6}},"39":{"start":{"line":40,"column":0},"end":{"line":40,"column":23}},"40":{"start":{"line":41,"column":0},"end":{"line":41,"column":34}},"41":{"start":{"line":42,"column":0},"end":{"line":42,"column":24}},"42":{"start":{"line":43,"column":0},"end":{"line":43,"column":24}},"43":{"start":{"line":44,"column":0},"end":{"line":44,"column":6}},"44":{"start":{"line":45,"column":0},"end":{"line":45,"column":6}},"45":{"start":{"line":46,"column":0},"end":{"line":46,"column":12}},"46":{"start":{"line":47,"column":0},"end":{"line":47,"column":32}},"47":{"start":{"line":48,"column":0},"end":{"line":48,"column":78}},"48":{"start":{"line":49,"column":0},"end":{"line":49,"column":30}},"49":{"start":{"line":50,"column":0},"end":{"line":50,"column":18}},"50":{"start":{"line":51,"column":0},"end":{"line":51,"column":0}},"51":{"start":{"line":52,"column":0},"end":{"line":52,"column":44}},"52":{"start":{"line":53,"column":0},"end":{"line":53,"column":43}},"53":{"start":{"line":54,"column":0},"end":{"line":54,"column":16}},"54":{"start":{"line":55,"column":0},"end":{"line":55,"column":35}},"55":{"start":{"line":56,"column":0},"end":{"line":56,"column":39}},"56":{"start":{"line":57,"column":0},"end":{"line":57,"column":21}},"57":{"start":{"line":58,"column":0},"end":{"line":58,"column":33}},"58":{"start":{"line":59,"column":0},"end":{"line":59,"column":21}},"59":{"start":{"line":60,"column":0},"end":{"line":60,"column":29}},"60":{"start":{"line":61,"column":0},"end":{"line":61,"column":53}},"61":{"start":{"line":62,"column":0},"end":{"line":62,"column":38}},"62":{"start":{"line":63,"column":0},"end":{"line":63,"column":36}},"63":{"start":{"line":64,"column":0},"end":{"line":64,"column":36}},"64":{"start":{"line":65,"column":0},"end":{"line":65,"column":38}},"65":{"start":{"line":66,"column":0},"end":{"line":66,"column":48}},"66":{"start":{"line":67,"column":0},"end":{"line":67,"column":14}},"67":{"start":{"line":68,"column":0},"end":{"line":68,"column":12}},"68":{"start":{"line":69,"column":0},"end":{"line":69,"column":25}},"69":{"start":{"line":70,"column":0},"end":{"line":70,"column":40}},"70":{"start":{"line":71,"column":0},"end":{"line":71,"column":34}},"71":{"start":{"line":72,"column":0},"end":{"line":72,"column":33}},"72":{"start":{"line":73,"column":0},"end":{"line":73,"column":12}},"73":{"start":{"line":74,"column":0},"end":{"line":74,"column":25}},"74":{"start":{"line":75,"column":0},"end":{"line":75,"column":34}},"75":{"start":{"line":76,"column":0},"end":{"line":76,"column":12}},"76":{"start":{"line":77,"column":0},"end":{"line":77,"column":10}},"77":{"start":{"line":78,"column":0},"end":{"line":78,"column":8}},"78":{"start":{"line":79,"column":0},"end":{"line":79,"column":41}},"79":{"start":{"line":80,"column":0},"end":{"line":80,"column":45}},"80":{"start":{"line":81,"column":0},"end":{"line":81,"column":21}},"81":{"start":{"line":82,"column":0},"end":{"line":82,"column":50}},"82":{"start":{"line":83,"column":0},"end":{"line":83,"column":23}},"83":{"start":{"line":84,"column":0},"end":{"line":84,"column":35}},"84":{"start":{"line":85,"column":0},"end":{"line":85,"column":12}},"85":{"start":{"line":86,"column":0},"end":{"line":86,"column":10}},"86":{"start":{"line":87,"column":0},"end":{"line":87,"column":8}},"87":{"start":{"line":88,"column":0},"end":{"line":88,"column":6}},"88":{"start":{"line":89,"column":0},"end":{"line":89,"column":14}},"89":{"start":{"line":90,"column":0},"end":{"line":90,"column":15}},"90":{"start":{"line":91,"column":0},"end":{"line":91,"column":68}},"91":{"start":{"line":92,"column":0},"end":{"line":92,"column":16}},"92":{"start":{"line":93,"column":0},"end":{"line":93,"column":29}},"93":{"start":{"line":94,"column":0},"end":{"line":94,"column":10}},"94":{"start":{"line":95,"column":0},"end":{"line":95,"column":17}},"95":{"start":{"line":96,"column":0},"end":{"line":96,"column":17}},"96":{"start":{"line":97,"column":0},"end":{"line":97,"column":69}},"97":{"start":{"line":98,"column":0},"end":{"line":98,"column":12}},"98":{"start":{"line":99,"column":0},"end":{"line":99,"column":10}},"99":{"start":{"line":100,"column":0},"end":{"line":100,"column":8}},"100":{"start":{"line":101,"column":0},"end":{"line":101,"column":19}},"101":{"start":{"line":102,"column":0},"end":{"line":102,"column":72}},"102":{"start":{"line":103,"column":0},"end":{"line":103,"column":16}},"103":{"start":{"line":104,"column":0},"end":{"line":104,"column":40}},"104":{"start":{"line":105,"column":0},"end":{"line":105,"column":10}},"105":{"start":{"line":106,"column":0},"end":{"line":106,"column":17}},"106":{"start":{"line":107,"column":0},"end":{"line":107,"column":17}},"107":{"start":{"line":108,"column":0},"end":{"line":108,"column":73}},"108":{"start":{"line":109,"column":0},"end":{"line":109,"column":12}},"109":{"start":{"line":110,"column":0},"end":{"line":110,"column":10}},"110":{"start":{"line":111,"column":0},"end":{"line":111,"column":8}},"111":{"start":{"line":112,"column":0},"end":{"line":112,"column":20}},"112":{"start":{"line":113,"column":0},"end":{"line":113,"column":20}},"113":{"start":{"line":114,"column":0},"end":{"line":114,"column":70}},"114":{"start":{"line":115,"column":0},"end":{"line":115,"column":16}},"115":{"start":{"line":116,"column":0},"end":{"line":116,"column":46}},"116":{"start":{"line":117,"column":0},"end":{"line":117,"column":10}},"117":{"start":{"line":118,"column":0},"end":{"line":118,"column":17}},"118":{"start":{"line":119,"column":0},"end":{"line":119,"column":17}},"119":{"start":{"line":120,"column":0},"end":{"line":120,"column":74}},"120":{"start":{"line":121,"column":0},"end":{"line":121,"column":12}},"121":{"start":{"line":122,"column":0},"end":{"line":122,"column":10}},"122":{"start":{"line":123,"column":0},"end":{"line":123,"column":8}},"123":{"start":{"line":124,"column":0},"end":{"line":124,"column":6}},"124":{"start":{"line":125,"column":0},"end":{"line":125,"column":4}},"125":{"start":{"line":126,"column":0},"end":{"line":126,"column":0}},"126":{"start":{"line":127,"column":0},"end":{"line":127,"column":21}},"127":{"start":{"line":128,"column":0},"end":{"line":128,"column":7}},"128":{"start":{"line":129,"column":0},"end":{"line":129,"column":108}},"129":{"start":{"line":130,"column":0},"end":{"line":130,"column":7}},"130":{"start":{"line":131,"column":0},"end":{"line":131,"column":56}},"131":{"start":{"line":132,"column":0},"end":{"line":132,"column":41}},"132":{"start":{"line":133,"column":0},"end":{"line":133,"column":19}},"133":{"start":{"line":134,"column":0},"end":{"line":134,"column":45}},"134":{"start":{"line":135,"column":0},"end":{"line":135,"column":35}},"135":{"start":{"line":136,"column":0},"end":{"line":136,"column":11}},"136":{"start":{"line":137,"column":0},"end":{"line":137,"column":23}},"137":{"start":{"line":138,"column":0},"end":{"line":138,"column":50}},"138":{"start":{"line":139,"column":0},"end":{"line":139,"column":14}},"139":{"start":{"line":140,"column":0},"end":{"line":140,"column":27}},"140":{"start":{"line":141,"column":0},"end":{"line":141,"column":71}},"141":{"start":{"line":142,"column":0},"end":{"line":142,"column":14}},"142":{"start":{"line":143,"column":0},"end":{"line":143,"column":12}},"143":{"start":{"line":144,"column":0},"end":{"line":144,"column":10}},"144":{"start":{"line":145,"column":0},"end":{"line":145,"column":8}},"145":{"start":{"line":146,"column":0},"end":{"line":146,"column":6}},"146":{"start":{"line":147,"column":0},"end":{"line":147,"column":0}},"147":{"start":{"line":148,"column":0},"end":{"line":148,"column":16}},"148":{"start":{"line":149,"column":0},"end":{"line":149,"column":9}},"149":{"start":{"line":150,"column":0},"end":{"line":150,"column":124}},"150":{"start":{"line":151,"column":0},"end":{"line":151,"column":9}},"151":{"start":{"line":152,"column":0},"end":{"line":152,"column":62}},"152":{"start":{"line":153,"column":0},"end":{"line":153,"column":57}},"153":{"start":{"line":154,"column":0},"end":{"line":154,"column":21}},"154":{"start":{"line":155,"column":0},"end":{"line":155,"column":27}},"155":{"start":{"line":156,"column":0},"end":{"line":156,"column":46}},"156":{"start":{"line":157,"column":0},"end":{"line":157,"column":12}},"157":{"start":{"line":158,"column":0},"end":{"line":158,"column":23}},"158":{"start":{"line":159,"column":0},"end":{"line":159,"column":10}},"159":{"start":{"line":160,"column":0},"end":{"line":160,"column":8}},"160":{"start":{"line":161,"column":0},"end":{"line":161,"column":5}},"161":{"start":{"line":162,"column":0},"end":{"line":162,"column":0}},"162":{"start":{"line":163,"column":0},"end":{"line":163,"column":28}},"163":{"start":{"line":164,"column":0},"end":{"line":164,"column":28}},"164":{"start":{"line":165,"column":0},"end":{"line":165,"column":5}},"165":{"start":{"line":166,"column":0},"end":{"line":166,"column":0}},"166":{"start":{"line":167,"column":0},"end":{"line":167,"column":39}},"167":{"start":{"line":168,"column":0},"end":{"line":168,"column":74}},"168":{"start":{"line":169,"column":0},"end":{"line":169,"column":14}},"169":{"start":{"line":170,"column":0},"end":{"line":170,"column":42}},"170":{"start":{"line":171,"column":0},"end":{"line":171,"column":8}},"171":{"start":{"line":172,"column":0},"end":{"line":172,"column":15}},"172":{"start":{"line":173,"column":0},"end":{"line":173,"column":15}},"173":{"start":{"line":174,"column":0},"end":{"line":174,"column":23}},"174":{"start":{"line":175,"column":0},"end":{"line":175,"column":16}},"175":{"start":{"line":176,"column":0},"end":{"line":176,"column":65}},"176":{"start":{"line":177,"column":0},"end":{"line":177,"column":12}},"177":{"start":{"line":178,"column":0},"end":{"line":178,"column":10}},"178":{"start":{"line":179,"column":0},"end":{"line":179,"column":8}},"179":{"start":{"line":180,"column":0},"end":{"line":180,"column":6}},"180":{"start":{"line":181,"column":0},"end":{"line":181,"column":3}},"181":{"start":{"line":182,"column":0},"end":{"line":182,"column":0}},"182":{"start":{"line":183,"column":0},"end":{"line":183,"column":18}},"183":{"start":{"line":184,"column":0},"end":{"line":184,"column":2}},"184":{"start":{"line":185,"column":0},"end":{"line":185,"column":0}},"185":{"start":{"line":186,"column":0},"end":{"line":186,"column":71}},"186":{"start":{"line":187,"column":0},"end":{"line":187,"column":51}},"187":{"start":{"line":188,"column":0},"end":{"line":188,"column":33}},"188":{"start":{"line":189,"column":0},"end":{"line":189,"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":11,"17":11,"18":11,"19":11,"20":11,"21":11,"22":11,"23":11,"24":11,"25":11,"26":11,"27":11,"28":11,"29":11,"30":11,"31":11,"32":11,"33":11,"34":11,"35":11,"36":11,"37":11,"38":11,"39":11,"40":11,"41":11,"42":11,"43":11,"44":11,"45":11,"46":11,"47":11,"48":8,"49":11,"50":11,"51":11,"52":11,"53":11,"54":11,"55":11,"56":11,"57":11,"58":11,"59":11,"60":11,"61":11,"62":11,"63":11,"64":11,"65":11,"66":11,"67":11,"68":11,"69":11,"70":11,"71":11,"72":11,"73":11,"74":11,"75":11,"76":11,"77":11,"78":11,"79":11,"80":11,"81":11,"82":11,"83":11,"84":11,"85":11,"86":11,"87":11,"88":11,"89":11,"90":11,"91":11,"92":11,"93":11,"94":11,"95":11,"96":11,"97":11,"98":11,"99":11,"100":11,"101":11,"102":11,"103":11,"104":11,"105":11,"106":11,"107":11,"108":11,"109":11,"110":11,"111":11,"112":11,"113":11,"114":11,"115":11,"116":11,"117":11,"118":11,"119":11,"120":11,"121":11,"122":11,"123":11,"124":11,"125":11,"126":11,"127":10,"128":10,"129":10,"130":10,"131":10,"132":10,"133":10,"134":10,"135":10,"136":10,"137":10,"138":10,"139":10,"140":10,"141":10,"142":10,"143":10,"144":10,"145":10,"146":10,"147":10,"148":1,"149":1,"150":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"161":10,"162":10,"163":0,"164":0,"165":10,"166":10,"167":10,"168":10,"169":10,"170":10,"171":10,"172":10,"173":10,"174":10,"175":10,"176":10,"177":10,"178":10,"179":10,"180":10,"181":11,"182":11,"183":11,"184":1,"185":1,"186":1,"187":1,"188":1},"branchMap":{"0":{"type":"branch","line":16,"loc":{"start":{"line":16,"column":34},"end":{"line":184,"column":2}},"locations":[{"start":{"line":16,"column":34},"end":{"line":184,"column":2}}]},"1":{"type":"branch","line":48,"loc":{"start":{"line":48,"column":41},"end":{"line":48,"column":78}},"locations":[{"start":{"line":48,"column":41},"end":{"line":48,"column":78}}]},"2":{"type":"branch","line":49,"loc":{"start":{"line":49,"column":-1},"end":{"line":49,"column":30}},"locations":[{"start":{"line":49,"column":-1},"end":{"line":49,"column":30}}]},"3":{"type":"branch","line":50,"loc":{"start":{"line":50,"column":-1},"end":{"line":50,"column":17}},"locations":[{"start":{"line":50,"column":-1},"end":{"line":50,"column":17}}]},"4":{"type":"branch","line":127,"loc":{"start":{"line":127,"column":20},"end":{"line":181,"column":3}},"locations":[{"start":{"line":127,"column":20},"end":{"line":181,"column":3}}]},"5":{"type":"branch","line":148,"loc":{"start":{"line":148,"column":15},"end":{"line":161,"column":5}},"locations":[{"start":{"line":148,"column":15},"end":{"line":161,"column":5}}]},"6":{"type":"branch","line":163,"loc":{"start":{"line":163,"column":27},"end":{"line":165,"column":5}},"locations":[{"start":{"line":163,"column":27},"end":{"line":165,"column":5}}]}},"b":{"0":[11],"1":[9],"2":[8],"3":[3],"4":[10],"5":[1],"6":[0]},"fnMap":{"0":{"name":"createAuthTemplate","decl":{"start":{"line":16,"column":34},"end":{"line":184,"column":2}},"loc":{"start":{"line":16,"column":34},"end":{"line":184,"column":2}},"line":16}},"f":{"0":11}}
|
|
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
|
+
}
|