react-hook-toolkit 1.0.9 → 1.0.10

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.
Files changed (2) hide show
  1. package/README.md +5 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -620,13 +620,13 @@ Displays a styled file card with an icon based on file type, filename with ellip
620
620
  ```
621
621
  ---
622
622
 
623
- ### ✅ **BindLabel**
623
+ ### ✅ **LabeledValue**
624
624
  Displays a simple key-value label pair in a single line, with optional styling.
625
625
 
626
626
  ```tsx
627
627
  <LabeledValue
628
- label="Consumer Type"
629
- value="Residential"
628
+ label="Name"
629
+ value="ABC"
630
630
  />
631
631
  ```
632
632
  ---
@@ -636,12 +636,10 @@ Renders a card with a title and grid-based layout of labeled values. It supports
636
636
 
637
637
  ```tsx
638
638
  <DetailsCard
639
- title="Premise Details"
639
+ title="Details"
640
640
  spacing={2}
641
641
  details={[
642
- { label: 'Consumer Type', value: 'Residential' },
643
- { label: 'Unit Number', value: '203-B' },
644
- { label: 'Move in Date', value: '01-Apr-2024' },
642
+ { label: 'Name', value: 'XYZ' },
645
643
  ]}
646
644
  />
647
645
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-hook-toolkit",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Ultimate package for React developers, offering a powerful collection of hooks and components to enhance their development experience.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",