You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/igniteui-angular-components/SKILL.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,13 +18,10 @@ You are **required** to complete ALL of the following steps before producing any
18
18
**STEP 1 — Identify every component or feature involved.**
19
19
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`).
20
20
21
-
**STEP 2 — Read every identified reference file in full.**
22
-
Call `read_file` (or equivalent) on each reference file identified in Step 1. You must do this even if you believe you already know the answer. Do not skip, skim, or partially read a reference file.
21
+
**STEP 2 — Read every identified reference file in full (PARALLEL).**
22
+
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.
23
23
24
-
**STEP 3 — Check app setup.**
25
-
If the component is new to the project (or you're scaffolding a new feature), also read [`references/setup.md`](./references/setup.md) to verify the correct providers and entry-point import patterns. Missing `provideAnimations()` is the most common source of runtime failures.
26
-
27
-
**STEP 4 — Only then produce output.**
24
+
**STEP 3 — Only then produce output.**
28
25
Base your code and explanation exclusively on what you read. If the reference files do not cover something, say so explicitly rather than guessing.
Copy file name to clipboardExpand all lines: skills/igniteui-angular-grids/SKILL.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,8 @@ Use the Grid Selection Decision Guide below. If the grid type is not explicitly
21
21
**STEP 2 — Identify every task category involved.**
22
22
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., remote paging AND editing requires reading both `paging-remote.md` AND `editing.md`).
23
23
24
-
**STEP 3 — Read every identified reference file in full.**
25
-
Call `read_file` (or equivalent) on each reference file identified in Step 2. You must do this even if you believe you already know the answer. Do not skip, skim, or partially read a reference file.
24
+
**STEP 3 — Read every identified reference file in full (PARALLEL).**
25
+
Call `read_file` (or equivalent) on **all** reference files identified in Step 2**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.
26
26
27
27
**STEP 4 — Only then produce output.**
28
28
Base your code and explanation exclusively on what you read in Step 3. If the reference files do not cover something, say so explicitly rather than guessing.
Copy file name to clipboardExpand all lines: skills/igniteui-angular-grids/references/types.md
+74-24Lines changed: 74 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -356,41 +356,91 @@ For **pivot table analytics** where users reshape data by dragging dimensions be
356
356
> **IMPORTANT**: The Pivot Grid is fundamentally different from the other three grids. Standard grid features like cell editing, row editing, batch editing, paging, column pinning, column moving, row dragging, and standard filtering/sorting are **disabled**. All data operations are driven by the `pivotConfiguration`.
0 commit comments