Adding Resource dictionary 30/106230/5
authorswapnalipode <sp00501638@techmahindra.com>
Sat, 18 Apr 2020 14:15:12 +0000 (19:45 +0530)
committerSwapnali Pode <sp00501638@techmahindra.com>
Tue, 21 Apr 2020 16:16:20 +0000 (16:16 +0000)
commitb85c484da92c3b6721bb241376074fd9d7a712e2
treed85aff1e31f31d73853ba528e82017530cd82cec
parent3c10444c1d9d84b4d7f38b223fd304450cb36eb6
Adding Resource dictionary

Adding resource-dictionary

Change-Id: Ib23b282e7293843ce94263e82b3f7cdb0fe36c5a
Issue-ID: CCSDK-2253
Signed-off-by: swapnalipode <sp00501638@techmahindra.com>
44 files changed:
cds-ui/designer-client/src/app/app-routing.module.ts
cds-ui/designer-client/src/app/app.module.ts
cds-ui/designer-client/src/app/common/constants/app-constants.ts
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/dictionary-api.service.spec.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/dictionary-api.service.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/dictionary.store.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/definition.model.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/dictionary-dashboard.state.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/dictionary.model.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/metaData.model.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/model/sources.model.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-header/dictionary-header.component.css [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-header/dictionary-header.component.html [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-header/dictionary-header.component.spec.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-header/dictionary-header.component.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-list/dictionary-list.component.css [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-list/dictionary-list.component.html [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-list/dictionary-list.component.spec.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-list/dictionary-list.component.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-pagination/dictionary-pagination.component.css [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-pagination/dictionary-pagination.component.html [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-pagination/dictionary-pagination.component.spec.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/dictionary-pagination/dictionary-pagination.component.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/filterby-tags/filterby-tags.component.css [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/filterby-tags/filterby-tags.component.html [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/filterby-tags/filterby-tags.component.spec.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/filterby-tags/filterby-tags.component.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/resource-dictionary-dashboard.component.css [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/resource-dictionary-dashboard.component.html [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/resource-dictionary-dashboard.component.spec.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/resource-dictionary-dashboard.component.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/search-dictionary/search-dictionary.component.css [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/search-dictionary/search-dictionary.component.html [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/search-dictionary/search-dictionary.component.spec.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/search-dictionary/search-dictionary.component.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/sort-dictionary/sort-dictionary.component.css [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/sort-dictionary/sort-dictionary.component.html [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/sort-dictionary/sort-dictionary.component.spec.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-dashboard/sort-dictionary/sort-dictionary.component.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary-routing.module.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/feature-modules/resource-dictionary/resource-dictionary.module.ts [new file with mode: 0644]
cds-ui/designer-client/src/app/modules/shared-modules/header/header.component.html
cds-ui/designer-client/src/app/modules/shared-modules/header/header.component.ts
cds-ui/designer-client/src/app/modules/shared-modules/shared-modules.module.ts