dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AILabelModule cluster_AILabelModule_declarations cluster_AILabelModule_exports cluster_AILabelModule_imports AILabelActions AILabelActions AILabelModule AILabelModule AILabelActions->AILabelModule AILabelComponent AILabelComponent AILabelComponent->AILabelModule AILabelContent AILabelContent AILabelContent->AILabelModule AILabelPopoverDirective AILabelPopoverDirective AILabelPopoverDirective->AILabelModule AILabelActions AILabelActions AILabelModule->AILabelActions AILabelComponent AILabelComponent AILabelModule->AILabelComponent AILabelContent AILabelContent AILabelModule->AILabelContent ButtonModule ButtonModule ButtonModule->AILabelModule IconModule IconModule IconModule->AILabelModule PopoverModule PopoverModule PopoverModule->AILabelModule
/**
 * Copyright IBM Corp. 2024, 2026
 *
 * This source code is licensed under the Apache-2.0 license found in the
 * LICENSE file in the root directory of this source tree.
 */

import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";

import { ButtonModule } from "carbon-components-angular/button";
import { IconModule } from "carbon-components-angular/icon";
import { PopoverModule } from "carbon-components-angular/popover";

import { AILabelComponent } from "./ai-label.component";
import { AILabelPopoverDirective } from "./ai-label-popover.directive";
import { AILabelContent } from "./ai-label-content.directive";
import { AILabelActions } from "./ai-label-actions.directive";

@NgModule({
	declarations: [
		AILabelComponent,
		AILabelPopoverDirective,
		AILabelContent,
		AILabelActions
	],
	exports: [
		AILabelComponent,
		AILabelContent,
		AILabelActions
	],
	imports: [
		CommonModule,
		ButtonModule,
		IconModule,
		PopoverModule
	]
})
export class AILabelModule {}

results matching ""

    No results matching ""