@schandlergarcia/sf-web-components 1.2.4 → 1.2.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schandlergarcia/sf-web-components",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Reusable Salesforce web components library with Tailwind CSS v4 and shadcn/ui",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -1,5 +1,5 @@
1
1
  import { useState } from "react";
2
- import { UIInput, UIButton } from '@schandlergarcia/sf-web-components';
2
+ import { UIInput, Button } from '@schandlergarcia/sf-web-components';
3
3
  import { Search } from "lucide-react";
4
4
 
5
5
  export default function HomePage() {
@@ -40,12 +40,12 @@ export default function HomePage() {
40
40
  />
41
41
  </div>
42
42
  <div className="flex gap-3 justify-center">
43
- <UIButton onClick={handleSearch} variant="primary">
43
+ <Button onClick={handleSearch} variant="primary">
44
44
  Search
45
- </UIButton>
46
- <UIButton onClick={() => console.log("Browse All")} variant="secondary">
45
+ </Button>
46
+ <Button onClick={() => console.log("Browse All")} variant="secondary">
47
47
  Browse All
48
- </UIButton>
48
+ </Button>
49
49
  </div>
50
50
  </div>
51
51
  </div>