├── .atomignore ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── dist ├── redux-decorators.js └── redux-decorators.js.map ├── index.d.ts ├── package.json ├── readme.md ├── src ├── initial-state.decorator.ts ├── reducer.decorator.ts ├── redux-decorators.ts ├── slice-state.helper.ts ├── slice.decorator.ts ├── state.decorator.ts ├── store.decorator.ts └── store.decorator │ ├── angular2.binding.ts │ └── general.binding.ts ├── test ├── all-tests.ts ├── must.ts ├── reducer.decorator.spec.ts ├── sinon.ts ├── slice-state.helper.spec.ts ├── slice.decorator.spec.ts ├── slice.reducer.decorators.spec.ts ├── store.decorator.spec.ts └── store.decorator │ ├── angular2.binding.spec.ts │ └── general.binding.spec.ts ├── tsconfig.json ├── tsd.json └── webpack.config.js /.atomignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/.atomignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/*spec.* 2 | /typings/ 3 | /node_modules/ 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/LICENSE.md -------------------------------------------------------------------------------- /dist/redux-decorators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/dist/redux-decorators.js -------------------------------------------------------------------------------- /dist/redux-decorators.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/dist/redux-decorators.js.map -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/readme.md -------------------------------------------------------------------------------- /src/initial-state.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/initial-state.decorator.ts -------------------------------------------------------------------------------- /src/reducer.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/reducer.decorator.ts -------------------------------------------------------------------------------- /src/redux-decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/redux-decorators.ts -------------------------------------------------------------------------------- /src/slice-state.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/slice-state.helper.ts -------------------------------------------------------------------------------- /src/slice.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/slice.decorator.ts -------------------------------------------------------------------------------- /src/state.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/state.decorator.ts -------------------------------------------------------------------------------- /src/store.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/store.decorator.ts -------------------------------------------------------------------------------- /src/store.decorator/angular2.binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/store.decorator/angular2.binding.ts -------------------------------------------------------------------------------- /src/store.decorator/general.binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/src/store.decorator/general.binding.ts -------------------------------------------------------------------------------- /test/all-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/all-tests.ts -------------------------------------------------------------------------------- /test/must.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/must.ts -------------------------------------------------------------------------------- /test/reducer.decorator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/reducer.decorator.spec.ts -------------------------------------------------------------------------------- /test/sinon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/sinon.ts -------------------------------------------------------------------------------- /test/slice-state.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/slice-state.helper.spec.ts -------------------------------------------------------------------------------- /test/slice.decorator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/slice.decorator.spec.ts -------------------------------------------------------------------------------- /test/slice.reducer.decorators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/slice.reducer.decorators.spec.ts -------------------------------------------------------------------------------- /test/store.decorator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/store.decorator.spec.ts -------------------------------------------------------------------------------- /test/store.decorator/angular2.binding.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/store.decorator/angular2.binding.spec.ts -------------------------------------------------------------------------------- /test/store.decorator/general.binding.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/test/store.decorator/general.binding.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/tsd.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarlPurk/redux-decorators/HEAD/webpack.config.js --------------------------------------------------------------------------------