File tree 6 files changed +46
-43
lines changed
6 files changed +46
-43
lines changed Original file line number Diff line number Diff line change 3
3
coverage
4
4
** /* .d.ts
5
5
tests
6
+ ipympl /nbextension /extension.js
Original file line number Diff line number Diff line change @@ -29,4 +29,9 @@ ipympl/labextension/*.tgz
29
29
ipympl /labextension
30
30
31
31
# OS specific items
32
- .DS_Store
32
+ .DS_Store
33
+
34
+ # Sphinx documentation
35
+ docs /_build /
36
+ docs /source /_static /embed-bundle.js
37
+ docs /source /_static /embed-bundle.js.map
Original file line number Diff line number Diff line change 1
1
.jupyter-matplotlib {
2
- width : auto;
3
- height : auto;
4
- flex : 1 1 auto;
2
+ width : auto;
3
+ height : auto;
4
+ flex : 1 1 auto;
5
5
}
6
6
7
7
/* Toolbar */
8
8
9
9
.jupyter-matplotlib-toolbar {
10
- overflow : visible;
10
+ overflow : visible;
11
11
}
12
12
13
13
.jupyter-matplotlib-button {
14
- width : calc (var (--jp-widgets-inline-width-tiny ) / 2 - 2px );
15
- padding : 0 !important ;
14
+ width : calc (var (--jp-widgets-inline-width-tiny ) / 2 - 2px );
15
+ padding : 0 !important ;
16
16
}
17
17
18
18
/* Figure */
19
19
20
20
.jupyter-matplotlib-figure {
21
- width : auto;
22
- height : auto;
23
- overflow : hidden;
21
+ width : auto;
22
+ height : auto;
23
+ overflow : hidden;
24
24
}
25
25
26
26
.jupyter-matplotlib-canvas-container {
27
- overflow : auto;
27
+ overflow : auto;
28
28
}
29
29
30
30
.jupyter-matplotlib-canvas-div {
31
- margin : 2px ;
32
- flex : 1 1 auto;
31
+ margin : 2px ;
32
+ flex : 1 1 auto;
33
33
}
34
34
35
35
.jupyter-matplotlib-canvas-div : focus {
36
- outline : 1px solid var (--jp-widgets-input-focus-border-color );
36
+ outline : 1px solid var (--jp-widgets-input-focus-border-color );
37
37
}
Original file line number Diff line number Diff line change 1
1
{
2
- "load_extensions" : {
3
- "jupyter-matplotlib/extension" : true
4
- }
2
+ "load_extensions" : {
3
+ "jupyter-matplotlib/extension" : true
4
+ }
5
5
}
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ./tsconfig.json" ,
3
- "include" : [" .eslintrc.js" ],
4
- "exclude" : []
2
+ "extends" : " ./tsconfig.json" ,
3
+ "include" : [" .eslintrc.js" , " src/**/*.ts " ],
4
+ "exclude" : []
5
5
}
Original file line number Diff line number Diff line change 1
1
{
2
- "compilerOptions" : {
3
- "declaration" : true ,
4
- "esModuleInterop" :true ,
5
- "lib" : [" es2015" , " dom" ],
6
- "module" : " esnext" ,
7
- "moduleResolution" : " node" ,
8
- "noEmitOnError" : true ,
9
- "noUnusedLocals" : true ,
10
- "outDir" : " lib" ,
11
- "resolveJsonModule" : true ,
12
- "rootDir" : " src" ,
13
- "skipLibCheck" : true ,
14
- "sourceMap" : true ,
15
- "strict" : true ,
16
- "strictPropertyInitialization" : false ,
17
- "target" : " es2015" ,
18
- "types" : [" jest" , " node" ]
19
- },
20
- "include" : [
21
- " src/**/*.ts" ,
22
- " src/**/*.tsx" ,
23
- ],
24
- "exclude" : [" src/**/__tests__" ]
2
+ "compilerOptions" : {
3
+ "declaration" : true ,
4
+ "esModuleInterop" : true ,
5
+ "lib" : [" es2015" , " dom" ],
6
+ "module" : " esnext" ,
7
+ "moduleResolution" : " node" ,
8
+ "noEmitOnError" : true ,
9
+ "noUnusedLocals" : true ,
10
+ "outDir" : " lib" ,
11
+ "resolveJsonModule" : true ,
12
+ "rootDir" : " src" ,
13
+ "skipLibCheck" : true ,
14
+ "sourceMap" : true ,
15
+ "strict" : true ,
16
+ "strictPropertyInitialization" : false ,
17
+ "target" : " es2015" ,
18
+ "types" : [" jest" , " node" ]
19
+ },
20
+ "include" : [" src/**/*.ts" , " src/**/*.tsx" ],
21
+ "exclude" : [" src/**/__tests__" , " nbextension/extension.js" ]
25
22
}
You can’t perform that action at this time.
0 commit comments