@visactor/openinula-vtable 1.18.7 → 1.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.
Files changed (41) hide show
  1. package/cjs/components/base-component.d.ts +1 -0
  2. package/cjs/components/base-component.js +1 -2
  3. package/cjs/components/index.d.ts +14 -0
  4. package/cjs/containers/withContainer.d.ts +10 -0
  5. package/cjs/context/table.d.ts +3 -5
  6. package/cjs/context/table.js +2 -1
  7. package/cjs/index.d.ts +1 -1
  8. package/cjs/index.js +1 -1
  9. package/cjs/index.js.map +1 -1
  10. package/cjs/tables/base-table.d.ts +3 -4
  11. package/cjs/tables/list-table.d.ts +3 -4
  12. package/cjs/tables/pivot-chart.d.ts +3 -4
  13. package/cjs/tables/pivot-table.d.ts +3 -4
  14. package/es/components/base-component.d.ts +1 -0
  15. package/es/components/base-component.js +1 -2
  16. package/es/components/index.d.ts +14 -0
  17. package/es/containers/withContainer.d.ts +10 -0
  18. package/es/context/table.d.ts +3 -5
  19. package/es/context/table.js +2 -1
  20. package/es/index.d.ts +1 -1
  21. package/es/index.js +1 -1
  22. package/es/index.js.map +1 -1
  23. package/es/tables/base-table.d.ts +3 -4
  24. package/es/tables/list-table.d.ts +3 -4
  25. package/es/tables/pivot-chart.d.ts +3 -4
  26. package/es/tables/pivot-table.d.ts +3 -4
  27. package/package.json +3 -3
  28. package/cjs/components/component/menu.d.ts +0 -10
  29. package/cjs/components/component/tooltip.d.ts +0 -7
  30. package/cjs/components/list/list-column.d.ts +0 -4
  31. package/cjs/components/pivot/pivot-corner.d.ts +0 -4
  32. package/cjs/components/pivot/pivot-dimension.d.ts +0 -6
  33. package/cjs/components/pivot/pivot-header-title.d.ts +0 -5
  34. package/cjs/components/pivot/pivot-indicator.d.ts +0 -4
  35. package/es/components/component/menu.d.ts +0 -10
  36. package/es/components/component/tooltip.d.ts +0 -7
  37. package/es/components/list/list-column.d.ts +0 -4
  38. package/es/components/pivot/pivot-corner.d.ts +0 -4
  39. package/es/components/pivot/pivot-dimension.d.ts +0 -6
  40. package/es/components/pivot/pivot-header-title.d.ts +0 -5
  41. package/es/components/pivot/pivot-indicator.d.ts +0 -4
@@ -1,3 +1,4 @@
1
+ import Inula from 'openinula';
1
2
  export interface BaseComponentProps {
2
3
  id?: string | number;
3
4
  }
@@ -51,5 +51,4 @@ const openinula_1 = __importStar(require("openinula")), vutils_1 = require("@vis
51
51
  }), Comp;
52
52
  };
53
53
 
54
- exports.createComponent = createComponent;
55
- //# sourceMappingURL=base-component.js.map
54
+ exports.createComponent = createComponent;
@@ -0,0 +1,14 @@
1
+ import type Inula from 'openinula';
2
+ export { ListColumn } from './list/list-column';
3
+ export { PivotColumnDimension, PivotRowDimension } from './pivot/pivot-dimension';
4
+ export { PivotIndicator } from './pivot/pivot-indicator';
5
+ export { PivotColumnHeaderTitle, PivotRowHeaderTitle } from './pivot/pivot-header-title';
6
+ export { PivotCorner } from './pivot/pivot-corner';
7
+ export { Menu } from './component/menu';
8
+ export { Tooltip } from './component/tooltip';
9
+ type Props = {
10
+ updateId?: number;
11
+ };
12
+ export interface IMarkElement extends Inula.InulaElement<Props, Inula.JSXElementConstructor<Props>> {
13
+ id: string | number;
14
+ }
@@ -0,0 +1,10 @@
1
+ import Inula from 'openinula';
2
+ export interface ContainerProps {
3
+ style?: Inula.CSSProperties;
4
+ className?: string;
5
+ width?: number | string;
6
+ height?: number | string;
7
+ }
8
+ export default function withContainer<Props extends ContainerProps, CompProps>(Comp: typeof Inula.Component<any, CompProps>, name?: string, getProps?: (props: any) => CompProps): Inula.ExoticComponent<Inula.PropsOmitRef<CompProps & Props>> & Inula.Attributes & {
9
+ ref?: Inula.Ref<any>;
10
+ };
@@ -4,10 +4,8 @@ export interface TableContextType {
4
4
  table?: ListTable | PivotTable | PivotChart;
5
5
  isChildrenUpdated?: boolean;
6
6
  }
7
- declare const TableContext: import("openinula").Context<TableContextType>;
8
- export declare function withTableInstance<T>(Component: typeof Inula.Component): import("openinula").ExoticComponent<import("openinula").PropsOmitRef<T>> & {
9
- key?: import("openinula").Key;
10
- } & {
11
- ref?: import("openinula").Ref<any>;
7
+ declare const TableContext: Inula.Context<TableContextType>;
8
+ export declare function withTableInstance<T>(Component: typeof Inula.Component): Inula.ExoticComponent<Inula.PropsOmitRef<T>> & Inula.Attributes & {
9
+ ref?: Inula.Ref<any>;
12
10
  };
13
11
  export default TableContext;
@@ -21,4 +21,5 @@ function withTableInstance(Component) {
21
21
  }
22
22
 
23
23
  TableContext.displayName = "TableContext", exports.withTableInstance = withTableInstance,
24
- exports.default = TableContext;
24
+ exports.default = TableContext;
25
+ //# sourceMappingURL=table.js.map
package/cjs/index.d.ts CHANGED
@@ -2,4 +2,4 @@ import * as VTable from '@visactor/vtable';
2
2
  export * from './tables';
3
3
  export * from './components';
4
4
  export { VTable };
5
- export declare const version = "1.18.7";
5
+ export declare const version = "1.19.0";
package/cjs/index.js CHANGED
@@ -34,5 +34,5 @@ Object.defineProperty(exports, "__esModule", {
34
34
  const VTable = __importStar(require("@visactor/vtable"));
35
35
 
36
36
  exports.VTable = VTable, __exportStar(require("./tables"), exports), __exportStar(require("./components"), exports),
37
- exports.version = "1.18.7";
37
+ exports.version = "1.19.0";
38
38
  //# sourceMappingURL=index.js.map
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yDAA2C;AAIlC,wBAAM;AAFf,2CAAyB;AACzB,+CAA6B;AAGhB,QAAA,OAAO,GAAG,QAAQ,CAAC","file":"index.js","sourcesContent":["import * as VTable from '@visactor/vtable';\n\nexport * from './tables';\nexport * from './components';\nexport { VTable };\n\nexport const version = \"1.18.7\";\n"]}
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yDAA2C;AAIlC,wBAAM;AAFf,2CAAyB;AACzB,+CAA6B;AAGhB,QAAA,OAAO,GAAG,QAAQ,CAAC","file":"index.js","sourcesContent":["import * as VTable from '@visactor/vtable';\n\nexport * from './tables';\nexport * from './components';\nexport { VTable };\n\nexport const version = \"1.19.0\";\n"]}
@@ -1,4 +1,5 @@
1
1
  import * as VTable from '@visactor/vtable';
2
+ import Inula from 'openinula';
2
3
  import type { ContainerProps } from '../containers/withContainer';
3
4
  import type { EventsProps } from '../eventsUtils';
4
5
  export type IVTable = VTable.ListTable | VTable.PivotTable | VTable.PivotChart;
@@ -14,8 +15,6 @@ export interface BaseTableProps extends EventsProps {
14
15
  onReady?: (instance: IVTable, isInitial: boolean) => void;
15
16
  onError?: (err: Error) => void;
16
17
  }
17
- export declare const createTable: <T extends Inula.PropsWithChildren<BaseTableProps>>(componentName: string, type?: string, callback?: (props: T) => T) => import("openinula").ExoticComponent<import("openinula").PropsOmitRef<T & ContainerProps>> & {
18
- key?: import("openinula").Key;
19
- } & {
20
- ref?: import("openinula").Ref<any>;
18
+ export declare const createTable: <T extends Inula.PropsWithChildren<BaseTableProps>>(componentName: string, type?: string, callback?: (props: T) => T) => Inula.ExoticComponent<Inula.PropsOmitRef<T & ContainerProps>> & Inula.Attributes & {
19
+ ref?: Inula.Ref<any>;
21
20
  };
@@ -1,9 +1,8 @@
1
+ import type Inula from 'openinula';
1
2
  import type { ListTableConstructorOptions } from '@visactor/vtable';
2
3
  import type { BaseTableProps } from './base-table';
3
4
  export interface ListTableProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<ListTableConstructorOptions, 'container'> {
4
5
  }
5
- export declare const ListTable: import("openinula").ExoticComponent<Omit<any, "ref">> & {
6
- key?: import("openinula").Key;
7
- } & {
8
- ref?: import("openinula").Ref<any>;
6
+ export declare const ListTable: Inula.ExoticComponent<Omit<any, "ref">> & Inula.Attributes & {
7
+ ref?: Inula.Ref<any>;
9
8
  };
@@ -1,10 +1,9 @@
1
+ import type Inula from 'openinula';
1
2
  import type { PivotChartConstructorOptions } from '@visactor/vtable';
2
3
  import type { BaseTableProps } from './base-table';
3
4
  export interface PivotChartProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<PivotChartConstructorOptions, 'container'> {
4
5
  }
5
- export declare const PivotChart: import("openinula").ExoticComponent<Omit<any, "ref">> & {
6
- key?: import("openinula").Key;
7
- } & {
8
- ref?: import("openinula").Ref<any>;
6
+ export declare const PivotChart: Inula.ExoticComponent<Omit<any, "ref">> & Inula.Attributes & {
7
+ ref?: Inula.Ref<any>;
9
8
  };
10
9
  export declare function registerChartModule(name: string, chart: any): void;
@@ -1,9 +1,8 @@
1
+ import type Inula from 'openinula';
1
2
  import type { PivotTableConstructorOptions } from '@visactor/vtable';
2
3
  import type { BaseTableProps } from './base-table';
3
4
  export interface PivotTableProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<PivotTableConstructorOptions, 'container'> {
4
5
  }
5
- export declare const PivotTable: import("openinula").ExoticComponent<Omit<any, "ref">> & {
6
- key?: import("openinula").Key;
7
- } & {
8
- ref?: import("openinula").Ref<any>;
6
+ export declare const PivotTable: Inula.ExoticComponent<Omit<any, "ref">> & Inula.Attributes & {
7
+ ref?: Inula.Ref<any>;
9
8
  };
@@ -1,3 +1,4 @@
1
+ import Inula from 'openinula';
1
2
  export interface BaseComponentProps {
2
3
  id?: string | number;
3
4
  }
@@ -22,5 +22,4 @@ export const createComponent = (componentName, optionName, supportedEvents, isSi
22
22
  optionName: optionName,
23
23
  isSingle: isSingle
24
24
  }), Comp;
25
- };
26
- //# sourceMappingURL=base-component.js.map
25
+ };
@@ -0,0 +1,14 @@
1
+ import type Inula from 'openinula';
2
+ export { ListColumn } from './list/list-column';
3
+ export { PivotColumnDimension, PivotRowDimension } from './pivot/pivot-dimension';
4
+ export { PivotIndicator } from './pivot/pivot-indicator';
5
+ export { PivotColumnHeaderTitle, PivotRowHeaderTitle } from './pivot/pivot-header-title';
6
+ export { PivotCorner } from './pivot/pivot-corner';
7
+ export { Menu } from './component/menu';
8
+ export { Tooltip } from './component/tooltip';
9
+ type Props = {
10
+ updateId?: number;
11
+ };
12
+ export interface IMarkElement extends Inula.InulaElement<Props, Inula.JSXElementConstructor<Props>> {
13
+ id: string | number;
14
+ }
@@ -0,0 +1,10 @@
1
+ import Inula from 'openinula';
2
+ export interface ContainerProps {
3
+ style?: Inula.CSSProperties;
4
+ className?: string;
5
+ width?: number | string;
6
+ height?: number | string;
7
+ }
8
+ export default function withContainer<Props extends ContainerProps, CompProps>(Comp: typeof Inula.Component<any, CompProps>, name?: string, getProps?: (props: any) => CompProps): Inula.ExoticComponent<Inula.PropsOmitRef<CompProps & Props>> & Inula.Attributes & {
9
+ ref?: Inula.Ref<any>;
10
+ };
@@ -4,10 +4,8 @@ export interface TableContextType {
4
4
  table?: ListTable | PivotTable | PivotChart;
5
5
  isChildrenUpdated?: boolean;
6
6
  }
7
- declare const TableContext: import("openinula").Context<TableContextType>;
8
- export declare function withTableInstance<T>(Component: typeof Inula.Component): import("openinula").ExoticComponent<import("openinula").PropsOmitRef<T>> & {
9
- key?: import("openinula").Key;
10
- } & {
11
- ref?: import("openinula").Ref<any>;
7
+ declare const TableContext: Inula.Context<TableContextType>;
8
+ export declare function withTableInstance<T>(Component: typeof Inula.Component): Inula.ExoticComponent<Inula.PropsOmitRef<T>> & Inula.Attributes & {
9
+ ref?: Inula.Ref<any>;
12
10
  };
13
11
  export default TableContext;
@@ -12,4 +12,5 @@ export function withTableInstance(Component) {
12
12
  return Com.displayName = Component.name, Com;
13
13
  }
14
14
 
15
- export default TableContext;
15
+ export default TableContext;
16
+ //# sourceMappingURL=table.js.map
package/es/index.d.ts CHANGED
@@ -2,4 +2,4 @@ import * as VTable from '@visactor/vtable';
2
2
  export * from './tables';
3
3
  export * from './components';
4
4
  export { VTable };
5
- export declare const version = "1.18.7";
5
+ export declare const version = "1.19.0";
package/es/index.js CHANGED
@@ -6,5 +6,5 @@ export * from "./components";
6
6
 
7
7
  export { VTable };
8
8
 
9
- export const version = "1.18.7";
9
+ export const version = "1.19.0";
10
10
  //# sourceMappingURL=index.js.map
package/es/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAE3C,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,MAAM,EAAE,CAAC;AAElB,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC","file":"index.js","sourcesContent":["import * as VTable from '@visactor/vtable';\n\nexport * from './tables';\nexport * from './components';\nexport { VTable };\n\nexport const version = \"1.18.7\";\n"]}
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,kBAAkB,CAAC;AAE3C,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,OAAO,EAAE,MAAM,EAAE,CAAC;AAElB,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC","file":"index.js","sourcesContent":["import * as VTable from '@visactor/vtable';\n\nexport * from './tables';\nexport * from './components';\nexport { VTable };\n\nexport const version = \"1.19.0\";\n"]}
@@ -1,4 +1,5 @@
1
1
  import * as VTable from '@visactor/vtable';
2
+ import Inula from 'openinula';
2
3
  import type { ContainerProps } from '../containers/withContainer';
3
4
  import type { EventsProps } from '../eventsUtils';
4
5
  export type IVTable = VTable.ListTable | VTable.PivotTable | VTable.PivotChart;
@@ -14,8 +15,6 @@ export interface BaseTableProps extends EventsProps {
14
15
  onReady?: (instance: IVTable, isInitial: boolean) => void;
15
16
  onError?: (err: Error) => void;
16
17
  }
17
- export declare const createTable: <T extends Inula.PropsWithChildren<BaseTableProps>>(componentName: string, type?: string, callback?: (props: T) => T) => import("openinula").ExoticComponent<import("openinula").PropsOmitRef<T & ContainerProps>> & {
18
- key?: import("openinula").Key;
19
- } & {
20
- ref?: import("openinula").Ref<any>;
18
+ export declare const createTable: <T extends Inula.PropsWithChildren<BaseTableProps>>(componentName: string, type?: string, callback?: (props: T) => T) => Inula.ExoticComponent<Inula.PropsOmitRef<T & ContainerProps>> & Inula.Attributes & {
19
+ ref?: Inula.Ref<any>;
21
20
  };
@@ -1,9 +1,8 @@
1
+ import type Inula from 'openinula';
1
2
  import type { ListTableConstructorOptions } from '@visactor/vtable';
2
3
  import type { BaseTableProps } from './base-table';
3
4
  export interface ListTableProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<ListTableConstructorOptions, 'container'> {
4
5
  }
5
- export declare const ListTable: import("openinula").ExoticComponent<Omit<any, "ref">> & {
6
- key?: import("openinula").Key;
7
- } & {
8
- ref?: import("openinula").Ref<any>;
6
+ export declare const ListTable: Inula.ExoticComponent<Omit<any, "ref">> & Inula.Attributes & {
7
+ ref?: Inula.Ref<any>;
9
8
  };
@@ -1,10 +1,9 @@
1
+ import type Inula from 'openinula';
1
2
  import type { PivotChartConstructorOptions } from '@visactor/vtable';
2
3
  import type { BaseTableProps } from './base-table';
3
4
  export interface PivotChartProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<PivotChartConstructorOptions, 'container'> {
4
5
  }
5
- export declare const PivotChart: import("openinula").ExoticComponent<Omit<any, "ref">> & {
6
- key?: import("openinula").Key;
7
- } & {
8
- ref?: import("openinula").Ref<any>;
6
+ export declare const PivotChart: Inula.ExoticComponent<Omit<any, "ref">> & Inula.Attributes & {
7
+ ref?: Inula.Ref<any>;
9
8
  };
10
9
  export declare function registerChartModule(name: string, chart: any): void;
@@ -1,9 +1,8 @@
1
+ import type Inula from 'openinula';
1
2
  import type { PivotTableConstructorOptions } from '@visactor/vtable';
2
3
  import type { BaseTableProps } from './base-table';
3
4
  export interface PivotTableProps extends Omit<BaseTableProps, 'records' | 'type'>, Omit<PivotTableConstructorOptions, 'container'> {
4
5
  }
5
- export declare const PivotTable: import("openinula").ExoticComponent<Omit<any, "ref">> & {
6
- key?: import("openinula").Key;
7
- } & {
8
- ref?: import("openinula").Ref<any>;
6
+ export declare const PivotTable: Inula.ExoticComponent<Omit<any, "ref">> & Inula.Attributes & {
7
+ ref?: Inula.Ref<any>;
9
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/openinula-vtable",
3
- "version": "1.18.7",
3
+ "version": "1.19.0",
4
4
  "description": "The openinula version of VTable",
5
5
  "keywords": [
6
6
  "openinula",
@@ -44,10 +44,10 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@visactor/vutils": "~0.19.1",
47
- "@visactor/vtable": "1.18.7"
47
+ "@visactor/vtable": "1.19.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@visactor/vchart": "1.13.3-alpha.2",
50
+ "@visactor/vchart": "2.0.0-alpha.1",
51
51
  "@rushstack/eslint-patch": "~1.1.4",
52
52
  "eslint": "~8.18.0",
53
53
  "vite": "3.2.6",
@@ -1,10 +0,0 @@
1
- import type { BaseTable } from '@visactor/vtable/src/core';
2
- import type { BaseComponentProps } from '../base-component';
3
- import type { TYPES } from '@visactor/vtable';
4
- export type MenuProps = {
5
- renderMode?: 'canvas' | 'html';
6
- defaultHeaderMenuItems?: TYPES.MenuListItem[];
7
- contextMenuItems?: TYPES.MenuListItem[] | ((field: string, row: number, col: number, table?: BaseTable) => TYPES.MenuListItem[]);
8
- dropDownMenuHighlight?: TYPES.DropDownMenuHighlightInfo[];
9
- } & BaseComponentProps;
10
- export declare const Menu: Inula.FC<T>;
@@ -1,7 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- export type TooltipProps = {
3
- renderMode?: 'html';
4
- isShowOverflowTextTooltip?: boolean;
5
- confine?: boolean;
6
- } & BaseComponentProps;
7
- export declare const Tooltip: Inula.FC<T>;
@@ -1,4 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { ColumnDefine } from '@visactor/vtable';
3
- export type ListColumnProps = ColumnDefine & BaseComponentProps;
4
- export declare const ListColumn: Inula.FC<T>;
@@ -1,4 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { ICornerDefine } from '@visactor/vtable';
3
- export type PivotCornerProps = ICornerDefine & BaseComponentProps;
4
- export declare const PivotCorner: Inula.FC<T>;
@@ -1,6 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { IRowDimension, IColumnDimension } from '@visactor/vtable';
3
- export type RowPivotDimensionProps = IRowDimension & BaseComponentProps;
4
- export type ColumnPivotDimensionProps = IColumnDimension & BaseComponentProps;
5
- export declare const PivotColumnDimension: Inula.FC<T>;
6
- export declare const PivotRowDimension: Inula.FC<T>;
@@ -1,5 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { ITitleDefine } from '@visactor/vtable';
3
- export type PivotHeaderTitleProps = ITitleDefine & BaseComponentProps;
4
- export declare const PivotColumnHeaderTitle: Inula.FC<T>;
5
- export declare const PivotRowHeaderTitle: Inula.FC<T>;
@@ -1,4 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { IIndicator } from '@visactor/vtable';
3
- export type PivotIndicatorProps = IIndicator & BaseComponentProps;
4
- export declare const PivotIndicator: Inula.FC<T>;
@@ -1,10 +0,0 @@
1
- import type { BaseTable } from '@visactor/vtable/src/core';
2
- import type { BaseComponentProps } from '../base-component';
3
- import type { TYPES } from '@visactor/vtable';
4
- export type MenuProps = {
5
- renderMode?: 'canvas' | 'html';
6
- defaultHeaderMenuItems?: TYPES.MenuListItem[];
7
- contextMenuItems?: TYPES.MenuListItem[] | ((field: string, row: number, col: number, table?: BaseTable) => TYPES.MenuListItem[]);
8
- dropDownMenuHighlight?: TYPES.DropDownMenuHighlightInfo[];
9
- } & BaseComponentProps;
10
- export declare const Menu: Inula.FC<T>;
@@ -1,7 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- export type TooltipProps = {
3
- renderMode?: 'html';
4
- isShowOverflowTextTooltip?: boolean;
5
- confine?: boolean;
6
- } & BaseComponentProps;
7
- export declare const Tooltip: Inula.FC<T>;
@@ -1,4 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { ColumnDefine } from '@visactor/vtable';
3
- export type ListColumnProps = ColumnDefine & BaseComponentProps;
4
- export declare const ListColumn: Inula.FC<T>;
@@ -1,4 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { ICornerDefine } from '@visactor/vtable';
3
- export type PivotCornerProps = ICornerDefine & BaseComponentProps;
4
- export declare const PivotCorner: Inula.FC<T>;
@@ -1,6 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { IRowDimension, IColumnDimension } from '@visactor/vtable';
3
- export type RowPivotDimensionProps = IRowDimension & BaseComponentProps;
4
- export type ColumnPivotDimensionProps = IColumnDimension & BaseComponentProps;
5
- export declare const PivotColumnDimension: Inula.FC<T>;
6
- export declare const PivotRowDimension: Inula.FC<T>;
@@ -1,5 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { ITitleDefine } from '@visactor/vtable';
3
- export type PivotHeaderTitleProps = ITitleDefine & BaseComponentProps;
4
- export declare const PivotColumnHeaderTitle: Inula.FC<T>;
5
- export declare const PivotRowHeaderTitle: Inula.FC<T>;
@@ -1,4 +0,0 @@
1
- import type { BaseComponentProps } from '../base-component';
2
- import type { IIndicator } from '@visactor/vtable';
3
- export type PivotIndicatorProps = IIndicator & BaseComponentProps;
4
- export declare const PivotIndicator: Inula.FC<T>;