@pixpilot/formily-shadcn 1.7.1 → 1.7.2
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/Form.d.cts +2 -2
- package/dist/components/FormGrid.d.cts +2 -2
- package/dist/components/IconPicker.d.cts +3 -3
- package/dist/components/Input.d.cts +3 -3
- package/dist/components/Radio.d.ts +2 -2
- package/dist/components/Row.d.ts +2 -2
- package/dist/components/Separator.d.cts +2 -2
- package/dist/components/Separator.d.ts +2 -2
- package/dist/components/Switch.d.cts +2 -2
- package/dist/components/Switch.d.ts +2 -2
- package/dist/components/form-item/ConnectedFormItem.d.ts +4 -4
- package/dist/components/schema-field/schema-field-basics.d.cts +288 -288
- package/dist/components/schema-field/schema-field-basics.d.ts +288 -288
- package/dist/components/schema-field/schema-field.d.ts +398 -398
- package/dist/components/slider/SliderSelect.d.cts +3 -3
- package/dist/components/slider/SliderSelect.d.ts +3 -3
- package/package.json +3 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as react1432 from "react";
|
|
2
|
+
import * as _pixpilot_shadcn_ui485 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/slider/SliderSelect.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Formily-connected SliderSelect component
|
|
7
7
|
* Discrete slider that maps between provided options
|
|
8
8
|
*/
|
|
9
|
-
declare const SliderSelect:
|
|
9
|
+
declare const SliderSelect: react1432.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui485.SliderSelectProps>, "ref"> & react1432.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { SliderSelect };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as react1916 from "react";
|
|
2
|
+
import * as _pixpilot_shadcn_ui518 from "@pixpilot/shadcn-ui";
|
|
3
3
|
|
|
4
4
|
//#region src/components/slider/SliderSelect.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Formily-connected SliderSelect component
|
|
7
7
|
* Discrete slider that maps between provided options
|
|
8
8
|
*/
|
|
9
|
-
declare const SliderSelect$1:
|
|
9
|
+
declare const SliderSelect$1: react1916.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui518.SliderSelectProps>, "ref"> & react1916.RefAttributes<unknown>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { SliderSelect$1 as SliderSelect };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixpilot/formily-shadcn",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"description": "Formily integration for shadcn/ui components",
|
|
6
6
|
"author": "m.doaie <m.doaie@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"lucide-react": "^0.562.0",
|
|
46
46
|
"pretty-bytes": "^7.1.0",
|
|
47
47
|
"@pixpilot/shadcn": "1.2.0",
|
|
48
|
-
"@pixpilot/shadcn-ui": "1.
|
|
48
|
+
"@pixpilot/shadcn-ui": "1.4.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@storybook/react": "^8.6.14",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"react-dom": "19.2.0",
|
|
59
59
|
"tsdown": "^0.15.12",
|
|
60
60
|
"typescript": "^5.9.3",
|
|
61
|
+
"@internal/prettier-config": "0.0.1",
|
|
61
62
|
"@internal/eslint-config": "0.3.0",
|
|
62
63
|
"@internal/tsconfig": "0.1.0",
|
|
63
|
-
"@internal/prettier-config": "0.0.1",
|
|
64
64
|
"@internal/tsdown-config": "0.1.0",
|
|
65
65
|
"@internal/vitest-config": "0.1.0"
|
|
66
66
|
},
|