├── .config ├── .eslintrc ├── .prettierrc.js ├── jest-setup.ts ├── jest.config.js ├── jest │ ├── mocks │ │ └── react-inlinesvg.tsx │ └── utils.js ├── tsconfig.json ├── types │ └── custom.d.ts └── webpack │ ├── constants.ts │ ├── utils.ts │ └── webpack.config.ts ├── .github └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── e2e.yml │ ├── main.yml │ └── release.yml ├── .gitignore ├── .prettierrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docker-compose.yml ├── eslint.config.mjs ├── img └── video.png ├── jest-setup.js ├── jest.config.js ├── package.json ├── playwright.config.ts ├── provisioning ├── dashboards │ ├── default.yaml │ ├── llm.json │ └── panels.json ├── datasources │ └── datasources.yaml └── plugins │ └── app.yaml ├── src ├── __mocks__ │ └── @grafana │ │ ├── scenes.ts │ │ └── ui.tsx ├── components │ ├── ConfigEditor │ │ ├── ConfigEditor.test.tsx │ │ ├── ConfigEditor.tsx │ │ └── index.ts │ ├── CustomValuesEditor │ │ ├── CustomValuesEditor.test.tsx │ │ ├── CustomValuesEditor.tsx │ │ └── index.ts │ ├── FieldsEditor │ │ ├── FieldsEditor.styles.ts │ │ ├── FieldsEditor.test.tsx │ │ ├── FieldsEditor.tsx │ │ └── index.ts │ ├── QueryEditor │ │ ├── QueryEditor.styles.ts │ │ ├── QueryEditor.test.tsx │ │ ├── QueryEditor.tsx │ │ └── index.ts │ ├── ValueEditor │ │ ├── ValueEditor.test.tsx │ │ ├── ValueEditor.tsx │ │ ├── components │ │ │ ├── BooleanEditor │ │ │ │ ├── BooleanEditor.styles.ts │ │ │ │ ├── BooleanEditor.test.tsx │ │ │ │ ├── BooleanEditor.tsx │ │ │ │ └── index.ts │ │ │ ├── ValueInput │ │ │ │ ├── ValueInput.styles.ts │ │ │ │ ├── ValueInput.test.tsx │ │ │ │ ├── ValueInput.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── ValuesEditor │ │ ├── ValuesEditor.style.ts │ │ ├── ValuesEditor.test.tsx │ │ ├── ValuesEditor.tsx │ │ └── index.ts │ └── index.ts ├── constants │ ├── datasource.ts │ ├── editor.ts │ ├── field.ts │ ├── index.ts │ └── tests.ts ├── datasource │ ├── datasource.test.ts │ ├── datasource.ts │ ├── index.ts │ ├── variable.test.ts │ └── variable.ts ├── img │ ├── dark.png │ └── logo.svg ├── module.test.ts ├── module.ts ├── plugin.json ├── types │ ├── datasource.ts │ ├── field.ts │ ├── frame.ts │ └── index.ts └── utils │ ├── code-parameters.ts │ ├── field.test.ts │ ├── field.ts │ ├── frame.test.ts │ ├── frame.ts │ ├── index.ts │ └── variable.ts ├── test ├── Dockerfile ├── panel.spec.ts └── utils │ ├── configEditor.ts │ ├── index.ts │ ├── panel.ts │ ├── queryEditor.ts │ └── selectors.ts └── tsconfig.json /.config/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/.eslintrc -------------------------------------------------------------------------------- /.config/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/.prettierrc.js -------------------------------------------------------------------------------- /.config/jest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/jest-setup.ts -------------------------------------------------------------------------------- /.config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/jest.config.js -------------------------------------------------------------------------------- /.config/jest/mocks/react-inlinesvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/jest/mocks/react-inlinesvg.tsx -------------------------------------------------------------------------------- /.config/jest/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/jest/utils.js -------------------------------------------------------------------------------- /.config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/tsconfig.json -------------------------------------------------------------------------------- /.config/types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/types/custom.d.ts -------------------------------------------------------------------------------- /.config/webpack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/webpack/constants.ts -------------------------------------------------------------------------------- /.config/webpack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/webpack/utils.ts -------------------------------------------------------------------------------- /.config/webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.config/webpack/webpack.config.ts -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/img/video.png -------------------------------------------------------------------------------- /jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/jest-setup.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /provisioning/dashboards/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/provisioning/dashboards/default.yaml -------------------------------------------------------------------------------- /provisioning/dashboards/llm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/provisioning/dashboards/llm.json -------------------------------------------------------------------------------- /provisioning/dashboards/panels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/provisioning/dashboards/panels.json -------------------------------------------------------------------------------- /provisioning/datasources/datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/provisioning/datasources/datasources.yaml -------------------------------------------------------------------------------- /provisioning/plugins/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/provisioning/plugins/app.yaml -------------------------------------------------------------------------------- /src/__mocks__/@grafana/scenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/__mocks__/@grafana/scenes.ts -------------------------------------------------------------------------------- /src/__mocks__/@grafana/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/__mocks__/@grafana/ui.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ConfigEditor/ConfigEditor.test.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ConfigEditor/ConfigEditor.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ConfigEditor'; 2 | -------------------------------------------------------------------------------- /src/components/CustomValuesEditor/CustomValuesEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/CustomValuesEditor/CustomValuesEditor.test.tsx -------------------------------------------------------------------------------- /src/components/CustomValuesEditor/CustomValuesEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/CustomValuesEditor/CustomValuesEditor.tsx -------------------------------------------------------------------------------- /src/components/CustomValuesEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CustomValuesEditor'; 2 | -------------------------------------------------------------------------------- /src/components/FieldsEditor/FieldsEditor.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/FieldsEditor/FieldsEditor.styles.ts -------------------------------------------------------------------------------- /src/components/FieldsEditor/FieldsEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/FieldsEditor/FieldsEditor.test.tsx -------------------------------------------------------------------------------- /src/components/FieldsEditor/FieldsEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/FieldsEditor/FieldsEditor.tsx -------------------------------------------------------------------------------- /src/components/FieldsEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FieldsEditor'; 2 | -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryEditor.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/QueryEditor/QueryEditor.styles.ts -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/QueryEditor/QueryEditor.test.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/QueryEditor/QueryEditor.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './QueryEditor'; 2 | -------------------------------------------------------------------------------- /src/components/ValueEditor/ValueEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/ValueEditor.test.tsx -------------------------------------------------------------------------------- /src/components/ValueEditor/ValueEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/ValueEditor.tsx -------------------------------------------------------------------------------- /src/components/ValueEditor/components/BooleanEditor/BooleanEditor.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/components/BooleanEditor/BooleanEditor.styles.ts -------------------------------------------------------------------------------- /src/components/ValueEditor/components/BooleanEditor/BooleanEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/components/BooleanEditor/BooleanEditor.test.tsx -------------------------------------------------------------------------------- /src/components/ValueEditor/components/BooleanEditor/BooleanEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/components/BooleanEditor/BooleanEditor.tsx -------------------------------------------------------------------------------- /src/components/ValueEditor/components/BooleanEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './BooleanEditor'; 2 | -------------------------------------------------------------------------------- /src/components/ValueEditor/components/ValueInput/ValueInput.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/components/ValueInput/ValueInput.styles.ts -------------------------------------------------------------------------------- /src/components/ValueEditor/components/ValueInput/ValueInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/components/ValueInput/ValueInput.test.tsx -------------------------------------------------------------------------------- /src/components/ValueEditor/components/ValueInput/ValueInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/components/ValueInput/ValueInput.tsx -------------------------------------------------------------------------------- /src/components/ValueEditor/components/ValueInput/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ValueInput'; 2 | -------------------------------------------------------------------------------- /src/components/ValueEditor/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValueEditor/components/index.ts -------------------------------------------------------------------------------- /src/components/ValueEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ValueEditor'; 2 | -------------------------------------------------------------------------------- /src/components/ValuesEditor/ValuesEditor.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValuesEditor/ValuesEditor.style.ts -------------------------------------------------------------------------------- /src/components/ValuesEditor/ValuesEditor.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValuesEditor/ValuesEditor.test.tsx -------------------------------------------------------------------------------- /src/components/ValuesEditor/ValuesEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/ValuesEditor/ValuesEditor.tsx -------------------------------------------------------------------------------- /src/components/ValuesEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ValuesEditor'; 2 | -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/constants/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/constants/datasource.ts -------------------------------------------------------------------------------- /src/constants/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/constants/editor.ts -------------------------------------------------------------------------------- /src/constants/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/constants/field.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/constants/tests.ts -------------------------------------------------------------------------------- /src/datasource/datasource.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/datasource/datasource.test.ts -------------------------------------------------------------------------------- /src/datasource/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/datasource/datasource.ts -------------------------------------------------------------------------------- /src/datasource/index.ts: -------------------------------------------------------------------------------- 1 | export * from './datasource'; 2 | -------------------------------------------------------------------------------- /src/datasource/variable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/datasource/variable.test.ts -------------------------------------------------------------------------------- /src/datasource/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/datasource/variable.ts -------------------------------------------------------------------------------- /src/img/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/img/dark.png -------------------------------------------------------------------------------- /src/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/img/logo.svg -------------------------------------------------------------------------------- /src/module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/module.test.ts -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/plugin.json -------------------------------------------------------------------------------- /src/types/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/types/datasource.ts -------------------------------------------------------------------------------- /src/types/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/types/field.ts -------------------------------------------------------------------------------- /src/types/frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/types/frame.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/code-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/utils/code-parameters.ts -------------------------------------------------------------------------------- /src/utils/field.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/utils/field.test.ts -------------------------------------------------------------------------------- /src/utils/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/utils/field.ts -------------------------------------------------------------------------------- /src/utils/frame.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/utils/frame.test.ts -------------------------------------------------------------------------------- /src/utils/frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/utils/frame.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/src/utils/variable.ts -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/panel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/test/panel.spec.ts -------------------------------------------------------------------------------- /test/utils/configEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/test/utils/configEditor.ts -------------------------------------------------------------------------------- /test/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/test/utils/index.ts -------------------------------------------------------------------------------- /test/utils/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/test/utils/panel.ts -------------------------------------------------------------------------------- /test/utils/queryEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/test/utils/queryEditor.ts -------------------------------------------------------------------------------- /test/utils/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/test/utils/selectors.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkovLabs/business-input/HEAD/tsconfig.json --------------------------------------------------------------------------------