/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
core/templates/components/progress-bar/progress-bar.component.ts
29 строк
989 B
Hardik Goyal
[GSoC 2025] M 2.5 & M2.6 - Fix part of #19217: Added common player header and redesigned all the players (#23087)
24 авг 2025, 17:14
Не верифицирован
24 авг 2025, 17:14
710aad2
Код
Авторство
О чём код?
// Copyright 2025 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 Common progress bar component. */ import {Component, Input} from '@angular/core'; import './progress-bar.component.css'; @Component({ selector: 'oppia-progress-bar', templateUrl: './progress-bar.component.html', styleUrls: ['./progress-bar.component.css'], }) export class ProgressBarComponent { @Input() progressPercentage: number = 0; }