@pixpilot/formily-shadcn 1.15.0 → 1.15.1

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.
@@ -10,10 +10,14 @@ const meta = {
10
10
  required: "Marks the control as required for accessibility and UI state.",
11
11
  options: "Options supplied directly or resolved from schema enum/dataSource.",
12
12
  placeholder: "Placeholder text shown before a value is selected or entered.",
13
- autoComplete: "Forwarded to the underlying UI component.",
14
13
  open: "Forwarded to the underlying UI component.",
15
- defaultOpen: "Forwarded to the underlying UI component.",
16
14
  onOpenChange: "Forwarded to the underlying UI component.",
15
+ size: {
16
+ description: "Controls the trigger height.",
17
+ type: `'sm' | 'default'`,
18
+ defaultValue: `'default'`
19
+ },
20
+ asChild: "Render the trigger behavior and styles through the child element instead of a native button.",
17
21
  contentProps: "Forwarded to the underlying UI component.",
18
22
  keyboardMode: "Forwarded to the underlying UI component.",
19
23
  position: "Forwarded to the underlying UI component.",
@@ -8,6 +8,12 @@ const meta = {
8
8
  htmlElement: "div",
9
9
  props: defineProps({
10
10
  label: "Label content or accessible label for the component.",
11
+ showLabel: {
12
+ description: "Hides the label element while keeping the `label` value available.",
13
+ type: "boolean",
14
+ defaultValue: "true"
15
+ },
16
+ slots: "Per-part prop overrides for the inline input, e.g. `{ list, label, item, input, addButton, clear }`.",
11
17
  value: "Controlled value for the underlying field UI. Usually supplied by Formily.",
12
18
  editable: "Forwarded to the underlying UI component.",
13
19
  disabled: "Disables user interaction. Usually also respects the Formily field disabled state.",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/formily-shadcn",
3
3
  "type": "module",
4
- "version": "1.15.0",
4
+ "version": "1.15.1",
5
5
  "description": "Formily integration for shadcn/ui components",
6
6
  "author": "m.doaie <m.doaie@hotmail.com>",
7
7
  "license": "MIT",
@@ -50,7 +50,7 @@
50
50
  "pretty-bytes": "^7.1.0",
51
51
  "zod": "^4.3.6",
52
52
  "@pixpilot/shadcn": "1.4.0",
53
- "@pixpilot/shadcn-ui": "1.39.0"
53
+ "@pixpilot/shadcn-ui": "2.0.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@storybook/react": "^8.6.18",
@@ -64,9 +64,9 @@
64
64
  "tsdown": "^0.15.12",
65
65
  "tsx": "^4.21.0",
66
66
  "typescript": "^5.9.3",
67
- "@internal/mcp": "0.0.0",
68
- "@internal/prettier-config": "0.0.1",
69
67
  "@internal/eslint-config": "0.3.0",
68
+ "@internal/prettier-config": "0.0.1",
69
+ "@internal/mcp": "0.0.0",
70
70
  "@internal/tsconfig": "0.1.0",
71
71
  "@internal/tsdown-config": "0.1.0",
72
72
  "@internal/vitest-config": "0.1.0"