Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ ng update igniteui-angular --migrate-only --from=20.1.0 --to=21.0.0 --migrate-im
- Input directives (`IgxHintDirective`, `IgxInputDirective`, `IgxLabelDirective`, `IgxPrefixDirective`, `IgxSuffixDirective`) → `igniteui-angular/input-group`
- `IgxAutocompleteDirective` → `igniteui-angular/drop-down`
- `IgxRadioGroupDirective` → `igniteui-angular/radio`
- `IGX_GRID_ACTION_STRIP_DIRECTIVES` → `igniteui-angular/grids/core`

**Type Renames (to avoid conflicts):**
- `Direction` → `CarouselAnimationDirection` (in carousel)
Expand Down
11 changes: 11 additions & 0 deletions projects/igniteui-angular/grids/core/src/public_api.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { IgxActionStripComponent, IgxActionStripMenuItemDirective } from 'igniteui-angular/action-strip';
import {
IgxColumnActionsComponent,
IgxColumnHidingDirective,
Expand Down Expand Up @@ -218,3 +219,13 @@ export const IGX_GRID_COMMON_DIRECTIVES = [
IgxGridActionsBaseDirective,
IgxGridActionButtonComponent
] as const;

/* Action-strip in grid directives collection for ease-of-use import in standalone components scenario */
export const IGX_GRID_ACTION_STRIP_DIRECTIVES = [
IgxActionStripComponent,
IgxActionStripMenuItemDirective,
IgxGridPinningActionsComponent,
IgxGridEditingActionsComponent,
IgxGridActionsBaseDirective,
IgxGridActionButtonComponent
] as const;
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ const ENTRY_POINT_MAP = new Map<string, string>([
['IgxActionStripModule', 'action-strip'],
['IGX_ACTION_STRIP_DIRECTIVES', 'action-strip'],
['IgxActionStripMenuItemDirective', 'action-strip'],
['IGX_GRID_ACTION_STRIP_DIRECTIVES', 'grids/core'],

// Avatar
['IgxAvatarComponent', 'avatar'],
Expand Down
Loading