@linzjs/lui 17.12.5 → 17.13.0

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
@@ -1,3 +1,10 @@
1
+ # [17.13.0](https://github.com/linz/lui/compare/v17.12.5...v17.13.0) (2022-09-01)
2
+
3
+
4
+ ### Features
5
+
6
+ * **LuiExpandableNode:** Accept ReactNode for label ([#747](https://github.com/linz/lui/issues/747)) ([128529c](https://github.com/linz/lui/commit/128529c0e509c1512f226dfb3f324c429ab2e17c))
7
+
1
8
  ## [17.12.5](https://github.com/linz/lui/compare/v17.12.4...v17.12.5) (2022-08-30)
2
9
 
3
10
  ## [17.12.4](https://github.com/linz/lui/compare/v17.12.3...v17.12.4) (2022-08-30)
@@ -1,7 +1,7 @@
1
1
  import React, { ReactNode } from 'react';
2
2
  export interface Expandable {
3
3
  className?: string;
4
- label: string;
4
+ label: ReactNode;
5
5
  labelPrefix?: ReactNode;
6
6
  }
7
7
  export declare const LuiExpandableBanner: React.FC<Expandable>;