SYMBOL INDEX (151 symbols across 17 files)
FILE: .config/factory.js
function createConfig (line 7) | function createConfig() {
FILE: .config/helpers/licenseBanner.js
function addLicenseBanner (line 1) | function addLicenseBanner(config) {
FILE: src/baseEditorComponent.tsx
class BaseEditorComponent (line 5) | class BaseEditorComponent
extends React.Compon...
method constructor (line 19) | constructor(props) {
method _fireCallbacks (line 28) | private _fireCallbacks(...args) {
method beginEditing (line 32) | beginEditing(...args) {
method cancelChanges (line 36) | cancelChanges(...args) {
method checkEditorSection (line 40) | checkEditorSection(...args) {
method close (line 44) | close(...args) {
method discardEditor (line 48) | discardEditor(...args) {
method enableFullEditMode (line 52) | enableFullEditMode(...args) {
method extend (line 56) | extend(...args) {
method finishEditing (line 60) | finishEditing(...args) {
method focus (line 64) | focus(...args) {
method getValue (line 68) | getValue(...args) {
method init (line 72) | init(...args) {
method isInFullEditMode (line 76) | isInFullEditMode(...args) {
method isOpened (line 80) | isOpened(...args) {
method isWaiting (line 84) | isWaiting(...args) {
method open (line 88) | open(...args) {
method prepare (line 92) | prepare(row, col, prop, TD, originalValue, cellProperties) {
method saveValue (line 104) | saveValue(...args) {
method setValue (line 108) | setValue(...args) {
method addHook (line 112) | addHook(...args) {
method removeHooksByKey (line 116) | removeHooksByKey(...args) {
method clearHooks (line 120) | clearHooks(...args) {
method getEditedCell (line 124) | getEditedCell(...args) {
method getEditedCellsZIndex (line 128) | getEditedCellsZIndex(...args) {
FILE: src/helpers.tsx
constant AUTOSIZE_WARNING (line 10) | const AUTOSIZE_WARNING = 'Your `HotTable` configuration includes `autoRo...
constant DEFAULT_CLASSNAME (line 16) | const DEFAULT_CLASSNAME = 'hot-wrapper-editor-container';
function warn (line 23) | function warn(...args) {
function getChildElementByType (line 36) | function getChildElementByType(children: React.ReactNode, type: string):...
function getOriginalEditorClass (line 61) | function getOriginalEditorClass(editorElement: HotEditorElement) {
function removeEditorContainers (line 75) | function removeEditorContainers(doc = document): void {
function createEditorPortal (line 91) | function createEditorPortal(doc = document, editorElement: HotEditorElem...
function getExtendedEditorElement (line 121) | function getExtendedEditorElement(children: React.ReactNode, editorCache...
function createPortal (line 146) | function createPortal(rElement: React.ReactElement, props, callback: Fun...
function getContainerAttributesProps (line 181) | function getContainerAttributesProps(props, randomizeId: boolean = true)...
function addUnsafePrefixes (line 194) | function addUnsafePrefixes(instance: {
FILE: src/hotColumn.tsx
class HotColumn (line 11) | class HotColumn extends React.Component {
method constructor (line 29) | constructor(props: HotColumnProps, context?: any) {
method getLocalEditorPortal (line 40) | getLocalEditorPortal(): ReactPortal {
method setLocalEditorPortal (line 49) | setLocalEditorPortal(portal): void {
method getSettingsProps (line 58) | getSettingsProps(): HotTableProps {
method hasProp (line 79) | hasProp(propName: string): boolean {
method getLocalEditorElement (line 88) | getLocalEditorElement(): React.ReactElement | null {
method createColumnSettings (line 95) | createColumnSettings(): void {
method createLocalEditorPortal (line 128) | createLocalEditorPortal(children = this.props.children): void {
method emitColumnSettings (line 140) | emitColumnSettings(): void {
method componentWillMount (line 153) | componentWillMount(): void {
method componentDidMount (line 160) | componentDidMount(): void {
method componentWillUpdate (line 168) | componentWillUpdate(nextProps: Readonly, nextState: Re...
method componentDidUpdate (line 175) | componentDidUpdate(): void {
method render (line 185) | render(): React.ReactElement {
FILE: src/hotTable.tsx
class HotTable (line 47) | class HotTable extends React.Component {
method constructor (line 137) | constructor(props: HotTableProps, context?: any) {
method version (line 148) | static get version(): string {
method getRenderedCellCache (line 166) | getRenderedCellCache(): Map {
method getEditorCache (line 175) | getEditorCache(): Map {
method getGlobalEditorPortal (line 184) | getGlobalEditorPortal(): React.ReactPortal {
method setGlobalEditorPortal (line 193) | setGlobalEditorPortal(portal: React.ReactPortal): void {
method clearCache (line 200) | clearCache(): void {
method getOwnerDocument (line 217) | getOwnerDocument() {
method setHotElementRef (line 226) | private setHotElementRef(element: HTMLElement): void {
method getRendererWrapper (line 236) | getRendererWrapper(rendererElement: React.ReactElement): Handsontable....
method getEditorClass (line 280) | getEditorClass(editorElement: HotEditorElement): typeof Handsontable.e...
method makeEditorClass (line 294) | makeEditorClass(editorComponent: React.Component): typeof Handsontable...
method getGlobalRendererElement (line 341) | getGlobalRendererElement(): React.ReactElement {
method getGlobalEditorElement (line 353) | getGlobalEditorElement(children: React.ReactNode = this.props.children...
method createGlobalEditorPortal (line 362) | createGlobalEditorPortal(children: React.ReactNode = this.props.childr...
method createNewGlobalSettings (line 375) | createNewGlobalSettings(): Handsontable.GridSettings {
method displayAutoSizeWarning (line 405) | displayAutoSizeWarning(newGlobalSettings: Handsontable.GridSettings): ...
method setHotColumnSettings (line 419) | setHotColumnSettings(columnSettings: Handsontable.ColumnSettings, colu...
method handsontableBeforeRender (line 426) | handsontableBeforeRender(): void {
method handsontableAfterRender (line 433) | handsontableAfterRender(): void {
method updateHot (line 449) | private updateHot(newSettings: Handsontable.GridSettings): void {
method setPortalManagerRef (line 458) | private setPortalManagerRef(pmComponent: PortalManager): void {
method componentWillMount (line 471) | componentWillMount(): void {
method componentDidMount (line 479) | componentDidMount(): void {
method componentWillUpdate (line 502) | componentWillUpdate(nextProps: Readonly, nextState: Rea...
method componentDidUpdate (line 511) | componentDidUpdate(): void {
method componentWillUnmount (line 521) | componentWillUnmount(): void {
method render (line 529) | render(): React.ReactElement {
FILE: src/portalManager.tsx
class PortalManager (line 6) | class PortalManager extends React.Component<{}, {portals?: React.ReactPo...
method constructor (line 7) | constructor(props) {
method render (line 15) | render(): React.ReactNode {
FILE: src/settingsMapper.ts
class SettingsMapper (line 4) | class SettingsMapper {
method getSettings (line 11) | static getSettings(properties: HotTableProps): Handsontable.GridSettin...
FILE: src/types.tsx
type HotEditorElement (line 8) | type HotEditorElement = React.ReactElement<{}, ConnectedComponent {
method render (line 120) | render(): React.ReactElement {
class EditorComponent (line 129) | class EditorComponent extends BaseEditorComponent<{}, {value?: any}> {
method constructor (line 133) | constructor(props) {
method getValue (line 147) | getValue() {
method setValue (line 151) | setValue(value, callback) {
method setNewValue (line 157) | setNewValue() {
method open (line 163) | open() {
method close (line 167) | close() {
method render (line 171) | render(): React.ReactElement {
FILE: test/componentInternals.spec.tsx
class RendererComponent2 (line 29) | class RendererComponent2 extends React.Component {
method constructor (line 30) | constructor(props) {
method render (line 38) | render(): React.ReactElement {
method constructor (line 172) | constructor(props) {
method UNSAFE_componentWillMount (line 182) | UNSAFE_componentWillMount(): void {
method componentDidMount (line 187) | componentDidMount(): void {
method componentWillUnmount (line 192) | componentWillUnmount(): void {
method render (line 197) | render(): React.ReactElement {
class RendererEditor2 (line 102) | class RendererEditor2 extends BaseEditorComponent {
method constructor (line 103) | constructor(props) {
method render (line 111) | render(): React.ReactElement {
class RendererComponent2 (line 171) | class RendererComponent2 extends React.Component {
method constructor (line 30) | constructor(props) {
method render (line 38) | render(): React.ReactElement {
method constructor (line 172) | constructor(props) {
method UNSAFE_componentWillMount (line 182) | UNSAFE_componentWillMount(): void {
method componentDidMount (line 187) | componentDidMount(): void {
method componentWillUnmount (line 192) | componentWillUnmount(): void {
method render (line 197) | render(): React.ReactElement {
class EditorComponent2 (line 265) | class EditorComponent2 extends BaseEditorComponent {
method constructor (line 266) | constructor(props) {
method UNSAFE_componentWillMount (line 276) | UNSAFE_componentWillMount(): void {
method componentDidMount (line 281) | componentDidMount(): void {
method componentWillUnmount (line 286) | componentWillUnmount(): void {
method render (line 291) | render(): React.ReactElement {
FILE: test/hotColumn.spec.tsx
function RendererComponent2 (line 152) | function RendererComponent2(props) {
class WrapperComponent (line 158) | class WrapperComponent extends React.Component {
method constructor (line 159) | constructor(props) {
method render (line 175) | render() {
FILE: test/reactContext.spec.tsx
function RendererComponent2 (line 30) | function RendererComponent2() {
class EditorComponent2 (line 38) | class EditorComponent2 extends BaseEditorComponent {
method render (line 39) | render(): React.ReactElement {
class RendererComponent3 (line 48) | class RendererComponent3 extends React.Component {
method render (line 49) | render() {
class EditorComponent3 (line 59) | class EditorComponent3 extends React.Component {
method render (line 60) | render() {
FILE: test/reactHooks.spec.tsx
function HookEnabledRenderer (line 25) | function HookEnabledRenderer(props) {
FILE: test/reactLazy.spec.tsx
function RendererComponent2 (line 23) | function RendererComponent2(props) {
function SuspendedRenderer (line 33) | function SuspendedRenderer(props) {
FILE: test/reactMemo.spec.tsx
function RendererComponent2 (line 27) | function RendererComponent2 (props) {
FILE: test/reactPureComponent.spec.tsx
class RendererComponent2 (line 27) | class RendererComponent2 extends React.PureComponent {
method render (line 28) | render(): React.ReactElement {