Skip to content

Commit

Permalink
yarn api && yarn lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gabalafou committed Aug 16, 2023
1 parent 4f1e3fe commit bc50bd9
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/default-theme/style/menubar.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
outline-offset: -2px;
}

.lm-MenuBar-item[aria-disabled="true"] {
.lm-MenuBar-item[aria-disabled='true'] {
color: rgba(0, 0, 0, 0.37);
}
2 changes: 2 additions & 0 deletions review/api/algorithm.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,6 @@ export function topologicSort<T>(edges: Iterable<[T, T]>): T[];
// @public
export function zip<T>(...objects: Iterable<T>[]): IterableIterator<T[]>;

// (No @packageDocumentation comment for this package)

```
4 changes: 1 addition & 3 deletions review/api/application.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,12 @@ import { Widget } from '@lumino/widgets';
// @public
export class Application<T extends Widget = Widget> {
constructor(options: Application.IOptions<T>);
activateDeferredPlugins(): Promise<void>;
activatePlugin(id: string): Promise<void>;
protected addEventListeners(): void;
protected attachShell(id: string): void;
readonly commands: CommandRegistry;
readonly contextMenu: ContextMenu;
deactivatePlugin(id: string): Promise<string[]>;
get deferredPlugins(): string[];
deregisterPlugin(id: string, force?: boolean): void;
protected evtContextMenu(event: PointerEvent): void;
protected evtKeydown(event: KeyboardEvent): void;
Expand Down Expand Up @@ -55,7 +53,7 @@ export namespace Application {
// @public
export interface IPlugin<T extends Application, U> {
activate: (app: T, ...args: any[]) => U | Promise<U>;
autoStart?: boolean | 'defer';
autoStart?: boolean;
deactivate?: ((app: T, ...args: any[]) => void | Promise<void>) | null;
description?: string;
id: string;
Expand Down
2 changes: 2 additions & 0 deletions review/api/collections.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,6 @@ export namespace LinkedList {
}
}

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions review/api/coreutils.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,6 @@ export namespace UUID {
const uuid4: () => string;
}

// (No @packageDocumentation comment for this package)

```
8 changes: 3 additions & 5 deletions review/api/datagrid.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export class DataGrid extends Widget {
protected repaintRegion(region: DataModel.CellRegion, r1: number, c1: number, r2: number, c2: number): void;
resetColumns(region: DataModel.ColumnRegion | 'all'): void;
resetRows(region: DataModel.RowRegion | 'all'): void;
resizeColumn(region: DataModel.ColumnRegion, index: number, size: number | null): void;
resizeColumn(region: DataModel.ColumnRegion, index: number, size: number): void;
resizeRow(region: DataModel.RowRegion, index: number, size: number): void;
rowAt(region: DataModel.RowRegion, offset: number): number;
rowCount(region: DataModel.RowRegion): number;
Expand Down Expand Up @@ -613,7 +613,6 @@ export class GraphicsContext implements IDisposable {
export class HyperlinkRenderer extends TextRenderer {
constructor(options?: HyperlinkRenderer.IOptions);
drawText(gc: GraphicsContext, config: CellRenderer.CellConfig): void;
getText(config: CellRenderer.CellConfig): string;
readonly url: CellRenderer.ConfigOption<string> | undefined;
readonly urlName: CellRenderer.ConfigOption<string> | undefined;
}
Expand Down Expand Up @@ -920,9 +919,7 @@ export class TextRenderer extends CellRenderer {
readonly elideDirection: CellRenderer.ConfigOption<TextRenderer.ElideDirection>;
readonly font: CellRenderer.ConfigOption<string>;
readonly format: TextRenderer.FormatFunc;
getText(config: CellRenderer.CellConfig): string;
readonly horizontalAlignment: CellRenderer.ConfigOption<TextRenderer.HorizontalAlignment>;
readonly horizontalPadding: number;
paint(gc: GraphicsContext, config: CellRenderer.CellConfig): void;
readonly textColor: CellRenderer.ConfigOption<string>;
readonly verticalAlignment: CellRenderer.ConfigOption<TextRenderer.VerticalAlignment>;
Expand Down Expand Up @@ -1007,7 +1004,6 @@ export namespace TextRenderer {
font?: CellRenderer.ConfigOption<string>;
format?: FormatFunc;
horizontalAlignment?: CellRenderer.ConfigOption<HorizontalAlignment>;
horizontalPadding?: number;
textColor?: CellRenderer.ConfigOption<string>;
verticalAlignment?: CellRenderer.ConfigOption<VerticalAlignment>;
wrapText?: CellRenderer.ConfigOption<boolean>;
Expand All @@ -1016,4 +1012,6 @@ export namespace TextRenderer {
export type VerticalAlignment = 'top' | 'center' | 'bottom';
}

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions review/api/disposable.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,6 @@ export namespace ObservableDisposableSet {
export function from(items: Iterable<IDisposable>): ObservableDisposableSet;
}

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions review/api/domutils.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ export namespace Selector {
export function matches(element: Element, selector: string): boolean;
}

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions review/api/dragdrop.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,6 @@ export namespace Drag {
export interface IDragEvent extends Drag.Event {
}

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions review/api/keyboard.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,6 @@ export namespace KeycodeLayout {
// @public
export function setKeyboardLayout(layout: IKeyboardLayout): void;

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions review/api/polling.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,6 @@ export namespace Throttler {
}
}

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions review/api/properties.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ export namespace AttachedProperty {
}
}

// (No @packageDocumentation comment for this package)

```
5 changes: 3 additions & 2 deletions review/api/widgets.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export class AccordionPanel extends SplitPanel {
addWidget(widget: Widget): void;
collapse(index: number): void;
expand(index: number): void;
get expansionToggled(): ISignal<this, number>;
handleEvent(event: Event): void;
insertWidget(index: number, widget: Widget): void;
protected onAfterDetach(msg: Message): void;
Expand Down Expand Up @@ -809,6 +808,7 @@ export namespace MenuBar {
}
export interface IRenderData {
readonly active: boolean;
readonly disabled: boolean;
// (undocumented)
readonly onfocus?: (event: FocusEvent) => void;
readonly tabbable: boolean;
Expand Down Expand Up @@ -1116,7 +1116,6 @@ export namespace TabBar {
}
export interface IRenderData<T> {
readonly current: boolean;
readonly tabIndex?: number;
readonly title: Title<T>;
readonly zIndex: number;
}
Expand Down Expand Up @@ -1396,4 +1395,6 @@ export namespace Widget {
}
}

// (No @packageDocumentation comment for this package)

```

0 comments on commit bc50bd9

Please sign in to comment.