Skip to content

Commit ec520cf

Browse files
committed
build(deps): upgrade @microsoft/api-* deps
1 parent db420dd commit ec520cf

File tree

4 files changed

+56
-63
lines changed

4 files changed

+56
-63
lines changed

packages/table-plugin/docs/table-plugin.htmltablebaseprops.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ export interface HTMLTableBaseProps extends HTMLTableStats
1818
| Property | Type | Description |
1919
| --- | --- | --- |
2020
| [html](./table-plugin.htmltablebaseprops.html.md) | string | The outerHtml of <table> tag. |
21-
| [onLinkPress](./table-plugin.htmltablebaseprops.onlinkpress.md) | (url: string) =&gt; void | Intercept links press.<!-- -->\*\*Info\*\*: <code>makeTableRenderer</code> uses <code>HTML.onLinkPress</code> prop. |
22-
| [renderersProps](./table-plugin.htmltablebaseprops.renderersprops.md) | any | Renderers props. |
21+
| [onLinkPress?](./table-plugin.htmltablebaseprops.onlinkpress.md) | (url: string) =&gt; void | <i>(Optional)</i> Intercept links press.<!-- -->\*\*Info\*\*: <code>makeTableRenderer</code> uses <code>HTML.onLinkPress</code> prop. |
22+
| [renderersProps?](./table-plugin.htmltablebaseprops.renderersprops.md) | any | <i>(Optional)</i> Renderers props. |
2323

packages/table-plugin/docs/table-plugin.tableconfig.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ export interface TableConfig<WebViewProps = any>
1616

1717
| Property | Type | Description |
1818
| --- | --- | --- |
19-
| [animationDuration](./table-plugin.tableconfig.animationduration.md) | number | The animation duration in milliseconds when infered height value changes. See [TableConfig.computeContainerHeight](./table-plugin.tableconfig.computecontainerheight.md)<!-- -->. |
20-
| [animationType](./table-plugin.tableconfig.animationtype.md) | 'none' \| 'layout' \| 'animated' | What kind of animation should be used when height is changed? <ul> <li> <b>layout</b>: use native <code>LayoutAnimation</code>. This is the best option performance-wise, but requires some setup. See https://facebook.github.io/react-native/docs/layoutanimation. </li> <li> <b>animated</b>: use <code>Animated</code> module from react-native. </li> <li> <b>none</b>: no animations are performed. </li> </ul> |
21-
| [computeContainerHeight](./table-plugin.tableconfig.computecontainerheight.md) | (state: [TableContentHeightState](./table-plugin.tablecontentheightstate.md)<!-- -->) =&gt; number \| null | A function which will compute container's height given the table content height. |
22-
| [computeHeuristicContentHeight](./table-plugin.tableconfig.computeheuristiccontentheight.md) | (state: [HTMLTableStats](./table-plugin.htmltablestats.md)<!-- -->) =&gt; number | A function to compute approximate content height before the real content height has been fetched on DOM mount. |
23-
| [cssRules](./table-plugin.tableconfig.cssrules.md) | string | Override default CSS rules with this prop. |
24-
| [maxScale](./table-plugin.tableconfig.maxscale.md) | boolean | Max zoom scale (must be greater than 1). |
25-
| [sourceBaseUrl](./table-plugin.tableconfig.sourcebaseurl.md) | string | See https://git.io/JeCAG |
26-
| [style](./table-plugin.tableconfig.style.md) | StyleProp&lt;ViewStyle&gt; | Container style. |
27-
| [tableStyleSpecs](./table-plugin.tableconfig.tablestylespecs.md) | [TableStyleSpecs](./table-plugin.tablestylespecs.md) | Specs to generate css rules.<img src="https://raw.githubusercontent.com/native-html/table-plugin/master/images/TableStyleSpecs.png" /> |
19+
| [animationDuration?](./table-plugin.tableconfig.animationduration.md) | number | <i>(Optional)</i> The animation duration in milliseconds when infered height value changes. See [TableConfig.computeContainerHeight](./table-plugin.tableconfig.computecontainerheight.md)<!-- -->. |
20+
| [animationType?](./table-plugin.tableconfig.animationtype.md) | 'none' \| 'layout' \| 'animated' | <i>(Optional)</i> What kind of animation should be used when height is changed? <ul> <li> <b>layout</b>: use native <code>LayoutAnimation</code>. This is the best option performance-wise, but requires some setup. See https://facebook.github.io/react-native/docs/layoutanimation. </li> <li> <b>animated</b>: use <code>Animated</code> module from react-native. </li> <li> <b>none</b>: no animations are performed. </li> </ul> |
21+
| [computeContainerHeight?](./table-plugin.tableconfig.computecontainerheight.md) | (state: [TableContentHeightState](./table-plugin.tablecontentheightstate.md)<!-- -->) =&gt; number \| null | <i>(Optional)</i> A function which will compute container's height given the table content height. |
22+
| [computeHeuristicContentHeight?](./table-plugin.tableconfig.computeheuristiccontentheight.md) | (state: [HTMLTableStats](./table-plugin.htmltablestats.md)<!-- -->) =&gt; number | <i>(Optional)</i> A function to compute approximate content height before the real content height has been fetched on DOM mount. |
23+
| [cssRules?](./table-plugin.tableconfig.cssrules.md) | string | <i>(Optional)</i> Override default CSS rules with this prop. |
24+
| [maxScale?](./table-plugin.tableconfig.maxscale.md) | boolean | <i>(Optional)</i> Max zoom scale (must be greater than 1). |
25+
| [sourceBaseUrl?](./table-plugin.tableconfig.sourcebaseurl.md) | string | <i>(Optional)</i> See https://git.io/JeCAG |
26+
| [style?](./table-plugin.tableconfig.style.md) | StyleProp&lt;ViewStyle&gt; | <i>(Optional)</i> Container style. |
27+
| [tableStyleSpecs?](./table-plugin.tableconfig.tablestylespecs.md) | [TableStyleSpecs](./table-plugin.tablestylespecs.md) | <i>(Optional)</i> Specs to generate css rules.<img src="https://raw.githubusercontent.com/native-html/table-plugin/master/images/TableStyleSpecs.png" /> |
2828
| [WebView](./table-plugin.tableconfig.webview.md) | ComponentType&lt;WebViewProps&gt; | The <code>WebView</code> Component you wish to use. |
29-
| [webViewProps](./table-plugin.tableconfig.webviewprops.md) | WebViewProps | Any props you'd like to pass to [TableConfig.WebView](./table-plugin.tableconfig.webview.md)<!-- -->. |
29+
| [webViewProps?](./table-plugin.tableconfig.webviewprops.md) | WebViewProps | <i>(Optional)</i> Any props you'd like to pass to [TableConfig.WebView](./table-plugin.tableconfig.webview.md)<!-- -->. |
3030

packages/table-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"@babel/runtime": "^7.12.5",
3737
"@formidable-webview/ersatz": "^2.1.2",
3838
"@formidable-webview/ersatz-testing": "^2.0.5",
39-
"@microsoft/api-documenter": "^7.8.56",
40-
"@microsoft/api-extractor": "7.9.22",
39+
"@microsoft/api-documenter": "^7.11.0",
40+
"@microsoft/api-extractor": "7.12.0",
4141
"@react-native-community/bob": "^0.16.2",
4242
"@release-it/conventional-changelog": "^2.0.0",
4343
"@testing-library/react-native": "^7.0.2",

yarn.lock

Lines changed: 42 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -2143,7 +2143,7 @@ __metadata:
21432143
languageName: node
21442144
linkType: hard
21452145

2146-
"@microsoft/api-documenter@npm:^7.8.56":
2146+
"@microsoft/api-documenter@npm:^7.11.0":
21472147
version: 7.11.0
21482148
resolution: "@microsoft/api-documenter@npm:7.11.0"
21492149
dependencies:
@@ -2170,33 +2170,24 @@ __metadata:
21702170
languageName: node
21712171
linkType: hard
21722172

2173-
"@microsoft/api-extractor-model@npm:7.9.7":
2174-
version: 7.9.7
2175-
resolution: "@microsoft/api-extractor-model@npm:7.9.7"
2176-
dependencies:
2177-
"@microsoft/tsdoc": 0.12.19
2178-
"@rushstack/node-core-library": 3.33.6
2179-
checksum: 4dc9f60acad72235b55928271a893f6c7016124a4d3bfc22b1c6664084fdc3b544fe52f1d343e1c87ec1ad3db368409fdc7dd8117e09aaa6d4a9ae4910187003
2180-
languageName: node
2181-
linkType: hard
2182-
2183-
"@microsoft/api-extractor@npm:7.9.22":
2184-
version: 7.9.22
2185-
resolution: "@microsoft/api-extractor@npm:7.9.22"
2173+
"@microsoft/api-extractor@npm:7.12.0":
2174+
version: 7.12.0
2175+
resolution: "@microsoft/api-extractor@npm:7.12.0"
21862176
dependencies:
2187-
"@microsoft/api-extractor-model": 7.9.7
2177+
"@microsoft/api-extractor-model": 7.12.0
21882178
"@microsoft/tsdoc": 0.12.19
2189-
"@rushstack/node-core-library": 3.33.6
2190-
"@rushstack/ts-command-line": 4.6.10
2179+
"@rushstack/node-core-library": 3.35.1
2180+
"@rushstack/rig-package": 0.2.8
2181+
"@rushstack/ts-command-line": 4.7.7
21912182
colors: ~1.2.1
21922183
lodash: ~4.17.15
21932184
resolve: ~1.17.0
21942185
semver: ~7.3.0
21952186
source-map: ~0.6.1
2196-
typescript: ~3.9.5
2187+
typescript: ~4.0.5
21972188
bin:
21982189
api-extractor: bin/api-extractor
2199-
checksum: 49494c995df11ee42bd4fe16d44998dfd31d8bf5c05d79b686e5c6d68a4f3a758c22d5233197ced8440d1a5922b6f52f1334d72579e4bdf0519ea37f2f4579f0
2190+
checksum: edc03d7550c68f94dff52b20b846cd5a00962acb1f45a5d91b9054713d385536b5bbf062d7c6f237ee4c57ef35a62458d33a0c8e3c970bae99272b47a6a4d2bf
22002191
languageName: node
22012192
linkType: hard
22022193

@@ -2238,8 +2229,8 @@ __metadata:
22382229
"@formidable-webview/ersatz": ^2.1.2
22392230
"@formidable-webview/ersatz-testing": ^2.0.5
22402231
"@formidable-webview/webshell": 2.0.2
2241-
"@microsoft/api-documenter": ^7.8.56
2242-
"@microsoft/api-extractor": 7.9.22
2232+
"@microsoft/api-documenter": ^7.11.0
2233+
"@microsoft/api-extractor": 7.12.0
22432234
"@react-native-community/bob": ^0.16.2
22442235
"@release-it/conventional-changelog": ^2.0.0
22452236
"@testing-library/react-native": ^7.0.2
@@ -2738,23 +2729,6 @@ __metadata:
27382729
languageName: node
27392730
linkType: hard
27402731

2741-
"@rushstack/node-core-library@npm:3.33.6":
2742-
version: 3.33.6
2743-
resolution: "@rushstack/node-core-library@npm:3.33.6"
2744-
dependencies:
2745-
"@types/node": 10.17.13
2746-
colors: ~1.2.1
2747-
fs-extra: ~7.0.1
2748-
import-lazy: ~4.0.0
2749-
jju: ~1.4.0
2750-
resolve: ~1.17.0
2751-
semver: ~7.3.0
2752-
timsort: ~0.3.0
2753-
z-schema: ~3.18.3
2754-
checksum: bba6e58971631891874873e60385efd7ceb2ea2ac789a3e6889ae71fbcdb78f16431a22489197f68ad74fd46214158a000cfb001534c2e172a52eb172a2341f2
2755-
languageName: node
2756-
linkType: hard
2757-
27582732
"@rushstack/node-core-library@npm:3.35.1":
27592733
version: 3.35.1
27602734
resolution: "@rushstack/node-core-library@npm:3.35.1"
@@ -2772,15 +2746,14 @@ __metadata:
27722746
languageName: node
27732747
linkType: hard
27742748

2775-
"@rushstack/ts-command-line@npm:4.6.10":
2776-
version: 4.6.10
2777-
resolution: "@rushstack/ts-command-line@npm:4.6.10"
2749+
"@rushstack/rig-package@npm:0.2.8":
2750+
version: 0.2.8
2751+
resolution: "@rushstack/rig-package@npm:0.2.8"
27782752
dependencies:
2779-
"@types/argparse": 1.0.38
2780-
argparse: ~1.0.9
2781-
colors: ~1.2.1
2782-
string-argv: ~0.3.1
2783-
checksum: dd72513c4ca23139fd3b4c12320069e18a3ca078496d79c43ac641ef2d712cf0095f192c3dc52b0eea594c73676864c1819e7f89451480a5b8af0a9917f78099
2753+
"@types/node": 10.17.13
2754+
resolve: ~1.17.0
2755+
strip-json-comments: ~3.1.1
2756+
checksum: 3ecd0c9943c7f59236f21cfc8b42b73bbc4da7abd4a0aabbdcec466d09bb1d46c20000ad7aa8143f65edd02e1117b885ce439f9d181e5ea6d869498305dffe28
27842757
languageName: node
27852758
linkType: hard
27862759

@@ -14446,7 +14419,7 @@ resolve@~1.17.0:
1444614419
languageName: node
1444714420
linkType: hard
1444814421

14449-
"strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1":
14422+
"strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1, strip-json-comments@npm:~3.1.1":
1445014423
version: 3.1.1
1445114424
resolution: "strip-json-comments@npm:3.1.1"
1445214425
checksum: f16719ce25abc58a55ef82b1c27f541dcfa5d544f17158f62d10be21ff9bd22fde45a53c592b29d80ad3c97ccb67b7451c4833913fdaeadb508a40f5e0a9c206
@@ -14937,7 +14910,7 @@ resolve@~1.17.0:
1493714910
languageName: node
1493814911
linkType: hard
1493914912

14940-
"typescript@patch:typescript@~3.9.5#builtin<compat/typescript>, typescript@patch:typescript@~3.9.7#builtin<compat/typescript>":
14913+
"typescript@patch:typescript@~3.9.7#builtin<compat/typescript>":
1494114914
version: 3.9.7
1494214915
resolution: "typescript@patch:typescript@npm%3A3.9.7#builtin<compat/typescript>::version=3.9.7&hash=5bf698"
1494314916
bin:
@@ -14947,7 +14920,17 @@ resolve@~1.17.0:
1494714920
languageName: node
1494814921
linkType: hard
1494914922

14950-
"typescript@~3.9.5, typescript@~3.9.7":
14923+
"typescript@patch:typescript@~4.0.5#builtin<compat/typescript>":
14924+
version: 4.0.5
14925+
resolution: "typescript@patch:typescript@npm%3A4.0.5#builtin<compat/typescript>::version=4.0.5&hash=5bf698"
14926+
bin:
14927+
tsc: bin/tsc
14928+
tsserver: bin/tsserver
14929+
checksum: d4be0bd2a2050b2d7b132cb2a40329178f181543e9d2ac6d1f06babd9f047208558a736a7effdeb28759ae2e815f070b61d10ee2f02cc93a6221a1490f21ffce
14930+
languageName: node
14931+
linkType: hard
14932+
14933+
typescript@~3.9.7:
1495114934
version: 3.9.7
1495214935
resolution: "typescript@npm:3.9.7"
1495314936
bin:
@@ -14957,6 +14940,16 @@ resolve@~1.17.0:
1495714940
languageName: node
1495814941
linkType: hard
1495914942

14943+
typescript@~4.0.5:
14944+
version: 4.0.5
14945+
resolution: "typescript@npm:4.0.5"
14946+
bin:
14947+
tsc: bin/tsc
14948+
tsserver: bin/tsserver
14949+
checksum: ce94d4bbb914cc9d6fbd42e1476ab18c3292b262b8ba7ba76cd167a858545207a604e75bf1efbb75b8654c8f85deaa19795c3ef00098d7612855139b4ecc0240
14950+
languageName: node
14951+
linkType: hard
14952+
1496014953
"ua-parser-js@npm:^0.7.18":
1496114954
version: 0.7.22
1496214955
resolution: "ua-parser-js@npm:0.7.22"

0 commit comments

Comments
 (0)