@devtable/dashboard 6.17.0 → 6.19.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.
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ interface IFuncContentEditor {
3
+ value: string;
4
+ onChange: (v: string) => void;
5
+ }
6
+ export declare const FuncContentEditor: ({ value, onChange }: IFuncContentEditor) => JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ interface IFuncContentField {
3
+ value: string;
4
+ onChange: (v: string) => void;
5
+ }
6
+ export declare const FuncContentField: import("react").ForwardRefExoticComponent<IFuncContentField & import("react").RefAttributes<unknown>>;
7
+ export {};
@@ -0,0 +1,2 @@
1
+ import { VizComponent } from '../../../types/plugin';
2
+ export declare const TextVizComponent: VizComponent;
@@ -0,0 +1,8 @@
1
+ export declare const DEFAULT_TEXT_FUNC_CONTENT: string;
2
+ export interface IVizTextConf {
3
+ func_content: string;
4
+ horizontal_align: 'left' | 'center' | 'right';
5
+ font_size: string;
6
+ font_weight: string;
7
+ }
8
+ export declare const DEFAULT_CONFIG: IVizTextConf;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { VizConfigProps } from '~/types/plugin';
3
+ export declare function VizTextPanel({ context }: VizConfigProps): JSX.Element;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { VizViewProps } from '~/types/plugin';
3
+ export declare const VizText: (({ context }: VizViewProps) => JSX.Element) & {
4
+ displayName: string;
5
+ };
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const MericoGQMErrorFigure: () => JSX.Element;
@@ -1,5 +1,6 @@
1
1
  export interface IMericoGQMConf {
2
2
  expertSystemURL: string;
3
+ path: string;
3
4
  goal: string;
4
5
  question: string;
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "6.17.0",
3
+ "version": "6.19.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",