@lumino/datagrid
Advanced tools
Comparing version 2.0.0-alpha.7 to 2.0.0-beta.0
{ | ||
"name": "@lumino/datagrid", | ||
"version": "2.0.0-alpha.7", | ||
"version": "2.0.0-beta.0", | ||
"description": "Lumino Tabular Data Grid", | ||
@@ -38,18 +38,18 @@ "homepage": "https://github.com/jupyterlab/lumino", | ||
"dependencies": { | ||
"@lumino/algorithm": "^2.0.0-alpha.7", | ||
"@lumino/coreutils": "^2.0.0-alpha.7", | ||
"@lumino/disposable": "^2.0.0-alpha.7", | ||
"@lumino/domutils": "^2.0.0-alpha.7", | ||
"@lumino/dragdrop": "^2.0.0-alpha.7", | ||
"@lumino/keyboard": "^2.0.0-alpha.7", | ||
"@lumino/messaging": "^2.0.0-alpha.7", | ||
"@lumino/signaling": "^2.0.0-alpha.7", | ||
"@lumino/widgets": "^2.0.0-alpha.7" | ||
"@lumino/algorithm": "^2.0.0-beta.0", | ||
"@lumino/coreutils": "^2.0.0-beta.0", | ||
"@lumino/disposable": "^2.0.0-beta.0", | ||
"@lumino/domutils": "^2.0.0-beta.0", | ||
"@lumino/dragdrop": "^2.0.0-beta.0", | ||
"@lumino/keyboard": "^2.0.0-beta.0", | ||
"@lumino/messaging": "^2.0.0-beta.0", | ||
"@lumino/signaling": "^2.0.0-beta.0", | ||
"@lumino/widgets": "^2.0.0-beta.0" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^22.0.2", | ||
"@rollup/plugin-node-resolve": "^13.3.0", | ||
"@rollup/plugin-commonjs": "^24.0.0", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
"postcss": "^8.4.14", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^2.77.3", | ||
"rollup": "^3.9.1", | ||
"rollup-plugin-postcss": "^4.0.2", | ||
@@ -60,3 +60,3 @@ "rollup-plugin-sourcemaps": "^0.6.3", | ||
"typedoc": "~0.23.9", | ||
"typescript": "~4.7.3" | ||
"typescript": "~4.9.4" | ||
}, | ||
@@ -63,0 +63,0 @@ "publishConfig": { |
@@ -101,3 +101,3 @@ import { IDisposable } from '@lumino/disposable'; | ||
*/ | ||
export declare type ResizeHandle = 'top' | 'left' | 'right' | 'bottom' | 'none' | 'hyperlink'; | ||
export type ResizeHandle = 'top' | 'left' | 'right' | 'bottom' | 'none' | 'hyperlink'; | ||
/** | ||
@@ -104,0 +104,0 @@ * The namespace for the pressdata. |
@@ -69,3 +69,3 @@ import { IDisposable } from '@lumino/disposable'; | ||
} | ||
export declare type CellDataType = 'string' | 'number' | 'integer' | 'boolean' | 'date' | 'string:option' | 'number:option' | 'integer:option' | 'date:option' | 'string:dynamic-option' | 'number:dynamic-option' | 'integer:dynamic-option' | 'date:dynamic-option'; | ||
export type CellDataType = 'string' | 'number' | 'integer' | 'boolean' | 'date' | 'string:option' | 'number:option' | 'integer:option' | 'date:option' | 'string:dynamic-option' | 'number:dynamic-option' | 'integer:dynamic-option' | 'date:dynamic-option'; | ||
/** | ||
@@ -72,0 +72,0 @@ * An object containing cell editing options. |
@@ -6,3 +6,3 @@ import { CellDataType, CellEditor, ICellEditOptions, ICellEditor } from './celleditor'; | ||
*/ | ||
export declare type EditorOverrideIdentifier = CellDataType | DataModel.Metadata | 'default'; | ||
export type EditorOverrideIdentifier = CellDataType | DataModel.Metadata | 'default'; | ||
/** | ||
@@ -41,3 +41,3 @@ * An object which manages cell editing. | ||
*/ | ||
export declare type ConfigFunc<T> = (config: CellEditor.CellConfig) => T; | ||
export type ConfigFunc<T> = (config: CellEditor.CellConfig) => T; | ||
/** | ||
@@ -48,7 +48,7 @@ * A type alias for a cell editor config option. | ||
*/ | ||
export declare type ConfigOption<T> = T | ConfigFunc<T>; | ||
export type ConfigOption<T> = T | ConfigFunc<T>; | ||
/** | ||
* A type alias for a cell editor resolver function. | ||
*/ | ||
export declare type Resolver = ConfigFunc<ICellEditor | undefined>; | ||
export type Resolver = ConfigFunc<ICellEditor | undefined>; | ||
/** | ||
@@ -55,0 +55,0 @@ * Resolve a config option for a cell editor. |
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 too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3515636
40657