@pixpilot/formily-shadcn 0.8.1 → 0.8.3
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/components/checkbox.d.ts +2 -2
- package/dist/components/date-picker.d.ts +3 -3
- package/dist/components/icon-picker.d.ts +3 -3
- package/dist/components/input.d.ts +2 -2
- package/dist/components/number-input.d.ts +2 -2
- package/dist/components/schema-field-extended.d.cts +9 -9
- package/dist/components/schema-field-extended.d.ts +263 -263
- package/dist/components/schema-field.d.cts +9 -9
- package/dist/components/schema-field.d.ts +220 -220
- package/dist/components/separator.d.ts +3 -3
- package/dist/components/slider.d.ts +2 -2
- package/dist/components/switch.d.ts +2 -2
- package/package.json +5 -5
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as react388 from "react";
|
|
2
|
+
import * as _radix_ui_react_separator9 from "@radix-ui/react-separator";
|
|
3
3
|
|
|
4
4
|
//#region src/components/separator.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Formily-connected Separator component
|
|
7
7
|
* A visual divider for content sections
|
|
8
8
|
*/
|
|
9
|
-
declare const Separator:
|
|
9
|
+
declare const Separator: react388.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_separator9.SeparatorProps & react388.RefAttributes<HTMLDivElement>>, "ref"> & react388.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { Separator };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react790 from "react";
|
|
2
2
|
import { SliderProps } from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/slider.d.ts
|
|
@@ -7,6 +7,6 @@ import { SliderProps } from "@pixpilot/shadcn-ui";
|
|
|
7
7
|
* Formily-connected Slider component
|
|
8
8
|
* Range input for selecting numeric values
|
|
9
9
|
*/
|
|
10
|
-
declare const Slider$1:
|
|
10
|
+
declare const Slider$1: react790.ForwardRefExoticComponent<Omit<Partial<SliderProps>, "ref"> & react790.RefAttributes<unknown>>;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { Slider$1 as Slider };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react787 from "react";
|
|
2
2
|
import * as _radix_ui_react_switch18 from "@radix-ui/react-switch";
|
|
3
3
|
|
|
4
4
|
//#region src/components/switch.d.ts
|
|
@@ -6,6 +6,6 @@ import * as _radix_ui_react_switch18 from "@radix-ui/react-switch";
|
|
|
6
6
|
* Formily-connected Switch component
|
|
7
7
|
* Toggle switch for boolean values
|
|
8
8
|
*/
|
|
9
|
-
declare const Switch:
|
|
9
|
+
declare const Switch: react787.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_switch18.SwitchProps & react787.RefAttributes<HTMLButtonElement>>, "ref"> & react787.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { Switch };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixpilot/formily-shadcn",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.3",
|
|
5
5
|
"description": "Formily integration for shadcn/ui components",
|
|
6
6
|
"author": "m.doaie <m.doaie@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"json-schema-traverse": "^1.0.0",
|
|
40
40
|
"lucide-react": "^0.554.0",
|
|
41
41
|
"pretty-bytes": "^7.1.0",
|
|
42
|
-
"@pixpilot/shadcn
|
|
43
|
-
"@pixpilot/shadcn": "0.3
|
|
42
|
+
"@pixpilot/shadcn": "0.3.1",
|
|
43
|
+
"@pixpilot/shadcn-ui": "0.4.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@storybook/react": "^10.0.8",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"@internal/eslint-config": "0.3.0",
|
|
57
57
|
"@internal/prettier-config": "0.0.1",
|
|
58
58
|
"@internal/tsconfig": "0.1.0",
|
|
59
|
-
"@internal/
|
|
60
|
-
"@internal/
|
|
59
|
+
"@internal/tsdown-config": "0.1.0",
|
|
60
|
+
"@internal/vitest-config": "0.1.0"
|
|
61
61
|
},
|
|
62
62
|
"prettier": "@internal/prettier-config",
|
|
63
63
|
"scripts": {
|