├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── advanced-usage ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── angular-demo ├── .codesandbox │ └── tasks.json ├── angular.json ├── package-lock.json ├── package.json ├── sandbox.config.json ├── src │ ├── app │ │ ├── app-button │ │ │ ├── app-button.component.html │ │ │ ├── app-button.component.scss │ │ │ └── app-button.component.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── employees │ │ │ ├── employees-mock.ts │ │ │ ├── employees.helper.ts │ │ │ └── employees.service.ts │ │ ├── hf-actions │ │ │ ├── hf-actions.component.html │ │ │ ├── hf-actions.component.scss │ │ │ └── hf-actions.component.ts │ │ └── hf-table │ │ │ ├── hf-table.component.html │ │ │ ├── hf-table.component.scss │ │ │ └── hf-table.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.base.json └── tsconfig.json ├── basic-operations ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── actionConfig.js │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── basic-usage ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── batch-operations ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── built-in-functions ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── clipboard-operations ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── custom-functions ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── MyCustomPlugin.js │ ├── MyCustomPlugin.spec.js │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── date-time ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── momentHelper.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── i18n ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── formatCellValue.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── import-demo-cjs-node ├── index.js ├── package-lock.json └── package.json ├── import-demo-cjs-parcel ├── index.html ├── package-lock.json ├── package.json └── src │ ├── index.js │ └── styles.css ├── import-demo-cjs-webpack-5 ├── .babelrc.json ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── config │ ├── paths.js │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── postcss.config.js └── src │ ├── index.js │ ├── styles │ ├── _scaffolding.scss │ ├── _variables.scss │ └── index.scss │ └── template.html ├── import-demo-esm-angular ├── .editorconfig ├── .gitignore ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ └── app.component.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── import-demo-esm-angular16 ├── .editorconfig ├── .gitignore ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ └── app.component.ts │ ├── assets │ │ ├── location-pin.svg │ │ └── logo.svg │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── import-demo-esm-angular17 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── import-demo-esm-angular18 ├── .editorconfig ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ └── app.config.ts │ ├── index.html │ ├── main.ts │ └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── import-demo-esm-node ├── index.js ├── package-lock.json └── package.json ├── import-demo-esm-parcel ├── index.html ├── package-lock.json ├── package.json └── src │ ├── index.js │ └── styles.css ├── import-demo-esm-react ├── package-lock.json ├── package.json ├── public │ └── index.html ├── src │ ├── App.tsx │ ├── index.tsx │ ├── react-app-env.d.ts │ └── view │ │ ├── App │ │ └── App.scss │ │ └── EmployeeTable │ │ ├── EmployeeActions.scss │ │ ├── EmployeeActions.tsx │ │ ├── EmployeeTable.scss │ │ ├── EmployeeTable.tsx │ │ └── index.ts └── tsconfig.json ├── import-demo-esm-svelte ├── jsconfig.json ├── package-lock.json ├── package.json ├── src │ ├── app.d.ts │ ├── app.html │ └── routes │ │ └── +page.svelte ├── static │ └── favicon.png ├── svelte.config.js └── vite.config.js ├── import-demo-esm-webpack-4-babel ├── .editorconfig ├── .gitignore ├── README.md ├── config │ ├── babel.config.js │ ├── postcss.config.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── package-lock.json ├── package.json └── src │ ├── index.html │ ├── index.js │ ├── index.module.css │ └── main.css ├── import-demo-esm-webpack-4 ├── package-lock.json ├── package.json ├── src │ └── index.js └── webpack.config.js ├── import-demo-esm-webpack-5-babel ├── .babelrc.json ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── config │ ├── paths.js │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── postcss.config.js └── src │ ├── index.js │ ├── styles │ ├── _scaffolding.scss │ ├── _variables.scss │ └── index.scss │ └── template.html ├── import-demo-esm-webpack-5-ts-4 ├── package-lock.json ├── package.json ├── src │ └── index.ts ├── tsconfig.json └── webpack.config.js ├── import-demo-esm-webpack-5-ts-5 ├── package-lock.json ├── package.json ├── src │ └── index.ts ├── tsconfig.json └── webpack.config.js ├── import-demo-esm-webpack-5 ├── package-lock.json ├── package.json ├── src │ └── index.js └── webpack.config.js ├── import-demo-umd-browser ├── index.html ├── index.js ├── package-lock.json └── package.json ├── localizing-functions ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── mortgage-calculator ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── calculator.js │ ├── index.js │ └── styles.css ├── named-expressions-on-init-demo ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── formatCellValue.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── named-expressions ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── offset-multisheet ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── performance ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── formatCellValue.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── react-demo ├── package-lock.json ├── package.json ├── public │ └── index.html ├── sandbox.config.json ├── src │ ├── App.tsx │ ├── components │ │ └── Table │ │ │ ├── Cell.view.tsx │ │ │ ├── Head.view.tsx │ │ │ ├── Row.view.tsx │ │ │ ├── Table.view.tsx │ │ │ └── index.ts │ ├── index.tsx │ ├── lib │ │ └── employee │ │ │ ├── employee.context.ts │ │ │ ├── employee.hf.ts │ │ │ ├── employee.provider.tsx │ │ │ ├── fixtures │ │ │ └── data.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ ├── react-app-env.d.ts │ └── view │ │ ├── App │ │ └── App.scss │ │ └── EmployeeTable │ │ ├── EmployeeActions.scss │ │ ├── EmployeeActions.tsx │ │ ├── EmployeeTable.scss │ │ ├── EmployeeTable.tsx │ │ └── index.ts └── tsconfig.json ├── read-excel-file ├── package-lock.json ├── package.json ├── read-excel-file.js └── sample_file.xlsx ├── set-hyperformula-version.sh ├── sorting ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── sorting.js │ ├── styles.css │ └── ui.js ├── svelte-demo ├── jsconfig.json ├── package-lock.json ├── package.json ├── sandbox.config.json ├── src │ ├── app.d.ts │ ├── app.html │ └── routes │ │ ├── +page.svelte │ │ └── Hyperformula.svelte ├── static │ └── favicon.png ├── svelte.config.js └── vite.config.js ├── undo-redo ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── update-hyperformula-in-lock-files.sh ├── vanillajs-demo ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src │ ├── data.js │ ├── hyperformulaConfig.js │ ├── index.js │ ├── renderers.js │ ├── styles.css │ └── ui.js ├── vue-3-demo ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc.json ├── env.d.ts ├── index.html ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── sandbox.config.json ├── src │ ├── App.vue │ ├── components │ │ ├── ActionButton.vue │ │ └── HfTable.vue │ ├── lib │ │ ├── employees-data-provider.ts │ │ └── employees-data.const.ts │ └── main.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts └── xlookup-demo ├── index.html ├── package-lock.json ├── package.json ├── sandbox.config.json └── src ├── data.js ├── formatCellValue.js ├── hyperformulaConfig.js ├── index.js ├── renderers.js ├── styles.css └── ui.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "docwriter.hotkey.windows": "Alt + ." 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/README.md -------------------------------------------------------------------------------- /advanced-usage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/index.html -------------------------------------------------------------------------------- /advanced-usage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/package-lock.json -------------------------------------------------------------------------------- /advanced-usage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/package.json -------------------------------------------------------------------------------- /advanced-usage/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/sandbox.config.json -------------------------------------------------------------------------------- /advanced-usage/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/src/data.js -------------------------------------------------------------------------------- /advanced-usage/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /advanced-usage/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/src/index.js -------------------------------------------------------------------------------- /advanced-usage/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/src/renderers.js -------------------------------------------------------------------------------- /advanced-usage/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/src/styles.css -------------------------------------------------------------------------------- /advanced-usage/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/advanced-usage/src/ui.js -------------------------------------------------------------------------------- /angular-demo/.codesandbox/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/.codesandbox/tasks.json -------------------------------------------------------------------------------- /angular-demo/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/angular.json -------------------------------------------------------------------------------- /angular-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/package-lock.json -------------------------------------------------------------------------------- /angular-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/package.json -------------------------------------------------------------------------------- /angular-demo/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/sandbox.config.json -------------------------------------------------------------------------------- /angular-demo/src/app/app-button/app-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/app-button/app-button.component.html -------------------------------------------------------------------------------- /angular-demo/src/app/app-button/app-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/app-button/app-button.component.scss -------------------------------------------------------------------------------- /angular-demo/src/app/app-button/app-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/app-button/app-button.component.ts -------------------------------------------------------------------------------- /angular-demo/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/app.component.html -------------------------------------------------------------------------------- /angular-demo/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-demo/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-demo/src/app/employees/employees-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/employees/employees-mock.ts -------------------------------------------------------------------------------- /angular-demo/src/app/employees/employees.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/employees/employees.helper.ts -------------------------------------------------------------------------------- /angular-demo/src/app/employees/employees.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/employees/employees.service.ts -------------------------------------------------------------------------------- /angular-demo/src/app/hf-actions/hf-actions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/hf-actions/hf-actions.component.html -------------------------------------------------------------------------------- /angular-demo/src/app/hf-actions/hf-actions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-demo/src/app/hf-actions/hf-actions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/hf-actions/hf-actions.component.ts -------------------------------------------------------------------------------- /angular-demo/src/app/hf-table/hf-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/hf-table/hf-table.component.html -------------------------------------------------------------------------------- /angular-demo/src/app/hf-table/hf-table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/hf-table/hf-table.component.scss -------------------------------------------------------------------------------- /angular-demo/src/app/hf-table/hf-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/app/hf-table/hf-table.component.ts -------------------------------------------------------------------------------- /angular-demo/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-demo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-demo/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-demo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/favicon.ico -------------------------------------------------------------------------------- /angular-demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/index.html -------------------------------------------------------------------------------- /angular-demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/main.ts -------------------------------------------------------------------------------- /angular-demo/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/polyfills.ts -------------------------------------------------------------------------------- /angular-demo/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/src/styles.scss -------------------------------------------------------------------------------- /angular-demo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/tsconfig.app.json -------------------------------------------------------------------------------- /angular-demo/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/tsconfig.base.json -------------------------------------------------------------------------------- /angular-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/angular-demo/tsconfig.json -------------------------------------------------------------------------------- /basic-operations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/index.html -------------------------------------------------------------------------------- /basic-operations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/package-lock.json -------------------------------------------------------------------------------- /basic-operations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/package.json -------------------------------------------------------------------------------- /basic-operations/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/sandbox.config.json -------------------------------------------------------------------------------- /basic-operations/src/actionConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/src/actionConfig.js -------------------------------------------------------------------------------- /basic-operations/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/src/data.js -------------------------------------------------------------------------------- /basic-operations/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /basic-operations/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/src/index.js -------------------------------------------------------------------------------- /basic-operations/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/src/renderers.js -------------------------------------------------------------------------------- /basic-operations/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/src/styles.css -------------------------------------------------------------------------------- /basic-operations/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-operations/src/ui.js -------------------------------------------------------------------------------- /basic-usage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/index.html -------------------------------------------------------------------------------- /basic-usage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/package-lock.json -------------------------------------------------------------------------------- /basic-usage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/package.json -------------------------------------------------------------------------------- /basic-usage/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/sandbox.config.json -------------------------------------------------------------------------------- /basic-usage/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/src/data.js -------------------------------------------------------------------------------- /basic-usage/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /basic-usage/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/src/index.js -------------------------------------------------------------------------------- /basic-usage/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/src/renderers.js -------------------------------------------------------------------------------- /basic-usage/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/src/styles.css -------------------------------------------------------------------------------- /basic-usage/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/basic-usage/src/ui.js -------------------------------------------------------------------------------- /batch-operations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/index.html -------------------------------------------------------------------------------- /batch-operations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/package-lock.json -------------------------------------------------------------------------------- /batch-operations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/package.json -------------------------------------------------------------------------------- /batch-operations/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/sandbox.config.json -------------------------------------------------------------------------------- /batch-operations/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/src/data.js -------------------------------------------------------------------------------- /batch-operations/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /batch-operations/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/src/index.js -------------------------------------------------------------------------------- /batch-operations/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/src/renderers.js -------------------------------------------------------------------------------- /batch-operations/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/src/styles.css -------------------------------------------------------------------------------- /batch-operations/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/batch-operations/src/ui.js -------------------------------------------------------------------------------- /built-in-functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/index.html -------------------------------------------------------------------------------- /built-in-functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/package-lock.json -------------------------------------------------------------------------------- /built-in-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/package.json -------------------------------------------------------------------------------- /built-in-functions/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/sandbox.config.json -------------------------------------------------------------------------------- /built-in-functions/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/src/data.js -------------------------------------------------------------------------------- /built-in-functions/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /built-in-functions/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/src/index.js -------------------------------------------------------------------------------- /built-in-functions/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/src/renderers.js -------------------------------------------------------------------------------- /built-in-functions/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/built-in-functions/src/styles.css -------------------------------------------------------------------------------- /built-in-functions/src/ui.js: -------------------------------------------------------------------------------- 1 | export const ANIMATION_ENABLED = true; 2 | -------------------------------------------------------------------------------- /clipboard-operations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/index.html -------------------------------------------------------------------------------- /clipboard-operations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/package-lock.json -------------------------------------------------------------------------------- /clipboard-operations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/package.json -------------------------------------------------------------------------------- /clipboard-operations/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/sandbox.config.json -------------------------------------------------------------------------------- /clipboard-operations/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/src/data.js -------------------------------------------------------------------------------- /clipboard-operations/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /clipboard-operations/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/src/index.js -------------------------------------------------------------------------------- /clipboard-operations/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/src/renderers.js -------------------------------------------------------------------------------- /clipboard-operations/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/src/styles.css -------------------------------------------------------------------------------- /clipboard-operations/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/clipboard-operations/src/ui.js -------------------------------------------------------------------------------- /custom-functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/index.html -------------------------------------------------------------------------------- /custom-functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/package-lock.json -------------------------------------------------------------------------------- /custom-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/package.json -------------------------------------------------------------------------------- /custom-functions/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/sandbox.config.json -------------------------------------------------------------------------------- /custom-functions/src/MyCustomPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/src/MyCustomPlugin.js -------------------------------------------------------------------------------- /custom-functions/src/MyCustomPlugin.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/src/MyCustomPlugin.spec.js -------------------------------------------------------------------------------- /custom-functions/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/src/data.js -------------------------------------------------------------------------------- /custom-functions/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /custom-functions/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/src/index.js -------------------------------------------------------------------------------- /custom-functions/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/src/renderers.js -------------------------------------------------------------------------------- /custom-functions/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/src/styles.css -------------------------------------------------------------------------------- /custom-functions/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/custom-functions/src/ui.js -------------------------------------------------------------------------------- /date-time/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/index.html -------------------------------------------------------------------------------- /date-time/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/package-lock.json -------------------------------------------------------------------------------- /date-time/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/package.json -------------------------------------------------------------------------------- /date-time/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/sandbox.config.json -------------------------------------------------------------------------------- /date-time/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/src/data.js -------------------------------------------------------------------------------- /date-time/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /date-time/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/src/index.js -------------------------------------------------------------------------------- /date-time/src/momentHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/src/momentHelper.js -------------------------------------------------------------------------------- /date-time/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/src/renderers.js -------------------------------------------------------------------------------- /date-time/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/src/styles.css -------------------------------------------------------------------------------- /date-time/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/date-time/src/ui.js -------------------------------------------------------------------------------- /i18n/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/index.html -------------------------------------------------------------------------------- /i18n/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/package-lock.json -------------------------------------------------------------------------------- /i18n/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/package.json -------------------------------------------------------------------------------- /i18n/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/sandbox.config.json -------------------------------------------------------------------------------- /i18n/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/src/data.js -------------------------------------------------------------------------------- /i18n/src/formatCellValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/src/formatCellValue.js -------------------------------------------------------------------------------- /i18n/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /i18n/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/src/index.js -------------------------------------------------------------------------------- /i18n/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/src/renderers.js -------------------------------------------------------------------------------- /i18n/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/src/styles.css -------------------------------------------------------------------------------- /i18n/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/i18n/src/ui.js -------------------------------------------------------------------------------- /import-demo-cjs-node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-node/index.js -------------------------------------------------------------------------------- /import-demo-cjs-node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-node/package-lock.json -------------------------------------------------------------------------------- /import-demo-cjs-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-node/package.json -------------------------------------------------------------------------------- /import-demo-cjs-parcel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-parcel/index.html -------------------------------------------------------------------------------- /import-demo-cjs-parcel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-parcel/package-lock.json -------------------------------------------------------------------------------- /import-demo-cjs-parcel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-parcel/package.json -------------------------------------------------------------------------------- /import-demo-cjs-parcel/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-parcel/src/index.js -------------------------------------------------------------------------------- /import-demo-cjs-parcel/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-parcel/src/styles.css -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/.babelrc.json -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/.eslintrc.json -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | /node_modules 3 | /dist -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/.prettierrc.json -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/config/paths.js -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/config/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/config/webpack.common.js -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/config/webpack.dev.js -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/config/webpack.prod.js -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/jsconfig.json -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/package-lock.json -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/package.json -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/postcss.config.js -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/src/index.js -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/src/styles/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/src/styles/_scaffolding.scss -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/src/styles/_variables.scss -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/src/styles/index.scss -------------------------------------------------------------------------------- /import-demo-cjs-webpack-5/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-cjs-webpack-5/src/template.html -------------------------------------------------------------------------------- /import-demo-esm-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/.editorconfig -------------------------------------------------------------------------------- /import-demo-esm-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/.gitignore -------------------------------------------------------------------------------- /import-demo-esm-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/angular.json -------------------------------------------------------------------------------- /import-demo-esm-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/package.json -------------------------------------------------------------------------------- /import-demo-esm-angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-demo-esm-angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

Open console

2 | -------------------------------------------------------------------------------- /import-demo-esm-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /import-demo-esm-angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/src/favicon.ico -------------------------------------------------------------------------------- /import-demo-esm-angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/src/index.html -------------------------------------------------------------------------------- /import-demo-esm-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/src/main.ts -------------------------------------------------------------------------------- /import-demo-esm-angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/src/styles.css -------------------------------------------------------------------------------- /import-demo-esm-angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/tsconfig.app.json -------------------------------------------------------------------------------- /import-demo-esm-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/tsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular/tsconfig.spec.json -------------------------------------------------------------------------------- /import-demo-esm-angular16/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/.editorconfig -------------------------------------------------------------------------------- /import-demo-esm-angular16/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/.gitignore -------------------------------------------------------------------------------- /import-demo-esm-angular16/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/angular.json -------------------------------------------------------------------------------- /import-demo-esm-angular16/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-angular16/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/package.json -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

Open console

2 | -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/src/app/app.component.ts -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/assets/location-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/src/assets/location-pin.svg -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/src/assets/logo.svg -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/src/favicon.ico -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/src/index.html -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/src/main.ts -------------------------------------------------------------------------------- /import-demo-esm-angular16/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/src/styles.css -------------------------------------------------------------------------------- /import-demo-esm-angular16/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/tsconfig.app.json -------------------------------------------------------------------------------- /import-demo-esm-angular16/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/tsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-angular16/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular16/tsconfig.spec.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/.editorconfig -------------------------------------------------------------------------------- /import-demo-esm-angular17/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/.gitignore -------------------------------------------------------------------------------- /import-demo-esm-angular17/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/.vscode/extensions.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/.vscode/launch.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/.vscode/tasks.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/README.md -------------------------------------------------------------------------------- /import-demo-esm-angular17/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/angular.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/package.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

Open console

2 | -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/src/app/app.component.ts -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/src/app/app.config.ts -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/src/app/app.routes.ts -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/src/favicon.ico -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/src/index.html -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/src/main.ts -------------------------------------------------------------------------------- /import-demo-esm-angular17/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/src/styles.scss -------------------------------------------------------------------------------- /import-demo-esm-angular17/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/tsconfig.app.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/tsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-angular17/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular17/tsconfig.spec.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/.editorconfig -------------------------------------------------------------------------------- /import-demo-esm-angular18/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/.gitignore -------------------------------------------------------------------------------- /import-demo-esm-angular18/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/.vscode/extensions.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/.vscode/launch.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/.vscode/tasks.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/README.md -------------------------------------------------------------------------------- /import-demo-esm-angular18/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/angular.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/package.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/public/favicon.ico -------------------------------------------------------------------------------- /import-demo-esm-angular18/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import-demo-esm-angular18/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |

Open console

2 | -------------------------------------------------------------------------------- /import-demo-esm-angular18/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/src/app/app.component.ts -------------------------------------------------------------------------------- /import-demo-esm-angular18/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/src/app/app.config.ts -------------------------------------------------------------------------------- /import-demo-esm-angular18/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/src/index.html -------------------------------------------------------------------------------- /import-demo-esm-angular18/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/src/main.ts -------------------------------------------------------------------------------- /import-demo-esm-angular18/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/src/styles.scss -------------------------------------------------------------------------------- /import-demo-esm-angular18/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/tsconfig.app.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/tsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-angular18/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-angular18/tsconfig.spec.json -------------------------------------------------------------------------------- /import-demo-esm-node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-node/index.js -------------------------------------------------------------------------------- /import-demo-esm-node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-node/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-node/package.json -------------------------------------------------------------------------------- /import-demo-esm-parcel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-parcel/index.html -------------------------------------------------------------------------------- /import-demo-esm-parcel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-parcel/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-parcel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-parcel/package.json -------------------------------------------------------------------------------- /import-demo-esm-parcel/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-parcel/src/index.js -------------------------------------------------------------------------------- /import-demo-esm-parcel/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-parcel/src/styles.css -------------------------------------------------------------------------------- /import-demo-esm-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/package.json -------------------------------------------------------------------------------- /import-demo-esm-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/public/index.html -------------------------------------------------------------------------------- /import-demo-esm-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/src/App.tsx -------------------------------------------------------------------------------- /import-demo-esm-react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/src/index.tsx -------------------------------------------------------------------------------- /import-demo-esm-react/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /import-demo-esm-react/src/view/App/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/src/view/App/App.scss -------------------------------------------------------------------------------- /import-demo-esm-react/src/view/EmployeeTable/EmployeeActions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/src/view/EmployeeTable/EmployeeActions.scss -------------------------------------------------------------------------------- /import-demo-esm-react/src/view/EmployeeTable/EmployeeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/src/view/EmployeeTable/EmployeeActions.tsx -------------------------------------------------------------------------------- /import-demo-esm-react/src/view/EmployeeTable/EmployeeTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/src/view/EmployeeTable/EmployeeTable.scss -------------------------------------------------------------------------------- /import-demo-esm-react/src/view/EmployeeTable/EmployeeTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/src/view/EmployeeTable/EmployeeTable.tsx -------------------------------------------------------------------------------- /import-demo-esm-react/src/view/EmployeeTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/src/view/EmployeeTable/index.ts -------------------------------------------------------------------------------- /import-demo-esm-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-react/tsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-svelte/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/jsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-svelte/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/package.json -------------------------------------------------------------------------------- /import-demo-esm-svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/src/app.d.ts -------------------------------------------------------------------------------- /import-demo-esm-svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/src/app.html -------------------------------------------------------------------------------- /import-demo-esm-svelte/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/src/routes/+page.svelte -------------------------------------------------------------------------------- /import-demo-esm-svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/static/favicon.png -------------------------------------------------------------------------------- /import-demo-esm-svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/svelte.config.js -------------------------------------------------------------------------------- /import-demo-esm-svelte/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-svelte/vite.config.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/.editorconfig -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/.gitignore -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/README.md -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/config/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/config/babel.config.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/config/postcss.config.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/config/webpack.dev.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/config/webpack.prod.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/package.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/src/index.html -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/src/index.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/src/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/src/index.module.css -------------------------------------------------------------------------------- /import-demo-esm-webpack-4-babel/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4-babel/src/main.css -------------------------------------------------------------------------------- /import-demo-esm-webpack-4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4/package.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-4/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4/src/index.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-4/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-4/webpack.config.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/.babelrc.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/.eslintrc.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | /node_modules 3 | /dist -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/.prettierrc.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/config/paths.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/config/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/config/webpack.common.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/config/webpack.dev.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/config/webpack.prod.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/jsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/package.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/postcss.config.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/src/index.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/src/styles/_scaffolding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/src/styles/_scaffolding.scss -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/src/styles/_variables.scss -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/src/styles/index.scss -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-babel/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-babel/src/template.html -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-4/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-4/package.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-4/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-4/src/index.ts -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-4/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-4/tsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-4/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-4/webpack.config.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-5/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-5/package.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-5/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-5/src/index.ts -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-5/tsconfig.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5-ts-5/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5-ts-5/webpack.config.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5/package-lock.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5/package.json -------------------------------------------------------------------------------- /import-demo-esm-webpack-5/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5/src/index.js -------------------------------------------------------------------------------- /import-demo-esm-webpack-5/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-esm-webpack-5/webpack.config.js -------------------------------------------------------------------------------- /import-demo-umd-browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-umd-browser/index.html -------------------------------------------------------------------------------- /import-demo-umd-browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-umd-browser/index.js -------------------------------------------------------------------------------- /import-demo-umd-browser/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-umd-browser/package-lock.json -------------------------------------------------------------------------------- /import-demo-umd-browser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/import-demo-umd-browser/package.json -------------------------------------------------------------------------------- /localizing-functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/index.html -------------------------------------------------------------------------------- /localizing-functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/package-lock.json -------------------------------------------------------------------------------- /localizing-functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/package.json -------------------------------------------------------------------------------- /localizing-functions/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/sandbox.config.json -------------------------------------------------------------------------------- /localizing-functions/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/src/data.js -------------------------------------------------------------------------------- /localizing-functions/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /localizing-functions/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/src/index.js -------------------------------------------------------------------------------- /localizing-functions/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/src/renderers.js -------------------------------------------------------------------------------- /localizing-functions/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/src/styles.css -------------------------------------------------------------------------------- /localizing-functions/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/localizing-functions/src/ui.js -------------------------------------------------------------------------------- /mortgage-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/mortgage-calculator/index.html -------------------------------------------------------------------------------- /mortgage-calculator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/mortgage-calculator/package-lock.json -------------------------------------------------------------------------------- /mortgage-calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/mortgage-calculator/package.json -------------------------------------------------------------------------------- /mortgage-calculator/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/mortgage-calculator/sandbox.config.json -------------------------------------------------------------------------------- /mortgage-calculator/src/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/mortgage-calculator/src/calculator.js -------------------------------------------------------------------------------- /mortgage-calculator/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/mortgage-calculator/src/index.js -------------------------------------------------------------------------------- /mortgage-calculator/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/mortgage-calculator/src/styles.css -------------------------------------------------------------------------------- /named-expressions-on-init-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/index.html -------------------------------------------------------------------------------- /named-expressions-on-init-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/package-lock.json -------------------------------------------------------------------------------- /named-expressions-on-init-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/package.json -------------------------------------------------------------------------------- /named-expressions-on-init-demo/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/sandbox.config.json -------------------------------------------------------------------------------- /named-expressions-on-init-demo/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/src/data.js -------------------------------------------------------------------------------- /named-expressions-on-init-demo/src/formatCellValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/src/formatCellValue.js -------------------------------------------------------------------------------- /named-expressions-on-init-demo/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /named-expressions-on-init-demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/src/index.js -------------------------------------------------------------------------------- /named-expressions-on-init-demo/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/src/renderers.js -------------------------------------------------------------------------------- /named-expressions-on-init-demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/src/styles.css -------------------------------------------------------------------------------- /named-expressions-on-init-demo/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions-on-init-demo/src/ui.js -------------------------------------------------------------------------------- /named-expressions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/index.html -------------------------------------------------------------------------------- /named-expressions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/package-lock.json -------------------------------------------------------------------------------- /named-expressions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/package.json -------------------------------------------------------------------------------- /named-expressions/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/sandbox.config.json -------------------------------------------------------------------------------- /named-expressions/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/src/data.js -------------------------------------------------------------------------------- /named-expressions/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /named-expressions/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/src/index.js -------------------------------------------------------------------------------- /named-expressions/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/src/renderers.js -------------------------------------------------------------------------------- /named-expressions/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/src/styles.css -------------------------------------------------------------------------------- /named-expressions/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/named-expressions/src/ui.js -------------------------------------------------------------------------------- /offset-multisheet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/index.html -------------------------------------------------------------------------------- /offset-multisheet/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/package-lock.json -------------------------------------------------------------------------------- /offset-multisheet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/package.json -------------------------------------------------------------------------------- /offset-multisheet/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/sandbox.config.json -------------------------------------------------------------------------------- /offset-multisheet/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/src/data.js -------------------------------------------------------------------------------- /offset-multisheet/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /offset-multisheet/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/src/index.js -------------------------------------------------------------------------------- /offset-multisheet/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/src/renderers.js -------------------------------------------------------------------------------- /offset-multisheet/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/src/styles.css -------------------------------------------------------------------------------- /offset-multisheet/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/offset-multisheet/src/ui.js -------------------------------------------------------------------------------- /performance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/index.html -------------------------------------------------------------------------------- /performance/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/package-lock.json -------------------------------------------------------------------------------- /performance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/package.json -------------------------------------------------------------------------------- /performance/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/sandbox.config.json -------------------------------------------------------------------------------- /performance/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/src/data.js -------------------------------------------------------------------------------- /performance/src/formatCellValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/src/formatCellValue.js -------------------------------------------------------------------------------- /performance/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /performance/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/src/index.js -------------------------------------------------------------------------------- /performance/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/src/renderers.js -------------------------------------------------------------------------------- /performance/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/src/styles.css -------------------------------------------------------------------------------- /performance/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/performance/src/ui.js -------------------------------------------------------------------------------- /react-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/package-lock.json -------------------------------------------------------------------------------- /react-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/package.json -------------------------------------------------------------------------------- /react-demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/public/index.html -------------------------------------------------------------------------------- /react-demo/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/sandbox.config.json -------------------------------------------------------------------------------- /react-demo/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/App.tsx -------------------------------------------------------------------------------- /react-demo/src/components/Table/Cell.view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/components/Table/Cell.view.tsx -------------------------------------------------------------------------------- /react-demo/src/components/Table/Head.view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/components/Table/Head.view.tsx -------------------------------------------------------------------------------- /react-demo/src/components/Table/Row.view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/components/Table/Row.view.tsx -------------------------------------------------------------------------------- /react-demo/src/components/Table/Table.view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/components/Table/Table.view.tsx -------------------------------------------------------------------------------- /react-demo/src/components/Table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/components/Table/index.ts -------------------------------------------------------------------------------- /react-demo/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/index.tsx -------------------------------------------------------------------------------- /react-demo/src/lib/employee/employee.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/lib/employee/employee.context.ts -------------------------------------------------------------------------------- /react-demo/src/lib/employee/employee.hf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/lib/employee/employee.hf.ts -------------------------------------------------------------------------------- /react-demo/src/lib/employee/employee.provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/lib/employee/employee.provider.tsx -------------------------------------------------------------------------------- /react-demo/src/lib/employee/fixtures/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/lib/employee/fixtures/data.ts -------------------------------------------------------------------------------- /react-demo/src/lib/employee/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/lib/employee/index.ts -------------------------------------------------------------------------------- /react-demo/src/lib/employee/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/lib/employee/types.ts -------------------------------------------------------------------------------- /react-demo/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /react-demo/src/view/App/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/view/App/App.scss -------------------------------------------------------------------------------- /react-demo/src/view/EmployeeTable/EmployeeActions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/view/EmployeeTable/EmployeeActions.scss -------------------------------------------------------------------------------- /react-demo/src/view/EmployeeTable/EmployeeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/view/EmployeeTable/EmployeeActions.tsx -------------------------------------------------------------------------------- /react-demo/src/view/EmployeeTable/EmployeeTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/view/EmployeeTable/EmployeeTable.scss -------------------------------------------------------------------------------- /react-demo/src/view/EmployeeTable/EmployeeTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/view/EmployeeTable/EmployeeTable.tsx -------------------------------------------------------------------------------- /react-demo/src/view/EmployeeTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/src/view/EmployeeTable/index.ts -------------------------------------------------------------------------------- /react-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/react-demo/tsconfig.json -------------------------------------------------------------------------------- /read-excel-file/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/read-excel-file/package-lock.json -------------------------------------------------------------------------------- /read-excel-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/read-excel-file/package.json -------------------------------------------------------------------------------- /read-excel-file/read-excel-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/read-excel-file/read-excel-file.js -------------------------------------------------------------------------------- /read-excel-file/sample_file.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/read-excel-file/sample_file.xlsx -------------------------------------------------------------------------------- /set-hyperformula-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/set-hyperformula-version.sh -------------------------------------------------------------------------------- /sorting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/index.html -------------------------------------------------------------------------------- /sorting/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/package-lock.json -------------------------------------------------------------------------------- /sorting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/package.json -------------------------------------------------------------------------------- /sorting/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/sandbox.config.json -------------------------------------------------------------------------------- /sorting/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/src/data.js -------------------------------------------------------------------------------- /sorting/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /sorting/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/src/index.js -------------------------------------------------------------------------------- /sorting/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/src/renderers.js -------------------------------------------------------------------------------- /sorting/src/sorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/src/sorting.js -------------------------------------------------------------------------------- /sorting/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/src/styles.css -------------------------------------------------------------------------------- /sorting/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/sorting/src/ui.js -------------------------------------------------------------------------------- /svelte-demo/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/jsconfig.json -------------------------------------------------------------------------------- /svelte-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/package-lock.json -------------------------------------------------------------------------------- /svelte-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/package.json -------------------------------------------------------------------------------- /svelte-demo/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/sandbox.config.json -------------------------------------------------------------------------------- /svelte-demo/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/src/app.d.ts -------------------------------------------------------------------------------- /svelte-demo/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/src/app.html -------------------------------------------------------------------------------- /svelte-demo/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/src/routes/+page.svelte -------------------------------------------------------------------------------- /svelte-demo/src/routes/Hyperformula.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/src/routes/Hyperformula.svelte -------------------------------------------------------------------------------- /svelte-demo/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/static/favicon.png -------------------------------------------------------------------------------- /svelte-demo/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/svelte.config.js -------------------------------------------------------------------------------- /svelte-demo/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/svelte-demo/vite.config.js -------------------------------------------------------------------------------- /undo-redo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/index.html -------------------------------------------------------------------------------- /undo-redo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/package-lock.json -------------------------------------------------------------------------------- /undo-redo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/package.json -------------------------------------------------------------------------------- /undo-redo/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/sandbox.config.json -------------------------------------------------------------------------------- /undo-redo/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/src/data.js -------------------------------------------------------------------------------- /undo-redo/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /undo-redo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/src/index.js -------------------------------------------------------------------------------- /undo-redo/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/src/renderers.js -------------------------------------------------------------------------------- /undo-redo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/src/styles.css -------------------------------------------------------------------------------- /undo-redo/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/undo-redo/src/ui.js -------------------------------------------------------------------------------- /update-hyperformula-in-lock-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/update-hyperformula-in-lock-files.sh -------------------------------------------------------------------------------- /vanillajs-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/index.html -------------------------------------------------------------------------------- /vanillajs-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/package-lock.json -------------------------------------------------------------------------------- /vanillajs-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/package.json -------------------------------------------------------------------------------- /vanillajs-demo/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/sandbox.config.json -------------------------------------------------------------------------------- /vanillajs-demo/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/src/data.js -------------------------------------------------------------------------------- /vanillajs-demo/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /vanillajs-demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/src/index.js -------------------------------------------------------------------------------- /vanillajs-demo/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/src/renderers.js -------------------------------------------------------------------------------- /vanillajs-demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/src/styles.css -------------------------------------------------------------------------------- /vanillajs-demo/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vanillajs-demo/src/ui.js -------------------------------------------------------------------------------- /vue-3-demo/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/.eslintrc.cjs -------------------------------------------------------------------------------- /vue-3-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/.gitignore -------------------------------------------------------------------------------- /vue-3-demo/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/.prettierrc.json -------------------------------------------------------------------------------- /vue-3-demo/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /vue-3-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/index.html -------------------------------------------------------------------------------- /vue-3-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/package-lock.json -------------------------------------------------------------------------------- /vue-3-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/package.json -------------------------------------------------------------------------------- /vue-3-demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/public/favicon.ico -------------------------------------------------------------------------------- /vue-3-demo/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/sandbox.config.json -------------------------------------------------------------------------------- /vue-3-demo/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/src/App.vue -------------------------------------------------------------------------------- /vue-3-demo/src/components/ActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/src/components/ActionButton.vue -------------------------------------------------------------------------------- /vue-3-demo/src/components/HfTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/src/components/HfTable.vue -------------------------------------------------------------------------------- /vue-3-demo/src/lib/employees-data-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/src/lib/employees-data-provider.ts -------------------------------------------------------------------------------- /vue-3-demo/src/lib/employees-data.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/src/lib/employees-data.const.ts -------------------------------------------------------------------------------- /vue-3-demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/src/main.ts -------------------------------------------------------------------------------- /vue-3-demo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/tsconfig.app.json -------------------------------------------------------------------------------- /vue-3-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/tsconfig.json -------------------------------------------------------------------------------- /vue-3-demo/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/tsconfig.node.json -------------------------------------------------------------------------------- /vue-3-demo/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/vue-3-demo/vite.config.ts -------------------------------------------------------------------------------- /xlookup-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/index.html -------------------------------------------------------------------------------- /xlookup-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/package-lock.json -------------------------------------------------------------------------------- /xlookup-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/package.json -------------------------------------------------------------------------------- /xlookup-demo/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/sandbox.config.json -------------------------------------------------------------------------------- /xlookup-demo/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/src/data.js -------------------------------------------------------------------------------- /xlookup-demo/src/formatCellValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/src/formatCellValue.js -------------------------------------------------------------------------------- /xlookup-demo/src/hyperformulaConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/src/hyperformulaConfig.js -------------------------------------------------------------------------------- /xlookup-demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/src/index.js -------------------------------------------------------------------------------- /xlookup-demo/src/renderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/src/renderers.js -------------------------------------------------------------------------------- /xlookup-demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/src/styles.css -------------------------------------------------------------------------------- /xlookup-demo/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/hyperformula-demos/HEAD/xlookup-demo/src/ui.js --------------------------------------------------------------------------------