Skip to content

Commit 00da064

Browse files
authored
Merge branch 'dash-3.0' into prop-typing
2 parents 95d8b0d + 9566578 commit 00da064

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+8502
-8775
lines changed

@plotly/dash-generator-test-component-typescript/src/components/TypeScriptComponent.tsx

+11-14
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,17 @@ import {TypescriptComponentProps} from '../props';
44
/**
55
* Component docstring
66
*/
7-
const TypeScriptComponent = (props: TypescriptComponentProps) => {
8-
const {required_string, id} = props;
9-
return <div id={id}>{required_string}</div>;
10-
};
11-
12-
TypeScriptComponent.defaultProps = {
13-
string_default: 'default',
14-
number_default: 42,
15-
bool_default: true,
16-
null_default: null,
17-
obj_default: {
18-
a: 'a',
19-
b: 3
20-
}
7+
const TypeScriptComponent = ({
8+
required_string,
9+
id,
10+
string_default = 'default',
11+
number_default = 42,
12+
bool_default = true,
13+
null_default = null,
14+
obj_default = { a: 'a', b: 3 },
15+
...props
16+
}: TypescriptComponentProps) => {
17+
return <div id={id}>{required_string}</div>;
2118
};
2219

2320
export default TypeScriptComponent;

@plotly/dash-generator-test-component-typescript/src/props.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export type TypescriptComponentProps = {
3232
array_elements?: JSX.Element[];
3333

3434
string_default?: string;
35-
number_default?: string;
35+
number_default?: number;
3636
obj_default?: {a: string; b: number};
3737
bool_default?: boolean;
3838
null_default?: any;

@plotly/dash-jupyterlab/package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,16 @@
3333
"watch": "tsc -w"
3434
},
3535
"dependencies": {
36-
"@jupyterlab/application": "^2.0.0 || ^3.0.0",
37-
"@jupyterlab/notebook": "^2.0.0 || ^3.0.0",
38-
"@jupyterlab/console": "^2.0.0 || ^3.0.0"
36+
"@jupyterlab/application": "^2.0.0 || ^3.0.0 || ^4.0.0",
37+
"@jupyterlab/console": "^2.0.0 || ^3.0.0 || ^4.0.0",
38+
"@jupyterlab/notebook": "^2.0.0 || ^3.0.0 || ^4.0.0"
3939
},
4040
"devDependencies": {
41+
"@types/json-schema": "^7.0.15",
42+
"mkdirp": "^0.5.1",
4143
"prettier": "2.0.5",
4244
"rimraf": "3.0.2",
43-
"typescript": "3.9.3",
44-
"mkdirp": "^0.5.1"
45+
"typescript": "5.6.2"
4546
},
4647
"jupyterlab": {
4748
"extension": true

@plotly/dash-jupyterlab/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"declaration": true,
4-
"lib": ["es2015", "dom"],
4+
"lib": ["es2018", "dom"],
55
"module": "commonjs",
66
"moduleResolution": "node",
77
"noEmitOnError": true,
@@ -10,7 +10,7 @@
1010
"rootDir": "src",
1111
"strict": true,
1212
"strictNullChecks": false,
13-
"target": "es2015",
13+
"target": "es2018",
1414
"types": [],
1515
"esModuleInterop": true
1616
},

0 commit comments

Comments
 (0)