├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── config ├── tsconfig.json └── tslint.json ├── example ├── images │ ├── bg.png │ ├── btn_clean.png │ └── inputfield.png └── index.html ├── package.json ├── ts ├── InputElement.ts ├── InputField.ts ├── Objects │ ├── InputBox.ts │ ├── SelectionHighlight.ts │ └── TextMask.ts ├── Plugin.ts └── definitions.d.ts └── tslint.json /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .tscache -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | Gruntfile.js 2 | example 3 | ts 4 | .idea 5 | .tscache 6 | .github -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/README.md -------------------------------------------------------------------------------- /config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/config/tsconfig.json -------------------------------------------------------------------------------- /config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/config/tslint.json -------------------------------------------------------------------------------- /example/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/example/images/bg.png -------------------------------------------------------------------------------- /example/images/btn_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/example/images/btn_clean.png -------------------------------------------------------------------------------- /example/images/inputfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/example/images/inputfield.png -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/example/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/package.json -------------------------------------------------------------------------------- /ts/InputElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/ts/InputElement.ts -------------------------------------------------------------------------------- /ts/InputField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/ts/InputField.ts -------------------------------------------------------------------------------- /ts/Objects/InputBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/ts/Objects/InputBox.ts -------------------------------------------------------------------------------- /ts/Objects/SelectionHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/ts/Objects/SelectionHighlight.ts -------------------------------------------------------------------------------- /ts/Objects/TextMask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/ts/Objects/TextMask.ts -------------------------------------------------------------------------------- /ts/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/ts/Plugin.ts -------------------------------------------------------------------------------- /ts/definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/ts/definitions.d.ts -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerion/phaser-input/HEAD/tslint.json --------------------------------------------------------------------------------