/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
core/templates/components/feedback-shared/feedback-shared.module.ts
50 строк
2 KB
NITISH KUMAR
[GSoC 2026] M2.3.2- Fix part of #24716: Added second half of shared UI components by Technical feedback dashboard, creator feedback tab and My suggestions tab (#26776)
02 авг 2026, 23:20
Не верифицирован
02 авг 2026, 23:20
e96ff4f
Код
Авторство
О чём код?
// Copyright 2026 The Oppia Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS-IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /** * @fileoverview Shared module declaring and exporting all reusable * feedback dashboard components. */ import {NgModule} from '@angular/core'; import {CommonModule} from '@angular/common'; import {FormsModule} from '@angular/forms'; import {SharedComponentsModule} from 'components/shared-component.module'; import {FeedbackEmptyStateComponent} from './feedback-empty-state/feedback-empty-state.component'; import {FeedbackFilterBarComponent} from './feedback-filter-bar/feedback-filter-bar.component'; import {FeedbackTableComponent} from './feedback-table/feedback-table.component'; import {FeedbackChipComponent} from './feedback-status-chip/feedback-chip.component'; import {FeedbackDetailPageComponent} from './feedback-detail-page/feedback-detail-page.component'; import {FeedbackDetailSectionComponent} from './feedback-detail-page/feedback-detail-section/feedback-detail-section.component'; @NgModule({ imports: [CommonModule, FormsModule, SharedComponentsModule], declarations: [ FeedbackEmptyStateComponent, FeedbackFilterBarComponent, FeedbackTableComponent, FeedbackChipComponent, FeedbackDetailPageComponent, FeedbackDetailSectionComponent, ], exports: [ FeedbackEmptyStateComponent, FeedbackFilterBarComponent, FeedbackTableComponent, FeedbackChipComponent, FeedbackDetailPageComponent, FeedbackDetailSectionComponent, ], }) export class FeedbackSharedModule {}