{"id":41879146,"url":"https://github.com/eFaps/angular-onscreen-material-keyboard","last_synced_at":"2026-01-26T18:01:15.458Z","repository":{"id":65561346,"uuid":"526843765","full_name":"eFaps/angular-onscreen-material-keyboard","owner":"eFaps","description":"Onscreen virtual keyboard for Angular ≥ 5 (https://angular.io/) using Angular Material (https://material.angular.io/).","archived":false,"fork":true,"pushed_at":"2025-08-14T21:25:01.000Z","size":7752,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-18T01:48:30.671Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://ngx-material-keyboard.github.io/core/","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Iris0905/angular-onscreen-material-keyboard","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eFaps.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-20T06:20:14.000Z","updated_at":"2025-08-14T21:24:10.000Z","dependencies_parsed_at":"2023-01-29T17:01:22.931Z","dependency_job_id":null,"html_url":"https://github.com/eFaps/angular-onscreen-material-keyboard","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/eFaps/angular-onscreen-material-keyboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eFaps%2Fangular-onscreen-material-keyboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eFaps%2Fangular-onscreen-material-keyboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eFaps%2Fangular-onscreen-material-keyboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eFaps%2Fangular-onscreen-material-keyboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eFaps","download_url":"https://codeload.github.com/eFaps/angular-onscreen-material-keyboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eFaps%2Fangular-onscreen-material-keyboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28784093,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T13:55:28.044Z","status":"ssl_error","status_checked_at":"2026-01-26T13:55:26.068Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-25T13:00:20.524Z","updated_at":"2026-01-26T18:01:15.452Z","avatar_url":"https://github.com/eFaps.png","language":"TypeScript","readme":"# angular-onscreen-material-keyboard\nOnscreen virtual keyboard for [Angular] using [Angular Material].\n\u003e Note that this is a fork of https://github.com/joskwanten/core\n\n![ngx-material-keyboard in action](https://cdn.rawgit.com/ngx-material-keyboard/core/develop/screenshots/ngxmk-2.gif)\n\n## Demo\nA demo can be found [here][demo].\n\n## Docs\nGenerated documentation can be found [here][docs].\n\n## Getting started\n1. Install with your prefered packet manager (we're using `npm` here):\n`npm install --save angular-onscreen-material-keyboard`\n\u003e Be sure to fulfill the peer dependencies of this module, in particular [Angular] and [Angular Material].\n\n2. Add the module to your project, e.g. `app.module.ts`:\n```:typescript\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { BrowserModule } from '@angular/platform-browser';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { MatButtonModule } from '@angular/material/button';\n...\nimport { MatKeyboardModule } from 'angular-onscreen-material-keyboard';\n\n@NgModule({\n  imports: [\n    // Angular modules\n    BrowserModule,\n    BrowserAnimationsModule,\n    FormsModule,\n\n    // Material modules\n    MatButtonModule,\n    MatKeyboardModule,\n  ],\n  ...\n})\nexport class AppModule {}\n```\n\n3. Use the [`MatKeyboardDirective`][docs:MatKeyboardDirective] on your input elements or textareas and set the name or locale of the layout.\n\u003e If not provided the locale will be derieved from the `LOCALE_ID` or the browser.\n```:angular2html\n\u003cinput [matKeyboard]=\"'Azərbaycanca'\"\u003e\n```\n\n## Providing custom layouts\nMost of the base configurations are provided as [injection tokens][InjectionToken]. Please read [the documentation][InjectionToken] to \nunderstand how to handle it.\n\nAll layouts are based on (or directly inherited from) the [angular-virtual-keyboard][the-darc/angular-virtual-keyboard] which is based on\n [GreyWyvern VKI]. For details on how to structure a layout see the [comment derived from the original source code][VKI Readme].\n\n\u003e Note that this will most likely be changed in the near future. But for now a huge range of layouts is already usable because of the \n[great contribution][VKI Credits] back then.\n\nBut basicly you just provide the configuration of your new layout in your `AppModule`:\n```:typescript\nimport { IKeyboardLayouts, keyboardLayouts, MAT_KEYBOARD_LAYOUTS, MatKeyboardModule } from 'angular-onscreen-material-keyboard';\n\nconst customLayouts: IKeyboardLayouts = {\n  ...keyboardLayouts,\n  'Tölles Läyout': {\n    'name': 'Awesome layout',\n    'keys': [\n      [\n        ['1', '!'],\n        ['2', '@'],\n        ['3', '#']\n      ]\n    ],\n    'lang': ['de-CH']\n  }\n};\n\n@NgModule({\n  ...\n  providers: [\n    { provide: MAT_KEYBOARD_LAYOUTS, useValue: customLayouts }\n  ],\n  ...\n})\nexport class AppModule {}\n```\n\n## Development\nThis repository is managed by and layed out for [ng-packagr].\n\n### Versioning\nThe application uses [semver][SemVer] and is developed with the [git flow branching model][Git-Flow].\n\n[Angular]: https://angular.io/\n[Angular Material]: https://material.angular.io/\n[the-darc/angular-virtual-keyboard]: https://github.com/the-darc/angular-virtual-keyboard\n[GreyWyvern VKI]: http://www.greywyvern.com/code/javascript/keyboard\n\n[SemVer]: http://semver.org/\n[Git-Flow]: http://nvie.com/posts/a-successful-git-branching-model/\n[ng-packagr]: https://github.com/dherges/ng-packagr\n\n[demo]: https://ngx-material-keyboard.github.io/demo/\n[docs]: https://ngx-material-keyboard.github.io/core/\n\n[docs:MatKeyboardDirective]: https://ngx-material-keyboard.github.io/core/directives/MatKeyboardDirective.html\n[InjectionToken]: https://angular.io/guide/dependency-injection-in-action#injectiontoken\n[VKI Readme]: https://goo.gl/fCDExr\n[VKI Credits]: https://goo.gl/NYqTwc\n\n","funding_links":[],"categories":["Third Party Components"],"sub_categories":["Keyboard Mouse"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FeFaps%2Fangular-onscreen-material-keyboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FeFaps%2Fangular-onscreen-material-keyboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FeFaps%2Fangular-onscreen-material-keyboard/lists"}