├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── angular-cli.json ├── deploy-gh-pages.sh ├── docs-theme ├── layouts │ └── default.hbs ├── partials │ ├── header.hbs │ └── member.sources.hbs └── templates │ └── reflection.hbs ├── e2e ├── app.e2e-spec.ts ├── app.po.ts ├── preview-panel │ └── preview-panel.e2e-spec.ts ├── shortcut-action │ ├── shortcut-action.e2e-spec.ts │ └── shortcut-action.po.ts └── tsconfig.json ├── example ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ └── index.ts ├── assets │ ├── .npmignore │ ├── mock-data-e2e │ │ ├── patches.json │ │ ├── problem-map.json │ │ ├── record.json │ │ └── schema.json │ └── mock-data │ │ ├── patches.json │ │ ├── problem-map.json │ │ ├── record.json │ │ └── schema.json ├── configs │ ├── config.e2e.ts │ ├── config.ts │ └── index.ts ├── environments │ ├── environment.e2e.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts └── tsconfig.json ├── gulpfile.js ├── index.ts ├── karma.conf.js ├── license-header.txt ├── package.json ├── protractor.conf.js ├── src ├── abstract-field │ ├── abstract-field.component.ts │ └── index.ts ├── abstract-list-field │ ├── abstract-list-field.component.ts │ └── index.ts ├── abstract-subscriber │ ├── abstract-subscriber.component.ts │ └── index.ts ├── add-field-dropdown │ ├── add-field-dropdown.component.html │ ├── add-field-dropdown.component.scss │ ├── add-field-dropdown.component.spec.ts │ ├── add-field-dropdown.component.ts │ ├── add-nested-field-dropdown.component.html │ ├── add-nested-field-dropdown.component.scss │ ├── add-nested-field-dropdown.component.ts │ └── index.ts ├── add-new-element-button │ ├── add-new-element-button.component.html │ ├── add-new-element-button.component.scss │ ├── add-new-element-button.component.ts │ └── index.ts ├── add-or-replace-patch │ ├── add-or-replace-patch.component.html │ ├── add-or-replace-patch.component.scss │ ├── add-or-replace-patch.component.ts │ └── index.ts ├── any-type-field │ ├── any-type-field.component.html │ ├── any-type-field.component.scss │ ├── any-type-field.component.ts │ └── index.ts ├── autocomplete-input │ ├── autocomplete-input.component.html │ ├── autocomplete-input.component.scss │ ├── autocomplete-input.component.spec.ts │ ├── autocomplete-input.component.ts │ └── index.ts ├── bottom-console-badges │ ├── bottom-console-badges.component.html │ ├── bottom-console-badges.component.scss │ ├── bottom-console-badges.component.ts │ └── index.ts ├── bottom-console │ ├── abstract-console-tab │ │ └── abstract-console-tab.component.scss │ ├── bottom-console.component.html │ ├── bottom-console.component.scss │ ├── bottom-console.component.ts │ ├── index.ts │ ├── patches-console-tab │ │ ├── index.ts │ │ ├── patches-console-tab.component.html │ │ ├── patches-console-tab.component.scss │ │ └── patches-console-tab.component.ts │ └── problems-console-tab │ │ ├── index.ts │ │ ├── problems-console-tab.component.html │ │ ├── problems-console-tab.component.scss │ │ └── problems-console-tab.component.ts ├── complex-list-field │ ├── complex-list-field.component.html │ ├── complex-list-field.component.scss │ ├── complex-list-field.component.ts │ └── index.ts ├── editor-previewer │ ├── editor-previewer.component.html │ ├── editor-previewer.component.scss │ ├── editor-previewer.component.ts │ └── index.ts ├── find-replace │ ├── find-replace.component.html │ ├── find-replace.component.scss │ ├── find-replace.component.ts │ └── index.ts ├── html-view │ ├── html-view.component.html │ ├── html-view.component.scss │ ├── html-view.component.ts │ └── index.ts ├── index.ts ├── json-editor.component.html ├── json-editor.component.scss ├── json-editor.component.ts ├── json-editor.module.ts ├── list-action-group │ ├── index.ts │ ├── list-action-group.component.html │ ├── list-action-group.component.scss │ └── list-action-group.component.ts ├── modal-view │ ├── index.ts │ ├── modal-view.component.html │ ├── modal-view.component.scss │ └── modal-view.component.ts ├── object-field │ ├── index.ts │ ├── object-field.component.html │ ├── object-field.component.scss │ └── object-field.component.ts ├── patch-actions │ ├── index.ts │ ├── patch-actions.component.html │ ├── patch-actions.component.scss │ └── patch-actions.component.ts ├── primitive-field │ ├── index.ts │ ├── primitive-field.component.html │ ├── primitive-field.component.scss │ ├── primitive-field.component.spec.ts │ └── primitive-field.component.ts ├── primitive-list-field │ ├── index.ts │ ├── primitive-list-field.component.html │ ├── primitive-list-field.component.scss │ └── primitive-list-field.component.ts ├── ref-field │ ├── index.ts │ ├── ref-field.component.html │ ├── ref-field.component.scss │ └── ref-field.component.ts ├── rxjs-operators.ts ├── searchable-dropdown │ ├── index.ts │ ├── searchable-dropdown.component.html │ ├── searchable-dropdown.component.scss │ ├── searchable-dropdown.component.spec.ts │ └── searchable-dropdown.component.ts ├── shared │ ├── classes │ │ ├── index.ts │ │ ├── sized-stack.spec.ts │ │ └── sized-stack.ts │ ├── directives │ │ ├── content-model.directive.ts │ │ ├── index.ts │ │ └── shortcuts.directive.ts │ ├── index.ts │ ├── interfaces │ │ ├── autocompletion-config.ts │ │ ├── categorized-validation-problems.ts │ │ ├── custom-format-validation.ts │ │ ├── custom-shortcut-keys.ts │ │ ├── custom-validation-messages.ts │ │ ├── http-header.ts │ │ ├── index.ts │ │ ├── json-editor-config.ts │ │ ├── json-patch.ts │ │ ├── json-patches-by-op.ts │ │ ├── json-patches-by-path.ts │ │ ├── json-schema.ts │ │ ├── katex-data.ts │ │ ├── long-list-navigator-config.ts │ │ ├── modal-options.ts │ │ ├── on-value-change-function.ts │ │ ├── paginated-item.ts │ │ ├── path-cache.ts │ │ ├── preview-config.ts │ │ ├── preview.ts │ │ ├── problem-collection-type.ts │ │ ├── problem-count.ts │ │ ├── ref-anchor-attributes.ts │ │ ├── ref-config.ts │ │ ├── schema-option.ts │ │ ├── schema-options.ts │ │ ├── schema-validation-problems.ts │ │ ├── shortcut-action-function.ts │ │ ├── shortcut.ts │ │ ├── tab.ts │ │ ├── tabs-config.ts │ │ ├── tsconfig.json │ │ ├── validation-problem.ts │ │ └── view-template-config.ts │ ├── pipes │ │ ├── add-always-show-fields.pipe.ts │ │ ├── different-keys.pipe.spec.ts │ │ ├── different-keys.pipe.ts │ │ ├── filter-by-expression.pipe.spec.ts │ │ ├── filter-by-expression.pipe.ts │ │ ├── filter-hidden-fields.pipe.spec.ts │ │ ├── filter-hidden-fields.pipe.ts │ │ ├── index.ts │ │ ├── keys-pipe.ts │ │ ├── last-path-element.pipe.ts │ │ ├── sanitize-url.pipe.ts │ │ ├── self-or-empty.pipe.spec.ts │ │ ├── self-or-empty.pipe.ts │ │ ├── set-first-element-path.pipe.ts │ │ ├── sort-alphabetically.pipe.ts │ │ ├── sort-keys-by-schema.pipe.ts │ │ ├── type-of.pipe.ts │ │ ├── underscore-to-space.pipe.spec.ts │ │ └── underscore-to-space.pipe.ts │ └── services │ │ ├── app-globals.service.ts │ │ ├── compare-keys-by-schema.service.spec.ts │ │ ├── compare-keys-by-schema.service.ts │ │ ├── component-type.service.spec.ts │ │ ├── component-type.service.ts │ │ ├── dom-util.service.ts │ │ ├── empty-value.service.spec.ts │ │ ├── empty-value.service.ts │ │ ├── find-replace-all.service.spec.ts │ │ ├── find-replace-all.service.ts │ │ ├── index.ts │ │ ├── json-schema.service.spec.ts │ │ ├── json-schema.service.ts │ │ ├── json-store.service.spec.ts │ │ ├── json-store.service.ts │ │ ├── json-util.service.ts │ │ ├── katex.service.ts │ │ ├── keys-store.service.spec.ts │ │ ├── keys-store.service.ts │ │ ├── list-page-changer.service.spec.ts │ │ ├── list-page-changer.service.ts │ │ ├── modal.service.ts │ │ ├── path-util.service.spec.ts │ │ ├── path-util.service.ts │ │ ├── problems.service.spec.ts │ │ ├── problems.service.ts │ │ ├── record-fixer.service.spec.ts │ │ ├── record-fixer.service.ts │ │ ├── remote-autocompletion.service.spec.ts │ │ ├── remote-autocompletion.service.ts │ │ ├── schema-fixer.service.spec.ts │ │ ├── schema-fixer.service.ts │ │ ├── schema-validation.service.spec.ts │ │ ├── schema-validation.service.ts │ │ ├── shortcut-action.service.ts │ │ ├── tabs-util.service.spec.ts │ │ ├── tabs-util.service.ts │ │ ├── text-diff.service.ts │ │ └── window-href.service.ts ├── string-input │ ├── index.ts │ ├── string-input.component.html │ ├── string-input.component.scss │ └── string-input.component.ts ├── sub-record │ ├── index.ts │ ├── sub-record.component.html │ ├── sub-record.component.scss │ └── sub-record.component.ts ├── table-item-field │ ├── index.ts │ ├── table-item-field.component.html │ ├── table-item-field.component.scss │ └── table-item-field.component.ts ├── table-list-field │ ├── index.ts │ ├── table-list-field.component.html │ ├── table-list-field.component.scss │ └── table-list-field.component.ts ├── text-diff │ ├── index.ts │ ├── text-diff.component.html │ ├── text-diff.component.scss │ └── text-diff.component.ts ├── title-dropdown │ ├── index.ts │ ├── title-dropdown.component.html │ ├── title-dropdown.component.scss │ └── title-dropdown.component.ts ├── tree-menu │ ├── index.ts │ ├── tree-menu-item.component.html │ ├── tree-menu-item.component.scss │ ├── tree-menu-item.component.ts │ ├── tree-menu.component.html │ ├── tree-menu.component.scss │ ├── tree-menu.component.spec.ts │ └── tree-menu.component.ts └── tsconfig.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/README.md -------------------------------------------------------------------------------- /angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/angular-cli.json -------------------------------------------------------------------------------- /deploy-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/deploy-gh-pages.sh -------------------------------------------------------------------------------- /docs-theme/layouts/default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/docs-theme/layouts/default.hbs -------------------------------------------------------------------------------- /docs-theme/partials/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/docs-theme/partials/header.hbs -------------------------------------------------------------------------------- /docs-theme/partials/member.sources.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/docs-theme/partials/member.sources.hbs -------------------------------------------------------------------------------- /docs-theme/templates/reflection.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/docs-theme/templates/reflection.hbs -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/preview-panel/preview-panel.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/e2e/preview-panel/preview-panel.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/shortcut-action/shortcut-action.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/e2e/shortcut-action/shortcut-action.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/shortcut-action/shortcut-action.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/e2e/shortcut-action/shortcut-action.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /example/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/app/app.component.html -------------------------------------------------------------------------------- /example/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/app/app.component.scss -------------------------------------------------------------------------------- /example/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/app/app.component.ts -------------------------------------------------------------------------------- /example/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/app/app.module.ts -------------------------------------------------------------------------------- /example/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/app/index.ts -------------------------------------------------------------------------------- /example/assets/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/assets/mock-data-e2e/patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/assets/mock-data-e2e/patches.json -------------------------------------------------------------------------------- /example/assets/mock-data-e2e/problem-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/assets/mock-data-e2e/problem-map.json -------------------------------------------------------------------------------- /example/assets/mock-data-e2e/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/assets/mock-data-e2e/record.json -------------------------------------------------------------------------------- /example/assets/mock-data-e2e/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/assets/mock-data-e2e/schema.json -------------------------------------------------------------------------------- /example/assets/mock-data/patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/assets/mock-data/patches.json -------------------------------------------------------------------------------- /example/assets/mock-data/problem-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/assets/mock-data/problem-map.json -------------------------------------------------------------------------------- /example/assets/mock-data/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/assets/mock-data/record.json -------------------------------------------------------------------------------- /example/assets/mock-data/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/assets/mock-data/schema.json -------------------------------------------------------------------------------- /example/configs/config.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/configs/config.e2e.ts -------------------------------------------------------------------------------- /example/configs/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/configs/config.ts -------------------------------------------------------------------------------- /example/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/configs/index.ts -------------------------------------------------------------------------------- /example/environments/environment.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/environments/environment.e2e.ts -------------------------------------------------------------------------------- /example/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/environments/environment.prod.ts -------------------------------------------------------------------------------- /example/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/environments/environment.ts -------------------------------------------------------------------------------- /example/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/favicon.ico -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/index.html -------------------------------------------------------------------------------- /example/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/main.ts -------------------------------------------------------------------------------- /example/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/polyfills.ts -------------------------------------------------------------------------------- /example/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/styles.scss -------------------------------------------------------------------------------- /example/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/test.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/index.ts -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/karma.conf.js -------------------------------------------------------------------------------- /license-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/license-header.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/abstract-field/abstract-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/abstract-field/abstract-field.component.ts -------------------------------------------------------------------------------- /src/abstract-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/abstract-field/index.ts -------------------------------------------------------------------------------- /src/abstract-list-field/abstract-list-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/abstract-list-field/abstract-list-field.component.ts -------------------------------------------------------------------------------- /src/abstract-list-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/abstract-list-field/index.ts -------------------------------------------------------------------------------- /src/abstract-subscriber/abstract-subscriber.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/abstract-subscriber/abstract-subscriber.component.ts -------------------------------------------------------------------------------- /src/abstract-subscriber/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/abstract-subscriber/index.ts -------------------------------------------------------------------------------- /src/add-field-dropdown/add-field-dropdown.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-field-dropdown/add-field-dropdown.component.html -------------------------------------------------------------------------------- /src/add-field-dropdown/add-field-dropdown.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-field-dropdown/add-field-dropdown.component.scss -------------------------------------------------------------------------------- /src/add-field-dropdown/add-field-dropdown.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-field-dropdown/add-field-dropdown.component.spec.ts -------------------------------------------------------------------------------- /src/add-field-dropdown/add-field-dropdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-field-dropdown/add-field-dropdown.component.ts -------------------------------------------------------------------------------- /src/add-field-dropdown/add-nested-field-dropdown.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-field-dropdown/add-nested-field-dropdown.component.html -------------------------------------------------------------------------------- /src/add-field-dropdown/add-nested-field-dropdown.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-field-dropdown/add-nested-field-dropdown.component.scss -------------------------------------------------------------------------------- /src/add-field-dropdown/add-nested-field-dropdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-field-dropdown/add-nested-field-dropdown.component.ts -------------------------------------------------------------------------------- /src/add-field-dropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-field-dropdown/index.ts -------------------------------------------------------------------------------- /src/add-new-element-button/add-new-element-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-new-element-button/add-new-element-button.component.html -------------------------------------------------------------------------------- /src/add-new-element-button/add-new-element-button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-new-element-button/add-new-element-button.component.scss -------------------------------------------------------------------------------- /src/add-new-element-button/add-new-element-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-new-element-button/add-new-element-button.component.ts -------------------------------------------------------------------------------- /src/add-new-element-button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-new-element-button/index.ts -------------------------------------------------------------------------------- /src/add-or-replace-patch/add-or-replace-patch.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-or-replace-patch/add-or-replace-patch.component.html -------------------------------------------------------------------------------- /src/add-or-replace-patch/add-or-replace-patch.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-or-replace-patch/add-or-replace-patch.component.scss -------------------------------------------------------------------------------- /src/add-or-replace-patch/add-or-replace-patch.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-or-replace-patch/add-or-replace-patch.component.ts -------------------------------------------------------------------------------- /src/add-or-replace-patch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/add-or-replace-patch/index.ts -------------------------------------------------------------------------------- /src/any-type-field/any-type-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/any-type-field/any-type-field.component.html -------------------------------------------------------------------------------- /src/any-type-field/any-type-field.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/any-type-field/any-type-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/any-type-field/any-type-field.component.ts -------------------------------------------------------------------------------- /src/any-type-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/any-type-field/index.ts -------------------------------------------------------------------------------- /src/autocomplete-input/autocomplete-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/autocomplete-input/autocomplete-input.component.html -------------------------------------------------------------------------------- /src/autocomplete-input/autocomplete-input.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autocomplete-input/autocomplete-input.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/autocomplete-input/autocomplete-input.component.spec.ts -------------------------------------------------------------------------------- /src/autocomplete-input/autocomplete-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/autocomplete-input/autocomplete-input.component.ts -------------------------------------------------------------------------------- /src/autocomplete-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/autocomplete-input/index.ts -------------------------------------------------------------------------------- /src/bottom-console-badges/bottom-console-badges.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console-badges/bottom-console-badges.component.html -------------------------------------------------------------------------------- /src/bottom-console-badges/bottom-console-badges.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console-badges/bottom-console-badges.component.scss -------------------------------------------------------------------------------- /src/bottom-console-badges/bottom-console-badges.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console-badges/bottom-console-badges.component.ts -------------------------------------------------------------------------------- /src/bottom-console-badges/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console-badges/index.ts -------------------------------------------------------------------------------- /src/bottom-console/abstract-console-tab/abstract-console-tab.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/abstract-console-tab/abstract-console-tab.component.scss -------------------------------------------------------------------------------- /src/bottom-console/bottom-console.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/bottom-console.component.html -------------------------------------------------------------------------------- /src/bottom-console/bottom-console.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bottom-console/bottom-console.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/bottom-console.component.ts -------------------------------------------------------------------------------- /src/bottom-console/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/index.ts -------------------------------------------------------------------------------- /src/bottom-console/patches-console-tab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/patches-console-tab/index.ts -------------------------------------------------------------------------------- /src/bottom-console/patches-console-tab/patches-console-tab.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/patches-console-tab/patches-console-tab.component.html -------------------------------------------------------------------------------- /src/bottom-console/patches-console-tab/patches-console-tab.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/patches-console-tab/patches-console-tab.component.scss -------------------------------------------------------------------------------- /src/bottom-console/patches-console-tab/patches-console-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/patches-console-tab/patches-console-tab.component.ts -------------------------------------------------------------------------------- /src/bottom-console/problems-console-tab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/problems-console-tab/index.ts -------------------------------------------------------------------------------- /src/bottom-console/problems-console-tab/problems-console-tab.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/problems-console-tab/problems-console-tab.component.html -------------------------------------------------------------------------------- /src/bottom-console/problems-console-tab/problems-console-tab.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/problems-console-tab/problems-console-tab.component.scss -------------------------------------------------------------------------------- /src/bottom-console/problems-console-tab/problems-console-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/bottom-console/problems-console-tab/problems-console-tab.component.ts -------------------------------------------------------------------------------- /src/complex-list-field/complex-list-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/complex-list-field/complex-list-field.component.html -------------------------------------------------------------------------------- /src/complex-list-field/complex-list-field.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/complex-list-field/complex-list-field.component.scss -------------------------------------------------------------------------------- /src/complex-list-field/complex-list-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/complex-list-field/complex-list-field.component.ts -------------------------------------------------------------------------------- /src/complex-list-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/complex-list-field/index.ts -------------------------------------------------------------------------------- /src/editor-previewer/editor-previewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/editor-previewer/editor-previewer.component.html -------------------------------------------------------------------------------- /src/editor-previewer/editor-previewer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/editor-previewer/editor-previewer.component.scss -------------------------------------------------------------------------------- /src/editor-previewer/editor-previewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/editor-previewer/editor-previewer.component.ts -------------------------------------------------------------------------------- /src/editor-previewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/editor-previewer/index.ts -------------------------------------------------------------------------------- /src/find-replace/find-replace.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/find-replace/find-replace.component.html -------------------------------------------------------------------------------- /src/find-replace/find-replace.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/find-replace/find-replace.component.scss -------------------------------------------------------------------------------- /src/find-replace/find-replace.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/find-replace/find-replace.component.ts -------------------------------------------------------------------------------- /src/find-replace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/find-replace/index.ts -------------------------------------------------------------------------------- /src/html-view/html-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/html-view/html-view.component.html -------------------------------------------------------------------------------- /src/html-view/html-view.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/html-view/html-view.component.scss -------------------------------------------------------------------------------- /src/html-view/html-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/html-view/html-view.component.ts -------------------------------------------------------------------------------- /src/html-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/html-view/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/json-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/json-editor.component.html -------------------------------------------------------------------------------- /src/json-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/json-editor.component.scss -------------------------------------------------------------------------------- /src/json-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/json-editor.component.ts -------------------------------------------------------------------------------- /src/json-editor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/json-editor.module.ts -------------------------------------------------------------------------------- /src/list-action-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/list-action-group/index.ts -------------------------------------------------------------------------------- /src/list-action-group/list-action-group.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/list-action-group/list-action-group.component.html -------------------------------------------------------------------------------- /src/list-action-group/list-action-group.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/list-action-group/list-action-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/list-action-group/list-action-group.component.ts -------------------------------------------------------------------------------- /src/modal-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/modal-view/index.ts -------------------------------------------------------------------------------- /src/modal-view/modal-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/modal-view/modal-view.component.html -------------------------------------------------------------------------------- /src/modal-view/modal-view.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modal-view/modal-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/modal-view/modal-view.component.ts -------------------------------------------------------------------------------- /src/object-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/object-field/index.ts -------------------------------------------------------------------------------- /src/object-field/object-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/object-field/object-field.component.html -------------------------------------------------------------------------------- /src/object-field/object-field.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/object-field/object-field.component.scss -------------------------------------------------------------------------------- /src/object-field/object-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/object-field/object-field.component.ts -------------------------------------------------------------------------------- /src/patch-actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/patch-actions/index.ts -------------------------------------------------------------------------------- /src/patch-actions/patch-actions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/patch-actions/patch-actions.component.html -------------------------------------------------------------------------------- /src/patch-actions/patch-actions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/patch-actions/patch-actions.component.scss -------------------------------------------------------------------------------- /src/patch-actions/patch-actions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/patch-actions/patch-actions.component.ts -------------------------------------------------------------------------------- /src/primitive-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/primitive-field/index.ts -------------------------------------------------------------------------------- /src/primitive-field/primitive-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/primitive-field/primitive-field.component.html -------------------------------------------------------------------------------- /src/primitive-field/primitive-field.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/primitive-field/primitive-field.component.scss -------------------------------------------------------------------------------- /src/primitive-field/primitive-field.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/primitive-field/primitive-field.component.spec.ts -------------------------------------------------------------------------------- /src/primitive-field/primitive-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/primitive-field/primitive-field.component.ts -------------------------------------------------------------------------------- /src/primitive-list-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/primitive-list-field/index.ts -------------------------------------------------------------------------------- /src/primitive-list-field/primitive-list-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/primitive-list-field/primitive-list-field.component.html -------------------------------------------------------------------------------- /src/primitive-list-field/primitive-list-field.component.scss: -------------------------------------------------------------------------------- 1 | td { 2 | padding: 0px !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/primitive-list-field/primitive-list-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/primitive-list-field/primitive-list-field.component.ts -------------------------------------------------------------------------------- /src/ref-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/ref-field/index.ts -------------------------------------------------------------------------------- /src/ref-field/ref-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/ref-field/ref-field.component.html -------------------------------------------------------------------------------- /src/ref-field/ref-field.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/ref-field/ref-field.component.scss -------------------------------------------------------------------------------- /src/ref-field/ref-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/ref-field/ref-field.component.ts -------------------------------------------------------------------------------- /src/rxjs-operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/rxjs-operators.ts -------------------------------------------------------------------------------- /src/searchable-dropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/searchable-dropdown/index.ts -------------------------------------------------------------------------------- /src/searchable-dropdown/searchable-dropdown.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/searchable-dropdown/searchable-dropdown.component.html -------------------------------------------------------------------------------- /src/searchable-dropdown/searchable-dropdown.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/searchable-dropdown/searchable-dropdown.component.scss -------------------------------------------------------------------------------- /src/searchable-dropdown/searchable-dropdown.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/searchable-dropdown/searchable-dropdown.component.spec.ts -------------------------------------------------------------------------------- /src/searchable-dropdown/searchable-dropdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/searchable-dropdown/searchable-dropdown.component.ts -------------------------------------------------------------------------------- /src/shared/classes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/classes/index.ts -------------------------------------------------------------------------------- /src/shared/classes/sized-stack.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/classes/sized-stack.spec.ts -------------------------------------------------------------------------------- /src/shared/classes/sized-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/classes/sized-stack.ts -------------------------------------------------------------------------------- /src/shared/directives/content-model.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/directives/content-model.directive.ts -------------------------------------------------------------------------------- /src/shared/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/directives/index.ts -------------------------------------------------------------------------------- /src/shared/directives/shortcuts.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/directives/shortcuts.directive.ts -------------------------------------------------------------------------------- /src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/index.ts -------------------------------------------------------------------------------- /src/shared/interfaces/autocompletion-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/autocompletion-config.ts -------------------------------------------------------------------------------- /src/shared/interfaces/categorized-validation-problems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/categorized-validation-problems.ts -------------------------------------------------------------------------------- /src/shared/interfaces/custom-format-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/custom-format-validation.ts -------------------------------------------------------------------------------- /src/shared/interfaces/custom-shortcut-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/custom-shortcut-keys.ts -------------------------------------------------------------------------------- /src/shared/interfaces/custom-validation-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/custom-validation-messages.ts -------------------------------------------------------------------------------- /src/shared/interfaces/http-header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/http-header.ts -------------------------------------------------------------------------------- /src/shared/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/index.ts -------------------------------------------------------------------------------- /src/shared/interfaces/json-editor-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/json-editor-config.ts -------------------------------------------------------------------------------- /src/shared/interfaces/json-patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/json-patch.ts -------------------------------------------------------------------------------- /src/shared/interfaces/json-patches-by-op.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/json-patches-by-op.ts -------------------------------------------------------------------------------- /src/shared/interfaces/json-patches-by-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/json-patches-by-path.ts -------------------------------------------------------------------------------- /src/shared/interfaces/json-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/json-schema.ts -------------------------------------------------------------------------------- /src/shared/interfaces/katex-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/katex-data.ts -------------------------------------------------------------------------------- /src/shared/interfaces/long-list-navigator-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/long-list-navigator-config.ts -------------------------------------------------------------------------------- /src/shared/interfaces/modal-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/modal-options.ts -------------------------------------------------------------------------------- /src/shared/interfaces/on-value-change-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/on-value-change-function.ts -------------------------------------------------------------------------------- /src/shared/interfaces/paginated-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/paginated-item.ts -------------------------------------------------------------------------------- /src/shared/interfaces/path-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/path-cache.ts -------------------------------------------------------------------------------- /src/shared/interfaces/preview-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/preview-config.ts -------------------------------------------------------------------------------- /src/shared/interfaces/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/preview.ts -------------------------------------------------------------------------------- /src/shared/interfaces/problem-collection-type.ts: -------------------------------------------------------------------------------- 1 | export type ProblemCollectionType = 'errors' | 'warnings'; 2 | -------------------------------------------------------------------------------- /src/shared/interfaces/problem-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/problem-count.ts -------------------------------------------------------------------------------- /src/shared/interfaces/ref-anchor-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/ref-anchor-attributes.ts -------------------------------------------------------------------------------- /src/shared/interfaces/ref-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/ref-config.ts -------------------------------------------------------------------------------- /src/shared/interfaces/schema-option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/schema-option.ts -------------------------------------------------------------------------------- /src/shared/interfaces/schema-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/schema-options.ts -------------------------------------------------------------------------------- /src/shared/interfaces/schema-validation-problems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/schema-validation-problems.ts -------------------------------------------------------------------------------- /src/shared/interfaces/shortcut-action-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/shortcut-action-function.ts -------------------------------------------------------------------------------- /src/shared/interfaces/shortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/shortcut.ts -------------------------------------------------------------------------------- /src/shared/interfaces/tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/tab.ts -------------------------------------------------------------------------------- /src/shared/interfaces/tabs-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/tabs-config.ts -------------------------------------------------------------------------------- /src/shared/interfaces/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/tsconfig.json -------------------------------------------------------------------------------- /src/shared/interfaces/validation-problem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/validation-problem.ts -------------------------------------------------------------------------------- /src/shared/interfaces/view-template-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/interfaces/view-template-config.ts -------------------------------------------------------------------------------- /src/shared/pipes/add-always-show-fields.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/add-always-show-fields.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/different-keys.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/different-keys.pipe.spec.ts -------------------------------------------------------------------------------- /src/shared/pipes/different-keys.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/different-keys.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/filter-by-expression.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/filter-by-expression.pipe.spec.ts -------------------------------------------------------------------------------- /src/shared/pipes/filter-by-expression.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/filter-by-expression.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/filter-hidden-fields.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/filter-hidden-fields.pipe.spec.ts -------------------------------------------------------------------------------- /src/shared/pipes/filter-hidden-fields.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/filter-hidden-fields.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/index.ts -------------------------------------------------------------------------------- /src/shared/pipes/keys-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/keys-pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/last-path-element.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/last-path-element.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/sanitize-url.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/sanitize-url.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/self-or-empty.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/self-or-empty.pipe.spec.ts -------------------------------------------------------------------------------- /src/shared/pipes/self-or-empty.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/self-or-empty.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/set-first-element-path.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/set-first-element-path.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/sort-alphabetically.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/sort-alphabetically.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/sort-keys-by-schema.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/sort-keys-by-schema.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/type-of.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/type-of.pipe.ts -------------------------------------------------------------------------------- /src/shared/pipes/underscore-to-space.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/underscore-to-space.pipe.spec.ts -------------------------------------------------------------------------------- /src/shared/pipes/underscore-to-space.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/pipes/underscore-to-space.pipe.ts -------------------------------------------------------------------------------- /src/shared/services/app-globals.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/app-globals.service.ts -------------------------------------------------------------------------------- /src/shared/services/compare-keys-by-schema.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/compare-keys-by-schema.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/compare-keys-by-schema.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/compare-keys-by-schema.service.ts -------------------------------------------------------------------------------- /src/shared/services/component-type.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/component-type.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/component-type.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/component-type.service.ts -------------------------------------------------------------------------------- /src/shared/services/dom-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/dom-util.service.ts -------------------------------------------------------------------------------- /src/shared/services/empty-value.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/empty-value.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/empty-value.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/empty-value.service.ts -------------------------------------------------------------------------------- /src/shared/services/find-replace-all.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/find-replace-all.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/find-replace-all.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/find-replace-all.service.ts -------------------------------------------------------------------------------- /src/shared/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/index.ts -------------------------------------------------------------------------------- /src/shared/services/json-schema.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/json-schema.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/json-schema.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/json-schema.service.ts -------------------------------------------------------------------------------- /src/shared/services/json-store.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/json-store.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/json-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/json-store.service.ts -------------------------------------------------------------------------------- /src/shared/services/json-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/json-util.service.ts -------------------------------------------------------------------------------- /src/shared/services/katex.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/katex.service.ts -------------------------------------------------------------------------------- /src/shared/services/keys-store.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/keys-store.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/keys-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/keys-store.service.ts -------------------------------------------------------------------------------- /src/shared/services/list-page-changer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/list-page-changer.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/list-page-changer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/list-page-changer.service.ts -------------------------------------------------------------------------------- /src/shared/services/modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/modal.service.ts -------------------------------------------------------------------------------- /src/shared/services/path-util.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/path-util.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/path-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/path-util.service.ts -------------------------------------------------------------------------------- /src/shared/services/problems.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/problems.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/problems.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/problems.service.ts -------------------------------------------------------------------------------- /src/shared/services/record-fixer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/record-fixer.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/record-fixer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/record-fixer.service.ts -------------------------------------------------------------------------------- /src/shared/services/remote-autocompletion.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/remote-autocompletion.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/remote-autocompletion.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/remote-autocompletion.service.ts -------------------------------------------------------------------------------- /src/shared/services/schema-fixer.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/schema-fixer.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/schema-fixer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/schema-fixer.service.ts -------------------------------------------------------------------------------- /src/shared/services/schema-validation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/schema-validation.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/schema-validation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/schema-validation.service.ts -------------------------------------------------------------------------------- /src/shared/services/shortcut-action.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/shortcut-action.service.ts -------------------------------------------------------------------------------- /src/shared/services/tabs-util.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/tabs-util.service.spec.ts -------------------------------------------------------------------------------- /src/shared/services/tabs-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/tabs-util.service.ts -------------------------------------------------------------------------------- /src/shared/services/text-diff.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/text-diff.service.ts -------------------------------------------------------------------------------- /src/shared/services/window-href.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/shared/services/window-href.service.ts -------------------------------------------------------------------------------- /src/string-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/string-input/index.ts -------------------------------------------------------------------------------- /src/string-input/string-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/string-input/string-input.component.html -------------------------------------------------------------------------------- /src/string-input/string-input.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/string-input/string-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/string-input/string-input.component.ts -------------------------------------------------------------------------------- /src/sub-record/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/sub-record/index.ts -------------------------------------------------------------------------------- /src/sub-record/sub-record.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/sub-record/sub-record.component.html -------------------------------------------------------------------------------- /src/sub-record/sub-record.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/sub-record/sub-record.component.scss -------------------------------------------------------------------------------- /src/sub-record/sub-record.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/sub-record/sub-record.component.ts -------------------------------------------------------------------------------- /src/table-item-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/table-item-field/index.ts -------------------------------------------------------------------------------- /src/table-item-field/table-item-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/table-item-field/table-item-field.component.html -------------------------------------------------------------------------------- /src/table-item-field/table-item-field.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/table-item-field/table-item-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/table-item-field/table-item-field.component.ts -------------------------------------------------------------------------------- /src/table-list-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/table-list-field/index.ts -------------------------------------------------------------------------------- /src/table-list-field/table-list-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/table-list-field/table-list-field.component.html -------------------------------------------------------------------------------- /src/table-list-field/table-list-field.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/table-list-field/table-list-field.component.scss -------------------------------------------------------------------------------- /src/table-list-field/table-list-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/table-list-field/table-list-field.component.ts -------------------------------------------------------------------------------- /src/text-diff/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/text-diff/index.ts -------------------------------------------------------------------------------- /src/text-diff/text-diff.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/text-diff/text-diff.component.html -------------------------------------------------------------------------------- /src/text-diff/text-diff.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/text-diff/text-diff.component.scss -------------------------------------------------------------------------------- /src/text-diff/text-diff.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/text-diff/text-diff.component.ts -------------------------------------------------------------------------------- /src/title-dropdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/title-dropdown/index.ts -------------------------------------------------------------------------------- /src/title-dropdown/title-dropdown.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/title-dropdown/title-dropdown.component.html -------------------------------------------------------------------------------- /src/title-dropdown/title-dropdown.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/title-dropdown/title-dropdown.component.scss -------------------------------------------------------------------------------- /src/title-dropdown/title-dropdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/title-dropdown/title-dropdown.component.ts -------------------------------------------------------------------------------- /src/tree-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/tree-menu/index.ts -------------------------------------------------------------------------------- /src/tree-menu/tree-menu-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/tree-menu/tree-menu-item.component.html -------------------------------------------------------------------------------- /src/tree-menu/tree-menu-item.component.scss: -------------------------------------------------------------------------------- 1 | a { 2 | color: #e0dfdf; 3 | } -------------------------------------------------------------------------------- /src/tree-menu/tree-menu-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/tree-menu/tree-menu-item.component.ts -------------------------------------------------------------------------------- /src/tree-menu/tree-menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/tree-menu/tree-menu.component.html -------------------------------------------------------------------------------- /src/tree-menu/tree-menu.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/tree-menu/tree-menu.component.scss -------------------------------------------------------------------------------- /src/tree-menu/tree-menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/tree-menu/tree-menu.component.spec.ts -------------------------------------------------------------------------------- /src/tree-menu/tree-menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/tree-menu/tree-menu.component.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inveniosoftware-contrib/ng2-json-editor/HEAD/yarn.lock --------------------------------------------------------------------------------