Skip to content

Commit

Permalink
Merge branch 'main' into country-field-dropdown-hint-text
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-TrevorBurch authored Mar 3, 2025
2 parents 76e6eef + 65dcaeb commit 0ebf830
Show file tree
Hide file tree
Showing 134 changed files with 2,128 additions and 1,437 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [11.43.1](https://github.com/blackbaud/skyux/compare/11.43.0...11.43.1) (2025-02-28)


### Bug Fixes

* **components/tabs:** puts focus on active tab in mobile view ([#3182](https://github.com/blackbaud/skyux/issues/3182)) ([154f5b2](https://github.com/blackbaud/skyux/commit/154f5b25c48de646abcacfaa23b0684b7b098925))
* mark all harness `hostSelector` properties as "internal" ([#3180](https://github.com/blackbaud/skyux/issues/3180)) ([e9666c7](https://github.com/blackbaud/skyux/commit/e9666c797bb5101b3b0eba05518b1c5cd932c438))

## [12.0.0-alpha.6](https://github.com/blackbaud/skyux/compare/12.0.0-alpha.5...12.0.0-alpha.6) (2025-02-26)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ import { SkyModalConfigurationInterface, SkyModalService } from '@skyux/modals';

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
ValueFormatterParams,
} from 'ag-grid-community';
import { of } from 'rxjs';
Expand All @@ -24,6 +26,8 @@ import { AG_GRID_DEMO_DATA, AgGridDemoRow } from './data';
import { EditModalContext } from './edit-modal-context';
import { EditModalComponent } from './edit-modal.component';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,23 @@ import { SkyModalInstance, SkyModalModule } from '@skyux/modals';

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ICellEditorParams,
IRowNode,
ModuleRegistry,
NewValueParams,
} from 'ag-grid-community';

import { AgGridDemoRow, DEPARTMENTS, JOB_TITLES } from './data';
import { EditModalContext } from './edit-modal-context';
import { MarkInactiveComponent } from './mark-inactive.component';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-edit-modal',
templateUrl: './edit-modal.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,21 @@ import { SkyModalInstance, SkyModalModule } from '@skyux/modals';

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ICellEditorParams,
IRowNode,
ModuleRegistry,
} from 'ag-grid-community';

import { AgGridDemoRow, DEPARTMENTS, JOB_TITLES } from './data';
import { EditModalContext } from './edit-modal-context';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-edit-modal',
templateUrl: './edit-modal.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ import {

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
RowSelectedEvent,
ValueFormatterParams,
} from 'ag-grid-community';
Expand All @@ -29,6 +31,8 @@ import { ContextMenuComponent } from './context-menu.component';
import { AgGridDemoRow } from './data';
import { Filters } from './filters';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-view-grid',
templateUrl: './view-grid.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@ import { SkyAgGridModule, SkyAgGridService, SkyCellType } from '@skyux/ag-grid';
import { SkyInputBoxModule } from '@skyux/forms';

import { AgGridModule } from 'ag-grid-angular';
import { ValueFormatterParams } from 'ag-grid-community';
import {
AllCommunityModule,
ModuleRegistry,
ValueFormatterParams,
} from 'ag-grid-community';

import { AG_GRID_DEMO_DATA, AgGridDemoRow } from './data';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ import {

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
ValueFormatterParams,
} from 'ag-grid-community';
import { of } from 'rxjs';
Expand All @@ -29,6 +31,8 @@ import { EditModalContext } from './edit-modal-context';
import { EditModalComponent } from './edit-modal.component';
import { InlineHelpComponent } from './inline-help.component';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,21 @@ import { SkyModalInstance, SkyModalModule } from '@skyux/modals';

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ICellEditorParams,
IRowNode,
ModuleRegistry,
} from 'ag-grid-community';

import { AgGridDemoRow, DEPARTMENTS, JOB_TITLES } from './data';
import { EditModalContext } from './edit-modal-context';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-edit-modal',
templateUrl: './edit-modal.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,20 @@ import { SkyAgGridModule, SkyAgGridService, SkyCellType } from '@skyux/ag-grid';
import { SkyDataManagerService } from '@skyux/data-manager';

import { AgGridModule } from 'ag-grid-angular';
import { ColDef, GridOptions, ValueFormatterParams } from 'ag-grid-community';
import {
AllCommunityModule,
ColDef,
GridOptions,
ModuleRegistry,
ValueFormatterParams,
} from 'ag-grid-community';
import { of } from 'rxjs';

import { ContextMenuComponent } from './context-menu.component';
import { AG_GRID_DEMO_DATA, AgGridDemoRow } from './data';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,19 @@ import { SkyAgGridModule, SkyAgGridService, SkyCellType } from '@skyux/ag-grid';
import { SkyDataManagerService } from '@skyux/data-manager';

import { AgGridModule } from 'ag-grid-angular';
import { ColDef, GridOptions, ValueFormatterParams } from 'ag-grid-community';
import {
AllCommunityModule,
ColDef,
GridOptions,
ModuleRegistry,
ValueFormatterParams,
} from 'ag-grid-community';

import { ContextMenuComponent } from './context-menu.component';
import { AG_GRID_DEMO_DATA, AgGridDemoRow } from './data';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ import {

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
RowSelectedEvent,
ValueFormatterParams,
} from 'ag-grid-community';
Expand All @@ -31,6 +33,8 @@ import { ContextMenuComponent } from './context-menu.component';
import { AgGridDemoRow } from './data';
import { Filters } from './filters';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-view-grid',
templateUrl: './view-grid.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ import {

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
RowSelectedEvent,
ValueFormatterParams,
} from 'ag-grid-community';
Expand All @@ -31,6 +33,8 @@ import { ContextMenuComponent } from './context-menu.component';
import { AgGridDemoRow } from './data';
import { Filters } from './filters';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-view-grid',
templateUrl: './view-grid.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ import { SkySearchModule } from '@skyux/lookup';

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
ValueFormatterParams,
} from 'ag-grid-community';
import { of } from 'rxjs';
Expand All @@ -23,6 +25,8 @@ import { ContextMenuComponent } from './context-menu.component';
import { AG_GRID_DEMO_DATA, AgGridDemoRow } from './data';
import { InlineHelpComponent } from './inline-help.component';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ import { SkyPagingModule } from '@skyux/lists';

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
ValueFormatterParams,
} from 'ag-grid-community';
import { Subscription } from 'rxjs';
Expand All @@ -25,6 +27,8 @@ import { filter, map } from 'rxjs/operators';
import { ContextMenuComponent } from './context-menu.component';
import { AG_GRID_DEMO_DATA, AgGridDemoRow } from './data';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ import {
import { SkyAgGridModule, SkyAgGridService, SkyCellType } from '@skyux/ag-grid';

import { AgGridModule } from 'ag-grid-angular';
import { GridOptions } from 'ag-grid-community';
import {
AllCommunityModule,
GridOptions,
ModuleRegistry,
} from 'ag-grid-community';

import { AG_GRID_DEMO_DATA } from './data';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,21 @@ import { SkySearchModule } from '@skyux/lookup';

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
ValueFormatterParams,
} from 'ag-grid-community';
import { of } from 'rxjs';

import { ContextMenuComponent } from './context-menu.component';
import { AG_GRID_DEMO_DATA, AgGridDemoRow } from './data';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-demo',
templateUrl: './demo.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ import {

import { AgGridModule } from 'ag-grid-angular';
import {
AllCommunityModule,
ColDef,
GridApi,
GridOptions,
GridReadyEvent,
ModuleRegistry,
RowSelectedEvent,
} from 'ag-grid-community';
import { Subject, of } from 'rxjs';
Expand All @@ -28,6 +30,8 @@ import { takeUntil } from 'rxjs/operators';
import { DataManagerDemoRow } from './data';
import { Filters } from './filters';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-view-grid',
templateUrl: './view-grid.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,19 @@ import { SkyIconModule } from '@skyux/icon';
import { SkyKeyInfoModule } from '@skyux/indicators';

import { AgGridModule } from 'ag-grid-angular';
import { ColDef, GridOptions, ICellRendererParams } from 'ag-grid-community';
import {
AllCommunityModule,
ColDef,
GridOptions,
ICellRendererParams,
ModuleRegistry,
} from 'ag-grid-community';

import { DashboardGridContextMenuComponent } from './dashboards-grid-context-menu.component';
import { Item } from './item';

ModuleRegistry.registerModules([AllCommunityModule]);

@Component({
selector: 'app-list-page-content',
templateUrl: './list-page-content.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,18 @@ import { SkyIconModule } from '@skyux/icon';
import { SkyKeyInfoModule } from '@skyux/indicators';

import { AgGridModule } from 'ag-grid-angular';
import { ColDef, GridOptions, ICellRendererParams } from 'ag-grid-community';
import {
AllCommunityModule,
ColDef,
GridOptions,
ICellRendererParams,
ModuleRegistry,
} from 'ag-grid-community';

import { ContactContextMenuComponent } from './contact-context-menu.component';

ModuleRegistry.registerModules([AllCommunityModule]);

interface Contact {
name: string;
organization: string;
Expand Down
Loading

0 comments on commit 0ebf830

Please sign in to comment.