Skip to content

Commit

Permalink
Deploying to gh-pages from @ b9e61e4 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelZubkov committed Oct 2, 2023
1 parent 736532f commit ef2c0b5
Show file tree
Hide file tree
Showing 21 changed files with 2,607 additions and 826 deletions.
116 changes: 89 additions & 27 deletions node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1611,6 +1611,7 @@ declare namespace $.$$ {

declare namespace $ {
class $mol_check_list extends $mol_view {
dictionary(): Record<string, any>;
Option(id: any): $$.$mol_check;
options(): Record<string, any>;
keys(): readonly string[];
Expand All @@ -1630,6 +1631,8 @@ declare namespace $.$$ {
options(): {
[key: string]: string;
};
dictionary(next?: Record<string, boolean>): Record<string, boolean>;
option_checked(id: string, next?: boolean | null): boolean;
keys(): readonly string[];
items(): $mol_check[];
option_title(key: string): string;
Expand Down Expand Up @@ -2214,6 +2217,37 @@ declare namespace $.$$ {
}
}

declare namespace $ {
class $mol_nav extends $mol_plugin {
cycle(next?: any): boolean;
mod_ctrl(): boolean;
mod_shift(): boolean;
mod_alt(): boolean;
keys_x(next?: any): readonly any[];
keys_y(next?: any): readonly any[];
current_x(next?: any): any;
current_y(next?: any): any;
event_up(event?: any): any;
event_down(event?: any): any;
event_left(event?: any): any;
event_right(event?: any): any;
event(): Record<string, any>;
event_key(event?: any): any;
}
}

declare namespace $.$$ {
class $mol_nav extends $.$mol_nav {
event_key(event?: KeyboardEvent): undefined;
event_up(event?: KeyboardEvent): undefined;
event_down(event?: KeyboardEvent): undefined;
event_left(event?: KeyboardEvent): undefined;
event_right(event?: KeyboardEvent): undefined;
index_y(): number | null;
index_x(): number | null;
}
}

declare namespace $ {
class $mol_string extends $mol_view {
dom_name(): string;
Expand Down Expand Up @@ -2264,7 +2298,7 @@ declare namespace $ {
}

declare namespace $ {
class $mol_icon_dots_vertical extends $mol_icon {
class $mol_icon_cross extends $mol_icon {
path(): string;
}
}
Expand Down Expand Up @@ -2403,33 +2437,60 @@ declare namespace $ {
}

declare namespace $ {
class $mol_nav extends $mol_plugin {
cycle(next?: any): boolean;
mod_ctrl(): boolean;
mod_shift(): boolean;
mod_alt(): boolean;
keys_x(next?: any): readonly any[];
keys_y(next?: any): readonly any[];
current_x(next?: any): any;
current_y(next?: any): any;
event_up(event?: any): any;
event_down(event?: any): any;
event_left(event?: any): any;
event_right(event?: any): any;
event(): Record<string, any>;
event_key(event?: any): any;
class $mol_search extends $mol_pop {
query(next?: any): string;
suggests(): readonly string[];
plugins(): readonly $mol_plugin[];
showed(next?: any): boolean;
align_hor(): string;
Anchor(): $mol_view;
bubble_content(): readonly $mol_view_content[];
Suggest(id: any): $mol_button_minor;
clear(next?: any): any;
Hotkey(): $$.$mol_hotkey;
nav_components(): readonly $mol_view[];
nav_focused(component?: any): any;
Nav(): $$.$mol_nav;
suggests_showed(next?: any): boolean;
hint(): string;
submit(event?: any): any;
enabled(): boolean;
keyboard(): string;
enter(): string;
bring(): void;
Query(): $$.$mol_string;
Clear_icon(): $mol_icon_cross;
Clear(): $mol_button_minor;
anchor_content(): readonly any[];
menu_items(): readonly $mol_view[];
Menu(): $$.$mol_list;
suggest_select(id: any, event?: any): any;
suggest_label(id: any): string;
Suggest_label(id: any): $$.$mol_dimmer;
suggest_content(id: any): readonly $mol_view_content[];
}
}

declare namespace $.$$ {
class $mol_nav extends $.$mol_nav {
event_key(event?: KeyboardEvent): undefined;
event_up(event?: KeyboardEvent): undefined;
event_down(event?: KeyboardEvent): undefined;
event_left(event?: KeyboardEvent): undefined;
event_right(event?: KeyboardEvent): undefined;
index_y(): number | null;
index_x(): number | null;
class $mol_search extends $.$mol_search {
anchor_content(): ($mol_button_minor | $mol_string)[];
suggests_showed(next?: boolean): boolean;
suggest_selected(next?: string): void;
nav_components(): ($mol_button_minor | $mol_string)[];
nav_focused(component?: $mol_view): $mol_view | $mol_button_minor | $mol_string | null;
suggest_label(key: string): string;
menu_items(): $mol_button_minor[];
suggest_select(id: string, event?: MouseEvent): void;
clear(event?: Event): void;
}
}

declare namespace $ {
}

declare namespace $ {
class $mol_icon_dots_vertical extends $mol_icon {
path(): string;
}
}

Expand All @@ -2444,7 +2505,7 @@ declare namespace $ {
plugins(): readonly any[];
hint(): string;
bubble_content(): readonly any[];
Filter(): $$.$mol_string;
Filter(): $$.$mol_search;
Trigger_icon(): $mol_icon_dots_vertical;
event_select(id: any, event?: any): any;
option_label(id: any): string;
Expand All @@ -2459,6 +2520,7 @@ declare namespace $ {
menu_content(): readonly $mol_view[];
Menu(): $$.$mol_list;
Bubble_pane(): $$.$mol_scroll;
filter_hint(): string;
submit(event?: any): any;
enabled(): boolean;
}
Expand All @@ -2476,9 +2538,9 @@ declare namespace $.$$ {
options_filtered(): readonly string[];
option_label(id: string): any;
option_rows(): $mol_button_minor[];
option_focused(component?: $mol_view): $mol_view | $mol_button_minor | $mol_string | null;
option_focused(component?: $mol_view): $mol_view | $mol_button_minor | $mol_search | null;
event_select(id: string, event?: MouseEvent): void;
nav_components(): ($mol_button_minor | $mol_string)[];
nav_components(): ($mol_button_minor | $mol_search)[];
trigger_content(): readonly $mol_view_content[];
menu_content(): ($mol_view | $mol_button_minor)[];
}
Expand Down
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

Loading

0 comments on commit ef2c0b5

Please sign in to comment.