@pixpilot/formily-shadcn 0.15.1 → 0.16.0

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.
@@ -2,6 +2,8 @@ import { useMergedSchemaComponents } from "../../hooks/use-merged-schema-compone
2
2
  import { Combobox as Combobox$1 } from "../combobox.js";
3
3
  import { extractComponents } from "../../utils/extract-components.js";
4
4
  import { useFormSchema } from "../../hooks/use-form-schema.js";
5
+ import { ColorPicker as ColorPicker$1 } from "../color-picker/color-picker.js";
6
+ import "../color-picker/index.js";
5
7
  import { Slider as Slider$1 } from "../slider.js";
6
8
  import { TagsInputInLine } from "../tags-input-inline.js";
7
9
  import { basicComponentRegistry } from "./schema-field-basics.js";
@@ -27,6 +29,10 @@ const defaultComponentRegistry = {
27
29
  Slider: {
28
30
  component: Slider$1,
29
31
  decorator: "FormItem"
32
+ },
33
+ ColorPicker: {
34
+ component: ColorPicker$1,
35
+ decorator: "FormItem"
30
36
  }
31
37
  };
32
38
  const defaultComponents = extractComponents(defaultComponentRegistry);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/formily-shadcn",
3
3
  "type": "module",
4
- "version": "0.15.1",
4
+ "version": "0.16.0",
5
5
  "description": "Formily integration for shadcn/ui components",
6
6
  "author": "m.doaie <m.doaie@hotmail.com>",
7
7
  "license": "MIT",
@@ -41,7 +41,7 @@
41
41
  "lucide-react": "^0.554.0",
42
42
  "pretty-bytes": "^7.1.0",
43
43
  "@pixpilot/shadcn": "0.5.0",
44
- "@pixpilot/shadcn-ui": "0.13.0"
44
+ "@pixpilot/shadcn-ui": "0.14.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@storybook/react": "^10.1.8",
@@ -56,8 +56,8 @@
56
56
  "typescript": "^5.9.3",
57
57
  "@internal/eslint-config": "0.3.0",
58
58
  "@internal/prettier-config": "0.0.1",
59
- "@internal/tsdown-config": "0.1.0",
60
59
  "@internal/tsconfig": "0.1.0",
60
+ "@internal/tsdown-config": "0.1.0",
61
61
  "@internal/vitest-config": "0.1.0"
62
62
  },
63
63
  "prettier": "@internal/prettier-config",