@lax-wp/design-system 0.2.7 → 0.2.8

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.
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import React, { type ReactNode } from 'react';
2
2
  /**
3
3
  * Available label value size options
4
4
  */
@@ -55,7 +55,7 @@ export interface LabelValueProps {
55
55
  /** The label text to display */
56
56
  label?: string;
57
57
  /** The value to display */
58
- value?: string | number | boolean;
58
+ value?: string | number | boolean | ReactNode;
59
59
  /** Additional CSS classes */
60
60
  className?: string;
61
61
  /** Data type for formatting */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lax-wp/design-system",
3
3
  "private": false,
4
- "version": "0.2.7",
4
+ "version": "0.2.8",
5
5
  "type": "module",
6
6
  "main": "dist/index.umd.js",
7
7
  "module": "dist/index.es.js",