@hpcc-js/common 2.66.1 → 2.68.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +43 -43
- package/README.md +59 -59
- package/dist/index.es6.js +6583 -6578
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +6583 -6578
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +4 -4
- package/src/CanvasWidget.ts +31 -31
- package/src/Class.ts +67 -67
- package/src/Database.ts +856 -856
- package/src/Entity.ts +235 -235
- package/src/EntityCard.ts +66 -66
- package/src/EntityPin.ts +103 -103
- package/src/EntityRect.css +15 -15
- package/src/EntityRect.ts +236 -236
- package/src/EntityVertex.ts +86 -86
- package/src/FAChar.css +2 -2
- package/src/FAChar.ts +82 -82
- package/src/HTMLWidget.ts +191 -191
- package/src/IList.ts +4 -4
- package/src/IMenu.ts +5 -5
- package/src/Icon.css +9 -9
- package/src/Icon.ts +164 -164
- package/src/Image.ts +95 -95
- package/src/List.css +13 -13
- package/src/List.ts +99 -99
- package/src/Menu.css +23 -23
- package/src/Menu.ts +134 -138
- package/src/Palette.ts +341 -341
- package/src/Platform.ts +125 -125
- package/src/ProgressBar.ts +105 -105
- package/src/PropertyExt.ts +793 -793
- package/src/ResizeSurface.css +39 -39
- package/src/ResizeSurface.ts +221 -221
- package/src/SVGWidget.ts +567 -567
- package/src/SVGZoomWidget.css +12 -12
- package/src/SVGZoomWidget.ts +416 -416
- package/src/Shape.css +3 -3
- package/src/Shape.ts +186 -186
- package/src/Surface.css +35 -35
- package/src/Surface.ts +349 -350
- package/src/Text.css +4 -4
- package/src/Text.ts +131 -131
- package/src/TextBox.css +4 -4
- package/src/TextBox.ts +168 -168
- package/src/TitleBar.css +99 -99
- package/src/TitleBar.ts +401 -401
- package/src/Transition.ts +45 -45
- package/src/Utility.ts +832 -820
- package/src/Widget.css +8 -8
- package/src/Widget.ts +712 -712
- package/src/WidgetArray.ts +13 -13
- package/src/__package__.ts +2 -2
- package/src/index.ts +55 -55
- package/types/CanvasWidget.d.ts +8 -8
- package/types/Class.d.ts +12 -12
- package/types/Database.d.ts +136 -136
- package/types/Entity.d.ts +88 -88
- package/types/EntityCard.d.ts +13 -13
- package/types/EntityPin.d.ts +22 -22
- package/types/EntityRect.d.ts +45 -45
- package/types/EntityVertex.d.ts +30 -30
- package/types/FAChar.d.ts +29 -29
- package/types/HTMLWidget.d.ts +27 -27
- package/types/HTMLWidget.d.ts.map +1 -1
- package/types/IList.d.ts +4 -4
- package/types/IMenu.d.ts +5 -5
- package/types/Icon.d.ts +62 -62
- package/types/Image.d.ts +33 -33
- package/types/List.d.ts +15 -15
- package/types/Menu.d.ts +28 -28
- package/types/Menu.d.ts.map +1 -1
- package/types/Palette.d.ts +19 -19
- package/types/Platform.d.ts +5 -5
- package/types/ProgressBar.d.ts +21 -21
- package/types/PropertyExt.d.ts +114 -114
- package/types/ResizeSurface.d.ts +23 -23
- package/types/SVGWidget.d.ts +77 -77
- package/types/SVGZoomWidget.d.ts +68 -68
- package/types/Shape.d.ts +34 -34
- package/types/Surface.d.ts +69 -69
- package/types/Surface.d.ts.map +1 -1
- package/types/Text.d.ts +37 -37
- package/types/TextBox.d.ts +76 -76
- package/types/TitleBar.d.ts +117 -117
- package/types/Transition.d.ts +11 -11
- package/types/Utility.d.ts +102 -100
- package/types/Utility.d.ts.map +1 -1
- package/types/Widget.d.ts +149 -149
- package/types/WidgetArray.d.ts +6 -6
- package/types/__package__.d.ts +3 -3
- package/types/index.d.ts +52 -52
- package/types-3.4/HTMLWidget.d.ts +2 -2
- package/types-3.4/Utility.d.ts +4 -2
- package/types-3.4/__package__.d.ts +2 -2
package/types/Widget.d.ts
CHANGED
|
@@ -1,150 +1,150 @@
|
|
|
1
|
-
import "d3-transition";
|
|
2
|
-
import { Field, Grid } from "./Database";
|
|
3
|
-
import { PropertyExt } from "./PropertyExt";
|
|
4
|
-
import { TextRect, TextSize } from "./Utility";
|
|
5
|
-
import "../src/Widget.css";
|
|
6
|
-
export declare type IPrimative = boolean | number | string | object;
|
|
7
|
-
export declare type IFieldType = "boolean" | "number" | "string" | "dataset" | "object" | "any";
|
|
8
|
-
export interface InputField {
|
|
9
|
-
id: string;
|
|
10
|
-
type: IFieldType;
|
|
11
|
-
multi?: boolean;
|
|
12
|
-
default?: IPrimative | InputField[];
|
|
13
|
-
children?: InputField[];
|
|
14
|
-
}
|
|
15
|
-
export interface IPos {
|
|
16
|
-
x: number;
|
|
17
|
-
y: number;
|
|
18
|
-
}
|
|
19
|
-
export interface ISize {
|
|
20
|
-
width: number;
|
|
21
|
-
height: number;
|
|
22
|
-
}
|
|
23
|
-
export interface BBox {
|
|
24
|
-
x: number;
|
|
25
|
-
y: number;
|
|
26
|
-
width: number;
|
|
27
|
-
height: number;
|
|
28
|
-
}
|
|
29
|
-
export interface DataMetaT {
|
|
30
|
-
min?: number;
|
|
31
|
-
max?: number;
|
|
32
|
-
mean?: number;
|
|
33
|
-
stdDev?: number;
|
|
34
|
-
sum?: number;
|
|
35
|
-
}
|
|
36
|
-
export declare abstract class Widget extends PropertyExt {
|
|
37
|
-
_idSeed: string;
|
|
38
|
-
protected _tag: string;
|
|
39
|
-
protected _isRootNode: boolean;
|
|
40
|
-
protected _db: Grid;
|
|
41
|
-
protected _pos: any;
|
|
42
|
-
protected _prevPos: any;
|
|
43
|
-
protected _size: any;
|
|
44
|
-
protected _widgetScale: any;
|
|
45
|
-
protected _visible: any;
|
|
46
|
-
protected _display: any;
|
|
47
|
-
protected _dataMeta: DataMetaT;
|
|
48
|
-
protected _target: null | HTMLElement | SVGElement;
|
|
49
|
-
protected _placeholderElement: any;
|
|
50
|
-
protected _parentWidget: any;
|
|
51
|
-
protected _element: any;
|
|
52
|
-
protected _renderCount: any;
|
|
53
|
-
protected _overlayElement: any;
|
|
54
|
-
constructor();
|
|
55
|
-
importJSON(_: string | object): this;
|
|
56
|
-
export(_?: "JSON" | "CSV" | "TSV"): string;
|
|
57
|
-
leakCheck(newNode: any): void;
|
|
58
|
-
renderCount(): number;
|
|
59
|
-
columns(): string[];
|
|
60
|
-
columns(_: string[], asDefault?: boolean): this;
|
|
61
|
-
protected columnIdx(column: string): number;
|
|
62
|
-
protected cellIdxFunc<T>(colIdx: number, defValue?: T): (row: any) => T;
|
|
63
|
-
protected cellFunc<T>(column: string, defValue?: T): (row: any) => T;
|
|
64
|
-
parsedData(): any[];
|
|
65
|
-
formattedData(): any[][];
|
|
66
|
-
data(): any;
|
|
67
|
-
data(_: any): this;
|
|
68
|
-
cloneData(): any;
|
|
69
|
-
flattenData(columns?: string[], data?: any): any[];
|
|
70
|
-
rowToObj(row: any[]): object;
|
|
71
|
-
pos(): IPos;
|
|
72
|
-
pos(_: IPos): this;
|
|
73
|
-
x(): number;
|
|
74
|
-
x(_: any): this;
|
|
75
|
-
y(): number;
|
|
76
|
-
y(_: any): this;
|
|
77
|
-
size(): ISize;
|
|
78
|
-
size(_: any): this;
|
|
79
|
-
width(): number;
|
|
80
|
-
width(_: any): this;
|
|
81
|
-
height(): number;
|
|
82
|
-
height(_: any): this;
|
|
83
|
-
resize(size?: ISize, delta?: ISize): this;
|
|
84
|
-
scale(): number;
|
|
85
|
-
scale(_: any): Widget;
|
|
86
|
-
visible(): boolean;
|
|
87
|
-
visible(_: any): this;
|
|
88
|
-
display(): boolean;
|
|
89
|
-
display(_: any): this;
|
|
90
|
-
dataMeta(): DataMetaT;
|
|
91
|
-
dataMeta(_: any): this;
|
|
92
|
-
private _appData;
|
|
93
|
-
appData(key: string): any;
|
|
94
|
-
appData(key: string, value: any): this;
|
|
95
|
-
calcSnap(snapSize: any): ({
|
|
96
|
-
x: number;
|
|
97
|
-
y: number;
|
|
98
|
-
width?: undefined;
|
|
99
|
-
height?: undefined;
|
|
100
|
-
} | {
|
|
101
|
-
width: number;
|
|
102
|
-
height: number;
|
|
103
|
-
x?: undefined;
|
|
104
|
-
y?: undefined;
|
|
105
|
-
})[];
|
|
106
|
-
toWidget(domNode: any): Widget | null;
|
|
107
|
-
parentOverlay(): any;
|
|
108
|
-
locateParentWidget(domNode?: any): Widget | null;
|
|
109
|
-
locateSVGNode(domNode: any): SVGSVGElement | null;
|
|
110
|
-
locateOverlayNode(): any;
|
|
111
|
-
locateAncestor(classID: any): Widget | null;
|
|
112
|
-
locateClosestAncestor(classIDArr: any): Widget | null;
|
|
113
|
-
getAbsolutePos(domNode: any, w: any, h: any): any;
|
|
114
|
-
hasOverlay(): any;
|
|
115
|
-
syncOverlay(): void;
|
|
116
|
-
getBBox(refresh?: boolean, round?: boolean): BBox;
|
|
117
|
-
textSize(_text: string | string[], fontName?: string, fontSize?: number, bold?: boolean): Readonly<TextSize>;
|
|
118
|
-
textRect(_text: string, fontName?: string, fontSize?: number, bold?: boolean): Readonly<TextRect>;
|
|
119
|
-
element(): any;
|
|
120
|
-
node(): any;
|
|
121
|
-
target(): null | HTMLElement | SVGElement;
|
|
122
|
-
target(_: null | string | HTMLElement | SVGElement): this;
|
|
123
|
-
isDOMHidden(): boolean;
|
|
124
|
-
hasSize(): boolean;
|
|
125
|
-
protected publishedWidgets(): Widget[];
|
|
126
|
-
private _prevNow;
|
|
127
|
-
render(callback?: (w: Widget) => void): this;
|
|
128
|
-
renderPromise(): Promise<Widget>;
|
|
129
|
-
private _lazyRender;
|
|
130
|
-
lazyRender(callback?: (w: Widget) => void): this;
|
|
131
|
-
animationFrameRender(): this;
|
|
132
|
-
enter(_domNode: HTMLElement, _element: any): void;
|
|
133
|
-
preUpdate(_domNode: HTMLElement, _element: any): void;
|
|
134
|
-
update(_domNode: HTMLElement, _element: any): void;
|
|
135
|
-
postUpdate(_domNode: HTMLElement, _element: any): void;
|
|
136
|
-
exit(_domNode?: HTMLElement, _element?: any): void;
|
|
137
|
-
}
|
|
138
|
-
export interface Widget {
|
|
139
|
-
fields(): Field[];
|
|
140
|
-
fields(_: Field[]): this;
|
|
141
|
-
classed(classID: string): boolean;
|
|
142
|
-
classed(classID: string, _: boolean): this;
|
|
143
|
-
classed(): {
|
|
144
|
-
[classID: string]: boolean;
|
|
145
|
-
};
|
|
146
|
-
classed(_: {
|
|
147
|
-
[classID: string]: boolean;
|
|
148
|
-
}): this;
|
|
149
|
-
}
|
|
1
|
+
import "d3-transition";
|
|
2
|
+
import { Field, Grid } from "./Database";
|
|
3
|
+
import { PropertyExt } from "./PropertyExt";
|
|
4
|
+
import { TextRect, TextSize } from "./Utility";
|
|
5
|
+
import "../src/Widget.css";
|
|
6
|
+
export declare type IPrimative = boolean | number | string | object;
|
|
7
|
+
export declare type IFieldType = "boolean" | "number" | "string" | "dataset" | "object" | "any";
|
|
8
|
+
export interface InputField {
|
|
9
|
+
id: string;
|
|
10
|
+
type: IFieldType;
|
|
11
|
+
multi?: boolean;
|
|
12
|
+
default?: IPrimative | InputField[];
|
|
13
|
+
children?: InputField[];
|
|
14
|
+
}
|
|
15
|
+
export interface IPos {
|
|
16
|
+
x: number;
|
|
17
|
+
y: number;
|
|
18
|
+
}
|
|
19
|
+
export interface ISize {
|
|
20
|
+
width: number;
|
|
21
|
+
height: number;
|
|
22
|
+
}
|
|
23
|
+
export interface BBox {
|
|
24
|
+
x: number;
|
|
25
|
+
y: number;
|
|
26
|
+
width: number;
|
|
27
|
+
height: number;
|
|
28
|
+
}
|
|
29
|
+
export interface DataMetaT {
|
|
30
|
+
min?: number;
|
|
31
|
+
max?: number;
|
|
32
|
+
mean?: number;
|
|
33
|
+
stdDev?: number;
|
|
34
|
+
sum?: number;
|
|
35
|
+
}
|
|
36
|
+
export declare abstract class Widget extends PropertyExt {
|
|
37
|
+
_idSeed: string;
|
|
38
|
+
protected _tag: string;
|
|
39
|
+
protected _isRootNode: boolean;
|
|
40
|
+
protected _db: Grid;
|
|
41
|
+
protected _pos: any;
|
|
42
|
+
protected _prevPos: any;
|
|
43
|
+
protected _size: any;
|
|
44
|
+
protected _widgetScale: any;
|
|
45
|
+
protected _visible: any;
|
|
46
|
+
protected _display: any;
|
|
47
|
+
protected _dataMeta: DataMetaT;
|
|
48
|
+
protected _target: null | HTMLElement | SVGElement;
|
|
49
|
+
protected _placeholderElement: any;
|
|
50
|
+
protected _parentWidget: any;
|
|
51
|
+
protected _element: any;
|
|
52
|
+
protected _renderCount: any;
|
|
53
|
+
protected _overlayElement: any;
|
|
54
|
+
constructor();
|
|
55
|
+
importJSON(_: string | object): this;
|
|
56
|
+
export(_?: "JSON" | "CSV" | "TSV"): string;
|
|
57
|
+
leakCheck(newNode: any): void;
|
|
58
|
+
renderCount(): number;
|
|
59
|
+
columns(): string[];
|
|
60
|
+
columns(_: string[], asDefault?: boolean): this;
|
|
61
|
+
protected columnIdx(column: string): number;
|
|
62
|
+
protected cellIdxFunc<T>(colIdx: number, defValue?: T): (row: any) => T;
|
|
63
|
+
protected cellFunc<T>(column: string, defValue?: T): (row: any) => T;
|
|
64
|
+
parsedData(): any[];
|
|
65
|
+
formattedData(): any[][];
|
|
66
|
+
data(): any;
|
|
67
|
+
data(_: any): this;
|
|
68
|
+
cloneData(): any;
|
|
69
|
+
flattenData(columns?: string[], data?: any): any[];
|
|
70
|
+
rowToObj(row: any[]): object;
|
|
71
|
+
pos(): IPos;
|
|
72
|
+
pos(_: IPos): this;
|
|
73
|
+
x(): number;
|
|
74
|
+
x(_: any): this;
|
|
75
|
+
y(): number;
|
|
76
|
+
y(_: any): this;
|
|
77
|
+
size(): ISize;
|
|
78
|
+
size(_: any): this;
|
|
79
|
+
width(): number;
|
|
80
|
+
width(_: any): this;
|
|
81
|
+
height(): number;
|
|
82
|
+
height(_: any): this;
|
|
83
|
+
resize(size?: ISize, delta?: ISize): this;
|
|
84
|
+
scale(): number;
|
|
85
|
+
scale(_: any): Widget;
|
|
86
|
+
visible(): boolean;
|
|
87
|
+
visible(_: any): this;
|
|
88
|
+
display(): boolean;
|
|
89
|
+
display(_: any): this;
|
|
90
|
+
dataMeta(): DataMetaT;
|
|
91
|
+
dataMeta(_: any): this;
|
|
92
|
+
private _appData;
|
|
93
|
+
appData(key: string): any;
|
|
94
|
+
appData(key: string, value: any): this;
|
|
95
|
+
calcSnap(snapSize: any): ({
|
|
96
|
+
x: number;
|
|
97
|
+
y: number;
|
|
98
|
+
width?: undefined;
|
|
99
|
+
height?: undefined;
|
|
100
|
+
} | {
|
|
101
|
+
width: number;
|
|
102
|
+
height: number;
|
|
103
|
+
x?: undefined;
|
|
104
|
+
y?: undefined;
|
|
105
|
+
})[];
|
|
106
|
+
toWidget(domNode: any): Widget | null;
|
|
107
|
+
parentOverlay(): any;
|
|
108
|
+
locateParentWidget(domNode?: any): Widget | null;
|
|
109
|
+
locateSVGNode(domNode: any): SVGSVGElement | null;
|
|
110
|
+
locateOverlayNode(): any;
|
|
111
|
+
locateAncestor(classID: any): Widget | null;
|
|
112
|
+
locateClosestAncestor(classIDArr: any): Widget | null;
|
|
113
|
+
getAbsolutePos(domNode: any, w: any, h: any): any;
|
|
114
|
+
hasOverlay(): any;
|
|
115
|
+
syncOverlay(): void;
|
|
116
|
+
getBBox(refresh?: boolean, round?: boolean): BBox;
|
|
117
|
+
textSize(_text: string | string[], fontName?: string, fontSize?: number, bold?: boolean): Readonly<TextSize>;
|
|
118
|
+
textRect(_text: string, fontName?: string, fontSize?: number, bold?: boolean): Readonly<TextRect>;
|
|
119
|
+
element(): any;
|
|
120
|
+
node(): any;
|
|
121
|
+
target(): null | HTMLElement | SVGElement;
|
|
122
|
+
target(_: null | string | HTMLElement | SVGElement): this;
|
|
123
|
+
isDOMHidden(): boolean;
|
|
124
|
+
hasSize(): boolean;
|
|
125
|
+
protected publishedWidgets(): Widget[];
|
|
126
|
+
private _prevNow;
|
|
127
|
+
render(callback?: (w: Widget) => void): this;
|
|
128
|
+
renderPromise(): Promise<Widget>;
|
|
129
|
+
private _lazyRender;
|
|
130
|
+
lazyRender(callback?: (w: Widget) => void): this;
|
|
131
|
+
animationFrameRender(): this;
|
|
132
|
+
enter(_domNode: HTMLElement, _element: any): void;
|
|
133
|
+
preUpdate(_domNode: HTMLElement, _element: any): void;
|
|
134
|
+
update(_domNode: HTMLElement, _element: any): void;
|
|
135
|
+
postUpdate(_domNode: HTMLElement, _element: any): void;
|
|
136
|
+
exit(_domNode?: HTMLElement, _element?: any): void;
|
|
137
|
+
}
|
|
138
|
+
export interface Widget {
|
|
139
|
+
fields(): Field[];
|
|
140
|
+
fields(_: Field[]): this;
|
|
141
|
+
classed(classID: string): boolean;
|
|
142
|
+
classed(classID: string, _: boolean): this;
|
|
143
|
+
classed(): {
|
|
144
|
+
[classID: string]: boolean;
|
|
145
|
+
};
|
|
146
|
+
classed(_: {
|
|
147
|
+
[classID: string]: boolean;
|
|
148
|
+
}): this;
|
|
149
|
+
}
|
|
150
150
|
//# sourceMappingURL=Widget.d.ts.map
|
package/types/WidgetArray.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { publish } from "./PropertyExt";
|
|
2
|
-
import { Widget } from "./Widget";
|
|
3
|
-
export declare class WidgetArray extends Widget {
|
|
4
|
-
content: publish<this, Widget[]>;
|
|
5
|
-
constructor();
|
|
6
|
-
}
|
|
1
|
+
import { publish } from "./PropertyExt";
|
|
2
|
+
import { Widget } from "./Widget";
|
|
3
|
+
export declare class WidgetArray extends Widget {
|
|
4
|
+
content: publish<this, Widget[]>;
|
|
5
|
+
constructor();
|
|
6
|
+
}
|
|
7
7
|
//# sourceMappingURL=WidgetArray.d.ts.map
|
package/types/__package__.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const PKG_NAME = "@hpcc-js/common";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.
|
|
1
|
+
export declare const PKG_NAME = "@hpcc-js/common";
|
|
2
|
+
export declare const PKG_VERSION = "2.68.1";
|
|
3
|
+
export declare const BUILD_VERSION = "2.103.1";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
package/types/index.d.ts
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
export * from "./__package__";
|
|
2
|
-
export * from "./CanvasWidget";
|
|
3
|
-
export * from "./Class";
|
|
4
|
-
import * as Database from "./Database";
|
|
5
|
-
export { Database };
|
|
6
|
-
export * from "./Entity";
|
|
7
|
-
export * from "./EntityCard";
|
|
8
|
-
export * from "./EntityPin";
|
|
9
|
-
export * from "./EntityRect";
|
|
10
|
-
export * from "./EntityVertex";
|
|
11
|
-
export * from "./FAChar";
|
|
12
|
-
export * from "./HTMLWidget";
|
|
13
|
-
export * from "./Icon";
|
|
14
|
-
export * from "./IList";
|
|
15
|
-
export * from "./Image";
|
|
16
|
-
export * from "./IMenu";
|
|
17
|
-
export * from "./List";
|
|
18
|
-
export * from "./Menu";
|
|
19
|
-
import * as Palette from "./Palette";
|
|
20
|
-
export { Palette };
|
|
21
|
-
import * as Platform from "./Platform";
|
|
22
|
-
export { Platform };
|
|
23
|
-
export * from "./ProgressBar";
|
|
24
|
-
export * from "./PropertyExt";
|
|
25
|
-
export * from "./ResizeSurface";
|
|
26
|
-
export * from "./Shape";
|
|
27
|
-
export * from "./Surface";
|
|
28
|
-
export * from "./SVGWidget";
|
|
29
|
-
export * from "./SVGZoomWidget";
|
|
30
|
-
export * from "./Text";
|
|
31
|
-
export * from "./TextBox";
|
|
32
|
-
export * from "./TitleBar";
|
|
33
|
-
import * as Utility from "./Utility";
|
|
34
|
-
export { Utility };
|
|
35
|
-
export * from "./Widget";
|
|
36
|
-
export * from "./WidgetArray";
|
|
37
|
-
export * from "d3-array";
|
|
38
|
-
export * from "d3-brush";
|
|
39
|
-
export * from "d3-collection";
|
|
40
|
-
export * from "d3-color";
|
|
41
|
-
export * from "d3-dispatch";
|
|
42
|
-
export * from "d3-drag";
|
|
43
|
-
export * from "d3-dsv";
|
|
44
|
-
export * from "d3-ease";
|
|
45
|
-
export * from "d3-format";
|
|
46
|
-
export * from "d3-interpolate";
|
|
47
|
-
export * from "d3-scale";
|
|
48
|
-
export * from "d3-selection";
|
|
49
|
-
export * from "d3-time-format";
|
|
50
|
-
export * from "d3-transition";
|
|
51
|
-
export * from "d3-zoom";
|
|
52
|
-
export declare const d3Event: () => any;
|
|
1
|
+
export * from "./__package__";
|
|
2
|
+
export * from "./CanvasWidget";
|
|
3
|
+
export * from "./Class";
|
|
4
|
+
import * as Database from "./Database";
|
|
5
|
+
export { Database };
|
|
6
|
+
export * from "./Entity";
|
|
7
|
+
export * from "./EntityCard";
|
|
8
|
+
export * from "./EntityPin";
|
|
9
|
+
export * from "./EntityRect";
|
|
10
|
+
export * from "./EntityVertex";
|
|
11
|
+
export * from "./FAChar";
|
|
12
|
+
export * from "./HTMLWidget";
|
|
13
|
+
export * from "./Icon";
|
|
14
|
+
export * from "./IList";
|
|
15
|
+
export * from "./Image";
|
|
16
|
+
export * from "./IMenu";
|
|
17
|
+
export * from "./List";
|
|
18
|
+
export * from "./Menu";
|
|
19
|
+
import * as Palette from "./Palette";
|
|
20
|
+
export { Palette };
|
|
21
|
+
import * as Platform from "./Platform";
|
|
22
|
+
export { Platform };
|
|
23
|
+
export * from "./ProgressBar";
|
|
24
|
+
export * from "./PropertyExt";
|
|
25
|
+
export * from "./ResizeSurface";
|
|
26
|
+
export * from "./Shape";
|
|
27
|
+
export * from "./Surface";
|
|
28
|
+
export * from "./SVGWidget";
|
|
29
|
+
export * from "./SVGZoomWidget";
|
|
30
|
+
export * from "./Text";
|
|
31
|
+
export * from "./TextBox";
|
|
32
|
+
export * from "./TitleBar";
|
|
33
|
+
import * as Utility from "./Utility";
|
|
34
|
+
export { Utility };
|
|
35
|
+
export * from "./Widget";
|
|
36
|
+
export * from "./WidgetArray";
|
|
37
|
+
export * from "d3-array";
|
|
38
|
+
export * from "d3-brush";
|
|
39
|
+
export * from "d3-collection";
|
|
40
|
+
export * from "d3-color";
|
|
41
|
+
export * from "d3-dispatch";
|
|
42
|
+
export * from "d3-drag";
|
|
43
|
+
export * from "d3-dsv";
|
|
44
|
+
export * from "d3-ease";
|
|
45
|
+
export * from "d3-format";
|
|
46
|
+
export * from "d3-interpolate";
|
|
47
|
+
export * from "d3-scale";
|
|
48
|
+
export * from "d3-selection";
|
|
49
|
+
export * from "d3-time-format";
|
|
50
|
+
export * from "d3-transition";
|
|
51
|
+
export * from "d3-zoom";
|
|
52
|
+
export declare const d3Event: () => any;
|
|
53
53
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -8,8 +8,8 @@ export declare class HTMLWidget extends Widget {
|
|
|
8
8
|
calcWidth(element: any): number;
|
|
9
9
|
calcFrameHeight(element: any): number;
|
|
10
10
|
calcHeight(element: any): number;
|
|
11
|
-
hasHScroll(element
|
|
12
|
-
hasVScroll(element
|
|
11
|
+
hasHScroll(element?: any): boolean;
|
|
12
|
+
hasVScroll(element?: any): boolean;
|
|
13
13
|
clientWidth(): number;
|
|
14
14
|
clientHeight(): number;
|
|
15
15
|
getBBox(refresh?: boolean, round?: boolean): {
|
package/types-3.4/Utility.d.ts
CHANGED
|
@@ -29,13 +29,15 @@ export declare class SimpleSelection extends SelectionBase {
|
|
|
29
29
|
widgetElement(_?: any): any;
|
|
30
30
|
_skipBringToTop: any;
|
|
31
31
|
skipBringToTop(_: any): any;
|
|
32
|
-
_initialSelection: any;
|
|
32
|
+
_initialSelection: (d: any) => boolean;
|
|
33
33
|
enter(elements: any): void;
|
|
34
34
|
click(domNode: any): boolean;
|
|
35
35
|
mouseOver(domNode: any): void;
|
|
36
36
|
mouseOut(domNode: any): void;
|
|
37
37
|
selected(domNode: any): boolean;
|
|
38
|
-
selection(_: any):
|
|
38
|
+
selection(_: any): string[] | this;
|
|
39
|
+
selection2(): any[];
|
|
40
|
+
selection2(isSelected: (d: any) => boolean): this;
|
|
39
41
|
}
|
|
40
42
|
export declare function SimpleSelectionMixin(skipBringToTop: any): void;
|
|
41
43
|
export declare function faKeys(): string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/common";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.
|
|
2
|
+
export declare const PKG_VERSION = "2.68.1";
|
|
3
|
+
export declare const BUILD_VERSION = "2.103.1";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|