@rljson/rljson 0.0.26 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/content/table-cfg.d.ts +1 -1
- package/dist/rljson.js +1 -1
- package/package.json +1 -1
|
@@ -47,4 +47,4 @@ export type TablesCfgTable = RljsonTable<TableCfg, 'properties'>;
|
|
|
47
47
|
* Example matching allTypesRow
|
|
48
48
|
*/
|
|
49
49
|
export declare const exampleTableCfgTable: () => TablesCfgTable;
|
|
50
|
-
export declare const exampleTableCfg: (tableCfg
|
|
50
|
+
export declare const exampleTableCfg: (tableCfg?: Partial<TableCfg> | undefined) => TableCfg;
|
package/dist/rljson.js
CHANGED
|
@@ -477,7 +477,7 @@ __publicField(_Example, "broken", {
|
|
|
477
477
|
let Example = _Example;
|
|
478
478
|
// @license
|
|
479
479
|
const exampleTableCfgTable = () => Example.ok.singleRow().tableCfgs;
|
|
480
|
-
const exampleTableCfg = (tableCfg) => {
|
|
480
|
+
const exampleTableCfg = (tableCfg = void 0) => {
|
|
481
481
|
return {
|
|
482
482
|
key: (tableCfg == null ? void 0 : tableCfg.key) ?? "table",
|
|
483
483
|
columns: (tableCfg == null ? void 0 : tableCfg.columns) ?? {
|