@adaptabletools/adaptable 15.0.0-canary.2 → 15.0.0-canary.4
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/bundle.cjs.js +2 -2
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -2
- package/src/Api/Events/AdaptableReady.d.ts +2 -2
- package/src/Api/Implementation/StatusBarApiImpl.d.ts +2 -2
- package/src/Api/StatusBarApi.d.ts +2 -2
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/components/ColorPicker/ColorPicker.d.ts +1 -1
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "15.0.0-canary.
|
|
3
|
+
"version": "15.0.0-canary.4",
|
|
4
4
|
"description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components",
|
package/publishTimestamp.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: 1676276757196;
|
|
2
2
|
export default _default;
|
package/publishTimestamp.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChartModel, ChartRef, Column, GridOptions, ModuleNames, IRowNode } from '@ag-grid-community/core';
|
|
1
|
+
import { ChartModel, ChartRef, Column, GridOptions, ModuleNames, IRowNode, StatusPanelDef } from '@ag-grid-community/core';
|
|
2
2
|
import { AdaptableApi } from '../Api/AdaptableApi';
|
|
3
3
|
import { AdaptableColumn } from '../PredefinedConfig/Common/AdaptableColumn';
|
|
4
4
|
import { ColumnSort } from '../PredefinedConfig/Common/ColumnSort';
|
|
@@ -179,7 +179,7 @@ export interface IAdaptable {
|
|
|
179
179
|
getRowNodesForPrimaryKeys(primaryKeyValues: any[]): IRowNode[];
|
|
180
180
|
getRowNodeForPrimaryKey(primaryKeyValue: any): IRowNode;
|
|
181
181
|
getRowNodeByIndex(index: number): IRowNode;
|
|
182
|
-
getAgGridStatusPanels():
|
|
182
|
+
getAgGridStatusPanels(): StatusPanelDef[];
|
|
183
183
|
forPlugins(callback: (plugin: AdaptablePlugin) => any): void;
|
|
184
184
|
lookupPlugins(propertyName: string, ...args: any): any;
|
|
185
185
|
getPluginProperty(pluginId: string, propertyName: string, ...args: any): any;
|
|
@@ -3,9 +3,9 @@ import { BaseEventInfo } from './BaseEventInfo';
|
|
|
3
3
|
/**
|
|
4
4
|
* Object returned by `AdaptableReady` event - fired when AdapTable has loaded
|
|
5
5
|
*/
|
|
6
|
-
export interface AdaptableReadyInfo extends BaseEventInfo {
|
|
6
|
+
export interface AdaptableReadyInfo<TData = any> extends BaseEventInfo {
|
|
7
7
|
/**
|
|
8
8
|
* Underlying AG Grid GridOptions object
|
|
9
9
|
*/
|
|
10
|
-
gridOptions: GridOptions
|
|
10
|
+
gridOptions: GridOptions<TData>;
|
|
11
11
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { AdaptableStatusBar } from '../../PredefinedConfig/StatusBarState';
|
|
2
2
|
import { StatusBarApi } from '../StatusBarApi';
|
|
3
3
|
import { ApiBase } from './ApiBase';
|
|
4
|
-
import {
|
|
4
|
+
import { StatusPanelDef } from '@ag-grid-community/core';
|
|
5
5
|
export declare class StatusBarApiImpl extends ApiBase implements StatusBarApi {
|
|
6
6
|
getAdaptableStatusBars(): AdaptableStatusBar[];
|
|
7
|
-
getAgGridStatusPanels():
|
|
7
|
+
getAgGridStatusPanels(): StatusPanelDef[];
|
|
8
8
|
setStatusBarPanels(statusPanels: AdaptableStatusBar[]): void;
|
|
9
9
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StatusPanelDef } from '@ag-grid-community/core';
|
|
2
2
|
import { AdaptableStatusBar } from '../PredefinedConfig/StatusBarState';
|
|
3
3
|
/**
|
|
4
4
|
* Methods for managaing the Adaptable Status Bar
|
|
@@ -7,7 +7,7 @@ export interface StatusBarApi {
|
|
|
7
7
|
/**
|
|
8
8
|
* Retrieves the current AG Grid Status Bar Panels
|
|
9
9
|
*/
|
|
10
|
-
getAgGridStatusPanels():
|
|
10
|
+
getAgGridStatusPanels(): StatusPanelDef[];
|
|
11
11
|
/**
|
|
12
12
|
* Retrieves the current Adaptable Status Bar Panels
|
|
13
13
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { AdaptableInputProps } from '../AdaptableInput';
|
|
3
3
|
export declare type AdaptableDateInputProps = AdaptableInputProps;
|
|
4
|
-
declare const AdaptableDateInput: React.ForwardRefExoticComponent<
|
|
4
|
+
declare const AdaptableDateInput: React.ForwardRefExoticComponent<Omit<import("../../../components/Input").InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
5
5
|
export default AdaptableDateInput;
|
|
@@ -8,4 +8,4 @@ export declare type ColorPickerProps = Omit<HTMLProps<HTMLInputElement>, 'onChan
|
|
|
8
8
|
value: string;
|
|
9
9
|
includeAlpha?: boolean;
|
|
10
10
|
} & Omit<BoxProps, 'onChange'>;
|
|
11
|
-
export declare const ColorPicker: React.ForwardRefExoticComponent<
|
|
11
|
+
export declare const ColorPicker: React.ForwardRefExoticComponent<Omit<ColorPickerProps, "ref"> & React.RefAttributes<unknown>>;
|
|
@@ -15,4 +15,4 @@ export declare type DatepickerProps = Omit<BoxProps, 'value' | 'onChange' | 'def
|
|
|
15
15
|
showWeekNumber?: boolean;
|
|
16
16
|
showOutsideDays?: boolean;
|
|
17
17
|
};
|
|
18
|
-
export declare const Datepicker: React.ForwardRefExoticComponent<
|
|
18
|
+
export declare const Datepicker: React.ForwardRefExoticComponent<Omit<DatepickerProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -8,5 +8,5 @@ export declare type InputProps = HTMLProps<HTMLInputElement> & {
|
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
list?: any;
|
|
10
10
|
} & BoxProps;
|
|
11
|
-
declare const Input: React.ForwardRefExoticComponent<
|
|
11
|
+
declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
12
12
|
export default Input;
|
|
@@ -8,5 +8,5 @@ declare type TypeProps = HTMLProps<HTMLElement> & {
|
|
|
8
8
|
index?: number;
|
|
9
9
|
selectionId?: string | number;
|
|
10
10
|
};
|
|
11
|
-
declare const ListGroupItem: React.ForwardRefExoticComponent<
|
|
11
|
+
declare const ListGroupItem: React.ForwardRefExoticComponent<Omit<TypeProps, "ref"> & React.RefAttributes<unknown>>;
|
|
12
12
|
export default ListGroupItem;
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "15.0.0-canary.
|
|
1
|
+
declare const _default: "15.0.0-canary.4";
|
|
2
2
|
export default _default;
|
package/version.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = '15.0.0-canary.
|
|
3
|
+
exports.default = '15.0.0-canary.4'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|