@singularsystems/neo-react 1.6.2 → 1.6.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file details all new features and changes to functionality. If you only need to see changes that require updates to your project, see the [breaking changes](./Breaking.md) readme.
4
4
 
5
+ ## Version 1.6.3 (14 July 2026)
6
+
7
+ - Allow `ICardProps` to be referenced.
8
+
5
9
  ## Version 1.6.2 (10 July 2026)
6
10
 
7
11
  - Routing fix
@@ -1,6 +1,6 @@
1
1
  import React, { JSX } from 'react';
2
2
  import { Model } from '@singularsystems/neo-core';
3
- interface ICardProps {
3
+ export interface ICardProps {
4
4
  /** Icon to show next to title in header. */
5
5
  icon?: string;
6
6
  /** Title to show in header. */
@@ -25,4 +25,3 @@ export default class Card extends React.Component<ICardProps & React.HTMLProps<H
25
25
  private expandState;
26
26
  render(): JSX.Element;
27
27
  }
28
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@singularsystems/neo-react",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "React application logic and components for the Neo client library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",