Skip to content

Commit

Permalink
update to lates
Browse files Browse the repository at this point in the history
  • Loading branch information
scomea committed Aug 8, 2023
1 parent d82a07a commit fd2f1dd
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/web-components/fast-foundation/docs/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,12 +264,12 @@ export function checkboxTemplate<T extends FASTCheckbox>(options?: CheckboxOptio

// @public
export interface ColumnDefinition {
cellFocusTargetCallback?: (cell: FASTDataGridCell) => HTMLElement;
cellFocusTargetCallback?: (cell: FASTDataGridCell) => HTMLElement | null;
cellInternalFocusQueue?: boolean;
cellTemplate?: ViewTemplate | SyntheticViewTemplate;
columnDataKey: string;
gridColumn?: string;
headerCellFocusTargetCallback?: (cell: FASTDataGridCell) => HTMLElement;
headerCellFocusTargetCallback?: (cell: FASTDataGridCell) => HTMLElement | null;
headerCellInternalFocusQueue?: boolean;
headerCellTemplate?: ViewTemplate | SyntheticViewTemplate;
isRowHeader?: boolean;
Expand Down Expand Up @@ -412,6 +412,9 @@ export const DayFormat: {
// @public
export type DayFormat = ValuesOf<typeof DayFormat>;

// @public (undocumented)
export const defaultCellFocusTargetCallback: (cell: FASTDataGridCell) => HTMLElement | null;

// Warning: (ae-different-release-tags) This symbol has another declaration with a different release tag
// Warning: (ae-internal-mixed-release-tag) Mixed release tags are not allowed for "DelegatesARIAButton" because one of its declarations is marked as @internal
//
Expand Down
46 changes: 46 additions & 0 deletions packages/web-components/fast-foundation/src/data-grid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,14 @@ export const myDataGrid = DataGrid.compose({

<hr/>

### Functions

| Name | Description | Parameters | Return |
| -------------------------------- | ----------- | ------------------------ | --------------------- |
| `defaultCellFocusTargetCallback` | | `cell: FASTDataGridCell` | `HTMLElement or null` |

<hr/>



### class: `FASTDataGridRow`
Expand Down Expand Up @@ -281,6 +289,44 @@ export const myDataGrid = DataGrid.compose({
<hr/>



### class: `ComplexCell`

#### Superclass

| Name | Module | Package |
| ------------- | ------ | ----------------------- |
| `FASTElement` | | @microsoft/fast-element |

#### Fields

| Name | Privacy | Type | Default | Description | Inherited From |
| --------------- | ------- | ------------------- | ------- | ----------- | -------------- |
| `buttonA` | public | `HTMLButtonElement` | | | |
| `buttonB` | public | `HTMLButtonElement` | | | |
| `handleFocus` | public | | | | |
| `handleKeyDown` | public | | | | |

<hr/>

### Variables

| Name | Description | Type |
| ------------------- | ----------- | ---- |
| `complexCellStyles` | | |

<hr/>

### Functions

| Name | Description | Parameters | Return |
| --------------------- | ----------- | ---------- | ------------------------ |
| `registerComplexCell` | | | |
| `complexCellTemplate` | | | `ElementViewTemplate<T>` |

<hr/>


## Additional resources

* [Component explorer examples](https://explore.fast.design/components/fast-data-grid)
Expand Down

0 comments on commit fd2f1dd

Please sign in to comment.