@hpcc-js/other 2.16.2 → 3.1.0
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/dist/index.js +785 -6346
- package/dist/index.js.map +7 -1
- package/package.json +31 -34
- package/src/Audio.ts +6 -3
- package/src/AutoCompleteText.ts +22 -14
- package/src/CalendarHeatMap.ts +24 -17
- package/src/ESP.ts +1 -1
- package/src/HeatMap.ts +41 -26
- package/src/Html.ts +11 -7
- package/src/IconList.ts +1 -1
- package/src/Legend.ts +16 -9
- package/src/MorphText.ts +16 -9
- package/src/NestedTable.ts +1 -1
- package/src/Opportunity.ts +32 -20
- package/src/Paginator.ts +21 -13
- package/src/PropertyEditor.ts +28 -16
- package/src/RadioCheckbox.ts +18 -11
- package/src/Select.ts +24 -14
- package/src/Table.ts +109 -60
- package/src/ThemeEditor.ts +40 -26
- package/src/__package__.ts +2 -2
- package/src/index.ts +21 -21
- package/types/Audio.d.ts +6 -7
- package/types/AutoCompleteText.d.ts +20 -31
- package/types/CalendarHeatMap.d.ts +20 -33
- package/types/Comms.d.ts +0 -1
- package/types/ESP.d.ts +0 -1
- package/types/HPCCBadge.d.ts +0 -1
- package/types/HeatMap.d.ts +39 -62
- package/types/Html.d.ts +10 -16
- package/types/IconList.d.ts +0 -1
- package/types/Legend.d.ts +16 -23
- package/types/MorphText.d.ts +14 -18
- package/types/NestedTable.d.ts +1 -2
- package/types/Opportunity.d.ts +29 -47
- package/types/Paginator.d.ts +20 -31
- package/types/Persist.d.ts +0 -1
- package/types/PropertyEditor.d.ts +22 -38
- package/types/RadioCheckbox.d.ts +17 -26
- package/types/Select.d.ts +23 -36
- package/types/Table.d.ts +96 -187
- package/types/ThemeEditor.d.ts +38 -61
- package/types/__package__.d.ts +2 -3
- package/types/index.d.ts +21 -22
- package/dist/index.es6.js +0 -6313
- package/dist/index.es6.js.map +0 -1
- package/dist/index.min.js +0 -2
- package/dist/index.min.js.map +0 -1
- package/types/Audio.d.ts.map +0 -1
- package/types/AutoCompleteText.d.ts.map +0 -1
- package/types/CalendarHeatMap.d.ts.map +0 -1
- package/types/Comms.d.ts.map +0 -1
- package/types/ESP.d.ts.map +0 -1
- package/types/HPCCBadge.d.ts.map +0 -1
- package/types/HeatMap.d.ts.map +0 -1
- package/types/Html.d.ts.map +0 -1
- package/types/IconList.d.ts.map +0 -1
- package/types/Legend.d.ts.map +0 -1
- package/types/MorphText.d.ts.map +0 -1
- package/types/NestedTable.d.ts.map +0 -1
- package/types/Opportunity.d.ts.map +0 -1
- package/types/Paginator.d.ts.map +0 -1
- package/types/Persist.d.ts.map +0 -1
- package/types/PropertyEditor.d.ts.map +0 -1
- package/types/RadioCheckbox.d.ts.map +0 -1
- package/types/Select.d.ts.map +0 -1
- package/types/Table.d.ts.map +0 -1
- package/types/ThemeEditor.d.ts.map +0 -1
- package/types/__package__.d.ts.map +0 -1
- package/types/index.d.ts.map +0 -1
- package/types-3.4/Audio.d.ts +0 -19
- package/types-3.4/AutoCompleteText.d.ts +0 -46
- package/types-3.4/CalendarHeatMap.d.ts +0 -61
- package/types-3.4/Comms.d.ts +0 -112
- package/types-3.4/ESP.d.ts +0 -9
- package/types-3.4/HPCCBadge.d.ts +0 -30
- package/types-3.4/HeatMap.d.ts +0 -72
- package/types-3.4/Html.d.ts +0 -23
- package/types-3.4/IconList.d.ts +0 -26
- package/types-3.4/Legend.d.ts +0 -40
- package/types-3.4/MorphText.d.ts +0 -28
- package/types-3.4/NestedTable.d.ts +0 -5
- package/types-3.4/Opportunity.d.ts +0 -99
- package/types-3.4/Paginator.d.ts +0 -45
- package/types-3.4/Persist.d.ts +0 -10
- package/types-3.4/PropertyEditor.d.ts +0 -85
- package/types-3.4/RadioCheckbox.d.ts +0 -40
- package/types-3.4/Select.d.ts +0 -49
- package/types-3.4/Table.d.ts +0 -257
- package/types-3.4/ThemeEditor.d.ts +0 -97
- package/types-3.4/__package__.d.ts +0 -4
- package/types-3.4/index.d.ts +0 -24
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
import { PropertyExt, SVGWidget } from "@hpcc-js/common";
|
|
2
|
-
import "../src/Opportunity.css";
|
|
3
|
-
export declare class Column extends PropertyExt {
|
|
4
|
-
_owner: Opportunity;
|
|
5
|
-
constructor();
|
|
6
|
-
owner(): Opportunity;
|
|
7
|
-
owner(_: Opportunity): this;
|
|
8
|
-
valid(): boolean;
|
|
9
|
-
}
|
|
10
|
-
export interface Column {
|
|
11
|
-
headerLabel(): string;
|
|
12
|
-
headerLabel(_: string): this;
|
|
13
|
-
}
|
|
14
|
-
export declare class MouseHoverColumn extends PropertyExt {
|
|
15
|
-
_owner: Opportunity;
|
|
16
|
-
constructor();
|
|
17
|
-
owner(): Opportunity;
|
|
18
|
-
owner(_: Opportunity): this;
|
|
19
|
-
valid(): boolean;
|
|
20
|
-
}
|
|
21
|
-
export interface MouseHoverColumn {
|
|
22
|
-
hoverValue(): string;
|
|
23
|
-
hoverValue(_: string): this;
|
|
24
|
-
hoverList(): string;
|
|
25
|
-
hoverList(_: string): this;
|
|
26
|
-
}
|
|
27
|
-
export declare class ColumnDropdown extends PropertyExt {
|
|
28
|
-
_owner: Opportunity;
|
|
29
|
-
constructor();
|
|
30
|
-
owner(): Opportunity;
|
|
31
|
-
owner(_: Opportunity): this;
|
|
32
|
-
valid(): boolean;
|
|
33
|
-
}
|
|
34
|
-
export interface ColumnDropdown {
|
|
35
|
-
columnIndex(): number;
|
|
36
|
-
columnIndex(_: number): this;
|
|
37
|
-
ColumnDropdownList(): string;
|
|
38
|
-
ColumnDropdownList(_: string): this;
|
|
39
|
-
}
|
|
40
|
-
export declare class Opportunity extends SVGWidget {
|
|
41
|
-
groupCount: any;
|
|
42
|
-
svg: any;
|
|
43
|
-
tooltipdiv: any;
|
|
44
|
-
Column: any;
|
|
45
|
-
MouseHoverColumn: any;
|
|
46
|
-
ColumnDropdown: any;
|
|
47
|
-
constructor();
|
|
48
|
-
enter(domNode: any, element: any): void;
|
|
49
|
-
update(domNode: any, element: any): void;
|
|
50
|
-
exit(domNode: any, element: any): void;
|
|
51
|
-
getIds(): string[];
|
|
52
|
-
previousGroup: {
|
|
53
|
-
(): string;
|
|
54
|
-
(_: string): Opportunity;
|
|
55
|
-
};
|
|
56
|
-
previousGroup_exists: () => boolean;
|
|
57
|
-
currentGroup: {
|
|
58
|
-
(): string;
|
|
59
|
-
(_: string): Opportunity;
|
|
60
|
-
};
|
|
61
|
-
currentGroup_exists: () => boolean;
|
|
62
|
-
opportunityId: {
|
|
63
|
-
(): string;
|
|
64
|
-
(_: string): Opportunity;
|
|
65
|
-
};
|
|
66
|
-
opportunityId_exists: () => boolean;
|
|
67
|
-
url: {
|
|
68
|
-
(): string;
|
|
69
|
-
(_: string): Opportunity;
|
|
70
|
-
};
|
|
71
|
-
url_exists: () => boolean;
|
|
72
|
-
width_exists: () => boolean;
|
|
73
|
-
addColumn: {
|
|
74
|
-
(): string;
|
|
75
|
-
(_: string): Opportunity;
|
|
76
|
-
};
|
|
77
|
-
addColumn_exists: () => boolean;
|
|
78
|
-
removeColumn: {
|
|
79
|
-
(): string;
|
|
80
|
-
(_: string): Opportunity;
|
|
81
|
-
};
|
|
82
|
-
removeColumn_exists: () => boolean;
|
|
83
|
-
headerLabels: {
|
|
84
|
-
(): any[];
|
|
85
|
-
(_: any[]): Opportunity;
|
|
86
|
-
};
|
|
87
|
-
headerLabels_exists: () => boolean;
|
|
88
|
-
mouseHover: {
|
|
89
|
-
(): any[];
|
|
90
|
-
(_: any[]): Opportunity;
|
|
91
|
-
};
|
|
92
|
-
mouseHover_exists: () => boolean;
|
|
93
|
-
columnData: {
|
|
94
|
-
(): any[];
|
|
95
|
-
(_: any[]): Opportunity;
|
|
96
|
-
};
|
|
97
|
-
columnData_exists: () => boolean;
|
|
98
|
-
}
|
|
99
|
-
//# sourceMappingURL=Opportunity.d.ts.map
|
package/types-3.4/Paginator.d.ts
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget } from "@hpcc-js/common";
|
|
2
|
-
import "../src/Paginator.css";
|
|
3
|
-
export declare class Paginator extends HTMLWidget {
|
|
4
|
-
_tNumPages: any;
|
|
5
|
-
_numList: any;
|
|
6
|
-
paginator: any;
|
|
7
|
-
side: any;
|
|
8
|
-
_onSelect: any;
|
|
9
|
-
constructor();
|
|
10
|
-
postUpdate(domNode: any, element: any): void;
|
|
11
|
-
enter(domNode: any, element: any): void;
|
|
12
|
-
update(domNode: any, element: any): void;
|
|
13
|
-
exit(domNode: any, element: any): void;
|
|
14
|
-
itemsPerPage: {
|
|
15
|
-
(): number;
|
|
16
|
-
(_: number): Paginator;
|
|
17
|
-
};
|
|
18
|
-
itemsPerPage_exists: () => boolean;
|
|
19
|
-
numItems: {
|
|
20
|
-
(): number;
|
|
21
|
-
(_: number): Paginator;
|
|
22
|
-
};
|
|
23
|
-
numItems_exists: () => boolean;
|
|
24
|
-
pageNumber: {
|
|
25
|
-
(): number;
|
|
26
|
-
(_: number): Paginator;
|
|
27
|
-
};
|
|
28
|
-
pageNumber_exists: () => boolean;
|
|
29
|
-
adjacentPages: {
|
|
30
|
-
(): number;
|
|
31
|
-
(_: number): Paginator;
|
|
32
|
-
};
|
|
33
|
-
adjacentPages_exists: () => boolean;
|
|
34
|
-
bottom: {
|
|
35
|
-
(): number;
|
|
36
|
-
(_: number): Paginator;
|
|
37
|
-
};
|
|
38
|
-
bottom_exists: () => boolean;
|
|
39
|
-
right: {
|
|
40
|
-
(): number;
|
|
41
|
-
(_: number): Paginator;
|
|
42
|
-
};
|
|
43
|
-
right_exists: () => boolean;
|
|
44
|
-
}
|
|
45
|
-
//# sourceMappingURL=Paginator.d.ts.map
|
package/types-3.4/Persist.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare function discover(widget: any): any;
|
|
2
|
-
export declare function widgetArrayWalker(widgets: any, visitor: any): void;
|
|
3
|
-
export declare function widgetPropertyWalker(widget2: any, visitor: any, filter?: any): void;
|
|
4
|
-
export declare function serializeTheme(widget: any, filter: any): string;
|
|
5
|
-
export declare function serializeThemeToObject(widget2: any, filter?: any): {};
|
|
6
|
-
export declare function removeTheme(widget2: any, callback: any): void;
|
|
7
|
-
export declare function applyTheme(widget2: any, themeObj: any, callback: any): void;
|
|
8
|
-
export declare function serializeToObject(widget: any, filter?: any, includeData?: any, includeState?: any): any;
|
|
9
|
-
export declare function serialize(widget: any, filter?: any, includeData?: any, includeState?: any): string;
|
|
10
|
-
//# sourceMappingURL=Persist.d.ts.map
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget, PropertyExt } from "@hpcc-js/common";
|
|
2
|
-
import "../src/PropertyEditor.css";
|
|
3
|
-
export declare class PropertyEditor extends HTMLWidget {
|
|
4
|
-
_widgetOrig: any;
|
|
5
|
-
_parentPropertyEditor: any;
|
|
6
|
-
_show_settings: boolean;
|
|
7
|
-
_selectedItems: any;
|
|
8
|
-
__meta_sorting: any;
|
|
9
|
-
_watch: any;
|
|
10
|
-
private _childPE;
|
|
11
|
-
constructor();
|
|
12
|
-
parentPropertyEditor(_?: PropertyEditor): PropertyEditor;
|
|
13
|
-
depth(): number;
|
|
14
|
-
_show_header: boolean;
|
|
15
|
-
show_header(): boolean;
|
|
16
|
-
show_header(_: boolean): PropertyEditor;
|
|
17
|
-
show_settings(): boolean;
|
|
18
|
-
show_settings(_: boolean): PropertyEditor;
|
|
19
|
-
rootWidgets(): any;
|
|
20
|
-
update(domNode: any, element: any): void;
|
|
21
|
-
exit(domNode: any, element: any): void;
|
|
22
|
-
private watchDepth;
|
|
23
|
-
watchWidget(widget: any): void;
|
|
24
|
-
enterHeader(th: any): void;
|
|
25
|
-
updateHeader(th: any): void;
|
|
26
|
-
peInputCount(): any;
|
|
27
|
-
peInputCollapsedCount(): any;
|
|
28
|
-
peInputIcon(): "fa-caret-down" | "fa-caret-up" | "fa-caret-right";
|
|
29
|
-
refreshExpandIcon(): void;
|
|
30
|
-
refreshSortIcon(sortIcon: any, increment?: boolean): void;
|
|
31
|
-
refreshHideParamsIcon(hideParamsIcon: any): void;
|
|
32
|
-
gatherDataTree(widget: any): {
|
|
33
|
-
label: string;
|
|
34
|
-
children: any[];
|
|
35
|
-
};
|
|
36
|
-
getDataTree(): {
|
|
37
|
-
label: string;
|
|
38
|
-
children: any[];
|
|
39
|
-
};
|
|
40
|
-
_rowSorting(paramArr: any): void;
|
|
41
|
-
filterInputs(d: any): any;
|
|
42
|
-
renderInputs(element: any, d: any): void;
|
|
43
|
-
updateWidgetRow(widget: PropertyExt, element: any, param: any): void;
|
|
44
|
-
setProperty(widget: any, id: any, value: any): void;
|
|
45
|
-
enterInputs(widget: any, cell: any, param: any): void;
|
|
46
|
-
updateInputs(widget: any, param: any): void;
|
|
47
|
-
showFields: {
|
|
48
|
-
(): boolean;
|
|
49
|
-
(_: boolean): PropertyEditor;
|
|
50
|
-
};
|
|
51
|
-
showData: {
|
|
52
|
-
(): boolean;
|
|
53
|
-
(_: boolean): PropertyEditor;
|
|
54
|
-
};
|
|
55
|
-
sorting: {
|
|
56
|
-
(): string;
|
|
57
|
-
(_: string): PropertyEditor;
|
|
58
|
-
};
|
|
59
|
-
sorting_options: () => string[];
|
|
60
|
-
hideNonWidgets: {
|
|
61
|
-
(): boolean;
|
|
62
|
-
(_: boolean): PropertyEditor;
|
|
63
|
-
};
|
|
64
|
-
label: {
|
|
65
|
-
(): string;
|
|
66
|
-
(_: string): PropertyEditor;
|
|
67
|
-
};
|
|
68
|
-
filterTags: {
|
|
69
|
-
(): string;
|
|
70
|
-
(_: string): PropertyEditor;
|
|
71
|
-
};
|
|
72
|
-
excludeTags: {
|
|
73
|
-
(): string[];
|
|
74
|
-
(_: string[]): PropertyEditor;
|
|
75
|
-
};
|
|
76
|
-
excludeParams: {
|
|
77
|
-
(): string[];
|
|
78
|
-
(_: string[]): PropertyEditor;
|
|
79
|
-
};
|
|
80
|
-
widget: {
|
|
81
|
-
(): PropertyExt;
|
|
82
|
-
(_: PropertyExt): PropertyEditor;
|
|
83
|
-
};
|
|
84
|
-
}
|
|
85
|
-
//# sourceMappingURL=PropertyEditor.d.ts.map
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget } from "@hpcc-js/common";
|
|
2
|
-
import "../src/RadioCheckbox.css";
|
|
3
|
-
export declare class RadioCheckbox extends HTMLWidget {
|
|
4
|
-
_span: any;
|
|
5
|
-
_label: any;
|
|
6
|
-
_Checkbox: any;
|
|
7
|
-
constructor();
|
|
8
|
-
rcData(): any[];
|
|
9
|
-
enter(domNode: any, element: any): void;
|
|
10
|
-
update(domNode: any, element: any): void;
|
|
11
|
-
exit(domNode: any, element: any): void;
|
|
12
|
-
handleClick(): void;
|
|
13
|
-
click(row: any, column: any, selected: any): void;
|
|
14
|
-
label: {
|
|
15
|
-
(): string;
|
|
16
|
-
(_: string): RadioCheckbox;
|
|
17
|
-
};
|
|
18
|
-
label_exists: () => boolean;
|
|
19
|
-
valueColumn: {
|
|
20
|
-
(): string;
|
|
21
|
-
(_: string): RadioCheckbox;
|
|
22
|
-
};
|
|
23
|
-
valueColumn_exists: () => boolean;
|
|
24
|
-
textColumn: {
|
|
25
|
-
(): string;
|
|
26
|
-
(_: string): RadioCheckbox;
|
|
27
|
-
};
|
|
28
|
-
textColumn_exists: () => boolean;
|
|
29
|
-
sort: {
|
|
30
|
-
(): string;
|
|
31
|
-
(_: string): RadioCheckbox;
|
|
32
|
-
};
|
|
33
|
-
sort_exists: () => boolean;
|
|
34
|
-
multiple: {
|
|
35
|
-
(): boolean;
|
|
36
|
-
(_: boolean): RadioCheckbox;
|
|
37
|
-
};
|
|
38
|
-
multiple_exists: () => boolean;
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=RadioCheckbox.d.ts.map
|
package/types-3.4/Select.d.ts
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget } from "@hpcc-js/common";
|
|
2
|
-
import "../src/Select.css";
|
|
3
|
-
export declare class Select extends HTMLWidget {
|
|
4
|
-
_span: any;
|
|
5
|
-
_prompt: any;
|
|
6
|
-
_select: any;
|
|
7
|
-
constructor();
|
|
8
|
-
selectData(): any[];
|
|
9
|
-
enter(domNode: any, element: any): void;
|
|
10
|
-
update(domNode: any, element: any): void;
|
|
11
|
-
exit(domNode: any, element: any): void;
|
|
12
|
-
click(row: any, column: any, selected: any): void;
|
|
13
|
-
label: {
|
|
14
|
-
(): string;
|
|
15
|
-
(_: string): Select;
|
|
16
|
-
};
|
|
17
|
-
label_exists: () => boolean;
|
|
18
|
-
valueColumn: {
|
|
19
|
-
(): string;
|
|
20
|
-
(_: string): Select;
|
|
21
|
-
};
|
|
22
|
-
valueColumn_exists: () => boolean;
|
|
23
|
-
textColumn: {
|
|
24
|
-
(): string;
|
|
25
|
-
(_: string): Select;
|
|
26
|
-
};
|
|
27
|
-
textColumn_exists: () => boolean;
|
|
28
|
-
optional: {
|
|
29
|
-
(): boolean;
|
|
30
|
-
(_: boolean): Select;
|
|
31
|
-
};
|
|
32
|
-
optional_exists: () => boolean;
|
|
33
|
-
sort: {
|
|
34
|
-
(): string;
|
|
35
|
-
(_: string): Select;
|
|
36
|
-
};
|
|
37
|
-
sort_exists: () => boolean;
|
|
38
|
-
multiple: {
|
|
39
|
-
(): boolean;
|
|
40
|
-
(_: boolean): Select;
|
|
41
|
-
};
|
|
42
|
-
multiple_exists: () => boolean;
|
|
43
|
-
selectSize: {
|
|
44
|
-
(): number;
|
|
45
|
-
(_: number): Select;
|
|
46
|
-
};
|
|
47
|
-
selectSize_exists: () => boolean;
|
|
48
|
-
}
|
|
49
|
-
//# sourceMappingURL=Select.d.ts.map
|
package/types-3.4/Table.d.ts
DELETED
|
@@ -1,257 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget, Widget } from "@hpcc-js/common";
|
|
2
|
-
import "../src/Table.css";
|
|
3
|
-
export declare class Table extends HTMLWidget {
|
|
4
|
-
protected _paginator: any;
|
|
5
|
-
protected _selectionBag: any;
|
|
6
|
-
protected _selectionPrevClick: any;
|
|
7
|
-
protected _paginatorTableSpacing: any;
|
|
8
|
-
tableDiv: any;
|
|
9
|
-
thead: any;
|
|
10
|
-
table: any;
|
|
11
|
-
fixedHead: any;
|
|
12
|
-
fixedHeadTable: any;
|
|
13
|
-
fixedThead: any;
|
|
14
|
-
unfixedThead: any;
|
|
15
|
-
tbody: any;
|
|
16
|
-
tfoot: any;
|
|
17
|
-
fixedCol: any;
|
|
18
|
-
fixedColTable: any;
|
|
19
|
-
fixedColHead: any;
|
|
20
|
-
fixedColHeadRow: any;
|
|
21
|
-
fixedColBody: any;
|
|
22
|
-
fixedColFoot: any;
|
|
23
|
-
fixedColFootRow: any;
|
|
24
|
-
protected _prevDescending: any;
|
|
25
|
-
protected _prevSortByFieldIndex: any;
|
|
26
|
-
protected _hasChildWidgets: any;
|
|
27
|
-
protected _tNumPages: any;
|
|
28
|
-
protected _empty_col_idx_arr: any[];
|
|
29
|
-
constructor();
|
|
30
|
-
size(): any;
|
|
31
|
-
size(_: any): Widget;
|
|
32
|
-
isHidden(colIdx: any): boolean;
|
|
33
|
-
tableColumns(_?: string[]): string[];
|
|
34
|
-
tableData(_?: any): any;
|
|
35
|
-
field(rowIdx: any, colIdx: any): {
|
|
36
|
-
transform: (d: any) => any;
|
|
37
|
-
};
|
|
38
|
-
calcFieldsIndex(colIdx: any): any;
|
|
39
|
-
getEmptyColumnIdxArr(columns: any, data: any): any[];
|
|
40
|
-
enter(domNode: any, element: any): void;
|
|
41
|
-
update(domNode: any, element: any): void;
|
|
42
|
-
exit(domNode: any, element: any): void;
|
|
43
|
-
setColumnWidths(rows: any): void;
|
|
44
|
-
getBodyRow(i: any): any;
|
|
45
|
-
getFixedRow(i: any): any;
|
|
46
|
-
setOnScrollEvents(scrollNode: any, margHeight: any): void;
|
|
47
|
-
_generateTempRow(): any;
|
|
48
|
-
_createSelectionObject(d: any): {
|
|
49
|
-
_id: any;
|
|
50
|
-
element: () => any;
|
|
51
|
-
};
|
|
52
|
-
_calcRowsPerPage(th: any): number;
|
|
53
|
-
sort(idx: any): this;
|
|
54
|
-
selection(_: any): any;
|
|
55
|
-
selectionBagClick(d: any, i: any): void;
|
|
56
|
-
applyHoverRowStyles(row: any): void;
|
|
57
|
-
applySelectedRowStyles(row: any): void;
|
|
58
|
-
applyRowStyles(row: any, isFirstCol?: boolean): void;
|
|
59
|
-
applyFirstColRowStyles(rows: any): void;
|
|
60
|
-
applyStyleToRows(rows: any, isFirstCol?: boolean): void;
|
|
61
|
-
getColumnAlignment(rowIdx: any, colIdx: any, cell: any): string;
|
|
62
|
-
serializeState(): {
|
|
63
|
-
selection: any;
|
|
64
|
-
data: any;
|
|
65
|
-
};
|
|
66
|
-
deserializeState(state: any): this;
|
|
67
|
-
click(row: any, column: any, selected: any): void;
|
|
68
|
-
dblclick(row: any, column: any, selected: any): void;
|
|
69
|
-
headerClick(column: any, idx: any): void;
|
|
70
|
-
renderHtmlDataCells: {
|
|
71
|
-
(): boolean;
|
|
72
|
-
(_: boolean): Table;
|
|
73
|
-
};
|
|
74
|
-
pagination: {
|
|
75
|
-
(): boolean;
|
|
76
|
-
(_: boolean): Table;
|
|
77
|
-
};
|
|
78
|
-
paginationLimit: {
|
|
79
|
-
(): any;
|
|
80
|
-
(_: any): Table;
|
|
81
|
-
};
|
|
82
|
-
itemsPerPage: {
|
|
83
|
-
(): any;
|
|
84
|
-
(_: any): Table;
|
|
85
|
-
};
|
|
86
|
-
pageNumber: {
|
|
87
|
-
(): number;
|
|
88
|
-
(_: number): Table;
|
|
89
|
-
};
|
|
90
|
-
adjacentPages: {
|
|
91
|
-
(): number;
|
|
92
|
-
(_: number): Table;
|
|
93
|
-
};
|
|
94
|
-
topN: {
|
|
95
|
-
(): number;
|
|
96
|
-
(_: number): Table;
|
|
97
|
-
};
|
|
98
|
-
pivot: {
|
|
99
|
-
(): boolean;
|
|
100
|
-
(_: boolean): Table;
|
|
101
|
-
};
|
|
102
|
-
showHeader: {
|
|
103
|
-
(): boolean;
|
|
104
|
-
(_: boolean): Table;
|
|
105
|
-
};
|
|
106
|
-
fixedHeader: {
|
|
107
|
-
(): boolean;
|
|
108
|
-
(_: boolean): Table;
|
|
109
|
-
};
|
|
110
|
-
fixedColumn: {
|
|
111
|
-
(): boolean;
|
|
112
|
-
(_: boolean): Table;
|
|
113
|
-
};
|
|
114
|
-
multiSelect: {
|
|
115
|
-
(): boolean;
|
|
116
|
-
(_: boolean): Table;
|
|
117
|
-
};
|
|
118
|
-
fixedSize: {
|
|
119
|
-
(): boolean;
|
|
120
|
-
(_: boolean): Table;
|
|
121
|
-
};
|
|
122
|
-
hideEmptyColumns: {
|
|
123
|
-
(): boolean;
|
|
124
|
-
(_: boolean): Table;
|
|
125
|
-
};
|
|
126
|
-
theadFontSize: {
|
|
127
|
-
(): string;
|
|
128
|
-
(_: string): Table;
|
|
129
|
-
};
|
|
130
|
-
tbodyFontSize: {
|
|
131
|
-
(): string;
|
|
132
|
-
(_: string): Table;
|
|
133
|
-
};
|
|
134
|
-
tfootFontSize: {
|
|
135
|
-
(): string;
|
|
136
|
-
(_: string): Table;
|
|
137
|
-
};
|
|
138
|
-
theadFontColor: {
|
|
139
|
-
(): string;
|
|
140
|
-
(_: string): Table;
|
|
141
|
-
};
|
|
142
|
-
tbodyFontColor: {
|
|
143
|
-
(): string;
|
|
144
|
-
(_: string): Table;
|
|
145
|
-
};
|
|
146
|
-
tfootFontColor: {
|
|
147
|
-
(): string;
|
|
148
|
-
(_: string): Table;
|
|
149
|
-
};
|
|
150
|
-
theadFontFamily: {
|
|
151
|
-
(): string;
|
|
152
|
-
(_: string): Table;
|
|
153
|
-
};
|
|
154
|
-
tbodyFontFamily: {
|
|
155
|
-
(): string;
|
|
156
|
-
(_: string): Table;
|
|
157
|
-
};
|
|
158
|
-
tfootFontFamily: {
|
|
159
|
-
(): string;
|
|
160
|
-
(_: string): Table;
|
|
161
|
-
};
|
|
162
|
-
theadCellBorderColor: {
|
|
163
|
-
(): string;
|
|
164
|
-
(_: string): Table;
|
|
165
|
-
};
|
|
166
|
-
tfootCellBorderColor: {
|
|
167
|
-
(): string;
|
|
168
|
-
(_: string): Table;
|
|
169
|
-
};
|
|
170
|
-
theadRowBackgroundColor: {
|
|
171
|
-
(): string;
|
|
172
|
-
(_: string): Table;
|
|
173
|
-
};
|
|
174
|
-
tfootRowBackgroundColor: {
|
|
175
|
-
(): string;
|
|
176
|
-
(_: string): Table;
|
|
177
|
-
};
|
|
178
|
-
tbodyCellBorderColor: {
|
|
179
|
-
(): string;
|
|
180
|
-
(_: string): Table;
|
|
181
|
-
};
|
|
182
|
-
tbodyRowBackgroundColor: {
|
|
183
|
-
(): string;
|
|
184
|
-
(_: string): Table;
|
|
185
|
-
};
|
|
186
|
-
tbodyFirstColFontColor: {
|
|
187
|
-
(): string;
|
|
188
|
-
(_: string): Table;
|
|
189
|
-
};
|
|
190
|
-
tbodyFirstColBackgroundColor: {
|
|
191
|
-
(): string;
|
|
192
|
-
(_: string): Table;
|
|
193
|
-
};
|
|
194
|
-
tbodyHoverRowFontColor: {
|
|
195
|
-
(): string;
|
|
196
|
-
(_: string): Table;
|
|
197
|
-
};
|
|
198
|
-
tbodyHoverRowBackgroundColor: {
|
|
199
|
-
(): string;
|
|
200
|
-
(_: string): Table;
|
|
201
|
-
};
|
|
202
|
-
tbodySelectedRowFontColor: {
|
|
203
|
-
(): string;
|
|
204
|
-
(_: string): Table;
|
|
205
|
-
};
|
|
206
|
-
tbodySelectedRowBackgroundColor: {
|
|
207
|
-
(): string;
|
|
208
|
-
(_: string): Table;
|
|
209
|
-
};
|
|
210
|
-
tableZebraColor: {
|
|
211
|
-
(): string;
|
|
212
|
-
(_: string): Table;
|
|
213
|
-
};
|
|
214
|
-
tableZebraColor_exists: () => boolean;
|
|
215
|
-
totalledColumns: {
|
|
216
|
-
(): any[];
|
|
217
|
-
(_: any[]): Table;
|
|
218
|
-
};
|
|
219
|
-
totalledLabel: {
|
|
220
|
-
(): string;
|
|
221
|
-
(_: string): Table;
|
|
222
|
-
};
|
|
223
|
-
hiddenColumns: {
|
|
224
|
-
(): any[];
|
|
225
|
-
(_: any[]): Table;
|
|
226
|
-
};
|
|
227
|
-
stringAlign: {
|
|
228
|
-
(): string;
|
|
229
|
-
(_: string): Table;
|
|
230
|
-
};
|
|
231
|
-
numberAlign: {
|
|
232
|
-
(): string;
|
|
233
|
-
(_: string): Table;
|
|
234
|
-
};
|
|
235
|
-
verticalAlign: {
|
|
236
|
-
(): string;
|
|
237
|
-
(_: string): Table;
|
|
238
|
-
};
|
|
239
|
-
minWidgetWidth: {
|
|
240
|
-
(): number;
|
|
241
|
-
(_: number): Table;
|
|
242
|
-
};
|
|
243
|
-
minWidgetHeight: {
|
|
244
|
-
(): number;
|
|
245
|
-
(_: number): Table;
|
|
246
|
-
};
|
|
247
|
-
sortByFieldIndex: {
|
|
248
|
-
(): number;
|
|
249
|
-
(_: number): Table;
|
|
250
|
-
};
|
|
251
|
-
sortByFieldIndex_exists: () => boolean;
|
|
252
|
-
descending: {
|
|
253
|
-
(): boolean;
|
|
254
|
-
(_: boolean): Table;
|
|
255
|
-
};
|
|
256
|
-
}
|
|
257
|
-
//# sourceMappingURL=Table.d.ts.map
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import { HTMLWidget } from "@hpcc-js/common";
|
|
2
|
-
import "../src/ThemeEditor.css";
|
|
3
|
-
export declare class ThemeEditor extends HTMLWidget {
|
|
4
|
-
_current_grouping: any;
|
|
5
|
-
_showing_columns: any;
|
|
6
|
-
_showing_data: any;
|
|
7
|
-
_contentEditors: any;
|
|
8
|
-
_showSettings: any;
|
|
9
|
-
_defaultThemes: any;
|
|
10
|
-
_widgetObjsById: any;
|
|
11
|
-
_sharedProperties: any;
|
|
12
|
-
getThemes: any;
|
|
13
|
-
getSerials: any;
|
|
14
|
-
getDefaultThemes: any;
|
|
15
|
-
getDefaultSerials: any;
|
|
16
|
-
constructor();
|
|
17
|
-
showSettings(_?: any): any;
|
|
18
|
-
onChange(widget: any, propID: any): void;
|
|
19
|
-
enter(domNode: any, element: any): void;
|
|
20
|
-
widgetProperty(widget: any, propID: any, _?: any): any;
|
|
21
|
-
load(elmValue: any): void;
|
|
22
|
-
save(themeName: any): void;
|
|
23
|
-
needsPropTableRedraw(): boolean;
|
|
24
|
-
update(domNode: any, element: any): void;
|
|
25
|
-
exit(domNode: any, element: any): void;
|
|
26
|
-
click(d: any): void;
|
|
27
|
-
propertiesTableHtml(editorParams: any): string;
|
|
28
|
-
buildTableObjects(targetElement: any, propObjs: any): void;
|
|
29
|
-
initFunctionality(elm: any): void;
|
|
30
|
-
sharedPropertyTableHtml(sectionObj: any): string;
|
|
31
|
-
tableObjHtml(tableObj: any): string;
|
|
32
|
-
tableRowObjHtml(rowObj: any): string;
|
|
33
|
-
setWidgetObjsById(widgetProp: any): void;
|
|
34
|
-
checkTagFilter(tagArr: any): boolean;
|
|
35
|
-
findSharedProperties(data: any): any;
|
|
36
|
-
themeMode: {
|
|
37
|
-
(): boolean;
|
|
38
|
-
(_: boolean): ThemeEditor;
|
|
39
|
-
};
|
|
40
|
-
themeMode_exists: () => boolean;
|
|
41
|
-
saveTheme: {
|
|
42
|
-
(): string;
|
|
43
|
-
(_: string): ThemeEditor;
|
|
44
|
-
};
|
|
45
|
-
saveTheme_exists: () => boolean;
|
|
46
|
-
loadedTheme: {
|
|
47
|
-
(): string;
|
|
48
|
-
(_: string): ThemeEditor;
|
|
49
|
-
};
|
|
50
|
-
loadedTheme_exists: () => boolean;
|
|
51
|
-
saveSerial: {
|
|
52
|
-
(): string;
|
|
53
|
-
(_: string): ThemeEditor;
|
|
54
|
-
};
|
|
55
|
-
saveSerial_exists: () => boolean;
|
|
56
|
-
loadedSerial: {
|
|
57
|
-
(): string;
|
|
58
|
-
(_: string): ThemeEditor;
|
|
59
|
-
};
|
|
60
|
-
loadedSerial_exists: () => boolean;
|
|
61
|
-
showColumns: {
|
|
62
|
-
(): boolean;
|
|
63
|
-
(_: boolean): ThemeEditor;
|
|
64
|
-
};
|
|
65
|
-
showColumns_exists: () => boolean;
|
|
66
|
-
showData: {
|
|
67
|
-
(): boolean;
|
|
68
|
-
(_: boolean): ThemeEditor;
|
|
69
|
-
};
|
|
70
|
-
showData_exists: () => boolean;
|
|
71
|
-
shareCountMin: {
|
|
72
|
-
(): number;
|
|
73
|
-
(_: number): ThemeEditor;
|
|
74
|
-
};
|
|
75
|
-
shareCountMin_exists: () => boolean;
|
|
76
|
-
paramGrouping: {
|
|
77
|
-
(): string;
|
|
78
|
-
(_: string): ThemeEditor;
|
|
79
|
-
};
|
|
80
|
-
paramGrouping_exists: () => boolean;
|
|
81
|
-
editorComplexity: {
|
|
82
|
-
(): string;
|
|
83
|
-
(_: string): ThemeEditor;
|
|
84
|
-
};
|
|
85
|
-
editorComplexity_exists: () => boolean;
|
|
86
|
-
sectionTitle: {
|
|
87
|
-
(): string;
|
|
88
|
-
(_: string): ThemeEditor;
|
|
89
|
-
};
|
|
90
|
-
sectionTitle_exists: () => boolean;
|
|
91
|
-
collapsibleSections: {
|
|
92
|
-
(): boolean;
|
|
93
|
-
(_: boolean): ThemeEditor;
|
|
94
|
-
};
|
|
95
|
-
collapsibleSections_exists: () => boolean;
|
|
96
|
-
}
|
|
97
|
-
//# sourceMappingURL=ThemeEditor.d.ts.map
|