Fix types for TableHTMLAttributes (#6197)
* Fix types for TableHTMLAttributes - Add 'string' type to 'border' attribute - Add 'false | true' to 'frame' attribute Thanks Princesseuh for helping * Create sixty-scissors-refuse.md * Make changeset more descriptive * Fix previous changset --------- Co-authored-by: BryceRussell <19967622+BryceRussell@users.noreply.github.com>
This commit is contained in:
parent
11e1fa9883
commit
c75d319ee6
2 changed files with 8 additions and 2 deletions
6
.changeset/sixty-scissors-refuse.md
Normal file
6
.changeset/sixty-scissors-refuse.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
'astro': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix `border` and `frame` attribute types on `TableHTMLAttributes` interface
|
||||||
|
|
4
packages/astro/astro-jsx.d.ts
vendored
4
packages/astro/astro-jsx.d.ts
vendored
|
@ -936,10 +936,10 @@ declare namespace astroHTML.JSX {
|
||||||
interface TableHTMLAttributes extends HTMLAttributes {
|
interface TableHTMLAttributes extends HTMLAttributes {
|
||||||
align?: 'left' | 'center' | 'right' | undefined | null;
|
align?: 'left' | 'center' | 'right' | undefined | null;
|
||||||
bgcolor?: string | undefined | null;
|
bgcolor?: string | undefined | null;
|
||||||
border?: number | undefined | null;
|
border?: string | number | undefined | null;
|
||||||
cellpadding?: number | string | undefined | null;
|
cellpadding?: number | string | undefined | null;
|
||||||
cellspacing?: number | string | undefined | null;
|
cellspacing?: number | string | undefined | null;
|
||||||
frame?: boolean | undefined | null;
|
frame?: boolean | 'false' | 'true' | undefined | null;
|
||||||
rules?: 'none' | 'groups' | 'rows' | 'columns' | 'all' | undefined | null;
|
rules?: 'none' | 'groups' | 'rows' | 'columns' | 'all' | undefined | null;
|
||||||
summary?: string | undefined | null;
|
summary?: string | undefined | null;
|
||||||
width?: number | string | undefined | null;
|
width?: number | string | undefined | null;
|
||||||
|
|
Loading…
Reference in a new issue