igniteui-angular 21.2.1 → 21.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/fesm2022/igniteui-angular-date-picker.mjs +1 -1
- package/fesm2022/igniteui-angular-date-picker.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-core.mjs +31 -5
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +13 -9
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs +4 -4
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs +2 -2
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-tree-grid.mjs +4 -4
- package/fesm2022/igniteui-angular-grids-tree-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/skills/igniteui-angular-components/references/mcp-setup.md +4 -4
- package/skills/igniteui-angular-generate-from-image-design/SKILL.md +1 -1
- package/skills/igniteui-angular-generate-from-image-design/references/gotchas.md +2 -17
- package/types/igniteui-angular-grids-core.d.ts +14 -0
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@ Create or edit `.vscode/mcp.json` in your project:
|
|
|
21
21
|
"servers": {
|
|
22
22
|
"igniteui-cli": {
|
|
23
23
|
"command": "npx",
|
|
24
|
-
"args": ["-y", "igniteui-cli
|
|
24
|
+
"args": ["-y", "igniteui-cli", "mcp"]
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -38,7 +38,7 @@ Create or edit `.cursor/mcp.json`:
|
|
|
38
38
|
"mcpServers": {
|
|
39
39
|
"igniteui-cli": {
|
|
40
40
|
"command": "npx",
|
|
41
|
-
"args": ["-y", "igniteui-cli
|
|
41
|
+
"args": ["-y", "igniteui-cli", "mcp"]
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -55,7 +55,7 @@ Edit the Claude Desktop config file:
|
|
|
55
55
|
"mcpServers": {
|
|
56
56
|
"igniteui-cli": {
|
|
57
57
|
"command": "npx",
|
|
58
|
-
"args": ["-y", "igniteui-cli
|
|
58
|
+
"args": ["-y", "igniteui-cli", "mcp"]
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
}
|
|
@@ -65,7 +65,7 @@ Edit the Claude Desktop config file:
|
|
|
65
65
|
|
|
66
66
|
1. Go to **Settings → Tools → AI Assistant → MCP Servers**
|
|
67
67
|
2. Click **+ Add MCP Server**
|
|
68
|
-
3. Set Command to `npx` and Arguments to
|
|
68
|
+
3. Set Command to `npx` and Arguments to `-y igniteui-cli mcp`
|
|
69
69
|
4. Click OK and restart the AI Assistant
|
|
70
70
|
|
|
71
71
|
## Verifying the Setup
|
|
@@ -146,7 +146,7 @@ For **every** core Ignite UI component chosen in Steps 3-4, follow this MCP-firs
|
|
|
146
146
|
- Resolve each value to a palette token or local semantic CSS variable
|
|
147
147
|
- Call `create_component_theme("grid", ...)` with only `{ "header-background": "<resolved token>", "content-background": "<resolved token>", "row-hover-background": "<resolved token>" }`
|
|
148
148
|
|
|
149
|
-
Apply the generated theme
|
|
149
|
+
Apply the generated theme block using `@include tokens(<theme-name>);` as returned by `create_component_theme`.
|
|
150
150
|
|
|
151
151
|
Do not run `create_component_theme` for regions built with custom HTML/CSS only.
|
|
152
152
|
|
|
@@ -118,24 +118,9 @@ igx-nav-drawer {
|
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
### Dark theme overrides for `IgxGridComponent`
|
|
121
|
-
Grid internals often need explicit dark-theme overrides. Use
|
|
121
|
+
Grid internals often need explicit dark-theme overrides. Use `get_component_design_tokens("grid")` to discover available tokens, then call `create_component_theme` with the tokens that differ from the global theme. Apply the returned theme with the `tokens`:
|
|
122
122
|
```scss
|
|
123
|
-
|
|
124
|
-
.igx-grid__thead,
|
|
125
|
-
.igx-grid__tr {
|
|
126
|
-
background: <resolved-surface-token>;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.igx-grid__th,
|
|
130
|
-
.igx-grid__td {
|
|
131
|
-
color: <resolved-text-token>;
|
|
132
|
-
border-color: <resolved-border-token>;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.igx-grid__tbody {
|
|
136
|
-
background: <resolved-surface-token>;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
123
|
+
@include tokens($custom-grid-theme);
|
|
139
124
|
```
|
|
140
125
|
|
|
141
126
|
### Read luminance warnings from theme generation
|
|
@@ -3389,6 +3389,7 @@ declare class IgxGridFilteringCellComponent implements AfterViewInit, OnInit, Do
|
|
|
3389
3389
|
get pinnedCss(): boolean;
|
|
3390
3390
|
get pinnedLastCss(): boolean;
|
|
3391
3391
|
get pinnedFirstCSS(): boolean;
|
|
3392
|
+
role: string;
|
|
3392
3393
|
private baseClass;
|
|
3393
3394
|
constructor();
|
|
3394
3395
|
ngOnInit(): void;
|
|
@@ -7554,6 +7555,10 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
7554
7555
|
pinnedEndColumnCollection: ColumnType[];
|
|
7555
7556
|
/** Unpinned columns of the grid. */
|
|
7556
7557
|
unpinnedColumnCollection: ColumnType[];
|
|
7558
|
+
/**
|
|
7559
|
+
* @hidden @internal
|
|
7560
|
+
*/
|
|
7561
|
+
role: string;
|
|
7557
7562
|
get activeDescendant(): string;
|
|
7558
7563
|
hasMRL: boolean;
|
|
7559
7564
|
width: number;
|
|
@@ -8112,6 +8117,11 @@ declare class IgxGridToolbarComponent implements OnDestroy {
|
|
|
8112
8117
|
* @internal
|
|
8113
8118
|
*/
|
|
8114
8119
|
defaultStyle: boolean;
|
|
8120
|
+
/**
|
|
8121
|
+
* @hidden
|
|
8122
|
+
* @internal
|
|
8123
|
+
*/
|
|
8124
|
+
role: string;
|
|
8115
8125
|
protected _grid: GridType;
|
|
8116
8126
|
protected sub: Subscription;
|
|
8117
8127
|
constructor();
|
|
@@ -10367,6 +10377,10 @@ declare abstract class IgxGroupByAreaDirective {
|
|
|
10367
10377
|
*/
|
|
10368
10378
|
dropAreaTemplate: TemplateRef<void>;
|
|
10369
10379
|
defaultClass: boolean;
|
|
10380
|
+
/**
|
|
10381
|
+
* @hidden @internal
|
|
10382
|
+
*/
|
|
10383
|
+
role: string;
|
|
10370
10384
|
/** The parent grid containing the component. */
|
|
10371
10385
|
grid: FlatGridType | GridType;
|
|
10372
10386
|
/**
|