datagrok-api
Advanced tools
Comparing version 1.18.4 to 1.18.5
@@ -24,2 +24,3 @@ export * from './src/interfaces/d4'; | ||
export { ObjectHandler, EntityMetaDartProxy } from './ui'; | ||
export * from './src/sticky_meta'; | ||
export * from './src/data'; | ||
@@ -26,0 +27,0 @@ export * from './src/helpers'; |
@@ -29,2 +29,3 @@ import $ from 'cash-dom'; | ||
export { ObjectHandler, EntityMetaDartProxy } from './ui'; | ||
export * from './src/sticky_meta'; | ||
export * from './src/data'; | ||
@@ -31,0 +32,0 @@ export * from './src/helpers'; |
{ | ||
"name": "datagrok-api", | ||
"version": "1.18.4", | ||
"version": "1.18.5", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
@@ -0,1 +1,6 @@ | ||
export declare class UsageType { | ||
static MENU_CLICK: string; | ||
static DIALOG_OK: string; | ||
static DIALOG_SHOW: string; | ||
} | ||
export declare class ViewerEvent { | ||
@@ -41,5 +46,6 @@ dart: any; | ||
static Molecule: string; | ||
static User: string; | ||
static Users: string; | ||
static UserGroups: string; | ||
static Dynamic: string; | ||
static Image: string; | ||
static JsInputProxy: string; | ||
@@ -46,0 +52,0 @@ } |
/// this file was generated automatically from d4 classes declarations | ||
import { toDart } from "../wrappers"; | ||
let api = window; | ||
export class UsageType { | ||
} | ||
UsageType.MENU_CLICK = 'menu click'; | ||
UsageType.DIALOG_OK = 'dialog ok'; | ||
UsageType.DIALOG_SHOW = 'dialog show'; | ||
export class ViewerEvent { | ||
@@ -54,5 +59,6 @@ constructor(dart) { | ||
InputType.Molecule = 'Molecule'; | ||
InputType.User = 'User'; | ||
InputType.Users = 'Users'; | ||
InputType.UserGroups = 'UserGroups'; | ||
InputType.Dynamic = 'Dynamic'; | ||
InputType.Image = 'Image'; | ||
InputType.JsInputProxy = 'JsInputProxy'; | ||
@@ -59,0 +65,0 @@ export class GridCellStyleEx { |
@@ -6,2 +6,3 @@ import { DataFrame } from "./dataframe"; | ||
import { FuncCall } from "./functions"; | ||
import { StickyMeta } from "./sticky_meta"; | ||
export declare class ComponentBuildInfo { | ||
@@ -106,2 +107,3 @@ branch: string; | ||
get logTypes(): HttpDataSource<LogEventType>; | ||
stickyMeta: StickyMeta; | ||
} | ||
@@ -200,2 +202,4 @@ /** | ||
sendEmail(email: Email): Promise<void>; | ||
getUserReport(reportId: string): Promise<Uint8Array>; | ||
postEventReport(eventId: string): Promise<void>; | ||
} | ||
@@ -202,0 +206,0 @@ /** |
@@ -14,2 +14,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
import { _propsToDart } from './utils'; | ||
import { StickyMeta } from './sticky_meta'; | ||
const api = window; | ||
@@ -32,2 +33,3 @@ export class ComponentBuildInfo { | ||
this.docker = new DockerDataSource(); | ||
this.stickyMeta = new StickyMeta(); | ||
} | ||
@@ -340,2 +342,8 @@ /** HTTP root for DAPI */ | ||
} | ||
getUserReport(reportId) { | ||
return api.grok_Dapi_Admin_Get_User_Report(this.dart, reportId); | ||
} | ||
postEventReport(eventId) { | ||
return api.grok_Dapi_Admin_Post_Event_Report(this.dart, eventId); | ||
} | ||
} | ||
@@ -342,0 +350,0 @@ /** |
@@ -819,3 +819,26 @@ import { ColumnType, ScriptLanguage, SemType, Type, TYPE, USER_STATUS } from "./const"; | ||
} | ||
export declare class EntityType { | ||
dart: any; | ||
constructor(dart: any); | ||
static create(name: string, matching: string): EntityType; | ||
get name(): string; | ||
set name(s: string); | ||
get matching(): string; | ||
set matching(s: string); | ||
} | ||
export declare class EntityProperty extends Property { | ||
constructor(dart: any); | ||
static create(name: string, type: string): EntityProperty; | ||
} | ||
export declare class Schema { | ||
dart: any; | ||
constructor(dart: any); | ||
static create(name: string): Schema; | ||
get name(): string; | ||
get properties(): EntityProperty[]; | ||
set properties(p: EntityProperty[]); | ||
get entityTypes(): EntityType[]; | ||
set entityTypes(et: EntityType[]); | ||
} | ||
export {}; | ||
//# sourceMappingURL=entities.d.ts.map |
@@ -970,2 +970,38 @@ // noinspection JSUnusedGlobalSymbols | ||
} | ||
export class EntityType { | ||
constructor(dart) { | ||
this.dart = dart; | ||
} | ||
; | ||
static create(name, matching) { | ||
return toJs(api.grok_EntityType_Create(toDart(name), toDart(matching))); | ||
} | ||
get name() { return toJs(api.grok_EntityType_Get_Name(this.dart)); } | ||
set name(s) { api.grok_EntityType_Set_Name(this.dart, toDart(s)); } | ||
get matching() { return toJs(api.grok_EntityType_Get_Matching(this.dart)); } | ||
set matching(s) { api.grok_EntityType_Set_Matching(this.dart, toDart(s)); } | ||
} | ||
export class EntityProperty extends Property { | ||
constructor(dart) { | ||
super(dart); | ||
} | ||
; | ||
static create(name, type) { | ||
return toJs(api.grok_EntityProperty_Create(toDart(name), toDart(type))); | ||
} | ||
} | ||
export class Schema { | ||
constructor(dart) { | ||
this.dart = dart; | ||
} | ||
; | ||
static create(name) { | ||
return toJs(api.grok_Schema_Create(toDart(name))); | ||
} | ||
get name() { return api.grok_Schema_Get_Name(this.dart); } | ||
get properties() { return toJs(api.grok_Schema_Get_Properties(this.dart)); } | ||
set properties(p) { api.grok_Schema_Set_Properties(this.dart, p); } | ||
get entityTypes() { return toJs(api.grok_Schema_Get_EntityTypes(this.dart)); } | ||
set entityTypes(et) { api.grok_Schema_Set_EntityTypes(this.dart, et); } | ||
} | ||
//# sourceMappingURL=entities.js.map |
@@ -66,2 +66,3 @@ export interface IScatterPlot3dLookSettings { | ||
normalizeValues: boolean; | ||
splitStack: boolean; | ||
splineTension: number; | ||
@@ -82,2 +83,3 @@ showYAxis: boolean; | ||
showColumnSelector: boolean; | ||
showSplitSelector: boolean; | ||
showRangeSlider: boolean; | ||
@@ -122,2 +124,5 @@ showRangeInputs: boolean; | ||
showSearchBox: boolean; | ||
showMouseOverRow: boolean; | ||
showCurrentRow: boolean; | ||
showMouseOverGroupRow: boolean; | ||
showBoolCombinedFilter: boolean; | ||
@@ -124,0 +129,0 @@ columnNames: Array<string>; |
@@ -500,2 +500,3 @@ import { StreamSubscription } from "./events"; | ||
get property(): any; | ||
set property(p: Property); | ||
/** Value format. */ | ||
@@ -677,3 +678,6 @@ get format(): string; | ||
static get categoricalPalette(): ColorType[]; | ||
static get categoricalPalettes(): Array<ColorType[]>; | ||
static scaleColor(x: number, min: number, max: number, alpha?: number, colorScheme?: number[]): number; | ||
static highlight(color: number): number; | ||
static darken(color: number, diff: number): number; | ||
static scale(x: number, min: number, max: number): number; | ||
@@ -913,2 +917,11 @@ static get gray(): ColorType; | ||
} | ||
export declare class MarkdownInput extends InputBase { | ||
editor: any; | ||
private _onValueChanged; | ||
constructor(name: string); | ||
static create(name: string): Promise<MarkdownInput>; | ||
get value(): string; | ||
set value(x: string); | ||
get onValueChanged(): Observable<string>; | ||
} | ||
export declare class CodeInput extends InputBase { | ||
@@ -915,0 +928,0 @@ dart: any; |
@@ -8,3 +8,3 @@ /** | ||
import { View, VirtualView } from './src/views/view'; | ||
import { Accordion, Dialog, InputBase, TabControl, TreeViewGroup, Widget, RangeSlider, RangeSliderStyle, DateInput, fileShares, SliderOptions, Breadcrumbs, DropDown, TypeAhead, TypeAheadConfig, TagsInput, ChoiceInput, CodeInput, CodeConfig } from './src/widgets'; | ||
import { Accordion, Dialog, InputBase, TabControl, TreeViewGroup, Widget, RangeSlider, RangeSliderStyle, DateInput, fileShares, SliderOptions, Breadcrumbs, DropDown, TypeAhead, TypeAheadConfig, TagsInput, ChoiceInput, CodeInput, CodeConfig, MarkdownInput } from './src/widgets'; | ||
import { StreamSubscription } from './src/events'; | ||
@@ -330,2 +330,3 @@ import * as rxjs from 'rxjs'; | ||
export function radio(name: string, options?: IChoiceInputInitOptions<string>): InputBase<string>; | ||
export function markdown(name: string): Promise<MarkdownInput>; | ||
export function code(name: string, options?: CodeConfig): CodeInput; | ||
@@ -332,0 +333,0 @@ export {}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1800716
160
25616