├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ ├── pages.yml │ └── test.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── angular.json ├── docublitz.json ├── package.json ├── projects └── ngx-contentful-rich-text │ ├── .eslintrc.json │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── lib │ │ ├── classes │ │ │ ├── mark-renderer.class.ts │ │ │ ├── node-renderer.class.ts │ │ │ └── renderer-host.class.ts │ │ ├── components │ │ │ ├── default-mark-renderer.component.ts │ │ │ ├── default-node-renderer.component.ts │ │ │ └── text-value.component.ts │ │ ├── directives │ │ │ ├── mark-renderer-host.directive.ts │ │ │ └── node-renderer-host.directive.ts │ │ ├── ngx-contentful-rich-text.component.spec.ts │ │ ├── ngx-contentful-rich-text.component.ts │ │ ├── ngx-contentful-rich-text.module.ts │ │ └── services │ │ │ └── renderer-provider.service.ts │ ├── public-api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── tsconfig.json └── website ├── .gitignore ├── README.md ├── babel.config.js ├── docs └── index.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── src ├── components │ ├── StackBlitzEmbed.tsx │ └── TryItOutArrow │ │ ├── index.module.css │ │ └── index.tsx ├── css │ └── custom.css └── pages │ ├── index.module.css │ └── index.tsx ├── static ├── .nojekyll └── img │ ├── favicon.ico │ └── logo.png └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | projects/ngx-contentful-rich-text/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/angular.json -------------------------------------------------------------------------------- /docublitz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/docublitz.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/package.json -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/.eslintrc.json -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/README.md -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/karma.conf.js -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/ng-package.json -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/package.json -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/classes/mark-renderer.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/classes/mark-renderer.class.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/classes/node-renderer.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/classes/node-renderer.class.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/classes/renderer-host.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/classes/renderer-host.class.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/components/default-mark-renderer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/components/default-mark-renderer.component.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/components/default-node-renderer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/components/default-node-renderer.component.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/components/text-value.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/components/text-value.component.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/directives/mark-renderer-host.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/directives/mark-renderer-host.directive.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/directives/node-renderer-host.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/directives/node-renderer-host.directive.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/ngx-contentful-rich-text.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/ngx-contentful-rich-text.component.spec.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/ngx-contentful-rich-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/ngx-contentful-rich-text.component.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/ngx-contentful-rich-text.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/ngx-contentful-rich-text.module.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/lib/services/renderer-provider.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/lib/services/renderer-provider.service.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/public-api.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/src/test.ts -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/ngx-contentful-rich-text/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/projects/ngx-contentful-rich-text/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/docs/index.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/package.json -------------------------------------------------------------------------------- /website/src/components/StackBlitzEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/src/components/StackBlitzEmbed.tsx -------------------------------------------------------------------------------- /website/src/components/TryItOutArrow/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/src/components/TryItOutArrow/index.module.css -------------------------------------------------------------------------------- /website/src/components/TryItOutArrow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/src/components/TryItOutArrow/index.tsx -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/static/img/logo.png -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgajera/ngx-contentful-rich-text/HEAD/website/tsconfig.json --------------------------------------------------------------------------------