├── .compodocrc.yml ├── .editorconfig ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── guidance_request.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── init-npm │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── core.yml ├── .gitignore ├── .idea ├── .gitignore ├── active-tab-highlighter.xml ├── auto_sync.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── dictionaries │ └── art.xml ├── encodings.xml ├── fileColors.xml ├── git_toolbox_prj.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jsLibraryMappings.xml ├── jsonSchemas.xml ├── misc.xml ├── modules.xml ├── ngforage.iml └── vcs.xml ├── .releaserc.yml ├── CHANGELOG-v3.md ├── CHANGELOG-v4.md ├── CHANGELOG.md ├── LICENSE ├── MIGRATING.md ├── README.md ├── angular.json ├── demo ├── app │ ├── .gitkeep │ ├── abstract-form-control.ts │ ├── app.component.html │ ├── app.component.ts │ ├── asString.pipe.ts │ ├── button-styling.directive.ts │ ├── engine-select │ │ ├── engine-select.component.html │ │ └── engine-select.component.ts │ ├── full-config │ │ ├── full-config.component.html │ │ └── full-config.component.ts │ ├── github-ribbon │ │ ├── github-ribbon.component.css │ │ ├── github-ribbon.component.html │ │ └── github-ribbon.component.ts │ ├── options-select │ │ ├── options-select.component.html │ │ └── options-select.component.ts │ ├── output │ │ ├── output.component.html │ │ ├── output.component.ts │ │ └── set-item-text.pipe.ts │ └── storage-tab │ │ ├── storage-tab.component.html │ │ └── storage-tab.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts └── test.ts ├── package.json ├── projects └── ngforage │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── cache │ │ │ ├── cached-item-impl.class.spec.ts │ │ │ ├── cached-item-impl.class.ts │ │ │ ├── cached-item.ts │ │ │ ├── index.ts │ │ │ ├── ng-forage-cache.service.spec.ts │ │ │ └── ng-forage-cache.service.ts │ │ ├── config │ │ │ ├── base-configurable-impl.service.spec.ts │ │ │ ├── base-configurable-impl.service.ts │ │ │ ├── base-configurable.ts │ │ │ ├── cache-configurable.ts │ │ │ ├── index.ts │ │ │ ├── ng-forage-config.service.spec.ts │ │ │ ├── ng-forage-config.service.ts │ │ │ └── ng-forage-options.ts │ │ ├── dedicated │ │ │ ├── dedicated-instance-factory.service.spec.ts │ │ │ ├── dedicated-instance-factory.service.ts │ │ │ ├── index.ts │ │ │ ├── ng-forage-cache-dedicated.class.ts │ │ │ └── ng-forage-dedicated.class.ts │ │ ├── imports │ │ │ ├── localforage.ts │ │ │ └── serializer.ts │ │ ├── index.ts │ │ ├── instance-factory │ │ │ ├── index.ts │ │ │ ├── instance-factory.service.spec.ts │ │ │ └── instance-factory.service.ts │ │ ├── main │ │ │ ├── index.ts │ │ │ ├── ng-forage.service.spec.ts │ │ │ └── ng-forage.service.ts │ │ └── misc │ │ │ ├── driver-type.type.ts │ │ │ ├── driver.enum.ts │ │ │ └── injection-tokens.ts │ ├── public_api.ts │ ├── test.def.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── tsconfig.app.json └── tsconfig.json /.compodocrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.compodocrc.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Alorel 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/guidance_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/ISSUE_TEMPLATE/guidance_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/init-npm/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/actions/init-npm/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.github/workflows/core.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/active-tab-highlighter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/active-tab-highlighter.xml -------------------------------------------------------------------------------- /.idea/auto_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/auto_sync.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/dictionaries/art.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/dictionaries/art.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/fileColors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/fileColors.xml -------------------------------------------------------------------------------- /.idea/git_toolbox_prj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/git_toolbox_prj.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/jsonSchemas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/jsonSchemas.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/ngforage.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/ngforage.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.releaserc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/.releaserc.yml -------------------------------------------------------------------------------- /CHANGELOG-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/CHANGELOG-v3.md -------------------------------------------------------------------------------- /CHANGELOG-v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/CHANGELOG-v4.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/MIGRATING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/angular.json -------------------------------------------------------------------------------- /demo/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/abstract-form-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/abstract-form-control.ts -------------------------------------------------------------------------------- /demo/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/app.component.html -------------------------------------------------------------------------------- /demo/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/app.component.ts -------------------------------------------------------------------------------- /demo/app/asString.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/asString.pipe.ts -------------------------------------------------------------------------------- /demo/app/button-styling.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/button-styling.directive.ts -------------------------------------------------------------------------------- /demo/app/engine-select/engine-select.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/engine-select/engine-select.component.html -------------------------------------------------------------------------------- /demo/app/engine-select/engine-select.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/engine-select/engine-select.component.ts -------------------------------------------------------------------------------- /demo/app/full-config/full-config.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/full-config/full-config.component.html -------------------------------------------------------------------------------- /demo/app/full-config/full-config.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/full-config/full-config.component.ts -------------------------------------------------------------------------------- /demo/app/github-ribbon/github-ribbon.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/github-ribbon/github-ribbon.component.css -------------------------------------------------------------------------------- /demo/app/github-ribbon/github-ribbon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/github-ribbon/github-ribbon.component.html -------------------------------------------------------------------------------- /demo/app/github-ribbon/github-ribbon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/github-ribbon/github-ribbon.component.ts -------------------------------------------------------------------------------- /demo/app/options-select/options-select.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/options-select/options-select.component.html -------------------------------------------------------------------------------- /demo/app/options-select/options-select.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/options-select/options-select.component.ts -------------------------------------------------------------------------------- /demo/app/output/output.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/output/output.component.html -------------------------------------------------------------------------------- /demo/app/output/output.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/output/output.component.ts -------------------------------------------------------------------------------- /demo/app/output/set-item-text.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/output/set-item-text.pipe.ts -------------------------------------------------------------------------------- /demo/app/storage-tab/storage-tab.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/storage-tab/storage-tab.component.html -------------------------------------------------------------------------------- /demo/app/storage-tab/storage-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/app/storage-tab/storage-tab.component.ts -------------------------------------------------------------------------------- /demo/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /demo/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/environments/environment.ts -------------------------------------------------------------------------------- /demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/favicon.ico -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/main.ts -------------------------------------------------------------------------------- /demo/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/polyfills.ts -------------------------------------------------------------------------------- /demo/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/demo/test.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/package.json -------------------------------------------------------------------------------- /projects/ngforage/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/karma.conf.js -------------------------------------------------------------------------------- /projects/ngforage/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/ng-package.json -------------------------------------------------------------------------------- /projects/ngforage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/package.json -------------------------------------------------------------------------------- /projects/ngforage/src/lib/cache/cached-item-impl.class.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/cache/cached-item-impl.class.spec.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/cache/cached-item-impl.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/cache/cached-item-impl.class.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/cache/cached-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/cache/cached-item.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/cache/index.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/cache/ng-forage-cache.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/cache/ng-forage-cache.service.spec.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/cache/ng-forage-cache.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/cache/ng-forage-cache.service.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/config/base-configurable-impl.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/config/base-configurable-impl.service.spec.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/config/base-configurable-impl.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/config/base-configurable-impl.service.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/config/base-configurable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/config/base-configurable.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/config/cache-configurable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/config/cache-configurable.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/config/index.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/config/ng-forage-config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/config/ng-forage-config.service.spec.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/config/ng-forage-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/config/ng-forage-config.service.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/config/ng-forage-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/config/ng-forage-options.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/dedicated/dedicated-instance-factory.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/dedicated/dedicated-instance-factory.service.spec.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/dedicated/dedicated-instance-factory.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/dedicated/dedicated-instance-factory.service.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/dedicated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/dedicated/index.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/dedicated/ng-forage-cache-dedicated.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/dedicated/ng-forage-cache-dedicated.class.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/dedicated/ng-forage-dedicated.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/dedicated/ng-forage-dedicated.class.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/imports/localforage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/imports/localforage.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/imports/serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/imports/serializer.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/index.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/instance-factory/index.ts: -------------------------------------------------------------------------------- 1 | export * from './instance-factory.service'; 2 | -------------------------------------------------------------------------------- /projects/ngforage/src/lib/instance-factory/instance-factory.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/instance-factory/instance-factory.service.spec.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/instance-factory/instance-factory.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/instance-factory/instance-factory.service.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/main/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ng-forage.service'; 2 | -------------------------------------------------------------------------------- /projects/ngforage/src/lib/main/ng-forage.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/main/ng-forage.service.spec.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/main/ng-forage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/main/ng-forage.service.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/misc/driver-type.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/misc/driver-type.type.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/misc/driver.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/misc/driver.enum.ts -------------------------------------------------------------------------------- /projects/ngforage/src/lib/misc/injection-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/lib/misc/injection-tokens.ts -------------------------------------------------------------------------------- /projects/ngforage/src/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './lib'; 2 | -------------------------------------------------------------------------------- /projects/ngforage/src/test.def.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/test.def.ts -------------------------------------------------------------------------------- /projects/ngforage/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/src/test.ts -------------------------------------------------------------------------------- /projects/ngforage/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngforage/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/ngforage/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/projects/ngforage/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alorel/ngforage/HEAD/tsconfig.json --------------------------------------------------------------------------------