@pixpilot/formily-shadcn 0.24.0 → 0.25.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 (32) hide show
  1. package/dist/components/array-base/components/array-copy.cjs +1 -0
  2. package/dist/components/array-base/components/array-copy.js +1 -0
  3. package/dist/components/array-base/components/edit.cjs +1 -0
  4. package/dist/components/array-base/components/edit.js +1 -0
  5. package/dist/components/array-base/components/move-down.cjs +1 -0
  6. package/dist/components/array-base/components/move-down.js +1 -0
  7. package/dist/components/array-base/components/move-up.cjs +1 -0
  8. package/dist/components/array-base/components/move-up.js +1 -0
  9. package/dist/components/array-base/components/remove.cjs +1 -0
  10. package/dist/components/array-base/components/remove.js +1 -0
  11. package/dist/components/date-picker.d.cts +3 -3
  12. package/dist/components/form-grid.d.cts +2 -2
  13. package/dist/components/form.d.cts +2 -2
  14. package/dist/components/icon-picker.d.cts +3 -3
  15. package/dist/components/radio.d.ts +2 -2
  16. package/dist/components/row.d.ts +2 -2
  17. package/dist/components/schema-field/schema-field-basics.d.ts +233 -233
  18. package/dist/components/schema-field/schema-field-extended.d.cts +544 -544
  19. package/dist/components/schema-field/schema-field-extended.d.ts +530 -530
  20. package/dist/components/schema-field/schema-field.d.cts +324 -324
  21. package/dist/components/schema-field/schema-field.d.ts +310 -310
  22. package/dist/components/separator.d.cts +2 -2
  23. package/dist/components/slider/slider-input.d.ts +3 -3
  24. package/dist/components/slider/slider-select.d.ts +3 -3
  25. package/dist/components/slider/slider.d.ts +3 -3
  26. package/dist/components/switch.d.cts +2 -2
  27. package/dist/components/switch.d.ts +2 -2
  28. package/dist/components/tags-input-inline.d.cts +2 -2
  29. package/dist/components/tags-input-inline.d.ts +2 -2
  30. package/dist/components/textarea.d.cts +2 -2
  31. package/dist/components/textarea.d.ts +2 -2
  32. package/package.json +3 -3
@@ -24,6 +24,7 @@ function ArrayCopy({ ref,...props }) {
24
24
  type: "button",
25
25
  variant: "ghost",
26
26
  size: "icon",
27
+ tooltip: "Copy",
27
28
  ...props,
28
29
  disabled: self?.disabled || array.props?.disabled,
29
30
  ref,
@@ -17,6 +17,7 @@ function ArrayCopy({ ref,...props }) {
17
17
  type: "button",
18
18
  variant: "ghost",
19
19
  size: "icon",
20
+ tooltip: "Copy",
20
21
  ...props,
21
22
  disabled: self?.disabled || array.props?.disabled,
22
23
  ref,
@@ -21,6 +21,7 @@ function ArrayEditButton({ ref,...props }) {
21
21
  type: "button",
22
22
  variant: "ghost",
23
23
  size: "icon",
24
+ tooltip: "Edit",
24
25
  ...props,
25
26
  disabled: self?.disabled || array.props?.disabled,
26
27
  ref,
@@ -15,6 +15,7 @@ function ArrayEditButton({ ref,...props }) {
15
15
  type: "button",
16
16
  variant: "ghost",
17
17
  size: "icon",
18
+ tooltip: "Edit",
18
19
  ...props,
19
20
  disabled: self?.disabled || array.props?.disabled,
20
21
  ref,
@@ -22,6 +22,7 @@ function ArrayMoveDown({ ref,...props }) {
22
22
  return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__pixpilot_shadcn_ui.Button, {
23
23
  type: "button",
24
24
  variant: "ghost",
25
+ tooltip: "Move Down",
25
26
  size: "icon",
26
27
  ...props,
27
28
  disabled: self?.disabled || array.props?.disabled || isLast,
@@ -16,6 +16,7 @@ function ArrayMoveDown({ ref,...props }) {
16
16
  return /* @__PURE__ */ jsx(Button, {
17
17
  type: "button",
18
18
  variant: "ghost",
19
+ tooltip: "Move Down",
19
20
  size: "icon",
20
21
  ...props,
21
22
  disabled: self?.disabled || array.props?.disabled || isLast,
@@ -22,6 +22,7 @@ function ArrayMoveUp({ ref,...props }) {
22
22
  return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__pixpilot_shadcn_ui.Button, {
23
23
  type: "button",
24
24
  variant: "ghost",
25
+ tooltip: "Move Up",
25
26
  size: "icon",
26
27
  ...props,
27
28
  disabled: self?.disabled || array.props?.disabled || isFirst,
@@ -16,6 +16,7 @@ function ArrayMoveUp({ ref,...props }) {
16
16
  return /* @__PURE__ */ jsx(Button, {
17
17
  type: "button",
18
18
  variant: "ghost",
19
+ tooltip: "Move Up",
19
20
  size: "icon",
20
21
  ...props,
21
22
  disabled: self?.disabled || array.props?.disabled || isFirst,
@@ -21,6 +21,7 @@ function ArrayRemove({ ref,...props }) {
21
21
  return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__pixpilot_shadcn_ui.Button, {
22
22
  type: "button",
23
23
  variant: "ghost",
24
+ tooltip: "Remove",
24
25
  size: "icon",
25
26
  ...props,
26
27
  disabled: self?.disabled || array.props?.disabled,
@@ -15,6 +15,7 @@ function ArrayRemove({ ref,...props }) {
15
15
  return /* @__PURE__ */ jsx(Button, {
16
16
  type: "button",
17
17
  variant: "ghost",
18
+ tooltip: "Remove",
18
19
  size: "icon",
19
20
  ...props,
20
21
  disabled: self?.disabled || array.props?.disabled,
@@ -1,11 +1,11 @@
1
- import * as react2 from "react";
1
+ import * as react4 from "react";
2
2
  import { DatePickerProps } from "@pixpilot/shadcn-ui";
3
3
 
4
4
  //#region src/components/date-picker.d.ts
5
- declare const DatePicker: react2.ForwardRefExoticComponent<Partial<{
5
+ declare const DatePicker: react4.ForwardRefExoticComponent<Partial<{
6
6
  value?: Date;
7
7
  onChange?: (date: Date | undefined) => void;
8
8
  placeholder?: string;
9
- } & Omit<DatePickerProps, "onSelect" | "selected" | "mode">> & react2.RefAttributes<unknown>>;
9
+ } & Omit<DatePickerProps, "onSelect" | "selected" | "mode">> & react4.RefAttributes<unknown>>;
10
10
  //#endregion
11
11
  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 };
@@ -2,7 +2,7 @@ import { FormContextStates } from "./context/form-context.cjs";
2
2
  import "./context/index.cjs";
3
3
  import React from "react";
4
4
  import { Form } from "@formily/core";
5
- import * as react_jsx_runtime1 from "react/jsx-runtime";
5
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
6
6
 
7
7
  //#region src/components/form.d.ts
8
8
  interface IFormProps extends FormContextStates {
@@ -25,6 +25,6 @@ declare function Form$1({
25
25
  onAutoSubmit,
26
26
  layout,
27
27
  settings
28
- }: IFormProps): react_jsx_runtime1.JSX.Element;
28
+ }: IFormProps): react_jsx_runtime0.JSX.Element;
29
29
  //#endregion
30
30
  export { Form$1 as Form };
@@ -1,4 +1,4 @@
1
- import * as react4 from "react";
1
+ import * as react2 from "react";
2
2
  import { IconPickerProps, IconProviderProps } from "@pixpilot/shadcn-ui";
3
3
 
4
4
  //#region src/components/icon-picker.d.ts
@@ -8,8 +8,8 @@ import { IconPickerProps, IconProviderProps } from "@pixpilot/shadcn-ui";
8
8
  * Automatically connects to Formily field state
9
9
  * Supports both static and async icon providers
10
10
  */
11
- declare const IconPicker: react4.ForwardRefExoticComponent<Partial<Omit<IconPickerProps, "providers"> & {
11
+ declare const IconPicker: react2.ForwardRefExoticComponent<Partial<Omit<IconPickerProps, "providers"> & {
12
12
  providers?: IconProviderProps[];
13
- }> & react4.RefAttributes<unknown>>;
13
+ }> & react2.RefAttributes<unknown>>;
14
14
  //#endregion
15
15
  export { IconPicker };
@@ -1,5 +1,5 @@
1
1
  import { 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 };