@pixpilot/formily-shadcn 0.24.0 → 0.25.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.
- package/dist/components/array-base/components/array-copy.cjs +1 -0
- package/dist/components/array-base/components/array-copy.js +1 -0
- package/dist/components/array-base/components/edit.cjs +1 -0
- package/dist/components/array-base/components/edit.js +1 -0
- package/dist/components/array-base/components/move-down.cjs +1 -0
- package/dist/components/array-base/components/move-down.js +1 -0
- package/dist/components/array-base/components/move-up.cjs +1 -0
- package/dist/components/array-base/components/move-up.js +1 -0
- package/dist/components/array-base/components/remove.cjs +1 -0
- package/dist/components/array-base/components/remove.js +1 -0
- package/dist/components/form-grid.d.cts +2 -2
- package/dist/components/form.d.cts +2 -2
- package/dist/components/radio.d.ts +2 -2
- package/dist/components/row.d.ts +2 -2
- package/dist/components/schema-field/schema-field-basics.d.ts +233 -233
- package/dist/components/schema-field/schema-field-extended.d.cts +544 -544
- package/dist/components/schema-field/schema-field-extended.d.ts +530 -530
- package/dist/components/schema-field/schema-field.d.cts +324 -324
- package/dist/components/schema-field/schema-field.d.ts +310 -310
- package/dist/components/slider/slider-input.d.ts +3 -3
- package/dist/components/slider/slider-select.d.ts +3 -3
- package/dist/components/slider/slider.d.ts +3 -3
- package/dist/components/switch.d.ts +2 -2
- package/dist/components/tags-input-inline.d.ts +2 -2
- package/dist/components/textarea.d.ts +2 -2
- package/package.json +3 -3
|
@@ -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,
|
|
@@ -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,
|
|
@@ -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,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
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):
|
|
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
|
|
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):
|
|
28
|
+
}: IFormProps): react_jsx_runtime0.JSX.Element;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { Form$1 as Form };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
|
-
import * as
|
|
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):
|
|
18
|
+
declare function Radio(props: RadioProps): react_jsx_runtime2.JSX.Element;
|
|
19
19
|
declare namespace Radio {
|
|
20
20
|
var displayName: string;
|
|
21
21
|
}
|
package/dist/components/row.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import * as
|
|
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):
|
|
39
|
+
}: IRowProps): react_jsx_runtime3.JSX.Element;
|
|
40
40
|
//#endregion
|
|
41
41
|
export { Row };
|