Skip to content

Commit

Permalink
Merge branch 'main' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Jul 19, 2024
2 parents 9428611 + efba3b0 commit 61ab5be
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 6 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: autofix.ci # needed to securely identify the workflow

on:
pull_request:
push:
branches: [main, alpha, beta, rc]

concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
autofix:
name: autofix
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Tools
uses: tanstack/config/.github/setup@main
- name: Fix formatting
run: pnpm prettier:write
- name: Apply fixes
uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a
with:
commit-message: 'ci: apply automated fixes'
8 changes: 4 additions & 4 deletions docs/framework/angular/angular-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Example:
})
```

```angular2html
```angular-html
<tbody>
@for (row of table.getRowModel().rows; track row.id) {
Expand Down Expand Up @@ -89,7 +89,7 @@ In most cases, each TemplateRef will be rendered with the $implicit context valu
- Cell: `CellContext<T, ?>`,
- Footer: `HeaderContext<T, ?>`

```angular17html
```angular-html
<ng-container
*flexRender="
Expand All @@ -111,7 +111,7 @@ In most cases, each TemplateRef will be rendered with the $implicit context valu

Full example:

```ts
```angular-ts
import type {
CellContext,
ColumnDef,
Expand Down Expand Up @@ -251,7 +251,7 @@ is then defined to be used in the component. If any of the context properties ar
needed in your component, feel free to use them. Please take note that only input signal is supported,
when defining access to context properties, using this approach.

```ts
```angular-ts
@Component({
template: `
<input
Expand Down
4 changes: 2 additions & 2 deletions scripts/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ export const branchConfigs = {
main: {
prerelease: false,
},
next: {
alpha: {
prerelease: true,
},
beta: {
prerelease: true,
},
alpha: {
rc: {
prerelease: true,
},
}
Expand Down

0 comments on commit 61ab5be

Please sign in to comment.