Skip to content

Commit

Permalink
Add missing import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
sequba committed May 14, 2024
1 parent 530c512 commit 78e8357
Show file tree
Hide file tree
Showing 158 changed files with 158 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

/* start:skip-in-preview */
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import {DetailedSettings} from 'handsontable/plugins/contextMenu';
import 'handsontable/dist/handsontable.full.min.css';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import {ExportFile} from 'handsontable/plugins'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import {ExportFile} from 'handsontable/plugins'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import {ExportFile} from 'handsontable/plugins'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example3');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example3');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example4');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import {BaseRenderer} from 'handsontable/renderers';
import 'handsontable/dist/handsontable.full.min.css';
import {CellProperties} from 'handsontable/settings'
import Core from 'handsontable/core'

const container = document.querySelector('#example1');
const data: (string | number)[][] = [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example3');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example4');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#exampleReadOnlyGrid');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Handsontable from 'handsontable';
import 'handsontable/dist/handsontable.full.min.css';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import {BaseRenderer} from 'handsontable/renderers';

const customStylesRenderer: BaseRenderer = (hotInstance, TD, ...rest) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example3');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

// generate an array of arrays with dummy data
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const selectOption = document.querySelector('#selectOption');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const output = document.querySelector('#output');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const button = document.querySelector('#set-data-action');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

// generate an array of arrays with dummy data
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import { BaseRenderer } from 'handsontable/renderers';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Handsontable from 'handsontable';
import 'handsontable/dist/handsontable.full.min.css';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import { BaseRenderer } from 'handsontable/renderers';

let isChecked = false;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const colors = ['yellow', 'red', 'orange and another color', 'green',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const colors = ['yellow', 'red', 'orange', 'green', 'blue',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example3');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import { BaseRenderer } from 'handsontable/renderers';
import Core from 'handsontable/core'

const container = document.querySelector('#example1');
const colors = ['yellow', 'red', 'orange', 'green', 'blue', 'gray', 'black', 'white'];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example3');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import numbro from 'numbro';
import deDE from 'numbro/languages/de-DE';
import 'handsontable/dist/handsontable.full.min.css';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import numbro from 'numbro';
import jaJP from 'numbro/languages/ja-JP';
import trTR from 'numbro/languages/tr-TR';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example3');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#example1');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#exampleCustomFilterButton');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#exampleCustomFilterButton2');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#exampleEnableFilterInColumns');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import {Filters} from 'handsontable/plugins'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// to import filtering as an individual module, see the 'Import the filtering module' section of this page
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#exampleFilterBasicDemo');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#exampleFilterDifferentTypes');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import {Filters} from 'handsontable/plugins'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import {Filters} from 'handsontable/plugins'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';
import {Filters} from 'handsontable/plugins'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#exampleServerSideFilter');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

const container = document.querySelector('#exampleShowFilterItemsOnly');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Handsontable from 'handsontable';
import Core from 'handsontable/core';
import 'handsontable/dist/handsontable.full.min.css';

// generate an array of arrays with dummy data
Expand Down

0 comments on commit 78e8357

Please sign in to comment.