@pixpilot/formily-shadcn 0.14.2 → 0.14.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.
@@ -1,13 +1,13 @@
1
1
  import { FormItemProps } from "./form-item-types.cjs";
2
- import * as react1361 from "react";
2
+ import * as react1363 from "react";
3
3
 
4
4
  //#region src/components/form-item/connected-form-item.d.ts
5
5
  /**
6
6
  * FormItem component connected to Formily field state.
7
7
  * Automatically maps field validation state to component props.
8
8
  */
9
- declare const FormItem: react1361.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
10
- children?: react1361.ReactNode | undefined;
11
- }>, "ref"> & react1361.RefAttributes<unknown>>;
9
+ declare const FormItem: react1363.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
10
+ children?: react1363.ReactNode | undefined;
11
+ }>, "ref"> & react1363.RefAttributes<unknown>>;
12
12
  //#endregion
13
13
  export { FormItem };
@@ -1,4 +1,4 @@
1
- import * as react8 from "react";
1
+ import * as react4 from "react";
2
2
  import { IconPickerProps, IconProviderProps } from "@pixpilot/shadcn-ui";
3
3
 
4
4
  //#region src/components/icon-picker.d.ts
@@ -8,8 +8,8 @@ import { IconPickerProps, IconProviderProps } from "@pixpilot/shadcn-ui";
8
8
  * Automatically connects to Formily field state
9
9
  * Supports both static and async icon providers
10
10
  */
11
- declare const IconPicker: react8.ForwardRefExoticComponent<Partial<Omit<IconPickerProps, "providers"> & {
11
+ declare const IconPicker: react4.ForwardRefExoticComponent<Partial<Omit<IconPickerProps, "providers"> & {
12
12
  providers?: IconProviderProps[];
13
- }> & react8.RefAttributes<unknown>>;
13
+ }> & react4.RefAttributes<unknown>>;
14
14
  //#endregion
15
15
  export { IconPicker };
@@ -1,4 +1,4 @@
1
- import * as react4 from "react";
1
+ import * as react6 from "react";
2
2
 
3
3
  //#region src/components/input.d.ts
4
4
 
@@ -6,6 +6,6 @@ import * as react4 from "react";
6
6
  * Formily-connected Input component
7
7
  * Automatically connects shadcn Input to Formily field state
8
8
  */
9
- declare const Input: react4.ForwardRefExoticComponent<Omit<Partial<react4.ClassAttributes<HTMLInputElement> & react4.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react4.RefAttributes<unknown>>;
9
+ declare const Input: react6.ForwardRefExoticComponent<Omit<Partial<react6.ClassAttributes<HTMLInputElement> & react6.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react6.RefAttributes<unknown>>;
10
10
  //#endregion
11
11
  export { Input };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/formily-shadcn",
3
3
  "type": "module",
4
- "version": "0.14.2",
4
+ "version": "0.14.4",
5
5
  "description": "Formily integration for shadcn/ui components",
6
6
  "author": "m.doaie <m.doaie@hotmail.com>",
7
7
  "license": "MIT",
@@ -40,8 +40,8 @@
40
40
  "json-schema-traverse": "^1.0.0",
41
41
  "lucide-react": "^0.554.0",
42
42
  "pretty-bytes": "^7.1.0",
43
- "@pixpilot/shadcn": "0.4.0",
44
- "@pixpilot/shadcn-ui": "0.9.0"
43
+ "@pixpilot/shadcn": "0.5.0",
44
+ "@pixpilot/shadcn-ui": "0.10.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@storybook/react": "^10.1.8",
@@ -54,9 +54,9 @@
54
54
  "react-dom": "19.2.0",
55
55
  "tsdown": "^0.15.12",
56
56
  "typescript": "^5.9.3",
57
- "@internal/eslint-config": "0.3.0",
58
57
  "@internal/prettier-config": "0.0.1",
59
58
  "@internal/tsconfig": "0.1.0",
59
+ "@internal/eslint-config": "0.3.0",
60
60
  "@internal/tsdown-config": "0.1.0",
61
61
  "@internal/vitest-config": "0.1.0"
62
62
  },