@hanzo/ui 4.8.2 → 4.8.4
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/dist/index.js +5 -4
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
- package/primitives/form.tsx +2 -0
- package/primitives/index-client.ts +4 -0
- package/primitives/input.tsx +2 -0
- package/primitives/textarea.tsx +2 -0
- package/primitives/textfield.tsx +2 -0
package/dist/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
"use client";
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -28,9 +29,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
28
29
|
));
|
|
29
30
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
31
|
|
|
31
|
-
// primitives/index-
|
|
32
|
-
var
|
|
33
|
-
__export(
|
|
32
|
+
// primitives/index-client.ts
|
|
33
|
+
var index_client_exports = {};
|
|
34
|
+
__export(index_client_exports, {
|
|
34
35
|
AIAgentIcon: () => AIAgentIcon,
|
|
35
36
|
AISearchContentIcon: () => AISearchContentIcon,
|
|
36
37
|
Accordion: () => Accordion,
|
|
@@ -350,7 +351,7 @@ __export(index_next_exports, {
|
|
|
350
351
|
toggleVariants: () => toggleVariants,
|
|
351
352
|
useFormField: () => useFormField
|
|
352
353
|
});
|
|
353
|
-
module.exports = __toCommonJS(
|
|
354
|
+
module.exports = __toCommonJS(index_client_exports);
|
|
354
355
|
|
|
355
356
|
// primitives/accordion.tsx
|
|
356
357
|
var AccordionPrimitive = __toESM(require("@radix-ui/react-accordion"));
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hanzo/ui",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.4",
|
|
4
4
|
"description": "Multi-framework UI library with React, Vue, Svelte, and React Native support. Based on shadcn/ui with comprehensive framework coverage.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
package/primitives/form.tsx
CHANGED
package/primitives/input.tsx
CHANGED
package/primitives/textarea.tsx
CHANGED