@pixpilot/formily-shadcn 0.2.0 → 0.3.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.
Files changed (42) hide show
  1. package/dist/components/checkbox.d.cts +2 -2
  2. package/dist/components/checkbox.d.ts +2 -2
  3. package/dist/components/column.d.ts +2 -2
  4. package/dist/components/date-picker.d.cts +3 -3
  5. package/dist/components/date-picker.d.ts +3 -3
  6. package/dist/components/form-grid.d.cts +2 -2
  7. package/dist/components/form-grid.d.ts +2 -2
  8. package/dist/components/form-item.cjs +3 -3
  9. package/dist/components/form-item.d.cts +4 -3
  10. package/dist/components/form-item.d.ts +4 -3
  11. package/dist/components/form-item.js +3 -3
  12. package/dist/components/form.d.cts +2 -2
  13. package/dist/components/number-input.d.ts +2 -2
  14. package/dist/components/object-container.cjs +1 -0
  15. package/dist/components/object-container.d.cts +9 -0
  16. package/dist/components/object-container.d.ts +9 -0
  17. package/dist/components/object-container.js +1 -0
  18. package/dist/components/radio.d.cts +2 -2
  19. package/dist/components/row.d.cts +2 -2
  20. package/dist/components/schema-field.cjs +1 -1
  21. package/dist/components/schema-field.d.cts +28 -18
  22. package/dist/components/schema-field.d.ts +191 -181
  23. package/dist/components/schema-field.js +1 -1
  24. package/dist/components/separator.d.cts +2 -2
  25. package/dist/components/separator.d.ts +3 -3
  26. package/dist/components/slider.d.cts +2 -2
  27. package/dist/components/slider.d.ts +2 -2
  28. package/dist/components/switch.d.cts +2 -2
  29. package/dist/components/switch.d.ts +3 -3
  30. package/dist/components/tags-input-inline.d.cts +2 -2
  31. package/dist/components/tags-input-inline.d.ts +3 -3
  32. package/dist/components/textarea.d.cts +2 -2
  33. package/dist/components/textarea.d.ts +2 -2
  34. package/dist/hooks/index.cjs +1 -0
  35. package/dist/hooks/index.js +1 -0
  36. package/dist/hooks/use-label.cjs +1 -0
  37. package/dist/hooks/use-label.js +1 -0
  38. package/dist/types/react.d.cts +4 -0
  39. package/dist/types/react.d.ts +4 -0
  40. package/dist/utils/transform-schema.cjs +1 -1
  41. package/dist/utils/transform-schema.js +1 -1
  42. package/package.json +2 -1
@@ -1,4 +1,4 @@
1
- import * as react1 from "react";
1
+ import * as react0 from "react";
2
2
  import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
3
3
 
4
4
  //#region src/components/checkbox.d.ts
@@ -6,6 +6,6 @@ import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
6
6
  * Formily-connected Checkbox component
7
7
  * Maps Formily field checked state to shadcn Checkbox
8
8
  */
9
- declare const Checkbox: react1.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react1.RefAttributes<HTMLButtonElement>>, "ref"> & react1.RefAttributes<unknown>>;
9
+ declare const Checkbox: react0.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react0.RefAttributes<HTMLButtonElement>>, "ref"> & react0.RefAttributes<unknown>>;
10
10
  //#endregion
11
11
  export { Checkbox };
@@ -1,4 +1,4 @@
1
- import * as react5 from "react";
1
+ import * as react3 from "react";
2
2
  import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
3
3
 
4
4
  //#region src/components/checkbox.d.ts
@@ -6,6 +6,6 @@ import * as _radix_ui_react_checkbox0 from "@radix-ui/react-checkbox";
6
6
  * Formily-connected Checkbox component
7
7
  * Maps Formily field checked state to shadcn Checkbox
8
8
  */
9
- declare const Checkbox: react5.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react5.RefAttributes<HTMLButtonElement>>, "ref"> & react5.RefAttributes<unknown>>;
9
+ declare const Checkbox: react3.ForwardRefExoticComponent<Omit<Partial<_radix_ui_react_checkbox0.CheckboxProps & react3.RefAttributes<HTMLButtonElement>>, "ref"> & react3.RefAttributes<unknown>>;
10
10
  //#endregion
11
11
  export { Checkbox };
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import * as react_jsx_runtime1 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/column.d.ts
5
5
  interface IColumnProps {
@@ -36,6 +36,6 @@ interface IColumnProps {
36
36
  declare function Column({
37
37
  className,
38
38
  children
39
- }: IColumnProps): react_jsx_runtime1.JSX.Element;
39
+ }: IColumnProps): react_jsx_runtime0.JSX.Element;
40
40
  //#endregion
41
41
  export { Column };
@@ -1,8 +1,8 @@
1
- import * as react0 from "react";
1
+ import * as react2 from "react";
2
2
  import * as react_day_picker0 from "react-day-picker";
3
3
 
4
4
  //#region src/components/date-picker.d.ts
5
- declare const DatePicker: react0.ForwardRefExoticComponent<Partial<{
5
+ declare const DatePicker: react2.ForwardRefExoticComponent<Partial<{
6
6
  value?: Date;
7
7
  onChange?: (date: Date | undefined) => void;
8
8
  placeholder?: string;
@@ -12,6 +12,6 @@ declare const DatePicker: react0.ForwardRefExoticComponent<Partial<{
12
12
  placeholder?: string;
13
13
  } & Omit<react_day_picker0.DayPickerProps & {
14
14
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
15
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react0.RefAttributes<unknown>>;
15
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react2.RefAttributes<unknown>>;
16
16
  //#endregion
17
17
  export { DatePicker };
@@ -1,8 +1,8 @@
1
- import * as react0 from "react";
1
+ import * as react6 from "react";
2
2
  import * as react_day_picker0 from "react-day-picker";
3
3
 
4
4
  //#region src/components/date-picker.d.ts
5
- declare const DatePicker: react0.ForwardRefExoticComponent<Partial<{
5
+ declare const DatePicker: react6.ForwardRefExoticComponent<Partial<{
6
6
  value?: Date;
7
7
  onChange?: (date: Date | undefined) => void;
8
8
  placeholder?: string;
@@ -12,6 +12,6 @@ declare const DatePicker: react0.ForwardRefExoticComponent<Partial<{
12
12
  placeholder?: string;
13
13
  } & Omit<react_day_picker0.DayPickerProps & {
14
14
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
15
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react0.RefAttributes<unknown>>;
15
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react6.RefAttributes<unknown>>;
16
16
  //#endregion
17
17
  export { DatePicker };
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/form-grid.d.ts
5
5
  interface IFormGridProps extends React.HTMLAttributes<HTMLDivElement> {}
@@ -7,6 +7,6 @@ declare function FormGrid({
7
7
  className,
8
8
  children,
9
9
  ...rest
10
- }: IFormGridProps): react_jsx_runtime0.JSX.Element;
10
+ }: IFormGridProps): react_jsx_runtime1.JSX.Element;
11
11
  //#endregion
12
12
  export { FormGrid };
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/form-grid.d.ts
5
5
  interface IFormGridProps extends React.HTMLAttributes<HTMLDivElement> {}
@@ -7,6 +7,6 @@ declare function FormGrid({
7
7
  className,
8
8
  children,
9
9
  ...rest
10
- }: IFormGridProps): react_jsx_runtime0.JSX.Element;
10
+ }: IFormGridProps): react_jsx_runtime1.JSX.Element;
11
11
  //#endregion
12
12
  export { FormGrid };
@@ -1,3 +1,3 @@
1
- const e=require(`../_virtual/rolldown_runtime.cjs`);let t=require(`@formily/react`);t=e.__toESM(t);let n=require(`react`);n=e.__toESM(n);let r=require(`react/jsx-runtime`);r=e.__toESM(r);let i=require(`@pixpilot/shadcn`);i=e.__toESM(i);let a=require(`@formily/core`);a=e.__toESM(a);let o=require(`@pixpilot/string`);o=e.__toESM(o);function s(e,t){return e??(t==null?null:typeof t==`string`?(0,o.toCapitalCase)(t):t)}const c=({className:e,children:a,label:o,description:c,asterisk:l,feedbackStatus:u,feedbackText:d,labelPlacement:f=`top`,...p})=>{let m=(0,t.useField)(),h=m?.componentProps??{},g=s(o,(0,t.useFieldSchema)().name),_=h.labelPlacement??f,v=m?.componentProps?.id??`form-${m?.address?.toString()?.replace(/\./gu,`-`)}`,y=n.default.useId(),b=n.default.useId(),x=[c==null?void 0:y,d==null?void 0:b].filter(Boolean).join(` `),S=g!=null&&(0,r.jsxs)(`label`,{htmlFor:v,"data-slot":`form-label`,"data-error":u===`error`,className:(0,i.cn)(`text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70`,u===`error`&&`text-destructive`,(_===`end`||_===`start`)&&`shrink-0`),children:[g,l&&(0,r.jsx)(`span`,{className:`text-destructive ml-1`,"aria-label":`required`,children:`*`})]}),C=(0,r.jsx)(`div`,{className:`relative`,children:n.default.isValidElement(a)?n.default.cloneElement(a,{id:v,"aria-describedby":x||void 0,"aria-invalid":u===`error`?`true`:void 0}):a}),w=(0,r.jsxs)(r.Fragment,{children:[_===`top`&&S,c!=null&&_===`top`&&(0,r.jsx)(`p`,{id:y,className:`text-muted-foreground text-[0.8rem]`,children:c}),(_===`start`||_===`end`)&&(0,r.jsxs)(`div`,{className:(0,i.cn)(`flex items-center gap-2`,_===`start`&&`flex-row`),children:[_===`start`&&S,C,_===`end`&&S]}),_===`top`&&C,c!=null&&(_===`start`||_===`end`)&&(0,r.jsx)(`p`,{id:y,className:`text-muted-foreground text-[0.8rem]`,children:c})]});return(0,r.jsxs)(`div`,{"data-slot":`form-item`,className:(0,i.cn)(`flex flex-col gap-2`,e),...p,children:[w,!!d&&(0,r.jsx)(`p`,{id:b,className:(0,i.cn)(`text-[0.8rem]`,u===`error`&&`text-destructive font-medium`,u===`warning`&&`text-amber-600`,u===`success`&&`text-green-600`),children:typeof d==`string`?d.split(`
2
- `).map((e,t)=>(0,r.jsxs)(n.default.Fragment,{children:[e,t<d.split(`
3
- `).length-1&&(0,r.jsx)(`br`,{})]},t)):d})]})},l=(0,t.connect)(c,(0,t.mapProps)((e,t)=>(0,a.isVoidField)(t)?{label:t.title??e.label,description:e.description??t.description,asterisk:e.asterisk}:{label:e.label??t.title,description:e.description??t.description,feedbackStatus:(()=>{if(!t.validating){if(t.selfErrors?.length)return`error`;if(t.selfWarnings?.length)return`warning`;if(t.selfSuccesses?.length)return`success`}})(),feedbackText:(()=>{if(!t.validating){if(e.feedbackText!=null)return e.feedbackText;if(t.selfErrors?.length)return t.selfErrors.join(`, `);if(t.selfWarnings?.length)return t.selfWarnings.join(`, `);if(t.selfSuccesses?.length)return t.selfSuccesses.join(`, `)}})(),asterisk:(()=>t.required&&t.pattern!==`readPretty`?!0:`asterisk`in e?!!e.asterisk:!1)()}));exports.FormItem=l;
1
+ const e=require(`../_virtual/rolldown_runtime.cjs`),t=require(`../hooks/use-label.cjs`);require(`../hooks/index.cjs`);let n=require(`@formily/react`);n=e.__toESM(n);let r=require(`react`);r=e.__toESM(r);let i=require(`react/jsx-runtime`);i=e.__toESM(i);let a=require(`@pixpilot/shadcn`);a=e.__toESM(a);let o=require(`@formily/core`);o=e.__toESM(o);const s=({className:e,children:o,label:s,description:c,asterisk:l,feedbackStatus:u,feedbackText:d,labelPlacement:f=`top`,...p})=>{let m=(0,n.useField)(),h=m?.componentProps??{},g=t.useLabel(s),_=h.labelPlacement??f,v=m?.componentProps?.id??`form-${m?.address?.toString()?.replace(/\./gu,`-`)}`,y=r.default.useId(),b=r.default.useId(),x=[c==null?void 0:y,d==null?void 0:b].filter(Boolean).join(` `),S=g!=null&&(0,i.jsxs)(`label`,{htmlFor:v,"data-slot":`form-label`,"data-error":u===`error`,className:(0,a.cn)(`text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70`,u===`error`&&`text-destructive`,(_===`end`||_===`start`)&&`shrink-0`),children:[g,l&&(0,i.jsx)(`span`,{className:`text-destructive ml-1`,"aria-label":`required`,children:`*`})]}),C=(0,i.jsx)(`div`,{className:`relative`,children:r.default.isValidElement(o)?r.default.cloneElement(o,{id:v,"aria-describedby":x||void 0,"aria-invalid":u===`error`?`true`:void 0}):o}),w=(0,i.jsxs)(i.Fragment,{children:[_===`top`&&S,c!=null&&_===`top`&&(0,i.jsx)(`p`,{id:y,className:`text-muted-foreground text-[0.8rem]`,children:c}),(_===`start`||_===`end`)&&(0,i.jsxs)(`div`,{className:(0,a.cn)(`flex items-center gap-2`,_===`start`&&`flex-row`),children:[_===`start`&&S,C,_===`end`&&S]}),_===`top`&&C,c!=null&&(_===`start`||_===`end`)&&(0,i.jsx)(`p`,{id:y,className:`text-muted-foreground text-[0.8rem]`,children:c})]});return(0,i.jsxs)(`div`,{"data-slot":`form-item`,className:(0,a.cn)(`flex flex-col gap-2`,e),...p,children:[w,!!d&&(0,i.jsx)(`p`,{id:b,className:(0,a.cn)(`text-[0.8rem]`,u===`error`&&`text-destructive font-medium`,u===`warning`&&`text-amber-600`,u===`success`&&`text-green-600`),children:typeof d==`string`?d.split(`
2
+ `).map((e,t)=>(0,i.jsxs)(r.default.Fragment,{children:[e,t<d.split(`
3
+ `).length-1&&(0,i.jsx)(`br`,{})]},t)):d})]})},c=(0,n.connect)(s,(0,n.mapProps)((e,t)=>(0,o.isVoidField)(t)?{label:t.title??e.label,description:e.description??t.description,asterisk:e.asterisk}:{label:e.label??t.title,description:e.description??t.description,feedbackStatus:(()=>{if(!t.validating){if(t.selfErrors?.length)return`error`;if(t.selfWarnings?.length)return`warning`;if(t.selfSuccesses?.length)return`success`}})(),feedbackText:(()=>{if(!t.validating){if(e.feedbackText!=null)return e.feedbackText;if(t.selfErrors?.length)return t.selfErrors.join(`, `);if(t.selfWarnings?.length)return t.selfWarnings.join(`, `);if(t.selfSuccesses?.length)return t.selfSuccesses.join(`, `)}})(),asterisk:(()=>t.required&&t.pattern!==`readPretty`?!0:`asterisk`in e?!!e.asterisk:!1)()}));exports.FormItem=c;
@@ -1,13 +1,14 @@
1
+ import { SyncReactNode } from "../types/react.cjs";
1
2
  import React from "react";
2
3
 
3
4
  //#region src/components/form-item.d.ts
4
5
  type LabelPlacement = 'top' | 'bottom' | 'start' | 'end';
5
6
  interface FormItemProps extends React.ComponentProps<'div'> {
6
- label?: React.ReactNode;
7
- description?: React.ReactNode;
7
+ label?: SyncReactNode;
8
+ description?: SyncReactNode;
8
9
  asterisk?: boolean;
9
10
  feedbackStatus?: 'error' | 'warning' | 'success';
10
- feedbackText?: React.ReactNode;
11
+ feedbackText?: SyncReactNode;
11
12
  labelPlacement?: LabelPlacement;
12
13
  }
13
14
  /**
@@ -1,13 +1,14 @@
1
+ import { SyncReactNode } from "../types/react.js";
1
2
  import React from "react";
2
3
 
3
4
  //#region src/components/form-item.d.ts
4
5
  type LabelPlacement = 'top' | 'bottom' | 'start' | 'end';
5
6
  interface FormItemProps extends React.ComponentProps<'div'> {
6
- label?: React.ReactNode;
7
- description?: React.ReactNode;
7
+ label?: SyncReactNode;
8
+ description?: SyncReactNode;
8
9
  asterisk?: boolean;
9
10
  feedbackStatus?: 'error' | 'warning' | 'success';
10
- feedbackText?: React.ReactNode;
11
+ feedbackText?: SyncReactNode;
11
12
  labelPlacement?: LabelPlacement;
12
13
  }
13
14
  /**
@@ -1,3 +1,3 @@
1
- import{connect as e,mapProps as t,useField as n,useFieldSchema as r}from"@formily/react";import i from"react";import{Fragment as a,jsx as o,jsxs as s}from"react/jsx-runtime";import{cn as c}from"@pixpilot/shadcn";import{isVoidField as l}from"@formily/core";import{toCapitalCase as u}from"@pixpilot/string";function d(e,t){return e??(t==null?null:typeof t==`string`?u(t):t)}const f=e(({className:e,children:t,label:l,description:u,asterisk:f,feedbackStatus:p,feedbackText:m,labelPlacement:h=`top`,...g})=>{let _=n(),v=_?.componentProps??{},y=d(l,r().name),b=v.labelPlacement??h,x=_?.componentProps?.id??`form-${_?.address?.toString()?.replace(/\./gu,`-`)}`,S=i.useId(),C=i.useId(),w=[u==null?void 0:S,m==null?void 0:C].filter(Boolean).join(` `),T=y!=null&&s(`label`,{htmlFor:x,"data-slot":`form-label`,"data-error":p===`error`,className:c(`text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70`,p===`error`&&`text-destructive`,(b===`end`||b===`start`)&&`shrink-0`),children:[y,f&&o(`span`,{className:`text-destructive ml-1`,"aria-label":`required`,children:`*`})]}),E=o(`div`,{className:`relative`,children:i.isValidElement(t)?i.cloneElement(t,{id:x,"aria-describedby":w||void 0,"aria-invalid":p===`error`?`true`:void 0}):t}),D=s(a,{children:[b===`top`&&T,u!=null&&b===`top`&&o(`p`,{id:S,className:`text-muted-foreground text-[0.8rem]`,children:u}),(b===`start`||b===`end`)&&s(`div`,{className:c(`flex items-center gap-2`,b===`start`&&`flex-row`),children:[b===`start`&&T,E,b===`end`&&T]}),b===`top`&&E,u!=null&&(b===`start`||b===`end`)&&o(`p`,{id:S,className:`text-muted-foreground text-[0.8rem]`,children:u})]});return s(`div`,{"data-slot":`form-item`,className:c(`flex flex-col gap-2`,e),...g,children:[D,!!m&&o(`p`,{id:C,className:c(`text-[0.8rem]`,p===`error`&&`text-destructive font-medium`,p===`warning`&&`text-amber-600`,p===`success`&&`text-green-600`),children:typeof m==`string`?m.split(`
2
- `).map((e,t)=>s(i.Fragment,{children:[e,t<m.split(`
3
- `).length-1&&o(`br`,{})]},t)):m})]})},t((e,t)=>l(t)?{label:t.title??e.label,description:e.description??t.description,asterisk:e.asterisk}:{label:e.label??t.title,description:e.description??t.description,feedbackStatus:(()=>{if(!t.validating){if(t.selfErrors?.length)return`error`;if(t.selfWarnings?.length)return`warning`;if(t.selfSuccesses?.length)return`success`}})(),feedbackText:(()=>{if(!t.validating){if(e.feedbackText!=null)return e.feedbackText;if(t.selfErrors?.length)return t.selfErrors.join(`, `);if(t.selfWarnings?.length)return t.selfWarnings.join(`, `);if(t.selfSuccesses?.length)return t.selfSuccesses.join(`, `)}})(),asterisk:(()=>t.required&&t.pattern!==`readPretty`?!0:`asterisk`in e?!!e.asterisk:!1)()}));export{f as FormItem};
1
+ import{useLabel as e}from"../hooks/use-label.js";import"../hooks/index.js";import{connect as t,mapProps as n,useField as r}from"@formily/react";import i from"react";import{Fragment as a,jsx as o,jsxs as s}from"react/jsx-runtime";import{cn as c}from"@pixpilot/shadcn";import{isVoidField as l}from"@formily/core";const u=t(({className:t,children:n,label:l,description:u,asterisk:d,feedbackStatus:f,feedbackText:p,labelPlacement:m=`top`,...h})=>{let g=r(),_=g?.componentProps??{},v=e(l),y=_.labelPlacement??m,b=g?.componentProps?.id??`form-${g?.address?.toString()?.replace(/\./gu,`-`)}`,x=i.useId(),S=i.useId(),C=[u==null?void 0:x,p==null?void 0:S].filter(Boolean).join(` `),w=v!=null&&s(`label`,{htmlFor:b,"data-slot":`form-label`,"data-error":f===`error`,className:c(`text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70`,f===`error`&&`text-destructive`,(y===`end`||y===`start`)&&`shrink-0`),children:[v,d&&o(`span`,{className:`text-destructive ml-1`,"aria-label":`required`,children:`*`})]}),T=o(`div`,{className:`relative`,children:i.isValidElement(n)?i.cloneElement(n,{id:b,"aria-describedby":C||void 0,"aria-invalid":f===`error`?`true`:void 0}):n}),E=s(a,{children:[y===`top`&&w,u!=null&&y===`top`&&o(`p`,{id:x,className:`text-muted-foreground text-[0.8rem]`,children:u}),(y===`start`||y===`end`)&&s(`div`,{className:c(`flex items-center gap-2`,y===`start`&&`flex-row`),children:[y===`start`&&w,T,y===`end`&&w]}),y===`top`&&T,u!=null&&(y===`start`||y===`end`)&&o(`p`,{id:x,className:`text-muted-foreground text-[0.8rem]`,children:u})]});return s(`div`,{"data-slot":`form-item`,className:c(`flex flex-col gap-2`,t),...h,children:[E,!!p&&o(`p`,{id:S,className:c(`text-[0.8rem]`,f===`error`&&`text-destructive font-medium`,f===`warning`&&`text-amber-600`,f===`success`&&`text-green-600`),children:typeof p==`string`?p.split(`
2
+ `).map((e,t)=>s(i.Fragment,{children:[e,t<p.split(`
3
+ `).length-1&&o(`br`,{})]},t)):p})]})},n((e,t)=>l(t)?{label:t.title??e.label,description:e.description??t.description,asterisk:e.asterisk}:{label:e.label??t.title,description:e.description??t.description,feedbackStatus:(()=>{if(!t.validating){if(t.selfErrors?.length)return`error`;if(t.selfWarnings?.length)return`warning`;if(t.selfSuccesses?.length)return`success`}})(),feedbackText:(()=>{if(!t.validating){if(e.feedbackText!=null)return e.feedbackText;if(t.selfErrors?.length)return t.selfErrors.join(`, `);if(t.selfWarnings?.length)return t.selfWarnings.join(`, `);if(t.selfSuccesses?.length)return t.selfSuccesses.join(`, `)}})(),asterisk:(()=>t.required&&t.pattern!==`readPretty`?!0:`asterisk`in e?!!e.asterisk:!1)()}));export{u as FormItem};
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  import { Form } from "@formily/core";
3
- import * as react_jsx_runtime1 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/form.d.ts
6
6
  interface IFormProps {
@@ -21,6 +21,6 @@ declare function Form$1({
21
21
  children,
22
22
  onSubmit,
23
23
  onAutoSubmit
24
- }: IFormProps): react_jsx_runtime1.JSX.Element;
24
+ }: IFormProps): react_jsx_runtime0.JSX.Element;
25
25
  //#endregion
26
26
  export { Form$1 as Form };
@@ -1,9 +1,9 @@
1
- import * as react15 from "react";
1
+ import * as react12 from "react";
2
2
 
3
3
  //#region src/components/number-input.d.ts
4
4
  /**
5
5
  * Formily-connected Number Input component
6
6
  */
7
- declare const NumberInput: react15.ForwardRefExoticComponent<Omit<Partial<react15.ClassAttributes<HTMLInputElement> & react15.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react15.RefAttributes<unknown>>;
7
+ declare const NumberInput: react12.ForwardRefExoticComponent<Omit<Partial<react12.ClassAttributes<HTMLInputElement> & react12.InputHTMLAttributes<HTMLInputElement>>, "ref"> & react12.RefAttributes<unknown>>;
8
8
  //#endregion
9
9
  export { NumberInput };
@@ -0,0 +1 @@
1
+ const e=require(`../_virtual/rolldown_runtime.cjs`),t=require(`../hooks/use-label.cjs`);require(`../hooks/index.cjs`);let n=require(`react/jsx-runtime`);n=e.__toESM(n);let r=require(`@pixpilot/shadcn`);r=e.__toESM(r);const i=({className:e,children:i,label:a,description:o,...s})=>{let c=t.useLabel(a);return(0,n.jsxs)(r.Card,{...s,className:(0,r.cn)(`w-full max-w-sm`,e),children:[(c!=null||o!=null)&&(0,n.jsxs)(r.CardHeader,{children:[c!=null&&(0,n.jsx)(r.CardTitle,{children:c}),o!=null&&(0,n.jsx)(r.CardDescription,{children:o})]}),(0,n.jsx)(r.CardContent,{children:i})]})};exports.ObjectContainer=i;
@@ -0,0 +1,9 @@
1
+ import { SyncReactNode } from "../types/react.cjs";
2
+
3
+ //#region src/components/object-container.d.ts
4
+ interface ObjectContainerProps extends React.ComponentProps<'div'> {
5
+ label?: SyncReactNode;
6
+ description?: SyncReactNode;
7
+ }
8
+ //#endregion
9
+ export { ObjectContainerProps };
@@ -0,0 +1,9 @@
1
+ import { SyncReactNode } from "../types/react.js";
2
+
3
+ //#region src/components/object-container.d.ts
4
+ interface ObjectContainerProps extends React.ComponentProps<'div'> {
5
+ label?: SyncReactNode;
6
+ description?: SyncReactNode;
7
+ }
8
+ //#endregion
9
+ export { ObjectContainerProps };
@@ -0,0 +1 @@
1
+ import{useLabel as e}from"../hooks/use-label.js";import"../hooks/index.js";import{jsx as t,jsxs as n}from"react/jsx-runtime";import{Card as r,CardContent as i,CardDescription as a,CardHeader as o,CardTitle as s,cn as c}from"@pixpilot/shadcn";const l=({className:l,children:u,label:d,description:f,...p})=>{let m=e(d);return n(r,{...p,className:c(`w-full max-w-sm`,l),children:[(m!=null||f!=null)&&n(o,{children:[m!=null&&t(s,{children:m}),f!=null&&t(a,{children:f})]}),t(i,{children:u})]})};export{l as ObjectContainer};
@@ -1,5 +1,5 @@
1
1
  import { ComponentProps, FC } from "react";
2
- import * as react_jsx_runtime3 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime2 from "react/jsx-runtime";
3
3
  import { RadioGroup } from "@pixpilot/shadcn";
4
4
 
5
5
  //#region src/components/radio.d.ts
@@ -15,7 +15,7 @@ type RadioProps = {
15
15
  /**
16
16
  * Radio component with options rendering
17
17
  */
18
- declare function Radio(props: RadioProps): react_jsx_runtime3.JSX.Element;
18
+ declare function Radio(props: RadioProps): react_jsx_runtime2.JSX.Element;
19
19
  declare namespace Radio {
20
20
  var displayName: string;
21
21
  }
@@ -1,5 +1,5 @@
1
1
  import React from "react";
2
- import * as react_jsx_runtime2 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime3 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/row.d.ts
5
5
  interface IRowProps {
@@ -36,6 +36,6 @@ interface IRowProps {
36
36
  declare function Row({
37
37
  className,
38
38
  children
39
- }: IRowProps): react_jsx_runtime2.JSX.Element;
39
+ }: IRowProps): react_jsx_runtime3.JSX.Element;
40
40
  //#endregion
41
41
  export { Row };
@@ -1 +1 @@
1
- const e=require(`../_virtual/rolldown_runtime.cjs`),t=require(`./array-cards/array-cards.cjs`);require(`./array-cards/index.cjs`);const n=require(`./array-collapse/array-collapse.cjs`);require(`./array-collapse/index.cjs`);const r=require(`./checkbox.cjs`),i=require(`./column.cjs`),a=require(`./combobox.cjs`),o=require(`./date-picker.cjs`),s=require(`./file-upload-inline.cjs`),c=require(`./form-grid.cjs`),l=require(`./form-item.cjs`),u=require(`./input.cjs`),d=require(`./array-dialog/array-dialog.cjs`);require(`./array-dialog/index.cjs`);const f=require(`./array-popover/array-popover.cjs`);require(`./array-popover/index.cjs`);const p=require(`./number-input.cjs`),m=require(`./radio.cjs`),h=require(`./row.cjs`),g=require(`./select.cjs`),_=require(`./separator.cjs`),v=require(`./slider.cjs`),y=require(`./switch.cjs`),b=require(`./textarea.cjs`);let x=require(`@formily/react`);x=e.__toESM(x);let S=require(`@pixpilot/shadcn-ui`);S=e.__toESM(S);const C=(0,x.createSchemaField)({components:{FormItem:l.FormItem,FormGrid:c.FormGrid,Row:h.Row,Column:i.Column,Input:u.Input,Textarea:b.Textarea,Checkbox:r.Checkbox,Radio:m.ConnectedRadio,Select:g.Select,NumberInput:p.NumberInput,DatePicker:o.DatePicker,Combobox:a.Combobox,TagsInput:S.TagsInput,FileUploadInline:s.FileUploadInline,Separator:_.Separator,Slider:v.Slider,Switch:y.Switch,ArrayCards:t.ArrayCards,ArrayDialog:d.ArrayDialog,ArrayCollapse:n.ArrayCollapse,ArrayPopover:f.ArrayPopover}});var w=C;exports.SchemaField=C,exports.default=w;
1
+ const e=require(`../_virtual/rolldown_runtime.cjs`),t=require(`./array-cards/array-cards.cjs`);require(`./array-cards/index.cjs`);const n=require(`./array-collapse/array-collapse.cjs`);require(`./array-collapse/index.cjs`);const r=require(`./checkbox.cjs`),i=require(`./column.cjs`),a=require(`./combobox.cjs`),o=require(`./date-picker.cjs`),s=require(`./file-upload-inline.cjs`),c=require(`./form-grid.cjs`),l=require(`./form-item.cjs`),u=require(`./input.cjs`),d=require(`./array-dialog/array-dialog.cjs`);require(`./array-dialog/index.cjs`);const f=require(`./array-popover/array-popover.cjs`);require(`./array-popover/index.cjs`);const p=require(`./number-input.cjs`),m=require(`./object-container.cjs`),h=require(`./radio.cjs`),g=require(`./row.cjs`),_=require(`./select.cjs`),v=require(`./separator.cjs`),y=require(`./slider.cjs`),b=require(`./switch.cjs`),x=require(`./textarea.cjs`);let S=require(`@formily/react`);S=e.__toESM(S);let C=require(`@pixpilot/shadcn-ui`);C=e.__toESM(C);const w=(0,S.createSchemaField)({components:{FormItem:l.FormItem,FormGrid:c.FormGrid,Row:g.Row,Column:i.Column,Input:u.Input,Textarea:x.Textarea,Checkbox:r.Checkbox,Radio:h.ConnectedRadio,Select:_.Select,NumberInput:p.NumberInput,DatePicker:o.DatePicker,Combobox:a.Combobox,TagsInput:C.TagsInput,FileUploadInline:s.FileUploadInline,Separator:v.Separator,Slider:y.Slider,Switch:b.Switch,ArrayCards:t.ArrayCards,ArrayDialog:d.ArrayDialog,ArrayCollapse:n.ArrayCollapse,ArrayPopover:f.ArrayPopover,ObjectContainer:m.ObjectContainer}});var T=w;exports.SchemaField=w,exports.default=T;
@@ -4,6 +4,7 @@ import { Column } from "./column.cjs";
4
4
  import { FormGrid } from "./form-grid.cjs";
5
5
  import { FormItemProps } from "./form-item.cjs";
6
6
  import { Row } from "./row.cjs";
7
+ import { ObjectContainerProps } from "./object-container.cjs";
7
8
  import * as _formily_react0 from "@formily/react";
8
9
  import * as react12 from "react";
9
10
  import * as _formily_core0 from "@formily/core";
@@ -23,7 +24,7 @@ declare const SchemaField: {
23
24
  <Decorator extends _formily_react0.JSXComponent, Component extends _formily_react0.JSXComponent>(props: _formily_react0.ISchemaFieldProps<Decorator, Component, _formily_core0.ObjectField<Decorator, Component>>): JSX.Element;
24
25
  displayName: string;
25
26
  Markup: {
26
- <Decorator_1 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_1 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaMarkupFieldProps<{
27
+ <Decorator_1 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_1 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaMarkupFieldProps<{
27
28
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
28
29
  children?: react12.ReactNode | undefined;
29
30
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -46,7 +47,7 @@ declare const SchemaField: {
46
47
  placeholder?: string;
47
48
  } & Omit<react_day_picker0.DayPickerProps & {
48
49
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
49
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
50
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
50
51
  Combobox: react12.FC;
51
52
  TagsInput: typeof TagsInput;
52
53
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -60,11 +61,12 @@ declare const SchemaField: {
60
61
  mode?: "accordion" | "multiple";
61
62
  }>;
62
63
  ArrayPopover: react12.FC<ArrayComponentProps>;
64
+ ObjectContainer: react12.FC<ObjectContainerProps>;
63
65
  }, Component_1, Decorator_1>): JSX.Element;
64
66
  displayName: string;
65
67
  };
66
68
  String: {
67
- <Decorator_2 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_2 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
69
+ <Decorator_2 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_2 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
68
70
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
69
71
  children?: react12.ReactNode | undefined;
70
72
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -87,7 +89,7 @@ declare const SchemaField: {
87
89
  placeholder?: string;
88
90
  } & Omit<react_day_picker0.DayPickerProps & {
89
91
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
90
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
92
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
91
93
  Combobox: react12.FC;
92
94
  TagsInput: typeof TagsInput;
93
95
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -101,11 +103,12 @@ declare const SchemaField: {
101
103
  mode?: "accordion" | "multiple";
102
104
  }>;
103
105
  ArrayPopover: react12.FC<ArrayComponentProps>;
106
+ ObjectContainer: react12.FC<ObjectContainerProps>;
104
107
  }, Component_2, Decorator_2>): JSX.Element;
105
108
  displayName: string;
106
109
  };
107
110
  Object: {
108
- <Decorator_3 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_3 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
111
+ <Decorator_3 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_3 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
109
112
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
110
113
  children?: react12.ReactNode | undefined;
111
114
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -128,7 +131,7 @@ declare const SchemaField: {
128
131
  placeholder?: string;
129
132
  } & Omit<react_day_picker0.DayPickerProps & {
130
133
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
131
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
134
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
132
135
  Combobox: react12.FC;
133
136
  TagsInput: typeof TagsInput;
134
137
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -142,11 +145,12 @@ declare const SchemaField: {
142
145
  mode?: "accordion" | "multiple";
143
146
  }>;
144
147
  ArrayPopover: react12.FC<ArrayComponentProps>;
148
+ ObjectContainer: react12.FC<ObjectContainerProps>;
145
149
  }, Component_3, Decorator_3>): JSX.Element;
146
150
  displayName: string;
147
151
  };
148
152
  Array: {
149
- <Decorator_4 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_4 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
153
+ <Decorator_4 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_4 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
150
154
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
151
155
  children?: react12.ReactNode | undefined;
152
156
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -169,7 +173,7 @@ declare const SchemaField: {
169
173
  placeholder?: string;
170
174
  } & Omit<react_day_picker0.DayPickerProps & {
171
175
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
172
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
176
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
173
177
  Combobox: react12.FC;
174
178
  TagsInput: typeof TagsInput;
175
179
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -183,11 +187,12 @@ declare const SchemaField: {
183
187
  mode?: "accordion" | "multiple";
184
188
  }>;
185
189
  ArrayPopover: react12.FC<ArrayComponentProps>;
190
+ ObjectContainer: react12.FC<ObjectContainerProps>;
186
191
  }, Component_4, Decorator_4>): JSX.Element;
187
192
  displayName: string;
188
193
  };
189
194
  Boolean: {
190
- <Decorator_5 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_5 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
195
+ <Decorator_5 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_5 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
191
196
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
192
197
  children?: react12.ReactNode | undefined;
193
198
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -210,7 +215,7 @@ declare const SchemaField: {
210
215
  placeholder?: string;
211
216
  } & Omit<react_day_picker0.DayPickerProps & {
212
217
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
213
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
218
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
214
219
  Combobox: react12.FC;
215
220
  TagsInput: typeof TagsInput;
216
221
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -224,11 +229,12 @@ declare const SchemaField: {
224
229
  mode?: "accordion" | "multiple";
225
230
  }>;
226
231
  ArrayPopover: react12.FC<ArrayComponentProps>;
232
+ ObjectContainer: react12.FC<ObjectContainerProps>;
227
233
  }, Component_5, Decorator_5>): JSX.Element;
228
234
  displayName: string;
229
235
  };
230
236
  Date: {
231
- <Decorator_6 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_6 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
237
+ <Decorator_6 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_6 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
232
238
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
233
239
  children?: react12.ReactNode | undefined;
234
240
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -251,7 +257,7 @@ declare const SchemaField: {
251
257
  placeholder?: string;
252
258
  } & Omit<react_day_picker0.DayPickerProps & {
253
259
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
254
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
260
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
255
261
  Combobox: react12.FC;
256
262
  TagsInput: typeof TagsInput;
257
263
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -265,11 +271,12 @@ declare const SchemaField: {
265
271
  mode?: "accordion" | "multiple";
266
272
  }>;
267
273
  ArrayPopover: react12.FC<ArrayComponentProps>;
274
+ ObjectContainer: react12.FC<ObjectContainerProps>;
268
275
  }, Component_6, Decorator_6>): JSX.Element;
269
276
  displayName: string;
270
277
  };
271
278
  DateTime: {
272
- <Decorator_7 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_7 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
279
+ <Decorator_7 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_7 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
273
280
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
274
281
  children?: react12.ReactNode | undefined;
275
282
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -292,7 +299,7 @@ declare const SchemaField: {
292
299
  placeholder?: string;
293
300
  } & Omit<react_day_picker0.DayPickerProps & {
294
301
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
295
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
302
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
296
303
  Combobox: react12.FC;
297
304
  TagsInput: typeof TagsInput;
298
305
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -306,11 +313,12 @@ declare const SchemaField: {
306
313
  mode?: "accordion" | "multiple";
307
314
  }>;
308
315
  ArrayPopover: react12.FC<ArrayComponentProps>;
316
+ ObjectContainer: react12.FC<ObjectContainerProps>;
309
317
  }, Component_7, Decorator_7>): JSX.Element;
310
318
  displayName: string;
311
319
  };
312
320
  Void: {
313
- <Decorator_8 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_8 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
321
+ <Decorator_8 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_8 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
314
322
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
315
323
  children?: react12.ReactNode | undefined;
316
324
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -333,7 +341,7 @@ declare const SchemaField: {
333
341
  placeholder?: string;
334
342
  } & Omit<react_day_picker0.DayPickerProps & {
335
343
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
336
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
344
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
337
345
  Combobox: react12.FC;
338
346
  TagsInput: typeof TagsInput;
339
347
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -347,11 +355,12 @@ declare const SchemaField: {
347
355
  mode?: "accordion" | "multiple";
348
356
  }>;
349
357
  ArrayPopover: react12.FC<ArrayComponentProps>;
358
+ ObjectContainer: react12.FC<ObjectContainerProps>;
350
359
  }, Component_8, Decorator_8>): JSX.Element;
351
360
  displayName: string;
352
361
  };
353
362
  Number: {
354
- <Decorator_9 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_9 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
363
+ <Decorator_9 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord", Component_9 extends "Radio" | "FormItem" | "FormGrid" | "Row" | "Column" | "Input" | "Textarea" | "Checkbox" | "Select" | "NumberInput" | "DatePicker" | "Combobox" | "TagsInput" | "FileUploadInline" | "Separator" | "Slider" | "Switch" | "ArrayCards" | "ArrayDialog" | "ArrayCollapse" | "ArrayPopover" | "ObjectContainer" | "FormItem.$$typeof" | "Input.$$typeof" | "Textarea.$$typeof" | "Checkbox.$$typeof" | "NumberInput.$$typeof" | "DatePicker.$$typeof" | "FileUploadInline.$$typeof" | "Separator.$$typeof" | "Slider.$$typeof" | "Switch.$$typeof" | "ArrayCards.Addition" | "ArrayCards.Remove" | "ArrayCards.MoveUp" | "ArrayCards.MoveDown" | "ArrayCards.Edit" | "ArrayCards.Index" | "ArrayCards.Empty" | "ArrayCards.Copy" | "ArrayCards.Label" | "ArrayCards.useArray" | "ArrayCards.useIndex" | "ArrayCards.useRecord">(props: _formily_react0.ISchemaTypeFieldProps<{
355
364
  FormItem: react12.ForwardRefExoticComponent<Omit<Partial<FormItemProps & {
356
365
  children?: react12.ReactNode | undefined;
357
366
  }>, "ref"> & react12.RefAttributes<unknown>>;
@@ -374,7 +383,7 @@ declare const SchemaField: {
374
383
  placeholder?: string;
375
384
  } & Omit<react_day_picker0.DayPickerProps & {
376
385
  buttonVariant?: React.ComponentProps<typeof void 0>["variant"];
377
- }, "selected" | "onSelect" | "mode">, "selected" | "onSelect" | "mode">> & react12.RefAttributes<unknown>>;
386
+ }, "onSelect" | "selected" | "mode">, "onSelect" | "selected" | "mode">> & react12.RefAttributes<unknown>>;
378
387
  Combobox: react12.FC;
379
388
  TagsInput: typeof TagsInput;
380
389
  FileUploadInline: react12.ForwardRefExoticComponent<Omit<Partial<_pixpilot_shadcn_ui0.FileUploadInlineProps>, "ref"> & react12.RefAttributes<unknown>>;
@@ -388,6 +397,7 @@ declare const SchemaField: {
388
397
  mode?: "accordion" | "multiple";
389
398
  }>;
390
399
  ArrayPopover: react12.FC<ArrayComponentProps>;
400
+ ObjectContainer: react12.FC<ObjectContainerProps>;
391
401
  }, Component_9, Decorator_9>): JSX.Element;
392
402
  displayName: string;
393
403
  };