Skip to content

Commit

Permalink
Deploying to gh-pages from @ 5ca5a11 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-donarise committed Dec 3, 2023
1 parent f9fa881 commit 34ef77d
Show file tree
Hide file tree
Showing 15 changed files with 391 additions and 365 deletions.
65 changes: 34 additions & 31 deletions node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ declare namespace $ {
};
}

declare namespace $ {
function $mol_func_name(this: $, func: Function): string;
function $mol_func_name_from<Target extends Function>(target: Target, source: Function): Target;
}

declare namespace $ {
class $mol_object2 {
static $: typeof $$;
Expand All @@ -62,7 +67,9 @@ declare namespace $ {
static [Symbol.toPrimitive](): string;
static toString(): string;
destructor(): void;
static destructor(): void;
toString(): string;
static toJSON(): any;
toJSON(): any;
}
}
Expand Down Expand Up @@ -235,11 +242,6 @@ declare namespace $ {
}
}

declare namespace $ {
function $mol_func_name(this: $, func: Function): string;
function $mol_func_name_from<Target extends Function>(target: Target, source: Function): Target;
}

declare namespace $ {
function $mol_guid(length?: number, exists?: (id: string) => boolean): string;
}
Expand Down Expand Up @@ -615,6 +617,7 @@ declare namespace $ {
type $mol_style_unit_angle = 'deg' | 'rad' | 'grad' | 'turn';
type $mol_style_unit_time = 's' | 'ms';
type $mol_style_unit_any = $mol_style_unit_length | $mol_style_unit_angle | $mol_style_unit_time;
type $mol_style_unit_str<Quanity extends $mol_style_unit_any> = `${number}${Quanity}`;
class $mol_style_unit<Literal extends $mol_style_unit_any> extends $mol_decor<number> {
readonly literal: Literal;
constructor(value: number, literal: Literal);
Expand Down Expand Up @@ -662,22 +665,22 @@ declare namespace $ {
static vary<Name extends string, Value extends string>(name: Name, defaultValue?: Value): $mol_style_func<"var", Name | (Name | Value)[]>;
static url<Href extends string>(href: Href): $mol_style_func<"url", string>;
static hsla(hue: number, saturation: number, lightness: number, alpha: number): $mol_style_func<"hsla", (number | `${number}%`)[]>;
static clamp(min: $mol_style_unit<any>, mid: $mol_style_unit<any>, max: $mol_style_unit<any>): $mol_style_func<"clamp", $mol_style_unit<any>[]>;
static clamp(min: $mol_style_unit_str<any>, mid: $mol_style_unit_str<any>, max: $mol_style_unit_str<any>): $mol_style_func<"clamp", `${number}${any}`[]>;
static rgba(red: number, green: number, blue: number, alpha: number): $mol_style_func<"rgba", number[]>;
static scale(zoom: number): $mol_style_func<"scale", number[]>;
static linear(...breakpoints: Array<number | [number, number | $mol_style_unit<'%'>]>): $mol_style_func<"linear", string[]>;
static linear(...breakpoints: Array<number | [number, number | $mol_style_unit_str<'%'>]>): $mol_style_func<"linear", string[]>;
static cubic_bezier(x1: number, y1: number, x2: number, y2: number): $mol_style_func<"cubic-bezier", number[]>;
static steps(value: number, step_position: 'jump-start' | 'jump-end' | 'jump-none' | 'jump-both' | 'start' | 'end'): $mol_style_func<"steps", (number | "end" | "start" | "jump-start" | "jump-end" | "jump-none" | "jump-both")[]>;
static blur(value?: $mol_style_unit<$mol_style_unit_length>): $mol_style_func<"blur", string | $mol_style_unit<$mol_style_unit_length>>;
static brightness(value?: number | $mol_style_unit<'%'>): $mol_style_func<"brightness", string | number | $mol_style_unit<"%">>;
static contrast(value?: number | $mol_style_unit<'%'>): $mol_style_func<"contrast", string | number | $mol_style_unit<"%">>;
static drop_shadow(color: $mol_style_properties_color, x_offset: $mol_style_unit<$mol_style_unit_length>, y_offset: $mol_style_unit<$mol_style_unit_length>, blur_radius?: $mol_style_unit<$mol_style_unit_length>): $mol_style_func<"drop-shadow", ($mol_style_unit<$mol_style_unit_length> | $mol_style_properties_color)[]>;
static grayscale(value?: number | $mol_style_unit<'%'>): $mol_style_func<"grayscale", string | number | $mol_style_unit<"%">>;
static hue_rotate(value?: 0 | $mol_style_unit<$mol_style_unit_angle>): $mol_style_func<"hue-rotate", string | 0 | $mol_style_unit<$mol_style_unit_angle>>;
static invert(value?: number | $mol_style_unit<'%'>): $mol_style_func<"invert", string | number | $mol_style_unit<"%">>;
static opacity(value?: number | $mol_style_unit<'%'>): $mol_style_func<"opacity", string | number | $mol_style_unit<"%">>;
static sepia(value?: number | $mol_style_unit<'%'>): $mol_style_func<"sepia", string | number | $mol_style_unit<"%">>;
static saturate(value?: number | $mol_style_unit<'%'>): $mol_style_func<"saturate", string | number | $mol_style_unit<"%">>;
static blur(value?: $mol_style_unit_str<$mol_style_unit_length>): $mol_style_func<"blur", string>;
static brightness(value?: number | $mol_style_unit_str<'%'>): $mol_style_func<"brightness", string | number>;
static contrast(value?: number | $mol_style_unit_str<'%'>): $mol_style_func<"contrast", string | number>;
static drop_shadow(color: $mol_style_properties_color, x_offset: $mol_style_unit_str<$mol_style_unit_length>, y_offset: $mol_style_unit_str<$mol_style_unit_length>, blur_radius?: $mol_style_unit_str<$mol_style_unit_length>): $mol_style_func<"drop-shadow", (`${number}%` | `${number}px` | `${number}mm` | `${number}cm` | `${number}Q` | `${number}in` | `${number}pc` | `${number}pt` | `${number}cap` | `${number}ch` | `${number}em` | `${number}rem` | `${number}ex` | `${number}ic` | `${number}lh` | `${number}rlh` | `${number}vh` | `${number}vw` | `${number}vi` | `${number}vb` | `${number}vmin` | `${number}vmax` | $mol_style_properties_color)[]>;
static grayscale(value?: number | $mol_style_unit_str<'%'>): $mol_style_func<"grayscale", string | number>;
static hue_rotate(value?: 0 | $mol_style_unit_str<$mol_style_unit_angle>): $mol_style_func<"hue-rotate", string | 0>;
static invert(value?: number | $mol_style_unit_str<'%'>): $mol_style_func<"invert", string | number>;
static opacity(value?: number | $mol_style_unit_str<'%'>): $mol_style_func<"opacity", string | number>;
static sepia(value?: number | $mol_style_unit_str<'%'>): $mol_style_func<"sepia", string | number>;
static saturate(value?: number | $mol_style_unit_str<'%'>): $mol_style_func<"saturate", string | number>;
}
}

Expand Down Expand Up @@ -1635,7 +1638,7 @@ declare namespace $ {
class $mol_fetch_response extends $mol_object2 {
readonly native: Response;
constructor(native: Response);
status(): "unknown" | "redirect" | "success" | "inform" | "wrong" | "failed";
status(): "unknown" | "success" | "inform" | "redirect" | "wrong" | "failed";
code(): number;
message(): string;
headers(): Headers;
Expand Down Expand Up @@ -2418,7 +2421,7 @@ declare namespace $.$$ {
}

declare namespace $ {
class $mpds_visavis_plotly extends $mol_view {
class $mpds_visavis_lib_plotly_view extends $mol_view {
sub(): readonly any[];
data(): readonly any[];
layout(): Record<string, any>;
Expand All @@ -2428,7 +2431,7 @@ declare namespace $ {
}

declare namespace $.$$ {
class $mpds_visavis_plotly extends $.$mpds_visavis_plotly {
class $mpds_visavis_lib_plotly_view extends $.$mpds_visavis_lib_plotly_view {
size(): {
width: number;
height: number;
Expand Down Expand Up @@ -2969,7 +2972,7 @@ declare namespace $ {
data_shown(): readonly any[];
layout(): Record<string, any>;
Plotly_root(): any;
Root(): $$.$mpds_visavis_plotly;
Root(): $$.$mpds_visavis_lib_plotly_view;
cmp_labels(): readonly any[];
Cmp_legend(): $$.$mpds_visavis_plot_legend_cmp;
value_min(): number;
Expand Down Expand Up @@ -3016,7 +3019,7 @@ declare namespace $.$$ {
type Prop_name = keyof ReturnType<typeof $mpds_visavis_elements_list.prop_names>;
export class $mpds_visavis_plot_cube extends $.$mpds_visavis_plot_cube {
setup(): ($mol_check_box | $mol_labeler)[];
plot_body(): ($mol_scroll | $mpds_visavis_plot_legend_cmp | $mpds_visavis_plotly)[];
plot_body(): ($mol_scroll | $mpds_visavis_plot_legend_cmp | $mpds_visavis_lib_plotly_view)[];
json(): Readonly<{
answerto?: string | undefined;
use_visavis_type: string;
Expand Down Expand Up @@ -3250,7 +3253,7 @@ declare namespace $ {
data(): readonly any[];
layout(): Record<string, any>;
Plotly_root(): any;
Root(): $$.$mpds_visavis_plotly;
Root(): $$.$mpds_visavis_lib_plotly_view;
}
}

Expand Down Expand Up @@ -3336,7 +3339,7 @@ declare namespace $.$$ {
}

declare namespace $ {
class $mpds_visavis_plot_bar extends $mpds_visavis_plotly {
class $mpds_visavis_plot_bar extends $mpds_visavis_lib_plotly_view {
plot_raw(): $mpds_visavis_plot_raw;
bar_click(next?: any): any;
}
Expand Down Expand Up @@ -3595,7 +3598,7 @@ declare namespace $ {
data(): readonly any[];
layout(): Record<string, any>;
Plotly_root(): any;
Plot(): $$.$mpds_visavis_plotly;
Plot(): $$.$mpds_visavis_lib_plotly_view;
cmp_labels(): readonly any[];
Cmp_legend(): $$.$mpds_visavis_plot_legend_cmp;
elemental_checked(id: any, next?: any): boolean;
Expand Down Expand Up @@ -3658,7 +3661,7 @@ declare namespace $.$$ {
}>;
};
class $mpds_visavis_plot_discovery extends $.$mpds_visavis_plot_discovery {
sub(): ($mol_view | $mpds_visavis_plot_legend_cmp | $mpds_visavis_plotly)[];
sub(): ($mol_view | $mpds_visavis_plot_legend_cmp | $mpds_visavis_lib_plotly_view)[];
json(): Readonly<{
use_visavis_type: string;
answerto: string;
Expand Down Expand Up @@ -3755,7 +3758,7 @@ declare namespace $.$$ {
}

declare namespace $ {
class $mpds_visavis_plot_eigen extends $mpds_visavis_plotly {
class $mpds_visavis_plot_eigen extends $mpds_visavis_lib_plotly_view {
plot_raw(): $mpds_visavis_plot_raw;
}
}
Expand Down Expand Up @@ -4687,7 +4690,7 @@ declare namespace $.$$ {
}

declare namespace $ {
class $mpds_visavis_plot_pie extends $mpds_visavis_plotly {
class $mpds_visavis_plot_pie extends $mpds_visavis_lib_plotly_view {
plot_raw(): $mpds_visavis_plot_raw;
pie_click(next?: any): any;
colorset(): readonly any[];
Expand Down Expand Up @@ -4849,7 +4852,7 @@ declare namespace $ {
}

declare namespace $ {
class $mpds_visavis_plot_scatter extends $mpds_visavis_plotly {
class $mpds_visavis_plot_scatter extends $mpds_visavis_lib_plotly_view {
plot_raw(): $mpds_visavis_plot_raw;
notify(next?: any): any;
}
Expand Down Expand Up @@ -5591,7 +5594,7 @@ declare namespace $.$$ {
}

declare namespace $ {
class $mpds_visavis_plot_customscatter extends $mpds_visavis_plotly {
class $mpds_visavis_plot_customscatter extends $mpds_visavis_lib_plotly_view {
plot_raw(): $mpds_visavis_plot_raw;
nplots_changed(next?: any): any;
legend_click(next?: any): any;
Expand Down Expand Up @@ -5818,7 +5821,7 @@ declare namespace $.$$ {
}

declare namespace $ {
class $mpds_visavis_plot_heatmap extends $mpds_visavis_plotly {
class $mpds_visavis_plot_heatmap extends $mpds_visavis_lib_plotly_view {
plot_raw(): $mpds_visavis_plot_raw;
}
}
Expand Down
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

Loading

0 comments on commit 34ef77d

Please sign in to comment.