返回 Skill 列表
extension
分类: 开发与工程无需 API Key

igniteui-angular-components

涵盖了所有非网格的Ignite UI for Angular UI组件:应用程序脚手架和设置、表单控件(输入、组合框、选择器、日期/时间选择器、日历、复选框、单选按钮、开关、滑块)、布局容器(标签页、步骤条、折叠面板、分割器、导航抽屉)、数据展示组件(列表、树、卡片、标签、轮播图、分页器、进度指示器、聊天)、反馈覆盖层(对话框、小吃栏、吐司、横幅)、指令(按钮、图标按钮、按钮组、波纹效果、工具提示、拖放)、Dock Manager、Layout Manager和图表。当用户询问任何不是数据网格的Ignite UI Angular组件时使用——例如表单、下拉菜单、选择器、对话框、导航、列表、树、卡片、图表或初始项目设置。不要用于数据网格、表格或表格数据——请改用igniteui-angular-grids。不要用于主题或样式——请改用igniteui-angular-theming。

person作者: jakexiaohubgithub

Ignite UI for Angular — UI Components

MANDATORY AGENT PROTOCOL — YOU MUST FOLLOW THIS BEFORE PRODUCING ANY OUTPUT

This file is a routing hub only. It contains NO code examples and NO API details.

DO NOT write any component selectors, import paths, input names, output names, or directive names from memory. Component APIs change between versions. Anything generated without reading the reference files will be incorrect.

You are required to complete ALL of the following steps before producing any component-related code or answer:

STEP 1 — Identify every component or feature involved. Map the user's request to one or more rows in the Task → Reference File table below. A single request often spans multiple categories (e.g., a form inside a Dialog requires reading both form-controls.md AND feedback.md).

STEP 2 — Read every identified reference file in full (PARALLEL). Call read_file (or equivalent) on all reference files identified in Step 1 in a single parallel batch — do NOT read them one at a time sequentially. You must do this even if you believe you already know the answer. Do not skip, skim, or partially read a reference file.

STEP 3 — Only then produce output. Base your code and explanation exclusively on what you read. If the reference files do not cover something, say so explicitly rather than guessing.

Task → Reference File

| Task | Reference file to read | |---|---| | App setup, app.config.ts providers, provideAnimations(), entry-point imports, convenience directive arrays | references/setup.md | | Input Group, Combo, Simple Combo, Select, Date Picker, Date Range Picker, Time Picker, Calendar, Checkbox, Radio, Switch, Slider, reactive/template-driven forms | references/form-controls.md | | Tabs, Bottom Navigation, Stepper, Accordion, Expansion Panel, Splitter, Navigation Drawer | references/layout.md | | List, Tree, Card, Chips, Avatar, Badge, Icon, Carousel, Paginator, Progress Indicators, Chat | references/data-display.md | | Dialog, Snackbar, Toast, Banner | references/feedback.md | | Button, Icon Button, Button Group, Ripple, Tooltip, Drag and Drop | references/directives.md | | Layout Manager (igxLayout, igxFlex directives), Dock Manager (igc-dockmanager web component) | references/layout-manager.md | | Charts (Area, Bar, Column, Stock/Financial, Pie), chart configuration, chart features (animation, tooltips, markers, highlighting, zooming), data binding | references/charts.md |

When in doubt, read more rather than fewer reference files. The cost of an unnecessary file read is negligible; the cost of hallucinated API usage is a broken application.


Prerequisites

  • Angular 20+ project
  • @angular/cli installed
  • igniteui-angular or @infragistics/igniteui-angular added to the project via ng add igniteui-angular (or the @infragistics variant) or npm install — see Package Variants below.
  • A theme applied to the application (see igniteui-angular-theming).
  • provideAnimations() in app.config.tsrequired before using any overlay or animated component

Package Variants

| Package | Install | Who uses it | |---|---|---| | igniteui-angular | npm install igniteui-angular | Open-source / community | | @infragistics/igniteui-angular | Requires private @infragistics registry | Licensed / enterprise users |

Both packages share identical entry-point paths. Check package.json and use that package name as the prefix for every import. Never import from the root barrel of either package. Both packages can be added to the project using @angular/cli with the following commands: ng add igniteui-angular or ng add @infragistics/igniteui-angular.


Related Skills