2023-11-06 16:42:56 +00:00
|
|
|
/*!
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google LLC All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
|
|
|
*/
|
|
|
|
|
|
2024-10-25 11:38:59 +00:00
|
|
|
import {ChangeDetectionStrategy, Component, input} from '@angular/core';
|
2023-11-06 16:42:56 +00:00
|
|
|
import {RouterLink} from '@angular/router';
|
|
|
|
|
import {ApiItemsGroup} from '../interfaces/api-items-group';
|
|
|
|
|
import ApiItemLabel from '../api-item-label/api-item-label.component';
|
2023-11-27 21:27:36 +00:00
|
|
|
import {IconComponent} from '@angular/docs';
|
2023-11-06 16:42:56 +00:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'adev-api-items-section',
|
|
|
|
|
standalone: true,
|
2024-04-14 19:44:21 +00:00
|
|
|
imports: [ApiItemLabel, RouterLink, IconComponent],
|
2023-11-06 16:42:56 +00:00
|
|
|
templateUrl: './api-items-section.component.html',
|
|
|
|
|
styleUrls: ['./api-items-section.component.scss'],
|
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
|
|
|
})
|
|
|
|
|
export default class ApiItemsSection {
|
2024-10-25 11:38:59 +00:00
|
|
|
group = input.required<ApiItemsGroup>();
|
2023-11-06 16:42:56 +00:00
|
|
|
}
|