ccstate-react 5.2.1 → 5.2.3
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 +7 -0
- package/LICENSE +21 -0
- package/dist/experimental.cjs +2 -11
- package/dist/experimental.js +2 -11
- package/dist/index.cjs +5 -14
- package/dist/index.js +4 -12
- package/dist/provider.cjs +16 -0
- package/dist/provider.js +13 -0
- package/package.json +9 -9
- package/rollup.config.mjs +71 -68
- package/coverage/base.css +0 -224
- package/coverage/block-navigation.js +0 -87
- package/coverage/clover.xml +0 -219
- package/coverage/coverage-final.json +0 -8
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +0 -206
- package/coverage/index.ts.html +0 -100
- package/coverage/prettify.css +0 -1
- package/coverage/prettify.js +0 -2
- package/coverage/provider.ts.html +0 -133
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +0 -196
- package/coverage/useGet.ts.html +0 -160
- package/coverage/useLoadable.ts.html +0 -403
- package/coverage/useLoadableSet.ts.html +0 -295
- package/coverage/useResolved.ts.html +0 -133
- package/coverage/useSet.ts.html +0 -166
package/CHANGELOG.md
CHANGED
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 e7h4n
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN EFFECT OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/experimental.cjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var react = require('react');
|
|
4
|
+
var provider = require('./provider.cjs');
|
|
4
5
|
|
|
5
6
|
function _arrayLikeToArray(r, a) {
|
|
6
7
|
(null == a || a > r.length) && (a = r.length);
|
|
@@ -27,18 +28,8 @@ function _unsupportedIterableToArray(r, a) {
|
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
30
|
|
|
30
|
-
var StoreContext = react.createContext(null);
|
|
31
|
-
StoreContext.Provider;
|
|
32
|
-
function useStore() {
|
|
33
|
-
var store = react.useContext(StoreContext);
|
|
34
|
-
if (!store) {
|
|
35
|
-
throw new Error('useStore must be used within a StoreProvider');
|
|
36
|
-
}
|
|
37
|
-
return store;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
31
|
function useLoadableSet(signal) {
|
|
41
|
-
var store = useStore();
|
|
32
|
+
var store = provider.useStore();
|
|
42
33
|
var resultRef = react.useRef({
|
|
43
34
|
state: 'idle'
|
|
44
35
|
});
|
package/dist/experimental.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useRef, useCallback, useSyncExternalStore } from 'react';
|
|
2
|
+
import { u as useStore } from './provider.js';
|
|
2
3
|
|
|
3
4
|
function _arrayLikeToArray(r, a) {
|
|
4
5
|
(null == a || a > r.length) && (a = r.length);
|
|
@@ -25,16 +26,6 @@ function _unsupportedIterableToArray(r, a) {
|
|
|
25
26
|
}
|
|
26
27
|
}
|
|
27
28
|
|
|
28
|
-
var StoreContext = createContext(null);
|
|
29
|
-
StoreContext.Provider;
|
|
30
|
-
function useStore() {
|
|
31
|
-
var store = useContext(StoreContext);
|
|
32
|
-
if (!store) {
|
|
33
|
-
throw new Error('useStore must be used within a StoreProvider');
|
|
34
|
-
}
|
|
35
|
-
return store;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
29
|
function useLoadableSet(signal) {
|
|
39
30
|
var store = useStore();
|
|
40
31
|
var resultRef = useRef({
|
package/dist/index.cjs
CHANGED
|
@@ -1,19 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var react = require('react');
|
|
4
|
-
|
|
5
|
-
var StoreContext = react.createContext(null);
|
|
6
|
-
var StoreProvider = StoreContext.Provider;
|
|
7
|
-
function useStore() {
|
|
8
|
-
var store = react.useContext(StoreContext);
|
|
9
|
-
if (!store) {
|
|
10
|
-
throw new Error('useStore must be used within a StoreProvider');
|
|
11
|
-
}
|
|
12
|
-
return store;
|
|
13
|
-
}
|
|
4
|
+
var provider = require('./provider.cjs');
|
|
14
5
|
|
|
15
6
|
function useGet(atom) {
|
|
16
|
-
var store = useStore();
|
|
7
|
+
var store = provider.useStore();
|
|
17
8
|
var onChange = react.useRef(function (fn) {
|
|
18
9
|
var controller = new AbortController();
|
|
19
10
|
store.watch(function (get) {
|
|
@@ -32,7 +23,7 @@ function useGet(atom) {
|
|
|
32
23
|
}
|
|
33
24
|
|
|
34
25
|
function useSet(signal) {
|
|
35
|
-
var store = useStore();
|
|
26
|
+
var store = provider.useStore();
|
|
36
27
|
return react.useCallback('write' in signal ? function () {
|
|
37
28
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
38
29
|
args[_key] = arguments[_key];
|
|
@@ -47,7 +38,7 @@ function useLoadableInternal(promise$, keepLastResolved) {
|
|
|
47
38
|
var promiseResult = react.useRef({
|
|
48
39
|
state: 'loading'
|
|
49
40
|
});
|
|
50
|
-
var store = useStore();
|
|
41
|
+
var store = provider.useStore();
|
|
51
42
|
var subStore = react.useCallback(function (fn) {
|
|
52
43
|
function updateResult(result, signal) {
|
|
53
44
|
if (signal.aborted) return;
|
|
@@ -108,7 +99,7 @@ function useLastResolved(atom) {
|
|
|
108
99
|
return loadable.state === 'hasData' ? loadable.data : undefined;
|
|
109
100
|
}
|
|
110
101
|
|
|
111
|
-
exports.StoreProvider = StoreProvider;
|
|
102
|
+
exports.StoreProvider = provider.StoreProvider;
|
|
112
103
|
exports.useGet = useGet;
|
|
113
104
|
exports.useLastLoadable = useLastLoadable;
|
|
114
105
|
exports.useLastResolved = useLastResolved;
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
var StoreProvider = StoreContext.Provider;
|
|
5
|
-
function useStore() {
|
|
6
|
-
var store = useContext(StoreContext);
|
|
7
|
-
if (!store) {
|
|
8
|
-
throw new Error('useStore must be used within a StoreProvider');
|
|
9
|
-
}
|
|
10
|
-
return store;
|
|
11
|
-
}
|
|
1
|
+
import { useRef, useSyncExternalStore, useCallback } from 'react';
|
|
2
|
+
import { u as useStore } from './provider.js';
|
|
3
|
+
export { S as StoreProvider } from './provider.js';
|
|
12
4
|
|
|
13
5
|
function useGet(atom) {
|
|
14
6
|
var store = useStore();
|
|
@@ -106,4 +98,4 @@ function useLastResolved(atom) {
|
|
|
106
98
|
return loadable.state === 'hasData' ? loadable.data : undefined;
|
|
107
99
|
}
|
|
108
100
|
|
|
109
|
-
export {
|
|
101
|
+
export { useGet, useLastLoadable, useLastResolved, useLoadable, useResolved, useSet };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var react = require('react');
|
|
4
|
+
|
|
5
|
+
var StoreContext = react.createContext(null);
|
|
6
|
+
var StoreProvider = StoreContext.Provider;
|
|
7
|
+
function useStore() {
|
|
8
|
+
var store = react.useContext(StoreContext);
|
|
9
|
+
if (!store) {
|
|
10
|
+
throw new Error('useStore must be used within a StoreProvider');
|
|
11
|
+
}
|
|
12
|
+
return store;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
exports.StoreProvider = StoreProvider;
|
|
16
|
+
exports.useStore = useStore;
|
package/dist/provider.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createContext, useContext } from 'react';
|
|
2
|
+
|
|
3
|
+
var StoreContext = createContext(null);
|
|
4
|
+
var StoreProvider = StoreContext.Provider;
|
|
5
|
+
function useStore() {
|
|
6
|
+
var store = useContext(StoreContext);
|
|
7
|
+
if (!store) {
|
|
8
|
+
throw new Error('useStore must be used within a StoreProvider');
|
|
9
|
+
}
|
|
10
|
+
return store;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export { StoreProvider as S, useStore as u };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccstate-react",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.3",
|
|
4
4
|
"description": "CCState React Hooks",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,10 +8,6 @@
|
|
|
8
8
|
},
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"type": "module",
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "rollup -c",
|
|
13
|
-
"prebuild": "shx rm -rf dist"
|
|
14
|
-
},
|
|
15
11
|
"main": "./dist/index.cjs",
|
|
16
12
|
"module": "./dist/index.js",
|
|
17
13
|
"exports": {
|
|
@@ -29,7 +25,7 @@
|
|
|
29
25
|
"react": ">=17.0.0"
|
|
30
26
|
},
|
|
31
27
|
"dependencies": {
|
|
32
|
-
"ccstate": "
|
|
28
|
+
"ccstate": "^5.2.3"
|
|
33
29
|
},
|
|
34
30
|
"peerDependenciesMeta": {
|
|
35
31
|
"@types/react": {
|
|
@@ -49,7 +45,6 @@
|
|
|
49
45
|
"@testing-library/user-event": "^14.5.2",
|
|
50
46
|
"@types/react": "^19.0.2",
|
|
51
47
|
"@types/react-dom": "^18.3.1",
|
|
52
|
-
"ccstate": "workspace:^",
|
|
53
48
|
"happy-dom": "^15.11.7",
|
|
54
49
|
"jest-leak-detector": "^29.7.0",
|
|
55
50
|
"json": "^11.0.0",
|
|
@@ -59,6 +54,11 @@
|
|
|
59
54
|
"rollup-plugin-dts": "^6.1.1",
|
|
60
55
|
"shx": "^0.3.4",
|
|
61
56
|
"signal-timers": "^1.0.4",
|
|
62
|
-
"vitest": "^2.1.8"
|
|
57
|
+
"vitest": "^2.1.8",
|
|
58
|
+
"ccstate": "^5.2.3"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "rollup -c",
|
|
62
|
+
"prebuild": "shx rm -rf dist"
|
|
63
63
|
}
|
|
64
|
-
}
|
|
64
|
+
}
|
package/rollup.config.mjs
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
// @ts-check
|
|
2
|
-
import * as fs from 'node:fs';
|
|
3
2
|
import * as path from 'node:path';
|
|
4
3
|
import { babel } from '@rollup/plugin-babel';
|
|
5
4
|
import { dts } from 'rollup-plugin-dts';
|
|
@@ -16,76 +15,80 @@ function external(id) {
|
|
|
16
15
|
return !id.startsWith('.') && !id.startsWith(projectRootDir);
|
|
17
16
|
}
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
{
|
|
26
|
-
input,
|
|
27
|
-
onwarn: (warning) => {
|
|
28
|
-
throw new Error(warning?.message);
|
|
29
|
-
},
|
|
30
|
-
external,
|
|
31
|
-
plugins: [
|
|
32
|
-
nodeResolve({
|
|
33
|
-
extensions: ['.ts'],
|
|
34
|
-
}),
|
|
35
|
-
babel({
|
|
36
|
-
exclude: 'node_modules/**',
|
|
37
|
-
extensions: ['.ts'],
|
|
38
|
-
babelHelpers: 'bundled',
|
|
39
|
-
configFile: path.resolve(projectRootDir, './babel.config.json'),
|
|
40
|
-
}),
|
|
41
|
-
],
|
|
42
|
-
output: [
|
|
43
|
-
{
|
|
44
|
-
file: targetCJS,
|
|
45
|
-
format: 'cjs',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
file: targetES,
|
|
49
|
-
format: 'es',
|
|
50
|
-
},
|
|
51
|
-
],
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
input,
|
|
55
|
-
onwarn: (warning) => {
|
|
56
|
-
throw new Error(warning?.message);
|
|
57
|
-
},
|
|
58
|
-
external,
|
|
59
|
-
plugins: [
|
|
60
|
-
dts({
|
|
61
|
-
respectExternal: true,
|
|
62
|
-
tsconfig: path.resolve(projectRootDir, './tsconfig.json'),
|
|
63
|
-
// https://github.com/Swatinem/rollup-plugin-dts/issues/143
|
|
64
|
-
compilerOptions: { preserveSymlinks: false },
|
|
65
|
-
}),
|
|
66
|
-
],
|
|
67
|
-
output: [
|
|
68
|
-
{
|
|
69
|
-
file: targetCJS.replace(/\.cjs$/, '.d.cts'),
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
file: targetES.replace(/\.js$/, '.d.ts'),
|
|
73
|
-
},
|
|
74
|
-
],
|
|
75
|
-
},
|
|
76
|
-
];
|
|
77
|
-
}
|
|
18
|
+
const babelPlugin = babel({
|
|
19
|
+
exclude: 'node_modules/**',
|
|
20
|
+
extensions: ['.ts'],
|
|
21
|
+
babelHelpers: 'bundled',
|
|
22
|
+
configFile: path.resolve(projectRootDir, './babel.config.json'),
|
|
23
|
+
});
|
|
78
24
|
|
|
79
25
|
/** @type { Array<import('rollup').RollupOptions> } */
|
|
80
26
|
export default [
|
|
81
|
-
|
|
27
|
+
// ESM with code splitting so provider.ts is shared between index and experimental
|
|
28
|
+
{
|
|
29
|
+
input: {
|
|
30
|
+
index: './src/index.ts',
|
|
31
|
+
experimental: './src/experimental.ts',
|
|
32
|
+
},
|
|
33
|
+
onwarn: (warning) => {
|
|
34
|
+
throw new Error(warning?.message);
|
|
35
|
+
},
|
|
36
|
+
external,
|
|
37
|
+
plugins: [nodeResolve({ extensions: ['.ts'] }), babelPlugin],
|
|
38
|
+
output: {
|
|
39
|
+
dir: './dist',
|
|
40
|
+
format: 'es',
|
|
41
|
+
entryFileNames: '[name].js',
|
|
42
|
+
chunkFileNames: '[name].js',
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
// CJS with code splitting
|
|
46
|
+
{
|
|
47
|
+
input: {
|
|
48
|
+
index: './src/index.ts',
|
|
49
|
+
experimental: './src/experimental.ts',
|
|
50
|
+
},
|
|
51
|
+
onwarn: (warning) => {
|
|
52
|
+
throw new Error(warning?.message);
|
|
53
|
+
},
|
|
54
|
+
external,
|
|
55
|
+
plugins: [nodeResolve({ extensions: ['.ts'] }), babelPlugin],
|
|
56
|
+
output: {
|
|
57
|
+
dir: './dist',
|
|
58
|
+
format: 'cjs',
|
|
59
|
+
entryFileNames: '[name].cjs',
|
|
60
|
+
chunkFileNames: '[name].cjs',
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
// Type declarations
|
|
64
|
+
{
|
|
82
65
|
input: './src/index.ts',
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
66
|
+
onwarn: (warning) => {
|
|
67
|
+
throw new Error(warning?.message);
|
|
68
|
+
},
|
|
69
|
+
external,
|
|
70
|
+
plugins: [
|
|
71
|
+
dts({
|
|
72
|
+
respectExternal: true,
|
|
73
|
+
tsconfig: path.resolve(projectRootDir, './tsconfig.json'),
|
|
74
|
+
compilerOptions: { preserveSymlinks: false },
|
|
75
|
+
}),
|
|
76
|
+
],
|
|
77
|
+
output: [{ file: './dist/index.d.cts' }, { file: './dist/index.d.ts' }],
|
|
78
|
+
},
|
|
79
|
+
{
|
|
87
80
|
input: './src/experimental.ts',
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
81
|
+
onwarn: (warning) => {
|
|
82
|
+
throw new Error(warning?.message);
|
|
83
|
+
},
|
|
84
|
+
external,
|
|
85
|
+
plugins: [
|
|
86
|
+
dts({
|
|
87
|
+
respectExternal: true,
|
|
88
|
+
tsconfig: path.resolve(projectRootDir, './tsconfig.json'),
|
|
89
|
+
compilerOptions: { preserveSymlinks: false },
|
|
90
|
+
}),
|
|
91
|
+
],
|
|
92
|
+
output: [{ file: './dist/experimental.d.cts' }, { file: './dist/experimental.d.ts' }],
|
|
93
|
+
},
|
|
91
94
|
];
|
package/coverage/base.css
DELETED
|
@@ -1,224 +0,0 @@
|
|
|
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
|
-
}
|