Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1477cb3

Browse files
committed
chore: fix output folder for documentation
1 parent ef53677 commit 1477cb3

File tree

64 files changed

+18
-952
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+18
-952
lines changed

docs/table-plugin.htmltable.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,23 @@
22

33
[Home](./index.md) > [@native-html/table-plugin](./table-plugin.md) > [HTMLTable](./table-plugin.htmltable.md)
44

5-
## HTMLTable class
5+
## HTMLTable() function
66

77
A component capable of rendering a html string which root tag is a table tag. This component should not be used directly, except with custom renderers.
88

99
<b>Signature:</b>
1010

1111
```typescript
12-
export declare class HTMLTable<WVP> extends Component<HTMLTableProps<WVP>>
12+
export declare function HTMLTable({ WebView, tableStyleSpecs, cssRules, html, sourceBaseUrl, animationType, computeHeuristicContentHeight, computeContainerHeight, webViewProps: userWebViewProps, style, onLinkPress, animationDuration, renderersProps, ...stats }: HTMLTableProps<MinimalWebViewProps>): JSX.Element;
1313
```
14-
<b>Extends:</b> Component&lt;[HTMLTableProps](./table-plugin.htmltableprops.md)<!-- -->&lt;WVP&gt;&gt;
14+
15+
## Parameters
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| { WebView, tableStyleSpecs, cssRules, html, sourceBaseUrl, animationType, computeHeuristicContentHeight, computeContainerHeight, webViewProps: userWebViewProps, style, onLinkPress, animationDuration, renderersProps, ...stats } | [HTMLTableProps](./table-plugin.htmltableprops.md)<!-- -->&lt;MinimalWebViewProps&gt; | |
20+
21+
<b>Returns:</b>
22+
23+
JSX.Element
1524

docs/table-plugin.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,13 @@
44

55
## table-plugin package
66

7-
## Classes
8-
9-
| Class | Description |
10-
| --- | --- |
11-
| [HTMLTable](./table-plugin.htmltable.md) | A component capable of rendering a html string which root tag is a table tag. This component should not be used directly, except with custom renderers. |
12-
137
## Functions
148

159
| Function | Description |
1610
| --- | --- |
1711
| [alterNode(node)](./table-plugin.alternode.md) | This function should be passed to HTML component. |
1812
| [cssRulesFromSpecs(specs)](./table-plugin.cssrulesfromspecs.md) | Create css rules from a specification object. |
13+
| [HTMLTable({ WebView, tableStyleSpecs, cssRules, html, sourceBaseUrl, animationType, computeHeuristicContentHeight, computeContainerHeight, webViewProps: userWebViewProps, style, onLinkPress, animationDuration, renderersProps, ...stats })](./table-plugin.htmltable.md) | A component capable of rendering a html string which root tag is a table tag. This component should not be used directly, except with custom renderers. |
1914
| [makeCustomTableRenderer(TableComponent)](./table-plugin.makecustomtablerenderer.md) | Create a table renderer from a custom <code>TableComponent</code>. |
2015
| [makeTableRenderer(tableConfig)](./table-plugin.maketablerenderer.md) | Create the table renderer. |
2116

docs/table-plugin.tablestylespecs.borderwidthpx.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
File renamed without changes.

docs/table-plugin.tablestylespecs.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ export interface TableStyleSpecs
1616

1717
| Property | Type | Description |
1818
| --- | --- | --- |
19-
| [borderWidthPx](./table-plugin.tablestylespecs.borderwidthpx.md) | number | Border width, in pixels. |
2019
| [cellPaddingEm](./table-plugin.tablestylespecs.cellpaddingem.md) | number | Spacing between cells, in em. |
20+
| [columnsBorderWidthPx](./table-plugin.tablestylespecs.columnsborderwidthpx.md) | number | The width of the border between columns. |
2121
| [fitContainerHeight](./table-plugin.tablestylespecs.fitcontainerheight.md) | boolean | Expand table to HTML height. |
2222
| [fitContainerWidth](./table-plugin.tablestylespecs.fitcontainerwidth.md) | boolean | Expand table to HTML width. |
2323
| [fontFamily](./table-plugin.tablestylespecs.fontfamily.md) | string | Font family. |
2424
| [fontSizePx](./table-plugin.tablestylespecs.fontsizepx.md) | number \| null | Font size, in pixels. |
2525
| [linkColor](./table-plugin.tablestylespecs.linkcolor.md) | string | Link of anchors. |
26+
| [outerBorderColor](./table-plugin.tablestylespecs.outerbordercolor.md) | string | The border color of the table frame. |
27+
| [outerBorderWidthPx](./table-plugin.tablestylespecs.outerborderwidthpx.md) | number | The border width for the table frame. |
28+
| [rowsBorderWidthPx](./table-plugin.tablestylespecs.rowsborderwidthpx.md) | number | The width of the border between rows. |
2629
| [selectableText](./table-plugin.tablestylespecs.selectabletext.md) | boolean | Will text be selectable. |
2730
| [tdBorderColor](./table-plugin.tablestylespecs.tdbordercolor.md) | string | Table cell border color. |
2831
| [thBorderColor](./table-plugin.tablestylespecs.thbordercolor.md) | string | Table header cell border color. |
File renamed without changes.
File renamed without changes.
File renamed without changes.

table-plugin/docs/index.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

table-plugin/docs/table-plugin.alternode.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)