Skip to content

Commit 1c0765d

Browse files
authored
Bump version (#486)
* Make tabbable optional (backward change) * Bump version * Remove unpublished version from changelog * Remove alpha from menubar example version * Update extracted API
1 parent 0ae5b39 commit 1c0765d

26 files changed

+853
-322
lines changed

CHANGELOG.md

+2-24
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,6 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5-
## 2022.11.29
6-
7-
([Full Changelog](https://github.com/jupyterlab/lumino/compare/@lumino/[email protected]))
8-
9-
### Enhancements made
10-
11-
- Improve the menubar accessibility [#476](https://github.com/jupyterlab/lumino/pull/476) ([@fcollonval](https://github.com/fcollonval))
12-
13-
### Bugs fixed
14-
15-
- Fix drag-and-drop of nested dock panel [#473](https://github.com/jupyterlab/lumino/pull/473) ([@drcd1](https://github.com/drcd1))
16-
17-
### Maintenance and upkeep improvements
18-
19-
- Correct example version for 1.x [#479](https://github.com/jupyterlab/lumino/pull/479) ([@fcollonval](https://github.com/fcollonval))
20-
21-
### Contributors to this release
22-
23-
([GitHub contributors page for this release](https://github.com/jupyterlab/lumino/graphs/contributors?from=2022-10-31&to=2022-11-29&type=c))
24-
25-
[@afshin](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Aafshin+updated%3A2022-10-31..2022-11-29&type=Issues) | [@blink1073](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Ablink1073+updated%3A2022-10-31..2022-11-29&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Afcollonval+updated%3A2022-10-31..2022-11-29&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Ameeseeksmachine+updated%3A2022-10-31..2022-11-29&type=Issues) | [@scmmmh](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Ascmmmh+updated%3A2022-10-31..2022-11-29&type=Issues) | [@vidartf](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Avidartf+updated%3A2022-10-31..2022-11-29&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Awelcome+updated%3A2022-10-31..2022-11-29&type=Issues)
26-
27-
<!-- <END NEW CHANGELOG ENTRY> -->
28-
295
## 2022.10.31
306

317
([Full Changelog](https://github.com/jupyterlab/lumino/compare/@lumino/[email protected]))
@@ -52,6 +28,8 @@
5228

5329
[@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Afcollonval+updated%3A2022-10-05..2022-10-31&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Akrassowski+updated%3A2022-10-05..2022-10-31&type=Issues) | [@meeseeksdev](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Ameeseeksdev+updated%3A2022-10-05..2022-10-31&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Ameeseeksmachine+updated%3A2022-10-05..2022-10-31&type=Issues) | [@vidartf](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Avidartf+updated%3A2022-10-05..2022-10-31&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Flumino+involves%3Awelcome+updated%3A2022-10-05..2022-10-31&type=Issues)
5430

31+
<!-- <END NEW CHANGELOG ENTRY> -->
32+
5533
## 2022.10.5
5634

5735
([Full Changelog](https://github.com/jupyterlab/lumino/compare/@lumino/[email protected]))

api-extractor-base.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*
4646
* SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
4747
*/
48-
"mainEntryPointFilePath": "<projectFolder>/lib/index.d.ts",
48+
"mainEntryPointFilePath": "<projectFolder>/types/index.d.ts",
4949

5050
/**
5151
* A list of NPM package names whose exports should be treated as part of this package.

examples/example-accordionpanel/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@lumino/example-accordionpanel",
3-
"version": "0.8.5",
3+
"version": "0.8.6",
44
"private": true,
55
"scripts": {
66
"build": "tsc && webpack",
77
"clean": "rimraf build"
88
},
99
"dependencies": {
10-
"@lumino/default-theme": "^0.22.5",
10+
"@lumino/default-theme": "^0.22.6",
1111
"@lumino/messaging": "^1.10.3",
12-
"@lumino/widgets": "^1.35.0",
12+
"@lumino/widgets": "^1.36.0",
1313
"es6-promise": "^4.0.5"
1414
},
1515
"devDependencies": {

examples/example-datagrid/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@lumino/example-datagrid",
3-
"version": "0.32.5",
3+
"version": "0.32.6",
44
"private": true,
55
"scripts": {
66
"build": "tsc && webpack",
77
"clean": "rimraf build"
88
},
99
"dependencies": {
10-
"@lumino/datagrid": "^0.36.5",
11-
"@lumino/default-theme": "^0.22.5",
10+
"@lumino/datagrid": "^0.36.6",
11+
"@lumino/default-theme": "^0.22.6",
1212
"@lumino/dragdrop": "^1.14.3",
13-
"@lumino/widgets": "^1.35.0",
13+
"@lumino/widgets": "^1.36.0",
1414
"es6-promise": "^4.0.5"
1515
},
1616
"devDependencies": {

examples/example-datastore/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lumino/example-datastore",
3-
"version": "0.21.5",
3+
"version": "0.21.6",
44
"private": true,
55
"scripts": {
66
"build": "tsc && webpack",
@@ -14,7 +14,7 @@
1414
"@lumino/datastore": "^0.18.3",
1515
"@lumino/disposable": "^1.10.3",
1616
"@lumino/dragdrop": "^1.14.3",
17-
"@lumino/widgets": "^1.35.0",
17+
"@lumino/widgets": "^1.36.0",
1818
"codemirror": "^5.48.2",
1919
"es6-promise": "^4.0.5",
2020
"websocket": "^1.0.28"

examples/example-dockpanel/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "@lumino/example-dockpanel",
3-
"version": "0.21.5",
3+
"version": "0.21.6",
44
"private": true,
55
"scripts": {
66
"build": "tsc && webpack",
77
"clean": "rimraf build"
88
},
99
"dependencies": {
1010
"@lumino/commands": "^1.21.0",
11-
"@lumino/default-theme": "^0.22.5",
11+
"@lumino/default-theme": "^0.22.6",
1212
"@lumino/dragdrop": "^1.14.3",
1313
"@lumino/messaging": "^1.10.3",
14-
"@lumino/widgets": "^1.35.0",
14+
"@lumino/widgets": "^1.36.0",
1515
"es6-promise": "^4.0.5"
1616
},
1717
"devDependencies": {

examples/example-menubar/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@lumino/example-menubar",
3-
"version": "0.1.0-alpha.0",
3+
"version": "0.1.1",
44
"private": true,
55
"scripts": {
66
"build": "tsc && webpack",
77
"clean": "rimraf build"
88
},
99
"dependencies": {
10-
"@lumino/default-theme": "^0.22.5",
10+
"@lumino/default-theme": "^0.22.6",
1111
"@lumino/messaging": "^1.10.3",
12-
"@lumino/widgets": "^1.35.0",
12+
"@lumino/widgets": "^1.36.0",
1313
"es6-promise": "^4.0.5"
1414
},
1515
"devDependencies": {

examples/example-nested-dockpanel-amd/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lumino/example-nested-dockpanel-amd",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"private": true,
55
"scripts": {
66
"test": "node ./test/runner.js"

packages/application/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lumino/application",
3-
"version": "1.30.0",
3+
"version": "1.31.0",
44
"description": "Lumino Pluggable Application",
55
"homepage": "https://github.com/jupyterlab/lumino",
66
"bugs": {
@@ -48,7 +48,7 @@
4848
"dependencies": {
4949
"@lumino/commands": "^1.21.0",
5050
"@lumino/coreutils": "^1.12.1",
51-
"@lumino/widgets": "^1.35.0"
51+
"@lumino/widgets": "^1.36.0"
5252
},
5353
"devDependencies": {
5454
"@microsoft/api-extractor": "^7.6.0",

packages/datagrid/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lumino/datagrid",
3-
"version": "0.36.5",
3+
"version": "0.36.6",
44
"description": "Lumino Tabular Data Grid",
55
"homepage": "https://github.com/jupyterlab/lumino",
66
"bugs": {
@@ -45,7 +45,7 @@
4545
"@lumino/keyboard": "^1.8.2",
4646
"@lumino/messaging": "^1.10.3",
4747
"@lumino/signaling": "^1.11.0",
48-
"@lumino/widgets": "^1.35.0"
48+
"@lumino/widgets": "^1.36.0"
4949
},
5050
"devDependencies": {
5151
"rimraf": "^3.0.2",

packages/default-theme/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lumino/default-theme",
3-
"version": "0.22.5",
3+
"version": "0.22.6",
44
"description": "Lumino Default Theme",
55
"homepage": "https://github.com/jupyterlab/lumino",
66
"bugs": {
@@ -30,7 +30,7 @@
3030
},
3131
"dependencies": {
3232
"@lumino/dragdrop": "^1.14.3",
33-
"@lumino/widgets": "^1.35.0"
33+
"@lumino/widgets": "^1.36.0"
3434
},
3535
"publishConfig": {
3636
"access": "public"

packages/widgets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lumino/widgets",
3-
"version": "1.35.0",
3+
"version": "1.36.0",
44
"description": "Lumino Widgets",
55
"homepage": "https://github.com/jupyterlab/lumino",
66
"bugs": {

packages/widgets/src/menubar.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ export namespace MenuBar {
809809
/**
810810
* Whether the user can tab to the item.
811811
*/
812-
readonly tabbable: boolean;
812+
readonly tabbable?: boolean;
813813

814814
readonly onfocus?: (event: FocusEvent) => void;
815815
}

review/api/algorithm.api.md

+14-16
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class ArrayIterator<T> implements IIterator<T> {
5353
clone(): IIterator<T>;
5454
iter(): IIterator<T>;
5555
next(): T | undefined;
56-
}
56+
}
5757

5858
// @public
5959
export function chain<T>(...objects: IterableOrArrayLike<T>[]): IIterator<T>;
@@ -64,7 +64,7 @@ export class ChainIterator<T> implements IIterator<T> {
6464
clone(): IIterator<T>;
6565
iter(): IIterator<T>;
6666
next(): T | undefined;
67-
}
67+
}
6868

6969
// @public
7070
export function each<T>(object: IterableOrArrayLike<T>, fn: (value: T, index: number) => boolean | void): void;
@@ -74,7 +74,6 @@ export function empty<T>(): IIterator<T>;
7474

7575
// @public
7676
export class EmptyIterator<T> implements IIterator<T> {
77-
constructor();
7877
clone(): IIterator<T>;
7978
iter(): IIterator<T>;
8079
next(): T | undefined;
@@ -89,7 +88,7 @@ export class EnumerateIterator<T> implements IIterator<[number, T]> {
8988
clone(): IIterator<[number, T]>;
9089
iter(): IIterator<[number, T]>;
9190
next(): [number, T] | undefined;
92-
}
91+
}
9392

9493
// @public
9594
export function every<T>(object: IterableOrArrayLike<T>, fn: (value: T, index: number) => boolean): boolean;
@@ -103,7 +102,7 @@ export class FilterIterator<T> implements IIterator<T> {
103102
clone(): IIterator<T>;
104103
iter(): IIterator<T>;
105104
next(): T | undefined;
106-
}
105+
}
107106

108107
// @public
109108
export function find<T>(object: IterableOrArrayLike<T>, fn: (value: T, index: number) => boolean): T | undefined;
@@ -143,7 +142,7 @@ export class ItemIterator<T> implements IIterator<[string, T]> {
143142
clone(): IIterator<[string, T]>;
144143
iter(): IIterator<[string, T]>;
145144
next(): [string, T] | undefined;
146-
}
145+
}
147146

148147
// @public
149148
export function iter<T>(object: IterableOrArrayLike<T>): IIterator<T>;
@@ -177,7 +176,7 @@ export class KeyIterator implements IIterator<string> {
177176
clone(): IIterator<string>;
178177
iter(): IIterator<string>;
179178
next(): string | undefined;
180-
}
179+
}
181180

182181
// @public
183182
export function map<T, U>(object: IterableOrArrayLike<T>, fn: (value: T, index: number) => U): IIterator<U>;
@@ -188,7 +187,7 @@ export class MapIterator<T, U> implements IIterator<U> {
188187
clone(): IIterator<U>;
189188
iter(): IIterator<U>;
190189
next(): U | undefined;
191-
}
190+
}
192191

193192
// @public
194193
export function max<T>(object: IterableOrArrayLike<T>, fn: (first: T, second: T) => number): T | undefined;
@@ -211,7 +210,7 @@ export class RangeIterator implements IIterator<number> {
211210
clone(): IIterator<number>;
212211
iter(): IIterator<number>;
213212
next(): number | undefined;
214-
}
213+
}
215214

216215
// @public
217216
export function reduce<T>(object: IterableOrArrayLike<T>, fn: (accumulator: T, value: T, index: number) => T): T;
@@ -228,7 +227,7 @@ export class RepeatIterator<T> implements IIterator<T> {
228227
clone(): IIterator<T>;
229228
iter(): IIterator<T>;
230229
next(): T | undefined;
231-
}
230+
}
232231

233232
// @public
234233
export function retro<T>(object: RetroableOrArrayLike<T>): IIterator<T>;
@@ -242,7 +241,7 @@ export class RetroArrayIterator<T> implements IIterator<T> {
242241
clone(): IIterator<T>;
243242
iter(): IIterator<T>;
244243
next(): T | undefined;
245-
}
244+
}
246245

247246
// @public
248247
export function some<T>(object: IterableOrArrayLike<T>, fn: (value: T, index: number) => boolean): boolean;
@@ -256,7 +255,7 @@ export class StrideIterator<T> implements IIterator<T> {
256255
clone(): IIterator<T>;
257256
iter(): IIterator<T>;
258257
next(): T | undefined;
259-
}
258+
}
260259

261260
// @public
262261
export namespace StringExt {
@@ -280,7 +279,7 @@ export class TakeIterator<T> implements IIterator<T> {
280279
clone(): IIterator<T>;
281280
iter(): IIterator<T>;
282281
next(): T | undefined;
283-
}
282+
}
284283

285284
// @public
286285
export function toArray<T>(object: IterableOrArrayLike<T>): T[];
@@ -301,7 +300,7 @@ export class ValueIterator<T> implements IIterator<T> {
301300
clone(): IIterator<T>;
302301
iter(): IIterator<T>;
303302
next(): T | undefined;
304-
}
303+
}
305304

306305
// @public
307306
export function zip<T>(...objects: IterableOrArrayLike<T>[]): IIterator<T[]>;
@@ -312,8 +311,7 @@ export class ZipIterator<T> implements IIterator<T[]> {
312311
clone(): IIterator<T[]>;
313312
iter(): IIterator<T[]>;
314313
next(): T[] | undefined;
315-
}
316-
314+
}
317315

318316
// (No @packageDocumentation comment for this package)
319317

0 commit comments

Comments
 (0)