Skip to content

Commit

Permalink
feat(frontend-table): Initial checkin of table data management package
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Jan 7, 2024
1 parent cb3f844 commit 3742ec7
Show file tree
Hide file tree
Showing 17 changed files with 1,041 additions and 205 deletions.
14 changes: 14 additions & 0 deletions docs/api-reports/frontend/table/api-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## API Report File for "@storm-stack/frontend-table"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { Table } from "@tanstack/react-table";

// @public (undocumented)
const createTable: (config: any) => Table<unknown>;
export { createTable };
export { createTable as createTable_alias_1 };

// (No @packageDocumentation comment for this package)
```
201 changes: 201 additions & 0 deletions docs/api-reports/frontend/table/documents-model.api.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,201 @@
{
"metadata": {
"toolPackage": "@microsoft/api-extractor",
"toolVersion": "7.38.5",
"schemaVersion": 1011,
"oldestForwardsCompatibleVersion": 1001,
"tsdocConfig": {
"$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
"noStandardTags": true,
"tagDefinitions": [
{
"tagName": "@alpha",
"syntaxKind": "modifier"
},
{
"tagName": "@beta",
"syntaxKind": "modifier"
},
{
"tagName": "@defaultValue",
"syntaxKind": "block"
},
{
"tagName": "@decorator",
"syntaxKind": "block",
"allowMultiple": true
},
{
"tagName": "@deprecated",
"syntaxKind": "block"
},
{
"tagName": "@eventProperty",
"syntaxKind": "modifier"
},
{
"tagName": "@example",
"syntaxKind": "block",
"allowMultiple": true
},
{
"tagName": "@experimental",
"syntaxKind": "modifier"
},
{
"tagName": "@inheritDoc",
"syntaxKind": "inline"
},
{
"tagName": "@internal",
"syntaxKind": "modifier"
},
{
"tagName": "@label",
"syntaxKind": "inline"
},
{
"tagName": "@link",
"syntaxKind": "inline",
"allowMultiple": true
},
{
"tagName": "@override",
"syntaxKind": "modifier"
},
{
"tagName": "@packageDocumentation",
"syntaxKind": "modifier"
},
{
"tagName": "@param",
"syntaxKind": "block",
"allowMultiple": true
},
{
"tagName": "@privateRemarks",
"syntaxKind": "block"
},
{
"tagName": "@public",
"syntaxKind": "modifier"
},
{
"tagName": "@readonly",
"syntaxKind": "modifier"
},
{
"tagName": "@remarks",
"syntaxKind": "block"
},
{
"tagName": "@returns",
"syntaxKind": "block"
},
{
"tagName": "@sealed",
"syntaxKind": "modifier"
},
{
"tagName": "@see",
"syntaxKind": "block"
},
{
"tagName": "@throws",
"syntaxKind": "block",
"allowMultiple": true
},
{
"tagName": "@typeParam",
"syntaxKind": "block",
"allowMultiple": true
},
{
"tagName": "@virtual",
"syntaxKind": "modifier"
},
{
"tagName": "@betaDocumentation",
"syntaxKind": "modifier"
},
{
"tagName": "@internalRemarks",
"syntaxKind": "block"
},
{
"tagName": "@preapproved",
"syntaxKind": "modifier"
}
],
"supportForTags": {
"@alpha": true,
"@beta": true,
"@defaultValue": true,
"@decorator": true,
"@deprecated": true,
"@eventProperty": true,
"@example": true,
"@experimental": true,
"@inheritDoc": true,
"@internal": true,
"@label": true,
"@link": true,
"@override": true,
"@packageDocumentation": true,
"@param": true,
"@privateRemarks": true,
"@public": true,
"@readonly": true,
"@remarks": true,
"@returns": true,
"@sealed": true,
"@see": true,
"@throws": true,
"@typeParam": true,
"@virtual": true,
"@betaDocumentation": true,
"@internalRemarks": true,
"@preapproved": true
},
"reportUnsupportedHtmlElements": false
}
},
"kind": "Package",
"canonicalReference": "@storm-stack/frontend-table!",
"docComment": "",
"name": "@storm-stack/frontend-table",
"preserveMemberOrder": false,
"members": [
{
"kind": "EntryPoint",
"canonicalReference": "@storm-stack/frontend-table!",
"name": "",
"preserveMemberOrder": false,
"members": [
{
"kind": "Variable",
"canonicalReference": "@storm-stack/frontend-table!createTable:var",
"docComment": "",
"excerptTokens": [
{
"kind": "Content",
"text": "createTable: "
},
{
"kind": "Content",
"text": "(config: any) => import(\"@tanstack/react-table\").Table<unknown>"
}
],
"fileUrlPath": "frontend/table/src/create-table.ts",
"isReadonly": true,
"releaseTag": "Public",
"name": "createTable",
"variableTypeTokenRange": {
"startIndex": 1,
"endIndex": 2
}
}
]
}
]
}
22 changes: 22 additions & 0 deletions docs/api-reports/packages/utilities/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ type AnyCase<T extends IndexType> = string extends T
export { AnyCase };
export { AnyCase as AnyCase_alias_1 };

// @public
function argIdentity(value: any): any;
export { argIdentity };
export { argIdentity as argIdentity_alias_1 };
export { argIdentity as argIdentity_alias_2 };

// @public (undocumented)
type ArrayElement<ArrayType extends readonly unknown[]> =
ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
Expand Down Expand Up @@ -157,6 +163,16 @@ type Except<
export { Except };
export { Except as Except_alias_1 };

// @public
class Factory {
static create<TClass = any>(context: any): any;
protected static getClass<TClass = any>(
context: any
): new (...argArray: any[]) => TClass;
}
export { Factory };
export { Factory as Factory_alias_1 };

// @public (undocumented)
type Filter<KeyType, ExcludeType> = IsEqual<KeyType, ExcludeType> extends true
? never
Expand All @@ -182,6 +198,12 @@ export { getObjectTag };
export { getObjectTag as getObjectTag_alias_1 };
export { getObjectTag as getObjectTag_alias_2 };

// @public
const getUnique: <T = any>(arr: T[]) => T[];
export { getUnique };
export { getUnique as getUnique_alias_1 };
export { getUnique as getUnique_alias_2 };

// @public
const getWebCrypto: () => Crypto;
export { getWebCrypto };
Expand Down

0 comments on commit 3742ec7

Please sign in to comment.