├── .env ├── .firebaserc ├── .github └── workflows │ ├── production.yaml │ └── pullrequest.yaml ├── .gitignore ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── .yarnrc.yml ├── CLAUDE.md ├── CONTRIBUTING.md ├── GEMINI.md ├── LICENSE ├── README.md ├── assets └── keylabels │ ├── KeyLabelNordic.ts │ ├── KeyLabelPlover.ts │ ├── KeyLabelPlover_dvorak.ts │ └── KeyLabelSteno.ts ├── eslint.config.mjs ├── firebase.json ├── firestore.rules ├── package.json ├── public ├── 404.html ├── ads.txt ├── assets │ └── fonts │ │ └── RictyDiminished-Regular.ttf ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json ├── ogp_image.png └── robots.txt ├── src ├── @types │ └── intel-hex.d.ts ├── App.css ├── App.tsx ├── _variables.scss ├── actions │ ├── actions.ts │ ├── catalog.action.ts │ ├── firmware.action.ts │ ├── hid.action.ts │ ├── keyboards.actions.ts │ ├── macro.action.ts │ ├── meta.action.ts │ ├── organizations.actions.ts │ ├── storage.action.ts │ ├── utils.test.ts │ ├── utils.ts │ └── workbench.action.ts ├── assets │ ├── files │ │ └── build-info.json │ ├── images │ │ ├── catalog │ │ │ ├── flash-firmware-dialog-1.png │ │ │ ├── flash-firmware-dialog-2.png │ │ │ └── flash-firmware-dialog-3.png │ │ ├── documents │ │ │ ├── build-firmware-button.png │ │ │ ├── build-firmware-dialog.png │ │ │ ├── build-parameter-configuration-ui.png │ │ │ ├── build-result.png │ │ │ ├── built-code.png │ │ │ ├── code-editing-for-building-firmware.png │ │ │ ├── edit-firmware-file.png │ │ │ ├── firmware-file-registration.png │ │ │ ├── statistics.png │ │ │ └── turn-off-code-editing-feature.png │ │ ├── dummy │ │ │ └── kbd.png │ │ ├── keyboards │ │ │ └── product-name-field.png │ │ ├── logo.png │ │ └── top │ │ │ ├── browser-access.png │ │ │ ├── build-firmware.png │ │ │ ├── catalog.png │ │ │ ├── diff.png │ │ │ ├── firmware-writing.png │ │ │ ├── key-assign.png │ │ │ ├── key-layout.png │ │ │ ├── keymap.png │ │ │ ├── lighting.png │ │ │ ├── macro.png │ │ │ ├── predefined-keys.png │ │ │ ├── share-keymap.png │ │ │ ├── text-matrix.png │ │ │ └── xmas-logo.svg │ ├── keymaps │ │ ├── Aleth42Keymap.ts │ │ ├── Attack25Keymap.ts │ │ ├── BigAssEnterKeymap.ts │ │ ├── CorneliusKeymap.ts │ │ ├── CrkbdKeymap.ts │ │ ├── CtMacropadKeymap.ts │ │ ├── CtMacropadWithoutDefaultOptionKeymap.ts │ │ ├── ErgoDoxKeymap.ts │ │ ├── FrogNpKeymap.ts │ │ ├── GK6Keymap.ts │ │ ├── GiabalanaiKeymap.ts │ │ ├── HotdoxKeymap.ts │ │ ├── Iso105Keymap.ts │ │ ├── Jisplit89Keymap.ts │ │ ├── Kbd7sKeymap.ts │ │ ├── KeychronK14ProKeymap.ts │ │ ├── KeyopsSuccession.ts │ │ ├── KillerWhaleDuo.ts │ │ ├── LunakeyMiniKeymap.ts │ │ ├── Naked64SFKeymap.ts │ │ ├── OptionChoice2Keymap.ts │ │ ├── OptionChoiceKeymap.ts │ │ ├── SilverBullet44KaiKeymap.ts │ │ ├── VerticalSplit.ts │ │ └── ZincKeymap.ts │ └── locales │ │ ├── en.json │ │ └── ja.json ├── components │ ├── catalog │ │ ├── Catalog.container.ts │ │ ├── Catalog.tsx │ │ ├── content │ │ │ ├── Content.container.ts │ │ │ ├── Content.scss │ │ │ └── Content.tsx │ │ ├── header │ │ │ ├── Header.container.ts │ │ │ ├── Header.scss │ │ │ └── Header.tsx │ │ ├── keyboard │ │ │ ├── CatalogKeyboard.container.ts │ │ │ ├── CatalogKeyboard.scss │ │ │ ├── CatalogKeyboard.tsx │ │ │ ├── CatalogKeyboardHeader.scss │ │ │ ├── CatalogKeyboardHeader.tsx │ │ │ ├── build │ │ │ │ ├── BuildParametersDialog.container.ts │ │ │ │ ├── BuildParametersDialog.scss │ │ │ │ ├── BuildParametersDialog.tsx │ │ │ │ ├── CatalogBuild.container.ts │ │ │ │ ├── CatalogBuild.scss │ │ │ │ ├── CatalogBuild.tsx │ │ │ │ └── FirmwareBuildingTaskCard.tsx │ │ │ ├── firmware │ │ │ │ ├── CatalogFirmware.container.ts │ │ │ │ ├── CatalogFirmware.scss │ │ │ │ └── CatalogFirmware.tsx │ │ │ ├── introduction │ │ │ │ ├── CatalogIntroduction.container.ts │ │ │ │ ├── CatalogIntroduction.scss │ │ │ │ └── CatalogIntroduction.tsx │ │ │ └── keymap │ │ │ │ ├── CatalogKeymap.container.ts │ │ │ │ ├── CatalogKeymap.scss │ │ │ │ ├── CatalogKeymapList.container.ts │ │ │ │ ├── CatalogKeymapList.scss │ │ │ │ ├── CatalogKeymapList.tsx │ │ │ │ └── Catalogkeymap.tsx │ │ └── search │ │ │ ├── CatalogKeywordSearchDialog.container.ts │ │ │ ├── CatalogKeywordSearchDialog.tsx │ │ │ ├── CatalogSearch.container.ts │ │ │ ├── CatalogSearch.scss │ │ │ ├── CatalogSearch.tsx │ │ │ ├── CatalogSearchDialog.scss │ │ │ ├── CatalogSearchDialog.tsx │ │ │ ├── CatalogSearchForm.container.ts │ │ │ ├── CatalogSearchForm.scss │ │ │ └── CatalogSearchForm.tsx │ ├── common │ │ ├── anchortypography │ │ │ ├── AnchorTypography.scss │ │ │ └── AnchorTypography.tsx │ │ ├── auth │ │ │ ├── AuthProviderDialog.container.ts │ │ │ ├── AuthProviderDialog.scss │ │ │ ├── AuthProviderDialog.tsx │ │ │ ├── ProfileIcon.container.ts │ │ │ ├── ProfileIcon.scss │ │ │ └── ProfileIcon.tsx │ │ ├── circularprogress │ │ │ └── CircularProgressWithLabel.tsx │ │ ├── confirm │ │ │ └── ConfirmDialog.tsx │ │ ├── features │ │ │ └── FeatureList.tsx │ │ ├── firmware │ │ │ ├── FlashFirmwareDialog.container.ts │ │ │ ├── FlashFirmwareDialog.scss │ │ │ ├── FlashFirmwareDialog.tsx │ │ │ ├── UploadFirmwareDialog.container.ts │ │ │ ├── UploadFirmwareDialog.scss │ │ │ └── UploadFirmwareDialog.tsx │ │ ├── flash │ │ │ ├── FlashButton.scss │ │ │ └── FlashButton.tsx │ │ ├── footer │ │ │ ├── Footer.container.ts │ │ │ ├── Footer.scss │ │ │ └── Footer.tsx │ │ ├── hooks │ │ │ ├── DebounceHook.ts │ │ │ └── LocationChange.ts │ │ ├── icons │ │ │ ├── ImportFileIcon.tsx │ │ │ └── InfoIcon.tsx │ │ ├── keyboarddefformpart │ │ │ ├── KeyboardDefinitionFormPart.scss │ │ │ └── KeyboardDefinitionFormPart.tsx │ │ ├── layer │ │ │ └── LayerPagination.tsx │ │ ├── logo │ │ │ ├── Logo.scss │ │ │ └── Logo.tsx │ │ ├── ogp │ │ │ ├── OGP.container.ts │ │ │ └── OGP.tsx │ │ └── twitter │ │ │ └── TweetButton.tsx │ ├── configure │ │ ├── Configure.container.ts │ │ ├── Configure.scss │ │ ├── Configure.tsx │ │ ├── content │ │ │ ├── Content.container.ts │ │ │ ├── Content.scss │ │ │ └── Content.tsx │ │ ├── customkey │ │ │ ├── AutocompleteKeys.scss │ │ │ ├── AutocompleteKeys.tsx │ │ │ ├── CustomKey.scss │ │ │ ├── CustomKey.stories.tsx │ │ │ ├── CustomKey.tsx │ │ │ ├── Modifiers.scss │ │ │ ├── Modifiers.tsx │ │ │ ├── TabHoldTapKey.scss │ │ │ ├── TabHoldTapKey.tsx │ │ │ ├── TabKey.container.ts │ │ │ ├── TabKey.scss │ │ │ └── TabKey.tsx │ │ ├── header │ │ │ ├── Header.container.ts │ │ │ ├── Header.scss │ │ │ └── Header.tsx │ │ ├── importDef │ │ │ ├── ImportDefDialog.container.ts │ │ │ ├── ImportDefDialog.scss │ │ │ ├── ImportDefDialog.stories.tsx │ │ │ └── ImportDefDialog.tsx │ │ ├── info │ │ │ ├── InfoDialog.container.ts │ │ │ ├── InfoDialog.scss │ │ │ └── InfoDialog.tsx │ │ ├── keyboarddefform │ │ │ ├── KeyboardDefinitionForm.container.ts │ │ │ ├── KeyboardDefinitionForm.scss │ │ │ ├── KeyboardDefinitionForm.stories.tsx │ │ │ └── KeyboardDefinitionForm.tsx │ │ ├── keyboardlist │ │ │ ├── KeyboardList.container.ts │ │ │ ├── KeyboardList.scss │ │ │ └── KeyboardList.tsx │ │ ├── keycap │ │ │ ├── Keycap.container.ts │ │ │ ├── Keycap.scss │ │ │ └── Keycap.tsx │ │ ├── keycodekey │ │ │ ├── KeyGen.ts │ │ │ ├── KeycodeKey.container.ts │ │ │ ├── KeycodeKey.scss │ │ │ ├── KeycodeKey.tsx │ │ │ └── any │ │ │ │ ├── AddAnyKeycodeKey.container.ts │ │ │ │ ├── AddAnyKeycodeKey.tsx │ │ │ │ ├── AnyKeyEditDialog.scss │ │ │ │ └── AnyKeyEditDialog.tsx │ │ ├── keycodes │ │ │ ├── Keycodes.container.ts │ │ │ ├── Keycodes.scss │ │ │ ├── Keycodes.stories.scss │ │ │ ├── Keycodes.stories.tsx │ │ │ └── Keycodes.tsx │ │ ├── keydiff │ │ │ ├── Keydiff.container.ts │ │ │ ├── Keydiff.scss │ │ │ └── Keydiff.tsx │ │ ├── keyeventcapture │ │ │ ├── KeyEventCapture.container.ts │ │ │ ├── KeyEventCapture.scss │ │ │ └── KeyEventCapture.tsx │ │ ├── keymap │ │ │ ├── KeyboardView.tsx │ │ │ ├── Keymap.container.ts │ │ │ ├── Keymap.scss │ │ │ ├── Keymap.stories.tsx │ │ │ ├── Keymap.tsx │ │ │ ├── LabelLang.tsx │ │ │ └── Layer.tsx │ │ ├── keymapToolbar │ │ │ ├── KeymapToolbar.container.ts │ │ │ ├── KeymapToolbar.scss │ │ │ └── KeymapToolbar.tsx │ │ ├── keymaplist │ │ │ ├── KeymapListPopover.container.ts │ │ │ ├── KeymapListPopover.scss │ │ │ ├── KeymapListPopover.tsx │ │ │ ├── KeymapSaveDialog.container.ts │ │ │ ├── KeymapSaveDialog.scss │ │ │ └── KeymapSaveDialog.tsx │ │ ├── layoutoption │ │ │ ├── LayoutOptionComponentList.container.ts │ │ │ ├── LayoutOptionComponentList.scss │ │ │ ├── LayoutOptionComponentList.tsx │ │ │ ├── LayoutOptionPopover.container.ts │ │ │ ├── LayoutOptionPopover.scss │ │ │ └── LayoutOptionPopover.tsx │ │ ├── lighting │ │ │ ├── Lighting.scss │ │ │ ├── Lighting.tsx │ │ │ ├── LightingDialog.scss │ │ │ └── LightingDialog.tsx │ │ ├── macroeditor │ │ │ ├── DropKeyArea.tsx │ │ │ ├── MacroDropSpacer.tsx │ │ │ ├── MacroEditor.container.ts │ │ │ ├── MacroEditor.scss │ │ │ ├── MacroEditor.tsx │ │ │ ├── MacroKeyHold.tsx │ │ │ └── MacroKeyView.tsx │ │ ├── modals │ │ │ └── connection │ │ │ │ ├── ConnectionModal.scss │ │ │ │ └── ConnectionModal.tsx │ │ ├── nokeyboard │ │ │ └── NoKeyboard.tsx │ │ └── remap │ │ │ ├── Remap.container.ts │ │ │ ├── Remap.scss │ │ │ └── Remap.tsx │ ├── documents │ │ ├── Documents.container.ts │ │ ├── Documents.scss │ │ ├── Documents.tsx │ │ ├── build │ │ │ └── Build.tsx │ │ ├── ebizrule │ │ │ └── ElectricalBusinessRule.tsx │ │ ├── encoders │ │ │ └── Encoders.tsx │ │ ├── faq │ │ │ └── Faq.tsx │ │ ├── header │ │ │ ├── Header.container.ts │ │ │ ├── Header.scss │ │ │ └── Header.tsx │ │ ├── i18n │ │ │ └── Internationalization.tsx │ │ ├── index │ │ │ └── Index.tsx │ │ ├── reviewpolicy │ │ │ └── ReviewPolicy.tsx │ │ ├── statistics │ │ │ └── Statistics.tsx │ │ ├── support-code-editing │ │ │ └── SupportCodeEditing.tsx │ │ ├── support-qmk-022 │ │ │ └── SupportQmk022.tsx │ │ ├── termsofuse │ │ │ └── TermsOfUse.tsx │ │ └── workbench │ │ │ └── Workbench.tsx │ ├── htmltooltip │ │ └── HtmlTooltip.tsx │ ├── keyboards │ │ ├── KeyboardDefinitionManagement.container.ts │ │ ├── KeyboardDefinitionManagement.tsx │ │ ├── ValidationUtils.ts │ │ ├── agreement │ │ │ └── AgreementCheckbox.tsx │ │ ├── content │ │ │ ├── Content.container.ts │ │ │ ├── Content.scss │ │ │ └── Content.tsx │ │ ├── createdefinition │ │ │ ├── CreateDefinition.container.ts │ │ │ ├── CreateDefinition.scss │ │ │ └── CreateDefinition.tsx │ │ ├── definitionlist │ │ │ ├── DefinitionList.container.ts │ │ │ ├── DefinitionList.scss │ │ │ └── DefinitionList.tsx │ │ ├── editdefinition │ │ │ ├── EditDefinition.container.ts │ │ │ ├── EditDefinition.scss │ │ │ ├── EditDefinition.tsx │ │ │ ├── buildform │ │ │ │ ├── BuildForm.container.ts │ │ │ │ ├── BuildForm.scss │ │ │ │ └── BuildForm.tsx │ │ │ ├── catalogform │ │ │ │ ├── CatalogForm.container.ts │ │ │ │ ├── CatalogForm.scss │ │ │ │ ├── CatalogForm.tsx │ │ │ │ ├── StoreAddDialog.scss │ │ │ │ └── StoreAddDialog.tsx │ │ │ ├── definitionform │ │ │ │ ├── DefinitionForm.scss │ │ │ │ └── DefinitionForm.tsx │ │ │ ├── firmwareform │ │ │ │ ├── FirmwareForm.container.ts │ │ │ │ ├── FirmwareForm.scss │ │ │ │ └── FirmwareForm.tsx │ │ │ └── statistics │ │ │ │ ├── Statistics.container.ts │ │ │ │ ├── Statistics.scss │ │ │ │ └── Statistics.tsx │ │ └── header │ │ │ ├── Header.container.ts │ │ │ ├── Header.scss │ │ │ └── Header.tsx │ ├── organizations │ │ ├── OrganizationManagement.container.ts │ │ ├── OrganizationManagement.tsx │ │ ├── content │ │ │ ├── Content.container.ts │ │ │ ├── Content.scss │ │ │ └── Content.tsx │ │ ├── editorganization │ │ │ ├── EditOrganization.container.ts │ │ │ ├── EditOrganization.scss │ │ │ └── EditOrganization.tsx │ │ ├── header │ │ │ ├── Header.container.ts │ │ │ ├── Header.scss │ │ │ └── Header.tsx │ │ └── organizationlist │ │ │ ├── OrganizationList.container.ts │ │ │ ├── OrganizationList.scss │ │ │ └── OrganizationList.tsx │ ├── top │ │ ├── Top.container.ts │ │ ├── Top.scss │ │ └── Top.tsx │ └── workbench │ │ ├── Workbench.container.ts │ │ ├── Workbench.tsx │ │ ├── breadboard │ │ ├── Breadboard.container.ts │ │ ├── Breadboard.scss │ │ ├── Breadboard.tsx │ │ ├── BuildTaskHook.tsx │ │ └── UserPurchaseHook.ts │ │ ├── content │ │ ├── Content.container.ts │ │ ├── Content.scss │ │ └── Content.tsx │ │ ├── dialogs │ │ ├── CreateNewWorkbenchProjectFileDialog.tsx │ │ ├── EditWorkbenchProjectFileDialog.tsx │ │ ├── FileGenerationDialog.tsx │ │ ├── RemainingBuildPurchaseDialog.container.ts │ │ ├── RemainingBuildPurchaseDialog.tsx │ │ ├── RemainingBuildPurchaseHistoryDialog.container.tsx │ │ ├── RemainingBuildPurchaseHistoryDialog.tsx │ │ ├── WorkbenchProjectSettingsDialog.tsx │ │ └── WorkbenchProjectsDialog.tsx │ │ └── header │ │ ├── Header.container.ts │ │ ├── Header.scss │ │ └── Header.tsx ├── gen │ └── types │ │ └── KeyboardDefinition.ts ├── index.html ├── index.scss ├── index.tsx ├── logo.svg ├── models │ ├── KeyModel.test.ts │ ├── KeyModel.ts │ ├── KeyboardModel.test.ts │ └── KeyboardModel.ts ├── react-app-env.d.ts ├── reportWebVitals.ts ├── services │ ├── auth │ │ └── Auth.ts │ ├── build │ │ ├── FirmwareCodeParser.test.ts │ │ └── FirmwareCodeParser.ts │ ├── firmware │ │ ├── Bootloader.ts │ │ ├── Command.ts │ │ ├── FirmwareWriter.ts │ │ ├── FirmwareWriterWebApiImpl.ts │ │ ├── Types.ts │ │ ├── caterina │ │ │ ├── CaterinaBootloader.ts │ │ │ └── CaterinaCommands.ts │ │ ├── copy │ │ │ └── WebFileSystem.ts │ │ ├── dfu │ │ │ ├── AbstractDfuBootloader.ts │ │ │ ├── AtmelDfuBootloader.ts │ │ │ └── DfuBootloader.ts │ │ ├── serial │ │ │ ├── Serial.ts │ │ │ └── WebSerial.ts │ │ ├── ui │ │ │ ├── Firmware.scss │ │ │ └── Firmware.tsx │ │ └── usb │ │ │ ├── Usb.ts │ │ │ └── WebUsb.ts │ ├── github │ │ └── GitHub.ts │ ├── hid │ │ ├── Commands.ts │ │ ├── Composition.test.ts │ │ ├── Composition.ts │ │ ├── Constraints.ts │ │ ├── Hid.mock.ts │ │ ├── Hid.ts │ │ ├── KeyCategoryList.test.ts │ │ ├── KeyCategoryList.ts │ │ ├── KeycodeInfoList.ts │ │ ├── KeycodeInfoListBmp.ts │ │ ├── KeycodeList.ts │ │ ├── MacroCodes.ts │ │ ├── README.ja.md │ │ ├── WebHid.ts │ │ ├── assets │ │ │ └── keycodes.json │ │ ├── compositions │ │ │ ├── AsciiComposition.test.ts │ │ │ ├── AsciiComposition.ts │ │ │ ├── BasicComposition.test.ts │ │ │ ├── BasicComposition.ts │ │ │ ├── DefLayerComposition.test.ts │ │ │ ├── DefLayerComposition.ts │ │ │ ├── LayerModComposition.test.ts │ │ │ ├── LayerModComposition.ts │ │ │ ├── LayerTapComposition.test.ts │ │ │ ├── LayerTapComposition.ts │ │ │ ├── LayerTapToggleComposition.test.ts │ │ │ ├── LayerTapToggleComposition.ts │ │ │ ├── LooseKeycodeComposition.test.ts │ │ │ ├── LooseKeycodeComposition.ts │ │ │ ├── MacroComposition.test.ts │ │ │ ├── MacroComposition.ts │ │ │ ├── ModTapComposition.test.ts │ │ │ ├── ModTapComposition.ts │ │ │ ├── ModsComposition.test.ts │ │ │ ├── ModsComposition.ts │ │ │ ├── MomentaryComposition.test.ts │ │ │ ├── MomentaryComposition.ts │ │ │ ├── OneShotLayerComposition.test.ts │ │ │ ├── OneShotLayerComposition.ts │ │ │ ├── OneShotModComposition.test.ts │ │ │ ├── OneShotModComposition.ts │ │ │ ├── SwapHandsComposition.test.ts │ │ │ ├── SwapHandsComposition.ts │ │ │ ├── TapDanceComposition.test.ts │ │ │ ├── TapDanceComposition.ts │ │ │ ├── ToComposition.test.ts │ │ │ ├── ToComposition.ts │ │ │ ├── ToggleLayerComposition.test.ts │ │ │ ├── ToggleLayerComposition.ts │ │ │ ├── UnicodeComposition.test.ts │ │ │ ├── UnicodeComposition.ts │ │ │ ├── ViaUserKeyComposition.test.ts │ │ │ └── ViaUserKeyComposition.ts │ │ └── ui │ │ │ ├── Hid.scss │ │ │ └── Hid.tsx │ ├── labellang │ │ ├── AsciiLabel.ts │ │ ├── AsciiLabelBelgian.ts │ │ ├── AsciiLabelBepo.ts │ │ ├── AsciiLabelBr_abnt2.ts │ │ ├── AsciiLabelCanadian_multilingual.ts │ │ ├── AsciiLabelColemak.ts │ │ ├── AsciiLabelCroatian.ts │ │ ├── AsciiLabelCzech.ts │ │ ├── AsciiLabelDanish.ts │ │ ├── AsciiLabelDvorak.ts │ │ ├── AsciiLabelDvorak_fr.ts │ │ ├── AsciiLabelDvp.ts │ │ ├── AsciiLabelEstonian.ts │ │ ├── AsciiLabelFinnish.ts │ │ ├── AsciiLabelFr_ch.ts │ │ ├── AsciiLabelFrench.ts │ │ ├── AsciiLabelFrench_afnor.ts │ │ ├── AsciiLabelFrench_osx.ts │ │ ├── AsciiLabelGerman.ts │ │ ├── AsciiLabelGerman_ch.ts │ │ ├── AsciiLabelGerman_osx.ts │ │ ├── AsciiLabelHungarian.ts │ │ ├── AsciiLabelIcelandic.ts │ │ ├── AsciiLabelItalian.ts │ │ ├── AsciiLabelItalian_osx_ansi.ts │ │ ├── AsciiLabelItalian_osx_iso.ts │ │ ├── AsciiLabelJp.ts │ │ ├── AsciiLabelLatvian.ts │ │ ├── AsciiLabelLithuanian_azerty.ts │ │ ├── AsciiLabelLithuanian_qwerty.ts │ │ ├── AsciiLabelNorman.ts │ │ ├── AsciiLabelNorwegian.ts │ │ ├── AsciiLabelPortuguese.ts │ │ ├── AsciiLabelPortuguese_osx_iso.ts │ │ ├── AsciiLabelRomanian.ts │ │ ├── AsciiLabelSerbian_latin.ts │ │ ├── AsciiLabelSlovak.ts │ │ ├── AsciiLabelSlovenian.ts │ │ ├── AsciiLabelSpanish.ts │ │ ├── AsciiLabelSpanish_dvorak.ts │ │ ├── AsciiLabelSwedish.ts │ │ ├── AsciiLabelTurkish_f.ts │ │ ├── AsciiLabelTurkish_q.ts │ │ ├── AsciiLabelUk.ts │ │ ├── AsciiLabelUs_international.ts │ │ ├── AsciiLabelWorkman.ts │ │ ├── AsciiLabelWorkman_zxcvm.ts │ │ ├── KeyLabel.ts │ │ ├── KeyLabelBelgian.ts │ │ ├── KeyLabelBepo.ts │ │ ├── KeyLabelBr_abnt2.ts │ │ ├── KeyLabelCanadian_multilingual.ts │ │ ├── KeyLabelColemak.ts │ │ ├── KeyLabelCroatian.ts │ │ ├── KeyLabelCzech.ts │ │ ├── KeyLabelDanish.ts │ │ ├── KeyLabelDvorak.ts │ │ ├── KeyLabelDvorak_fr.ts │ │ ├── KeyLabelDvp.ts │ │ ├── KeyLabelEstonian.ts │ │ ├── KeyLabelFinnish.ts │ │ ├── KeyLabelFr_ch.ts │ │ ├── KeyLabelFrench.ts │ │ ├── KeyLabelFrench_afnor.ts │ │ ├── KeyLabelFrench_osx.ts │ │ ├── KeyLabelGerman.ts │ │ ├── KeyLabelGerman_ch.ts │ │ ├── KeyLabelGerman_osx.ts │ │ ├── KeyLabelGreek.ts │ │ ├── KeyLabelHebrew.ts │ │ ├── KeyLabelHungarian.ts │ │ ├── KeyLabelIcelandic.ts │ │ ├── KeyLabelIrish.ts │ │ ├── KeyLabelItalian.ts │ │ ├── KeyLabelItalian_osx_ansi.ts │ │ ├── KeyLabelItalian_osx_iso.ts │ │ ├── KeyLabelJp.ts │ │ ├── KeyLabelKorean.ts │ │ ├── KeyLabelLangs.ts │ │ ├── KeyLabelLatvian.ts │ │ ├── KeyLabelLithuanian_azerty.ts │ │ ├── KeyLabelLithuanian_qwerty.ts │ │ ├── KeyLabelNeo2.ts │ │ ├── KeyLabelNorman.ts │ │ ├── KeyLabelNorwegian.ts │ │ ├── KeyLabelPolish.ts │ │ ├── KeyLabelPortuguese.ts │ │ ├── KeyLabelPortuguese_osx_iso.ts │ │ ├── KeyLabelRomanian.ts │ │ ├── KeyLabelRussian.ts │ │ ├── KeyLabelSerbian.ts │ │ ├── KeyLabelSerbian_latin.ts │ │ ├── KeyLabelSlovak.ts │ │ ├── KeyLabelSlovenian.ts │ │ ├── KeyLabelSpanish.ts │ │ ├── KeyLabelSpanish_dvorak.ts │ │ ├── KeyLabelSwedish.ts │ │ ├── KeyLabelTurkish_f.ts │ │ ├── KeyLabelTurkish_q.ts │ │ ├── KeyLabelUk.ts │ │ ├── KeyLabelUs.ts │ │ ├── KeyLabelUs_international.ts │ │ ├── KeyLabelWorkman.ts │ │ └── KeyLabelWorkman_zxcvm.ts │ ├── macro │ │ ├── Macro.test.ts │ │ ├── Macro.ts │ │ └── README.md │ ├── pdf │ │ ├── KeymapPdfGenerator.ts │ │ └── test.pdf │ ├── provider │ │ ├── Firebase.test.ts │ │ ├── Firebase.ts │ │ └── FirebaseConfiguration.ts │ ├── storage │ │ ├── Storage.ts │ │ ├── Validator.test.ts │ │ ├── Validator.ts │ │ └── assets │ │ │ └── keyboard-definition-schema.json │ └── workbench │ │ ├── FileGenerator.integration.test.ts │ │ ├── FileGenerator.test.ts │ │ ├── FileGenerator.ts │ │ ├── constants │ │ ├── LayoutConstants.ts │ │ └── McuConstants.ts │ │ ├── templates │ │ ├── KeyboardJsonTemplate.test.ts │ │ ├── KeyboardJsonTemplate.ts │ │ ├── KeymapCTemplate.test.ts │ │ ├── KeymapCTemplate.ts │ │ └── template_keyboard_json.json │ │ └── types │ │ └── FileGenerationTypes.ts ├── store │ ├── reducers.ts │ └── state.ts ├── types.ts └── utils │ ├── ArrayUtils.test.ts │ ├── ArrayUtils.ts │ ├── AuthUtils.ts │ ├── DisplayUtils.ts │ ├── GoogleAnalytics.ts │ ├── NumberUtils.test.ts │ ├── NumberUtils.ts │ ├── ObjectUtils.ts │ └── StringUtils.ts ├── test.pdf ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/workflows/production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/.github/workflows/production.yaml -------------------------------------------------------------------------------- /.github/workflows/pullrequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/.github/workflows/pullrequest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- 1 | export const parameters = { 2 | actions: { argTypesRegex: '^on[A-Z].*' }, 3 | }; 4 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/GEMINI.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/README.md -------------------------------------------------------------------------------- /assets/keylabels/KeyLabelNordic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/assets/keylabels/KeyLabelNordic.ts -------------------------------------------------------------------------------- /assets/keylabels/KeyLabelPlover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/assets/keylabels/KeyLabelPlover.ts -------------------------------------------------------------------------------- /assets/keylabels/KeyLabelPlover_dvorak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/assets/keylabels/KeyLabelPlover_dvorak.ts -------------------------------------------------------------------------------- /assets/keylabels/KeyLabelSteno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/assets/keylabels/KeyLabelSteno.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/firestore.rules -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/public/404.html -------------------------------------------------------------------------------- /public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-9024491826638995, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /public/assets/fonts/RictyDiminished-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/public/assets/fonts/RictyDiminished-Regular.ttf -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/ogp_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/public/ogp_image.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/@types/intel-hex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/@types/intel-hex.d.ts -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/_variables.scss -------------------------------------------------------------------------------- /src/actions/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/actions.ts -------------------------------------------------------------------------------- /src/actions/catalog.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/catalog.action.ts -------------------------------------------------------------------------------- /src/actions/firmware.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/firmware.action.ts -------------------------------------------------------------------------------- /src/actions/hid.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/hid.action.ts -------------------------------------------------------------------------------- /src/actions/keyboards.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/keyboards.actions.ts -------------------------------------------------------------------------------- /src/actions/macro.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/macro.action.ts -------------------------------------------------------------------------------- /src/actions/meta.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/meta.action.ts -------------------------------------------------------------------------------- /src/actions/organizations.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/organizations.actions.ts -------------------------------------------------------------------------------- /src/actions/storage.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/storage.action.ts -------------------------------------------------------------------------------- /src/actions/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/utils.test.ts -------------------------------------------------------------------------------- /src/actions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/utils.ts -------------------------------------------------------------------------------- /src/actions/workbench.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/actions/workbench.action.ts -------------------------------------------------------------------------------- /src/assets/files/build-info.json: -------------------------------------------------------------------------------- 1 | { "buildNumber": 302 } 2 | -------------------------------------------------------------------------------- /src/assets/images/catalog/flash-firmware-dialog-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/catalog/flash-firmware-dialog-1.png -------------------------------------------------------------------------------- /src/assets/images/catalog/flash-firmware-dialog-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/catalog/flash-firmware-dialog-2.png -------------------------------------------------------------------------------- /src/assets/images/catalog/flash-firmware-dialog-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/catalog/flash-firmware-dialog-3.png -------------------------------------------------------------------------------- /src/assets/images/documents/build-firmware-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/build-firmware-button.png -------------------------------------------------------------------------------- /src/assets/images/documents/build-firmware-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/build-firmware-dialog.png -------------------------------------------------------------------------------- /src/assets/images/documents/build-parameter-configuration-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/build-parameter-configuration-ui.png -------------------------------------------------------------------------------- /src/assets/images/documents/build-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/build-result.png -------------------------------------------------------------------------------- /src/assets/images/documents/built-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/built-code.png -------------------------------------------------------------------------------- /src/assets/images/documents/code-editing-for-building-firmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/code-editing-for-building-firmware.png -------------------------------------------------------------------------------- /src/assets/images/documents/edit-firmware-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/edit-firmware-file.png -------------------------------------------------------------------------------- /src/assets/images/documents/firmware-file-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/firmware-file-registration.png -------------------------------------------------------------------------------- /src/assets/images/documents/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/statistics.png -------------------------------------------------------------------------------- /src/assets/images/documents/turn-off-code-editing-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/documents/turn-off-code-editing-feature.png -------------------------------------------------------------------------------- /src/assets/images/dummy/kbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/dummy/kbd.png -------------------------------------------------------------------------------- /src/assets/images/keyboards/product-name-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/keyboards/product-name-field.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/top/browser-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/browser-access.png -------------------------------------------------------------------------------- /src/assets/images/top/build-firmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/build-firmware.png -------------------------------------------------------------------------------- /src/assets/images/top/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/catalog.png -------------------------------------------------------------------------------- /src/assets/images/top/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/diff.png -------------------------------------------------------------------------------- /src/assets/images/top/firmware-writing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/firmware-writing.png -------------------------------------------------------------------------------- /src/assets/images/top/key-assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/key-assign.png -------------------------------------------------------------------------------- /src/assets/images/top/key-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/key-layout.png -------------------------------------------------------------------------------- /src/assets/images/top/keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/keymap.png -------------------------------------------------------------------------------- /src/assets/images/top/lighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/lighting.png -------------------------------------------------------------------------------- /src/assets/images/top/macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/macro.png -------------------------------------------------------------------------------- /src/assets/images/top/predefined-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/predefined-keys.png -------------------------------------------------------------------------------- /src/assets/images/top/share-keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/share-keymap.png -------------------------------------------------------------------------------- /src/assets/images/top/text-matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/text-matrix.png -------------------------------------------------------------------------------- /src/assets/images/top/xmas-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/images/top/xmas-logo.svg -------------------------------------------------------------------------------- /src/assets/keymaps/Aleth42Keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/Aleth42Keymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/Attack25Keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/Attack25Keymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/BigAssEnterKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/BigAssEnterKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/CorneliusKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/CorneliusKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/CrkbdKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/CrkbdKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/CtMacropadKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/CtMacropadKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/CtMacropadWithoutDefaultOptionKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/CtMacropadWithoutDefaultOptionKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/ErgoDoxKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/ErgoDoxKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/FrogNpKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/FrogNpKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/GK6Keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/GK6Keymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/GiabalanaiKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/GiabalanaiKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/HotdoxKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/HotdoxKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/Iso105Keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/Iso105Keymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/Jisplit89Keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/Jisplit89Keymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/Kbd7sKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/Kbd7sKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/KeychronK14ProKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/KeychronK14ProKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/KeyopsSuccession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/KeyopsSuccession.ts -------------------------------------------------------------------------------- /src/assets/keymaps/KillerWhaleDuo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/KillerWhaleDuo.ts -------------------------------------------------------------------------------- /src/assets/keymaps/LunakeyMiniKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/LunakeyMiniKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/Naked64SFKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/Naked64SFKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/OptionChoice2Keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/OptionChoice2Keymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/OptionChoiceKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/OptionChoiceKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/SilverBullet44KaiKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/SilverBullet44KaiKeymap.ts -------------------------------------------------------------------------------- /src/assets/keymaps/VerticalSplit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/VerticalSplit.ts -------------------------------------------------------------------------------- /src/assets/keymaps/ZincKeymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/keymaps/ZincKeymap.ts -------------------------------------------------------------------------------- /src/assets/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/locales/en.json -------------------------------------------------------------------------------- /src/assets/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/assets/locales/ja.json -------------------------------------------------------------------------------- /src/components/catalog/Catalog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/Catalog.container.ts -------------------------------------------------------------------------------- /src/components/catalog/Catalog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/Catalog.tsx -------------------------------------------------------------------------------- /src/components/catalog/content/Content.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/content/Content.container.ts -------------------------------------------------------------------------------- /src/components/catalog/content/Content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/content/Content.scss -------------------------------------------------------------------------------- /src/components/catalog/content/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/content/Content.tsx -------------------------------------------------------------------------------- /src/components/catalog/header/Header.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/header/Header.container.ts -------------------------------------------------------------------------------- /src/components/catalog/header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/header/Header.scss -------------------------------------------------------------------------------- /src/components/catalog/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/header/Header.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/CatalogKeyboard.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/CatalogKeyboard.container.ts -------------------------------------------------------------------------------- /src/components/catalog/keyboard/CatalogKeyboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/CatalogKeyboard.scss -------------------------------------------------------------------------------- /src/components/catalog/keyboard/CatalogKeyboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/CatalogKeyboard.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/CatalogKeyboardHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/CatalogKeyboardHeader.scss -------------------------------------------------------------------------------- /src/components/catalog/keyboard/CatalogKeyboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/CatalogKeyboardHeader.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/build/BuildParametersDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/build/BuildParametersDialog.container.ts -------------------------------------------------------------------------------- /src/components/catalog/keyboard/build/BuildParametersDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/build/BuildParametersDialog.scss -------------------------------------------------------------------------------- /src/components/catalog/keyboard/build/BuildParametersDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/build/BuildParametersDialog.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/build/CatalogBuild.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/build/CatalogBuild.container.ts -------------------------------------------------------------------------------- /src/components/catalog/keyboard/build/CatalogBuild.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/build/CatalogBuild.scss -------------------------------------------------------------------------------- /src/components/catalog/keyboard/build/CatalogBuild.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/build/CatalogBuild.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/build/FirmwareBuildingTaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/build/FirmwareBuildingTaskCard.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/firmware/CatalogFirmware.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/firmware/CatalogFirmware.container.ts -------------------------------------------------------------------------------- /src/components/catalog/keyboard/firmware/CatalogFirmware.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/firmware/CatalogFirmware.scss -------------------------------------------------------------------------------- /src/components/catalog/keyboard/firmware/CatalogFirmware.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/firmware/CatalogFirmware.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/introduction/CatalogIntroduction.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/introduction/CatalogIntroduction.container.ts -------------------------------------------------------------------------------- /src/components/catalog/keyboard/introduction/CatalogIntroduction.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/introduction/CatalogIntroduction.scss -------------------------------------------------------------------------------- /src/components/catalog/keyboard/introduction/CatalogIntroduction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/introduction/CatalogIntroduction.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/keymap/CatalogKeymap.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/keymap/CatalogKeymap.container.ts -------------------------------------------------------------------------------- /src/components/catalog/keyboard/keymap/CatalogKeymap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/keymap/CatalogKeymap.scss -------------------------------------------------------------------------------- /src/components/catalog/keyboard/keymap/CatalogKeymapList.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/keymap/CatalogKeymapList.container.ts -------------------------------------------------------------------------------- /src/components/catalog/keyboard/keymap/CatalogKeymapList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/keymap/CatalogKeymapList.scss -------------------------------------------------------------------------------- /src/components/catalog/keyboard/keymap/CatalogKeymapList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/keymap/CatalogKeymapList.tsx -------------------------------------------------------------------------------- /src/components/catalog/keyboard/keymap/Catalogkeymap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/keyboard/keymap/Catalogkeymap.tsx -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogKeywordSearchDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogKeywordSearchDialog.container.ts -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogKeywordSearchDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogKeywordSearchDialog.tsx -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogSearch.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogSearch.container.ts -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogSearch.scss -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogSearch.tsx -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogSearchDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogSearchDialog.scss -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogSearchDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogSearchDialog.tsx -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogSearchForm.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogSearchForm.container.ts -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogSearchForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogSearchForm.scss -------------------------------------------------------------------------------- /src/components/catalog/search/CatalogSearchForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/catalog/search/CatalogSearchForm.tsx -------------------------------------------------------------------------------- /src/components/common/anchortypography/AnchorTypography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/anchortypography/AnchorTypography.scss -------------------------------------------------------------------------------- /src/components/common/anchortypography/AnchorTypography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/anchortypography/AnchorTypography.tsx -------------------------------------------------------------------------------- /src/components/common/auth/AuthProviderDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/auth/AuthProviderDialog.container.ts -------------------------------------------------------------------------------- /src/components/common/auth/AuthProviderDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/auth/AuthProviderDialog.scss -------------------------------------------------------------------------------- /src/components/common/auth/AuthProviderDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/auth/AuthProviderDialog.tsx -------------------------------------------------------------------------------- /src/components/common/auth/ProfileIcon.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/auth/ProfileIcon.container.ts -------------------------------------------------------------------------------- /src/components/common/auth/ProfileIcon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/auth/ProfileIcon.scss -------------------------------------------------------------------------------- /src/components/common/auth/ProfileIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/auth/ProfileIcon.tsx -------------------------------------------------------------------------------- /src/components/common/circularprogress/CircularProgressWithLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/circularprogress/CircularProgressWithLabel.tsx -------------------------------------------------------------------------------- /src/components/common/confirm/ConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/confirm/ConfirmDialog.tsx -------------------------------------------------------------------------------- /src/components/common/features/FeatureList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/features/FeatureList.tsx -------------------------------------------------------------------------------- /src/components/common/firmware/FlashFirmwareDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/firmware/FlashFirmwareDialog.container.ts -------------------------------------------------------------------------------- /src/components/common/firmware/FlashFirmwareDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/firmware/FlashFirmwareDialog.scss -------------------------------------------------------------------------------- /src/components/common/firmware/FlashFirmwareDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/firmware/FlashFirmwareDialog.tsx -------------------------------------------------------------------------------- /src/components/common/firmware/UploadFirmwareDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/firmware/UploadFirmwareDialog.container.ts -------------------------------------------------------------------------------- /src/components/common/firmware/UploadFirmwareDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/firmware/UploadFirmwareDialog.scss -------------------------------------------------------------------------------- /src/components/common/firmware/UploadFirmwareDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/firmware/UploadFirmwareDialog.tsx -------------------------------------------------------------------------------- /src/components/common/flash/FlashButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/flash/FlashButton.scss -------------------------------------------------------------------------------- /src/components/common/flash/FlashButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/flash/FlashButton.tsx -------------------------------------------------------------------------------- /src/components/common/footer/Footer.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/footer/Footer.container.ts -------------------------------------------------------------------------------- /src/components/common/footer/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/footer/Footer.scss -------------------------------------------------------------------------------- /src/components/common/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/common/hooks/DebounceHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/hooks/DebounceHook.ts -------------------------------------------------------------------------------- /src/components/common/hooks/LocationChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/hooks/LocationChange.ts -------------------------------------------------------------------------------- /src/components/common/icons/ImportFileIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/icons/ImportFileIcon.tsx -------------------------------------------------------------------------------- /src/components/common/icons/InfoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/icons/InfoIcon.tsx -------------------------------------------------------------------------------- /src/components/common/keyboarddefformpart/KeyboardDefinitionFormPart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/keyboarddefformpart/KeyboardDefinitionFormPart.scss -------------------------------------------------------------------------------- /src/components/common/keyboarddefformpart/KeyboardDefinitionFormPart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/keyboarddefformpart/KeyboardDefinitionFormPart.tsx -------------------------------------------------------------------------------- /src/components/common/layer/LayerPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/layer/LayerPagination.tsx -------------------------------------------------------------------------------- /src/components/common/logo/Logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/logo/Logo.scss -------------------------------------------------------------------------------- /src/components/common/logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/logo/Logo.tsx -------------------------------------------------------------------------------- /src/components/common/ogp/OGP.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/ogp/OGP.container.ts -------------------------------------------------------------------------------- /src/components/common/ogp/OGP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/ogp/OGP.tsx -------------------------------------------------------------------------------- /src/components/common/twitter/TweetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/common/twitter/TweetButton.tsx -------------------------------------------------------------------------------- /src/components/configure/Configure.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/Configure.container.ts -------------------------------------------------------------------------------- /src/components/configure/Configure.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/Configure.scss -------------------------------------------------------------------------------- /src/components/configure/Configure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/Configure.tsx -------------------------------------------------------------------------------- /src/components/configure/content/Content.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/content/Content.container.ts -------------------------------------------------------------------------------- /src/components/configure/content/Content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/content/Content.scss -------------------------------------------------------------------------------- /src/components/configure/content/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/content/Content.tsx -------------------------------------------------------------------------------- /src/components/configure/customkey/AutocompleteKeys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/AutocompleteKeys.scss -------------------------------------------------------------------------------- /src/components/configure/customkey/AutocompleteKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/AutocompleteKeys.tsx -------------------------------------------------------------------------------- /src/components/configure/customkey/CustomKey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/CustomKey.scss -------------------------------------------------------------------------------- /src/components/configure/customkey/CustomKey.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/CustomKey.stories.tsx -------------------------------------------------------------------------------- /src/components/configure/customkey/CustomKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/CustomKey.tsx -------------------------------------------------------------------------------- /src/components/configure/customkey/Modifiers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/Modifiers.scss -------------------------------------------------------------------------------- /src/components/configure/customkey/Modifiers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/Modifiers.tsx -------------------------------------------------------------------------------- /src/components/configure/customkey/TabHoldTapKey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/TabHoldTapKey.scss -------------------------------------------------------------------------------- /src/components/configure/customkey/TabHoldTapKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/TabHoldTapKey.tsx -------------------------------------------------------------------------------- /src/components/configure/customkey/TabKey.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/TabKey.container.ts -------------------------------------------------------------------------------- /src/components/configure/customkey/TabKey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/TabKey.scss -------------------------------------------------------------------------------- /src/components/configure/customkey/TabKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/customkey/TabKey.tsx -------------------------------------------------------------------------------- /src/components/configure/header/Header.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/header/Header.container.ts -------------------------------------------------------------------------------- /src/components/configure/header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/header/Header.scss -------------------------------------------------------------------------------- /src/components/configure/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/header/Header.tsx -------------------------------------------------------------------------------- /src/components/configure/importDef/ImportDefDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/importDef/ImportDefDialog.container.ts -------------------------------------------------------------------------------- /src/components/configure/importDef/ImportDefDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/importDef/ImportDefDialog.scss -------------------------------------------------------------------------------- /src/components/configure/importDef/ImportDefDialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/importDef/ImportDefDialog.stories.tsx -------------------------------------------------------------------------------- /src/components/configure/importDef/ImportDefDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/importDef/ImportDefDialog.tsx -------------------------------------------------------------------------------- /src/components/configure/info/InfoDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/info/InfoDialog.container.ts -------------------------------------------------------------------------------- /src/components/configure/info/InfoDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/info/InfoDialog.scss -------------------------------------------------------------------------------- /src/components/configure/info/InfoDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/info/InfoDialog.tsx -------------------------------------------------------------------------------- /src/components/configure/keyboarddefform/KeyboardDefinitionForm.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyboarddefform/KeyboardDefinitionForm.container.ts -------------------------------------------------------------------------------- /src/components/configure/keyboarddefform/KeyboardDefinitionForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyboarddefform/KeyboardDefinitionForm.scss -------------------------------------------------------------------------------- /src/components/configure/keyboarddefform/KeyboardDefinitionForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyboarddefform/KeyboardDefinitionForm.stories.tsx -------------------------------------------------------------------------------- /src/components/configure/keyboarddefform/KeyboardDefinitionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyboarddefform/KeyboardDefinitionForm.tsx -------------------------------------------------------------------------------- /src/components/configure/keyboardlist/KeyboardList.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyboardlist/KeyboardList.container.ts -------------------------------------------------------------------------------- /src/components/configure/keyboardlist/KeyboardList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyboardlist/KeyboardList.scss -------------------------------------------------------------------------------- /src/components/configure/keyboardlist/KeyboardList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyboardlist/KeyboardList.tsx -------------------------------------------------------------------------------- /src/components/configure/keycap/Keycap.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycap/Keycap.container.ts -------------------------------------------------------------------------------- /src/components/configure/keycap/Keycap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycap/Keycap.scss -------------------------------------------------------------------------------- /src/components/configure/keycap/Keycap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycap/Keycap.tsx -------------------------------------------------------------------------------- /src/components/configure/keycodekey/KeyGen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodekey/KeyGen.ts -------------------------------------------------------------------------------- /src/components/configure/keycodekey/KeycodeKey.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodekey/KeycodeKey.container.ts -------------------------------------------------------------------------------- /src/components/configure/keycodekey/KeycodeKey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodekey/KeycodeKey.scss -------------------------------------------------------------------------------- /src/components/configure/keycodekey/KeycodeKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodekey/KeycodeKey.tsx -------------------------------------------------------------------------------- /src/components/configure/keycodekey/any/AddAnyKeycodeKey.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodekey/any/AddAnyKeycodeKey.container.ts -------------------------------------------------------------------------------- /src/components/configure/keycodekey/any/AddAnyKeycodeKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodekey/any/AddAnyKeycodeKey.tsx -------------------------------------------------------------------------------- /src/components/configure/keycodekey/any/AnyKeyEditDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodekey/any/AnyKeyEditDialog.scss -------------------------------------------------------------------------------- /src/components/configure/keycodekey/any/AnyKeyEditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodekey/any/AnyKeyEditDialog.tsx -------------------------------------------------------------------------------- /src/components/configure/keycodes/Keycodes.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodes/Keycodes.container.ts -------------------------------------------------------------------------------- /src/components/configure/keycodes/Keycodes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodes/Keycodes.scss -------------------------------------------------------------------------------- /src/components/configure/keycodes/Keycodes.stories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodes/Keycodes.stories.scss -------------------------------------------------------------------------------- /src/components/configure/keycodes/Keycodes.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodes/Keycodes.stories.tsx -------------------------------------------------------------------------------- /src/components/configure/keycodes/Keycodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keycodes/Keycodes.tsx -------------------------------------------------------------------------------- /src/components/configure/keydiff/Keydiff.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keydiff/Keydiff.container.ts -------------------------------------------------------------------------------- /src/components/configure/keydiff/Keydiff.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keydiff/Keydiff.scss -------------------------------------------------------------------------------- /src/components/configure/keydiff/Keydiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keydiff/Keydiff.tsx -------------------------------------------------------------------------------- /src/components/configure/keyeventcapture/KeyEventCapture.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyeventcapture/KeyEventCapture.container.ts -------------------------------------------------------------------------------- /src/components/configure/keyeventcapture/KeyEventCapture.scss: -------------------------------------------------------------------------------- 1 | .key-event-capture { 2 | outline: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/configure/keyeventcapture/KeyEventCapture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keyeventcapture/KeyEventCapture.tsx -------------------------------------------------------------------------------- /src/components/configure/keymap/KeyboardView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymap/KeyboardView.tsx -------------------------------------------------------------------------------- /src/components/configure/keymap/Keymap.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymap/Keymap.container.ts -------------------------------------------------------------------------------- /src/components/configure/keymap/Keymap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymap/Keymap.scss -------------------------------------------------------------------------------- /src/components/configure/keymap/Keymap.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymap/Keymap.stories.tsx -------------------------------------------------------------------------------- /src/components/configure/keymap/Keymap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymap/Keymap.tsx -------------------------------------------------------------------------------- /src/components/configure/keymap/LabelLang.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymap/LabelLang.tsx -------------------------------------------------------------------------------- /src/components/configure/keymap/Layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymap/Layer.tsx -------------------------------------------------------------------------------- /src/components/configure/keymapToolbar/KeymapToolbar.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymapToolbar/KeymapToolbar.container.ts -------------------------------------------------------------------------------- /src/components/configure/keymapToolbar/KeymapToolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymapToolbar/KeymapToolbar.scss -------------------------------------------------------------------------------- /src/components/configure/keymapToolbar/KeymapToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymapToolbar/KeymapToolbar.tsx -------------------------------------------------------------------------------- /src/components/configure/keymaplist/KeymapListPopover.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymaplist/KeymapListPopover.container.ts -------------------------------------------------------------------------------- /src/components/configure/keymaplist/KeymapListPopover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymaplist/KeymapListPopover.scss -------------------------------------------------------------------------------- /src/components/configure/keymaplist/KeymapListPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymaplist/KeymapListPopover.tsx -------------------------------------------------------------------------------- /src/components/configure/keymaplist/KeymapSaveDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymaplist/KeymapSaveDialog.container.ts -------------------------------------------------------------------------------- /src/components/configure/keymaplist/KeymapSaveDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymaplist/KeymapSaveDialog.scss -------------------------------------------------------------------------------- /src/components/configure/keymaplist/KeymapSaveDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/keymaplist/KeymapSaveDialog.tsx -------------------------------------------------------------------------------- /src/components/configure/layoutoption/LayoutOptionComponentList.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/layoutoption/LayoutOptionComponentList.container.ts -------------------------------------------------------------------------------- /src/components/configure/layoutoption/LayoutOptionComponentList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/layoutoption/LayoutOptionComponentList.scss -------------------------------------------------------------------------------- /src/components/configure/layoutoption/LayoutOptionComponentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/layoutoption/LayoutOptionComponentList.tsx -------------------------------------------------------------------------------- /src/components/configure/layoutoption/LayoutOptionPopover.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/layoutoption/LayoutOptionPopover.container.ts -------------------------------------------------------------------------------- /src/components/configure/layoutoption/LayoutOptionPopover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/layoutoption/LayoutOptionPopover.scss -------------------------------------------------------------------------------- /src/components/configure/layoutoption/LayoutOptionPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/layoutoption/LayoutOptionPopover.tsx -------------------------------------------------------------------------------- /src/components/configure/lighting/Lighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/lighting/Lighting.scss -------------------------------------------------------------------------------- /src/components/configure/lighting/Lighting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/lighting/Lighting.tsx -------------------------------------------------------------------------------- /src/components/configure/lighting/LightingDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/lighting/LightingDialog.scss -------------------------------------------------------------------------------- /src/components/configure/lighting/LightingDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/lighting/LightingDialog.tsx -------------------------------------------------------------------------------- /src/components/configure/macroeditor/DropKeyArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/macroeditor/DropKeyArea.tsx -------------------------------------------------------------------------------- /src/components/configure/macroeditor/MacroDropSpacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/macroeditor/MacroDropSpacer.tsx -------------------------------------------------------------------------------- /src/components/configure/macroeditor/MacroEditor.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/macroeditor/MacroEditor.container.ts -------------------------------------------------------------------------------- /src/components/configure/macroeditor/MacroEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/macroeditor/MacroEditor.scss -------------------------------------------------------------------------------- /src/components/configure/macroeditor/MacroEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/macroeditor/MacroEditor.tsx -------------------------------------------------------------------------------- /src/components/configure/macroeditor/MacroKeyHold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/macroeditor/MacroKeyHold.tsx -------------------------------------------------------------------------------- /src/components/configure/macroeditor/MacroKeyView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/macroeditor/MacroKeyView.tsx -------------------------------------------------------------------------------- /src/components/configure/modals/connection/ConnectionModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/modals/connection/ConnectionModal.scss -------------------------------------------------------------------------------- /src/components/configure/modals/connection/ConnectionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/modals/connection/ConnectionModal.tsx -------------------------------------------------------------------------------- /src/components/configure/nokeyboard/NoKeyboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/nokeyboard/NoKeyboard.tsx -------------------------------------------------------------------------------- /src/components/configure/remap/Remap.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/remap/Remap.container.ts -------------------------------------------------------------------------------- /src/components/configure/remap/Remap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/remap/Remap.scss -------------------------------------------------------------------------------- /src/components/configure/remap/Remap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/configure/remap/Remap.tsx -------------------------------------------------------------------------------- /src/components/documents/Documents.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/Documents.container.ts -------------------------------------------------------------------------------- /src/components/documents/Documents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/Documents.scss -------------------------------------------------------------------------------- /src/components/documents/Documents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/Documents.tsx -------------------------------------------------------------------------------- /src/components/documents/build/Build.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/build/Build.tsx -------------------------------------------------------------------------------- /src/components/documents/ebizrule/ElectricalBusinessRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/ebizrule/ElectricalBusinessRule.tsx -------------------------------------------------------------------------------- /src/components/documents/encoders/Encoders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/encoders/Encoders.tsx -------------------------------------------------------------------------------- /src/components/documents/faq/Faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/faq/Faq.tsx -------------------------------------------------------------------------------- /src/components/documents/header/Header.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/header/Header.container.ts -------------------------------------------------------------------------------- /src/components/documents/header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/header/Header.scss -------------------------------------------------------------------------------- /src/components/documents/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/header/Header.tsx -------------------------------------------------------------------------------- /src/components/documents/i18n/Internationalization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/i18n/Internationalization.tsx -------------------------------------------------------------------------------- /src/components/documents/index/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/index/Index.tsx -------------------------------------------------------------------------------- /src/components/documents/reviewpolicy/ReviewPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/reviewpolicy/ReviewPolicy.tsx -------------------------------------------------------------------------------- /src/components/documents/statistics/Statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/statistics/Statistics.tsx -------------------------------------------------------------------------------- /src/components/documents/support-code-editing/SupportCodeEditing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/support-code-editing/SupportCodeEditing.tsx -------------------------------------------------------------------------------- /src/components/documents/support-qmk-022/SupportQmk022.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/support-qmk-022/SupportQmk022.tsx -------------------------------------------------------------------------------- /src/components/documents/termsofuse/TermsOfUse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/termsofuse/TermsOfUse.tsx -------------------------------------------------------------------------------- /src/components/documents/workbench/Workbench.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/documents/workbench/Workbench.tsx -------------------------------------------------------------------------------- /src/components/htmltooltip/HtmlTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/htmltooltip/HtmlTooltip.tsx -------------------------------------------------------------------------------- /src/components/keyboards/KeyboardDefinitionManagement.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/KeyboardDefinitionManagement.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/KeyboardDefinitionManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/KeyboardDefinitionManagement.tsx -------------------------------------------------------------------------------- /src/components/keyboards/ValidationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/ValidationUtils.ts -------------------------------------------------------------------------------- /src/components/keyboards/agreement/AgreementCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/agreement/AgreementCheckbox.tsx -------------------------------------------------------------------------------- /src/components/keyboards/content/Content.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/content/Content.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/content/Content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/content/Content.scss -------------------------------------------------------------------------------- /src/components/keyboards/content/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/content/Content.tsx -------------------------------------------------------------------------------- /src/components/keyboards/createdefinition/CreateDefinition.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/createdefinition/CreateDefinition.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/createdefinition/CreateDefinition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/createdefinition/CreateDefinition.scss -------------------------------------------------------------------------------- /src/components/keyboards/createdefinition/CreateDefinition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/createdefinition/CreateDefinition.tsx -------------------------------------------------------------------------------- /src/components/keyboards/definitionlist/DefinitionList.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/definitionlist/DefinitionList.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/definitionlist/DefinitionList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/definitionlist/DefinitionList.scss -------------------------------------------------------------------------------- /src/components/keyboards/definitionlist/DefinitionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/definitionlist/DefinitionList.tsx -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/EditDefinition.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/EditDefinition.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/EditDefinition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/EditDefinition.scss -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/EditDefinition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/EditDefinition.tsx -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/buildform/BuildForm.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/buildform/BuildForm.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/buildform/BuildForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/buildform/BuildForm.scss -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/buildform/BuildForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/buildform/BuildForm.tsx -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/catalogform/CatalogForm.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/catalogform/CatalogForm.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/catalogform/CatalogForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/catalogform/CatalogForm.scss -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/catalogform/CatalogForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/catalogform/CatalogForm.tsx -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/catalogform/StoreAddDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/catalogform/StoreAddDialog.scss -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/catalogform/StoreAddDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/catalogform/StoreAddDialog.tsx -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/definitionform/DefinitionForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/definitionform/DefinitionForm.scss -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/definitionform/DefinitionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/definitionform/DefinitionForm.tsx -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/firmwareform/FirmwareForm.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/firmwareform/FirmwareForm.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/firmwareform/FirmwareForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/firmwareform/FirmwareForm.scss -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/firmwareform/FirmwareForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/firmwareform/FirmwareForm.tsx -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/statistics/Statistics.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/statistics/Statistics.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/statistics/Statistics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/statistics/Statistics.scss -------------------------------------------------------------------------------- /src/components/keyboards/editdefinition/statistics/Statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/editdefinition/statistics/Statistics.tsx -------------------------------------------------------------------------------- /src/components/keyboards/header/Header.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/header/Header.container.ts -------------------------------------------------------------------------------- /src/components/keyboards/header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/header/Header.scss -------------------------------------------------------------------------------- /src/components/keyboards/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/keyboards/header/Header.tsx -------------------------------------------------------------------------------- /src/components/organizations/OrganizationManagement.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/OrganizationManagement.container.ts -------------------------------------------------------------------------------- /src/components/organizations/OrganizationManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/OrganizationManagement.tsx -------------------------------------------------------------------------------- /src/components/organizations/content/Content.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/content/Content.container.ts -------------------------------------------------------------------------------- /src/components/organizations/content/Content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/content/Content.scss -------------------------------------------------------------------------------- /src/components/organizations/content/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/content/Content.tsx -------------------------------------------------------------------------------- /src/components/organizations/editorganization/EditOrganization.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/editorganization/EditOrganization.container.ts -------------------------------------------------------------------------------- /src/components/organizations/editorganization/EditOrganization.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/editorganization/EditOrganization.scss -------------------------------------------------------------------------------- /src/components/organizations/editorganization/EditOrganization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/editorganization/EditOrganization.tsx -------------------------------------------------------------------------------- /src/components/organizations/header/Header.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/header/Header.container.ts -------------------------------------------------------------------------------- /src/components/organizations/header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/header/Header.scss -------------------------------------------------------------------------------- /src/components/organizations/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/header/Header.tsx -------------------------------------------------------------------------------- /src/components/organizations/organizationlist/OrganizationList.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/organizationlist/OrganizationList.container.ts -------------------------------------------------------------------------------- /src/components/organizations/organizationlist/OrganizationList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/organizationlist/OrganizationList.scss -------------------------------------------------------------------------------- /src/components/organizations/organizationlist/OrganizationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/organizations/organizationlist/OrganizationList.tsx -------------------------------------------------------------------------------- /src/components/top/Top.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/top/Top.container.ts -------------------------------------------------------------------------------- /src/components/top/Top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/top/Top.scss -------------------------------------------------------------------------------- /src/components/top/Top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/top/Top.tsx -------------------------------------------------------------------------------- /src/components/workbench/Workbench.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/Workbench.container.ts -------------------------------------------------------------------------------- /src/components/workbench/Workbench.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/Workbench.tsx -------------------------------------------------------------------------------- /src/components/workbench/breadboard/Breadboard.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/breadboard/Breadboard.container.ts -------------------------------------------------------------------------------- /src/components/workbench/breadboard/Breadboard.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/workbench/breadboard/Breadboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/breadboard/Breadboard.tsx -------------------------------------------------------------------------------- /src/components/workbench/breadboard/BuildTaskHook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/breadboard/BuildTaskHook.tsx -------------------------------------------------------------------------------- /src/components/workbench/breadboard/UserPurchaseHook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/breadboard/UserPurchaseHook.ts -------------------------------------------------------------------------------- /src/components/workbench/content/Content.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/content/Content.container.ts -------------------------------------------------------------------------------- /src/components/workbench/content/Content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/content/Content.scss -------------------------------------------------------------------------------- /src/components/workbench/content/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/content/Content.tsx -------------------------------------------------------------------------------- /src/components/workbench/dialogs/CreateNewWorkbenchProjectFileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/CreateNewWorkbenchProjectFileDialog.tsx -------------------------------------------------------------------------------- /src/components/workbench/dialogs/EditWorkbenchProjectFileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/EditWorkbenchProjectFileDialog.tsx -------------------------------------------------------------------------------- /src/components/workbench/dialogs/FileGenerationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/FileGenerationDialog.tsx -------------------------------------------------------------------------------- /src/components/workbench/dialogs/RemainingBuildPurchaseDialog.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/RemainingBuildPurchaseDialog.container.ts -------------------------------------------------------------------------------- /src/components/workbench/dialogs/RemainingBuildPurchaseDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/RemainingBuildPurchaseDialog.tsx -------------------------------------------------------------------------------- /src/components/workbench/dialogs/RemainingBuildPurchaseHistoryDialog.container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/RemainingBuildPurchaseHistoryDialog.container.tsx -------------------------------------------------------------------------------- /src/components/workbench/dialogs/RemainingBuildPurchaseHistoryDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/RemainingBuildPurchaseHistoryDialog.tsx -------------------------------------------------------------------------------- /src/components/workbench/dialogs/WorkbenchProjectSettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/WorkbenchProjectSettingsDialog.tsx -------------------------------------------------------------------------------- /src/components/workbench/dialogs/WorkbenchProjectsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/dialogs/WorkbenchProjectsDialog.tsx -------------------------------------------------------------------------------- /src/components/workbench/header/Header.container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/header/Header.container.ts -------------------------------------------------------------------------------- /src/components/workbench/header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/header/Header.scss -------------------------------------------------------------------------------- /src/components/workbench/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/components/workbench/header/Header.tsx -------------------------------------------------------------------------------- /src/gen/types/KeyboardDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/gen/types/KeyboardDefinition.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/models/KeyModel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/models/KeyModel.test.ts -------------------------------------------------------------------------------- /src/models/KeyModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/models/KeyModel.ts -------------------------------------------------------------------------------- /src/models/KeyboardModel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/models/KeyboardModel.test.ts -------------------------------------------------------------------------------- /src/models/KeyboardModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/models/KeyboardModel.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/services/auth/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/auth/Auth.ts -------------------------------------------------------------------------------- /src/services/build/FirmwareCodeParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/build/FirmwareCodeParser.test.ts -------------------------------------------------------------------------------- /src/services/build/FirmwareCodeParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/build/FirmwareCodeParser.ts -------------------------------------------------------------------------------- /src/services/firmware/Bootloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/Bootloader.ts -------------------------------------------------------------------------------- /src/services/firmware/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/Command.ts -------------------------------------------------------------------------------- /src/services/firmware/FirmwareWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/FirmwareWriter.ts -------------------------------------------------------------------------------- /src/services/firmware/FirmwareWriterWebApiImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/FirmwareWriterWebApiImpl.ts -------------------------------------------------------------------------------- /src/services/firmware/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/Types.ts -------------------------------------------------------------------------------- /src/services/firmware/caterina/CaterinaBootloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/caterina/CaterinaBootloader.ts -------------------------------------------------------------------------------- /src/services/firmware/caterina/CaterinaCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/caterina/CaterinaCommands.ts -------------------------------------------------------------------------------- /src/services/firmware/copy/WebFileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/copy/WebFileSystem.ts -------------------------------------------------------------------------------- /src/services/firmware/dfu/AbstractDfuBootloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/dfu/AbstractDfuBootloader.ts -------------------------------------------------------------------------------- /src/services/firmware/dfu/AtmelDfuBootloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/dfu/AtmelDfuBootloader.ts -------------------------------------------------------------------------------- /src/services/firmware/dfu/DfuBootloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/dfu/DfuBootloader.ts -------------------------------------------------------------------------------- /src/services/firmware/serial/Serial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/serial/Serial.ts -------------------------------------------------------------------------------- /src/services/firmware/serial/WebSerial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/serial/WebSerial.ts -------------------------------------------------------------------------------- /src/services/firmware/ui/Firmware.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/ui/Firmware.scss -------------------------------------------------------------------------------- /src/services/firmware/ui/Firmware.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/ui/Firmware.tsx -------------------------------------------------------------------------------- /src/services/firmware/usb/Usb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/usb/Usb.ts -------------------------------------------------------------------------------- /src/services/firmware/usb/WebUsb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/firmware/usb/WebUsb.ts -------------------------------------------------------------------------------- /src/services/github/GitHub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/github/GitHub.ts -------------------------------------------------------------------------------- /src/services/hid/Commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/Commands.ts -------------------------------------------------------------------------------- /src/services/hid/Composition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/Composition.test.ts -------------------------------------------------------------------------------- /src/services/hid/Composition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/Composition.ts -------------------------------------------------------------------------------- /src/services/hid/Constraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/Constraints.ts -------------------------------------------------------------------------------- /src/services/hid/Hid.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/Hid.mock.ts -------------------------------------------------------------------------------- /src/services/hid/Hid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/Hid.ts -------------------------------------------------------------------------------- /src/services/hid/KeyCategoryList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/KeyCategoryList.test.ts -------------------------------------------------------------------------------- /src/services/hid/KeyCategoryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/KeyCategoryList.ts -------------------------------------------------------------------------------- /src/services/hid/KeycodeInfoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/KeycodeInfoList.ts -------------------------------------------------------------------------------- /src/services/hid/KeycodeInfoListBmp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/KeycodeInfoListBmp.ts -------------------------------------------------------------------------------- /src/services/hid/KeycodeList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/KeycodeList.ts -------------------------------------------------------------------------------- /src/services/hid/MacroCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/MacroCodes.ts -------------------------------------------------------------------------------- /src/services/hid/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/README.ja.md -------------------------------------------------------------------------------- /src/services/hid/WebHid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/WebHid.ts -------------------------------------------------------------------------------- /src/services/hid/assets/keycodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/assets/keycodes.json -------------------------------------------------------------------------------- /src/services/hid/compositions/AsciiComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/AsciiComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/AsciiComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/AsciiComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/BasicComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/BasicComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/BasicComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/BasicComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/DefLayerComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/DefLayerComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/DefLayerComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/DefLayerComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/LayerModComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/LayerModComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/LayerModComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/LayerModComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/LayerTapComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/LayerTapComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/LayerTapComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/LayerTapComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/LayerTapToggleComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/LayerTapToggleComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/LayerTapToggleComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/LayerTapToggleComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/LooseKeycodeComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/LooseKeycodeComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/LooseKeycodeComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/LooseKeycodeComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/MacroComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/MacroComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/MacroComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/MacroComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ModTapComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ModTapComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ModTapComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ModTapComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ModsComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ModsComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ModsComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ModsComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/MomentaryComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/MomentaryComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/MomentaryComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/MomentaryComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/OneShotLayerComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/OneShotLayerComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/OneShotLayerComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/OneShotLayerComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/OneShotModComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/OneShotModComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/OneShotModComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/OneShotModComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/SwapHandsComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/SwapHandsComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/SwapHandsComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/SwapHandsComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/TapDanceComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/TapDanceComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/TapDanceComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/TapDanceComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ToComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ToComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ToComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ToComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ToggleLayerComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ToggleLayerComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ToggleLayerComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ToggleLayerComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/UnicodeComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/UnicodeComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/UnicodeComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/UnicodeComposition.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ViaUserKeyComposition.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ViaUserKeyComposition.test.ts -------------------------------------------------------------------------------- /src/services/hid/compositions/ViaUserKeyComposition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/compositions/ViaUserKeyComposition.ts -------------------------------------------------------------------------------- /src/services/hid/ui/Hid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/ui/Hid.scss -------------------------------------------------------------------------------- /src/services/hid/ui/Hid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/hid/ui/Hid.tsx -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabel.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelBelgian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelBelgian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelBepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelBepo.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelBr_abnt2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelBr_abnt2.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelCanadian_multilingual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelCanadian_multilingual.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelColemak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelColemak.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelCroatian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelCroatian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelCzech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelCzech.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelDanish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelDanish.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelDvorak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelDvorak.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelDvorak_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelDvorak_fr.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelDvp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelDvp.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelEstonian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelEstonian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelFinnish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelFinnish.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelFr_ch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelFr_ch.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelFrench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelFrench.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelFrench_afnor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelFrench_afnor.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelFrench_osx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelFrench_osx.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelGerman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelGerman.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelGerman_ch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelGerman_ch.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelGerman_osx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelGerman_osx.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelHungarian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelHungarian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelIcelandic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelIcelandic.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelItalian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelItalian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelItalian_osx_ansi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelItalian_osx_ansi.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelItalian_osx_iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelItalian_osx_iso.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelJp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelJp.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelLatvian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelLatvian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelLithuanian_azerty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelLithuanian_azerty.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelLithuanian_qwerty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelLithuanian_qwerty.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelNorman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelNorman.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelNorwegian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelNorwegian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelPortuguese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelPortuguese.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelPortuguese_osx_iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelPortuguese_osx_iso.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelRomanian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelRomanian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelSerbian_latin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelSerbian_latin.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelSlovak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelSlovak.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelSlovenian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelSlovenian.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelSpanish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelSpanish.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelSpanish_dvorak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelSpanish_dvorak.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelSwedish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelSwedish.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelTurkish_f.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelTurkish_f.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelTurkish_q.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelTurkish_q.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelUk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelUk.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelUs_international.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelUs_international.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelWorkman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelWorkman.ts -------------------------------------------------------------------------------- /src/services/labellang/AsciiLabelWorkman_zxcvm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/AsciiLabelWorkman_zxcvm.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabel.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelBelgian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelBelgian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelBepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelBepo.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelBr_abnt2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelBr_abnt2.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelCanadian_multilingual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelCanadian_multilingual.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelColemak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelColemak.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelCroatian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelCroatian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelCzech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelCzech.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelDanish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelDanish.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelDvorak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelDvorak.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelDvorak_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelDvorak_fr.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelDvp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelDvp.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelEstonian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelEstonian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelFinnish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelFinnish.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelFr_ch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelFr_ch.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelFrench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelFrench.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelFrench_afnor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelFrench_afnor.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelFrench_osx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelFrench_osx.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelGerman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelGerman.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelGerman_ch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelGerman_ch.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelGerman_osx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelGerman_osx.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelGreek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelGreek.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelHebrew.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelHebrew.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelHungarian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelHungarian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelIcelandic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelIcelandic.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelIrish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelIrish.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelItalian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelItalian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelItalian_osx_ansi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelItalian_osx_ansi.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelItalian_osx_iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelItalian_osx_iso.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelJp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelJp.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelKorean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelKorean.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelLangs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelLangs.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelLatvian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelLatvian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelLithuanian_azerty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelLithuanian_azerty.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelLithuanian_qwerty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelLithuanian_qwerty.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelNeo2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelNeo2.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelNorman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelNorman.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelNorwegian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelNorwegian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelPolish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelPolish.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelPortuguese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelPortuguese.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelPortuguese_osx_iso.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelPortuguese_osx_iso.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelRomanian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelRomanian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelRussian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelRussian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelSerbian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelSerbian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelSerbian_latin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelSerbian_latin.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelSlovak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelSlovak.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelSlovenian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelSlovenian.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelSpanish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelSpanish.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelSpanish_dvorak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelSpanish_dvorak.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelSwedish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelSwedish.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelTurkish_f.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelTurkish_f.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelTurkish_q.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelTurkish_q.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelUk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelUk.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelUs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelUs.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelUs_international.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelUs_international.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelWorkman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelWorkman.ts -------------------------------------------------------------------------------- /src/services/labellang/KeyLabelWorkman_zxcvm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/labellang/KeyLabelWorkman_zxcvm.ts -------------------------------------------------------------------------------- /src/services/macro/Macro.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/macro/Macro.test.ts -------------------------------------------------------------------------------- /src/services/macro/Macro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/macro/Macro.ts -------------------------------------------------------------------------------- /src/services/macro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/macro/README.md -------------------------------------------------------------------------------- /src/services/pdf/KeymapPdfGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/pdf/KeymapPdfGenerator.ts -------------------------------------------------------------------------------- /src/services/pdf/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/pdf/test.pdf -------------------------------------------------------------------------------- /src/services/provider/Firebase.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/provider/Firebase.test.ts -------------------------------------------------------------------------------- /src/services/provider/Firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/provider/Firebase.ts -------------------------------------------------------------------------------- /src/services/provider/FirebaseConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/provider/FirebaseConfiguration.ts -------------------------------------------------------------------------------- /src/services/storage/Storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/storage/Storage.ts -------------------------------------------------------------------------------- /src/services/storage/Validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/storage/Validator.test.ts -------------------------------------------------------------------------------- /src/services/storage/Validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/storage/Validator.ts -------------------------------------------------------------------------------- /src/services/storage/assets/keyboard-definition-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/storage/assets/keyboard-definition-schema.json -------------------------------------------------------------------------------- /src/services/workbench/FileGenerator.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/FileGenerator.integration.test.ts -------------------------------------------------------------------------------- /src/services/workbench/FileGenerator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/FileGenerator.test.ts -------------------------------------------------------------------------------- /src/services/workbench/FileGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/FileGenerator.ts -------------------------------------------------------------------------------- /src/services/workbench/constants/LayoutConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/constants/LayoutConstants.ts -------------------------------------------------------------------------------- /src/services/workbench/constants/McuConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/constants/McuConstants.ts -------------------------------------------------------------------------------- /src/services/workbench/templates/KeyboardJsonTemplate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/templates/KeyboardJsonTemplate.test.ts -------------------------------------------------------------------------------- /src/services/workbench/templates/KeyboardJsonTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/templates/KeyboardJsonTemplate.ts -------------------------------------------------------------------------------- /src/services/workbench/templates/KeymapCTemplate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/templates/KeymapCTemplate.test.ts -------------------------------------------------------------------------------- /src/services/workbench/templates/KeymapCTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/templates/KeymapCTemplate.ts -------------------------------------------------------------------------------- /src/services/workbench/templates/template_keyboard_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/templates/template_keyboard_json.json -------------------------------------------------------------------------------- /src/services/workbench/types/FileGenerationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/services/workbench/types/FileGenerationTypes.ts -------------------------------------------------------------------------------- /src/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/store/reducers.ts -------------------------------------------------------------------------------- /src/store/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/store/state.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/ArrayUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/ArrayUtils.test.ts -------------------------------------------------------------------------------- /src/utils/ArrayUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/ArrayUtils.ts -------------------------------------------------------------------------------- /src/utils/AuthUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/AuthUtils.ts -------------------------------------------------------------------------------- /src/utils/DisplayUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/DisplayUtils.ts -------------------------------------------------------------------------------- /src/utils/GoogleAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/GoogleAnalytics.ts -------------------------------------------------------------------------------- /src/utils/NumberUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/NumberUtils.test.ts -------------------------------------------------------------------------------- /src/utils/NumberUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/NumberUtils.ts -------------------------------------------------------------------------------- /src/utils/ObjectUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/ObjectUtils.ts -------------------------------------------------------------------------------- /src/utils/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/src/utils/StringUtils.ts -------------------------------------------------------------------------------- /test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/test.pdf -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remap-keys/remap/HEAD/yarn.lock --------------------------------------------------------------------------------