@rljson/rljson 0.0.26 → 0.0.27

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.
@@ -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: Partial<TableCfg>) => Partial<TableCfg>;
50
+ export declare const exampleTableCfg: (tableCfg?: Partial<TableCfg> | undefined) => Partial<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) ?? {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rljson/rljson",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "packageManager": "pnpm@10.6.3",
5
5
  "description": "The RLJSON data format specification",
6
6
  "homepage": "https://github.com/rljson/rljson",