├── .bumpversion.cfg ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── codeql-analysis.yml ├── .gitignore ├── .prettierrc ├── .tx └── config ├── Makefile ├── README.md ├── babel.config.js ├── i18n ├── concatTranslations.js └── translations │ ├── ar.json │ ├── bs.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── nb.json │ ├── nl.json │ ├── pt_BR.json │ ├── ru.json │ └── tr.json ├── package.json ├── src ├── __mocks__ │ ├── fileMock.js │ └── styleMock.js ├── components │ ├── EntityTable │ │ ├── EntityTable.tsx │ │ ├── TableEditor.scss │ │ ├── TableEditor.tsx │ │ ├── common.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── Histogram │ │ ├── Histogram.scss │ │ ├── Histogram.tsx │ │ └── index.ts │ ├── NetworkDiagram │ │ ├── GraphConfig.ts │ │ ├── GraphContext.ts │ │ ├── History.ts │ │ ├── NetworkDiagram.scss │ │ ├── NetworkDiagram.tsx │ │ ├── Viewport.ts │ │ ├── dialogs │ │ │ ├── GroupingCreateDialog.tsx │ │ │ ├── SettingsDialog.scss │ │ │ ├── SettingsDialog.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── layout │ │ │ ├── Edge.ts │ │ │ ├── GraphLayout.ts │ │ │ ├── Grouping.ts │ │ │ ├── Point.ts │ │ │ ├── Rectangle.ts │ │ │ ├── Settings.ts │ │ │ ├── Vertex.ts │ │ │ ├── index.ts │ │ │ └── tools │ │ │ │ ├── alignCircle.ts │ │ │ │ ├── alignHorizontal.ts │ │ │ │ ├── alignVertical.ts │ │ │ │ ├── arrangeTree.ts │ │ │ │ ├── centerAround.ts │ │ │ │ ├── common.ts │ │ │ │ ├── forceLayout.ts │ │ │ │ ├── getForceData.ts │ │ │ │ ├── index.ts │ │ │ │ ├── positionSelection.ts │ │ │ │ └── removeCollisions.ts │ │ ├── renderer │ │ │ ├── Canvas.tsx │ │ │ ├── EdgeDrawer.tsx │ │ │ ├── EdgeLabelRenderer.scss │ │ │ ├── EdgeLabelRenderer.tsx │ │ │ ├── EdgeRenderer.tsx │ │ │ ├── GraphRenderer.tsx │ │ │ ├── GroupingRenderer.tsx │ │ │ ├── IconRenderer.tsx │ │ │ ├── VertexLabelRenderer.test.tsx │ │ │ ├── VertexLabelRenderer.tsx │ │ │ ├── VertexRenderer.tsx │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── toolbox │ │ │ ├── EntityBulkEdit.tsx │ │ │ ├── EntityViewer.scss │ │ │ ├── EntityViewer.tsx │ │ │ ├── GroupingViewer.scss │ │ │ ├── GroupingViewer.tsx │ │ │ ├── SearchBox.scss │ │ │ ├── SearchBox.tsx │ │ │ ├── Sidebar.scss │ │ │ ├── Sidebar.tsx │ │ │ ├── TableView.scss │ │ │ ├── TableView.tsx │ │ │ ├── Toolbar.scss │ │ │ ├── Toolbar.tsx │ │ │ ├── ToolbarButtonGroup.tsx │ │ │ ├── VertexMenu.scss │ │ │ ├── VertexMenu.tsx │ │ │ └── index.ts │ │ └── utils │ │ │ ├── exportSvg.ts │ │ │ ├── filterVerticesByText.ts │ │ │ ├── index.ts │ │ │ ├── interactionModes.ts │ │ │ ├── wrapLines.test.ts │ │ │ └── wrapLines.ts │ ├── common │ │ ├── Dialog.scss │ │ ├── Dialog.test.tsx │ │ ├── Dialog.tsx │ │ ├── EdgeCreateDialog.test.tsx │ │ ├── EdgeCreateDialog.tsx │ │ ├── EditableProperty.scss │ │ ├── EditableProperty.tsx │ │ ├── EntityCreateDialog.scss │ │ ├── EntityCreateDialog.tsx │ │ ├── EntityList.scss │ │ ├── EntityList.tsx │ │ ├── EntityManager.ts │ │ ├── GraphLogo.ts │ │ ├── __snapshots__ │ │ │ ├── Dialog.test.tsx.snap │ │ │ └── EdgeCreateDialog.test.tsx.snap │ │ ├── index.ts │ │ └── types │ │ │ ├── EntityChanges.ts │ │ │ ├── SortType.ts │ │ │ └── index.ts │ └── index.ts ├── editors │ ├── ColorPicker.scss │ ├── ColorPicker.tsx │ ├── EdgeTypeSelect.tsx │ ├── EntitySelect.scss │ ├── EntitySelect.tsx │ ├── EnumValueSelect.tsx │ ├── PropertyEditor.tsx │ ├── PropertySelect.tsx │ ├── RadiusPicker.scss │ ├── RadiusPicker.tsx │ ├── SchemaSelect.tsx │ ├── TextEdit.scss │ ├── TextEdit.tsx │ ├── common.tsx │ └── index.tsx ├── embed │ ├── EmbeddedElement.tsx │ ├── EntityTableWrapper.tsx │ ├── HistogramWrapper.tsx │ ├── NetworkDiagramWrapper.tsx │ ├── common.ts │ ├── index-dev.ts │ ├── index.html │ ├── index.ts │ ├── renderEmbed.tsx │ ├── sample.ftm │ └── util.ts ├── index.scss ├── index.ts ├── setupTests.ts ├── themes.scss ├── translations │ └── translations.json ├── types │ ├── Count.scss │ ├── Count.tsx │ ├── Date.tsx │ ├── EdgeType.ts │ ├── Entity.tsx │ ├── EnumValue.tsx │ ├── FileSize.tsx │ ├── MIMEType.tsx │ ├── Numeric.scss │ ├── Numeric.tsx │ ├── Property.scss │ ├── Property.tsx │ ├── Schema.scss │ ├── Schema.tsx │ ├── Transliterate.scss │ ├── Transliterate.tsx │ ├── URL.scss │ ├── URL.tsx │ └── index.tsx ├── utils │ ├── ensureArray.ts │ ├── getHost.ts │ ├── highlightText.tsx │ ├── index.ts │ ├── isRtl.ts │ ├── matchText.ts │ ├── sortEntities.ts │ ├── toaster.ts │ ├── validate.ts │ ├── withTranslator.tsx │ └── wordList.tsx └── variables.scss ├── tsconfig.json ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | webpack.* 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | } 4 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/.tx/config -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/babel.config.js -------------------------------------------------------------------------------- /i18n/concatTranslations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/concatTranslations.js -------------------------------------------------------------------------------- /i18n/translations/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/ar.json -------------------------------------------------------------------------------- /i18n/translations/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/bs.json -------------------------------------------------------------------------------- /i18n/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/de.json -------------------------------------------------------------------------------- /i18n/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/en.json -------------------------------------------------------------------------------- /i18n/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/es.json -------------------------------------------------------------------------------- /i18n/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/fr.json -------------------------------------------------------------------------------- /i18n/translations/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/nb.json -------------------------------------------------------------------------------- /i18n/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/nl.json -------------------------------------------------------------------------------- /i18n/translations/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/pt_BR.json -------------------------------------------------------------------------------- /i18n/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/ru.json -------------------------------------------------------------------------------- /i18n/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/i18n/translations/tr.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/package.json -------------------------------------------------------------------------------- /src/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /src/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/EntityTable/EntityTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/EntityTable/EntityTable.tsx -------------------------------------------------------------------------------- /src/components/EntityTable/TableEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/EntityTable/TableEditor.scss -------------------------------------------------------------------------------- /src/components/EntityTable/TableEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/EntityTable/TableEditor.tsx -------------------------------------------------------------------------------- /src/components/EntityTable/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/EntityTable/common.ts -------------------------------------------------------------------------------- /src/components/EntityTable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/EntityTable/index.ts -------------------------------------------------------------------------------- /src/components/EntityTable/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/EntityTable/utils.ts -------------------------------------------------------------------------------- /src/components/Histogram/Histogram.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/Histogram/Histogram.scss -------------------------------------------------------------------------------- /src/components/Histogram/Histogram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/Histogram/Histogram.tsx -------------------------------------------------------------------------------- /src/components/Histogram/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/Histogram/index.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/GraphConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/GraphConfig.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/GraphContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/GraphContext.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/History.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/History.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/NetworkDiagram.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/NetworkDiagram.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/NetworkDiagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/NetworkDiagram.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/Viewport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/Viewport.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/dialogs/GroupingCreateDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/dialogs/GroupingCreateDialog.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/dialogs/SettingsDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/dialogs/SettingsDialog.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/dialogs/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/dialogs/SettingsDialog.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/dialogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/dialogs/index.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/index.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/Edge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/Edge.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/GraphLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/GraphLayout.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/Grouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/Grouping.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/Point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/Point.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/Rectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/Rectangle.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/Settings.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/Vertex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/Vertex.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/index.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/alignCircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/alignCircle.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/alignHorizontal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/alignHorizontal.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/alignVertical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/alignVertical.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/arrangeTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/arrangeTree.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/centerAround.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/centerAround.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/common.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/forceLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/forceLayout.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/getForceData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/getForceData.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/index.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/positionSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/positionSelection.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/layout/tools/removeCollisions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/layout/tools/removeCollisions.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/Canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/Canvas.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/EdgeDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/EdgeDrawer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/EdgeLabelRenderer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/EdgeLabelRenderer.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/EdgeLabelRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/EdgeLabelRenderer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/EdgeRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/EdgeRenderer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/GraphRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/GraphRenderer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/GroupingRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/GroupingRenderer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/IconRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/IconRenderer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/VertexLabelRenderer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/VertexLabelRenderer.test.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/VertexLabelRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/VertexLabelRenderer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/VertexRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/VertexRenderer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/index.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/renderer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/renderer/utils.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/EntityBulkEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/EntityBulkEdit.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/EntityViewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/EntityViewer.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/EntityViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/EntityViewer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/GroupingViewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/GroupingViewer.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/GroupingViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/GroupingViewer.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/SearchBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/SearchBox.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/SearchBox.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/Sidebar.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/TableView.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/TableView.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/TableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/TableView.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/Toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/Toolbar.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/Toolbar.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/ToolbarButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/ToolbarButtonGroup.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/VertexMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/VertexMenu.scss -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/VertexMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/VertexMenu.tsx -------------------------------------------------------------------------------- /src/components/NetworkDiagram/toolbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/toolbox/index.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/utils/exportSvg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/utils/exportSvg.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/utils/filterVerticesByText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/utils/filterVerticesByText.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/utils/index.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/utils/interactionModes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/utils/interactionModes.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/utils/wrapLines.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/utils/wrapLines.test.ts -------------------------------------------------------------------------------- /src/components/NetworkDiagram/utils/wrapLines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/NetworkDiagram/utils/wrapLines.ts -------------------------------------------------------------------------------- /src/components/common/Dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/Dialog.scss -------------------------------------------------------------------------------- /src/components/common/Dialog.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/Dialog.test.tsx -------------------------------------------------------------------------------- /src/components/common/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/Dialog.tsx -------------------------------------------------------------------------------- /src/components/common/EdgeCreateDialog.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EdgeCreateDialog.test.tsx -------------------------------------------------------------------------------- /src/components/common/EdgeCreateDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EdgeCreateDialog.tsx -------------------------------------------------------------------------------- /src/components/common/EditableProperty.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EditableProperty.scss -------------------------------------------------------------------------------- /src/components/common/EditableProperty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EditableProperty.tsx -------------------------------------------------------------------------------- /src/components/common/EntityCreateDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EntityCreateDialog.scss -------------------------------------------------------------------------------- /src/components/common/EntityCreateDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EntityCreateDialog.tsx -------------------------------------------------------------------------------- /src/components/common/EntityList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EntityList.scss -------------------------------------------------------------------------------- /src/components/common/EntityList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EntityList.tsx -------------------------------------------------------------------------------- /src/components/common/EntityManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/EntityManager.ts -------------------------------------------------------------------------------- /src/components/common/GraphLogo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/GraphLogo.ts -------------------------------------------------------------------------------- /src/components/common/__snapshots__/Dialog.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/__snapshots__/Dialog.test.tsx.snap -------------------------------------------------------------------------------- /src/components/common/__snapshots__/EdgeCreateDialog.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/__snapshots__/EdgeCreateDialog.test.tsx.snap -------------------------------------------------------------------------------- /src/components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/index.ts -------------------------------------------------------------------------------- /src/components/common/types/EntityChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/types/EntityChanges.ts -------------------------------------------------------------------------------- /src/components/common/types/SortType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/types/SortType.ts -------------------------------------------------------------------------------- /src/components/common/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/common/types/index.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/editors/ColorPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/ColorPicker.scss -------------------------------------------------------------------------------- /src/editors/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/ColorPicker.tsx -------------------------------------------------------------------------------- /src/editors/EdgeTypeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/EdgeTypeSelect.tsx -------------------------------------------------------------------------------- /src/editors/EntitySelect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/EntitySelect.scss -------------------------------------------------------------------------------- /src/editors/EntitySelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/EntitySelect.tsx -------------------------------------------------------------------------------- /src/editors/EnumValueSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/EnumValueSelect.tsx -------------------------------------------------------------------------------- /src/editors/PropertyEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/PropertyEditor.tsx -------------------------------------------------------------------------------- /src/editors/PropertySelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/PropertySelect.tsx -------------------------------------------------------------------------------- /src/editors/RadiusPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/RadiusPicker.scss -------------------------------------------------------------------------------- /src/editors/RadiusPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/RadiusPicker.tsx -------------------------------------------------------------------------------- /src/editors/SchemaSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/SchemaSelect.tsx -------------------------------------------------------------------------------- /src/editors/TextEdit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/TextEdit.scss -------------------------------------------------------------------------------- /src/editors/TextEdit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/TextEdit.tsx -------------------------------------------------------------------------------- /src/editors/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/common.tsx -------------------------------------------------------------------------------- /src/editors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/editors/index.tsx -------------------------------------------------------------------------------- /src/embed/EmbeddedElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/EmbeddedElement.tsx -------------------------------------------------------------------------------- /src/embed/EntityTableWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/EntityTableWrapper.tsx -------------------------------------------------------------------------------- /src/embed/HistogramWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/HistogramWrapper.tsx -------------------------------------------------------------------------------- /src/embed/NetworkDiagramWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/NetworkDiagramWrapper.tsx -------------------------------------------------------------------------------- /src/embed/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/common.ts -------------------------------------------------------------------------------- /src/embed/index-dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/index-dev.ts -------------------------------------------------------------------------------- /src/embed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/index.html -------------------------------------------------------------------------------- /src/embed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/index.ts -------------------------------------------------------------------------------- /src/embed/renderEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/renderEmbed.tsx -------------------------------------------------------------------------------- /src/embed/sample.ftm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/sample.ftm -------------------------------------------------------------------------------- /src/embed/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/embed/util.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/themes.scss -------------------------------------------------------------------------------- /src/translations/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/translations/translations.json -------------------------------------------------------------------------------- /src/types/Count.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Count.scss -------------------------------------------------------------------------------- /src/types/Count.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Count.tsx -------------------------------------------------------------------------------- /src/types/Date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Date.tsx -------------------------------------------------------------------------------- /src/types/EdgeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/EdgeType.ts -------------------------------------------------------------------------------- /src/types/Entity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Entity.tsx -------------------------------------------------------------------------------- /src/types/EnumValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/EnumValue.tsx -------------------------------------------------------------------------------- /src/types/FileSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/FileSize.tsx -------------------------------------------------------------------------------- /src/types/MIMEType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/MIMEType.tsx -------------------------------------------------------------------------------- /src/types/Numeric.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Numeric.scss -------------------------------------------------------------------------------- /src/types/Numeric.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Numeric.tsx -------------------------------------------------------------------------------- /src/types/Property.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Property.scss -------------------------------------------------------------------------------- /src/types/Property.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Property.tsx -------------------------------------------------------------------------------- /src/types/Schema.scss: -------------------------------------------------------------------------------- 1 | .SchemaIcon { 2 | color: inherit !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/types/Schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Schema.tsx -------------------------------------------------------------------------------- /src/types/Transliterate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Transliterate.scss -------------------------------------------------------------------------------- /src/types/Transliterate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/Transliterate.tsx -------------------------------------------------------------------------------- /src/types/URL.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/URL.scss -------------------------------------------------------------------------------- /src/types/URL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/URL.tsx -------------------------------------------------------------------------------- /src/types/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/types/index.tsx -------------------------------------------------------------------------------- /src/utils/ensureArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/ensureArray.ts -------------------------------------------------------------------------------- /src/utils/getHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/getHost.ts -------------------------------------------------------------------------------- /src/utils/highlightText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/highlightText.tsx -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/isRtl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/isRtl.ts -------------------------------------------------------------------------------- /src/utils/matchText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/matchText.ts -------------------------------------------------------------------------------- /src/utils/sortEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/sortEntities.ts -------------------------------------------------------------------------------- /src/utils/toaster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/toaster.ts -------------------------------------------------------------------------------- /src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/validate.ts -------------------------------------------------------------------------------- /src/utils/withTranslator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/withTranslator.tsx -------------------------------------------------------------------------------- /src/utils/wordList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/utils/wordList.tsx -------------------------------------------------------------------------------- /src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/src/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alephdata/react-ftm/HEAD/webpack.prod.js --------------------------------------------------------------------------------