maquinaweb-ui 2.22.0 → 2.23.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentProps, ElementType } from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime5 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/container-animation/container-animation.d.ts
|
|
5
5
|
type ContainerAnimationProps<T extends ElementType = 'div'> = ComponentProps<'div'> & ComponentProps<T> & {
|
|
@@ -23,7 +23,7 @@ declare const ContainerAnimation: <T extends ElementType = "div">({
|
|
|
23
23
|
distance,
|
|
24
24
|
hideNotInView,
|
|
25
25
|
...props
|
|
26
|
-
}: ContainerAnimationProps<T>) =>
|
|
26
|
+
}: ContainerAnimationProps<T>) => react_jsx_runtime5.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { ContainerAnimation, type ContainerAnimationProps };
|
|
29
29
|
//# sourceMappingURL=container-animation.d.ts.map
|
package/dist/input-suggest.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FieldPath, FieldValues, UseControllerProps } from "react-hook-form";
|
|
2
2
|
import { Dispatch, SetStateAction } from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
4
|
import { Mask, Options } from "use-mask-input";
|
|
5
5
|
import { PopoverProps } from "@radix-ui/react-popover";
|
|
6
6
|
|
|
@@ -64,7 +64,7 @@ declare function InputSuggest<TFieldValues extends FieldValues = FieldValues, TF
|
|
|
64
64
|
children,
|
|
65
65
|
initialParams,
|
|
66
66
|
...props
|
|
67
|
-
}: InputSuggestProps<TFieldValues, TFieldName> & PopoverProps):
|
|
67
|
+
}: InputSuggestProps<TFieldValues, TFieldName> & PopoverProps): react_jsx_runtime0.JSX.Element;
|
|
68
68
|
//#endregion
|
|
69
69
|
export { InputSuggest, type InputSuggestProps };
|
|
70
70
|
//# sourceMappingURL=input-suggest.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ControllerFieldState } from "react-hook-form";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
import { PopoverProps } from "@radix-ui/react-popover";
|
|
4
4
|
|
|
5
5
|
//#region src/components/ui/selector.d.ts
|
|
@@ -47,7 +47,7 @@ declare function RemoteSelector<T>({
|
|
|
47
47
|
initialRequest,
|
|
48
48
|
forceToggle,
|
|
49
49
|
...props
|
|
50
|
-
}: RemoteSelectorProps<T>):
|
|
50
|
+
}: RemoteSelectorProps<T>): react_jsx_runtime0.JSX.Element;
|
|
51
51
|
//#endregion
|
|
52
52
|
export { RemoteSelector, type RemoteSelectorProps, type TUseData };
|
|
53
53
|
//# sourceMappingURL=remote-selector.d.ts.map
|
package/dist/text-field.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FieldPath, FieldPathValue, FieldValues, UseControllerProps } from "react-hook-form";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
3
3
|
import { Options } from "use-mask-input";
|
|
4
4
|
import { Options as Options$1 } from "nuqs";
|
|
5
5
|
|
|
@@ -55,7 +55,7 @@ declare function InputText({
|
|
|
55
55
|
name,
|
|
56
56
|
onChange,
|
|
57
57
|
...props
|
|
58
|
-
}: InputTextProps):
|
|
58
|
+
}: InputTextProps): react_jsx_runtime1.JSX.Element;
|
|
59
59
|
interface TextFieldProps<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends UseControllerProps<TFieldValues, TFieldName> {
|
|
60
60
|
disabled?: boolean;
|
|
61
61
|
required?: boolean;
|
|
@@ -72,7 +72,7 @@ declare function TextField<TFieldValues extends FieldValues = FieldValues, TFiel
|
|
|
72
72
|
onChange,
|
|
73
73
|
transform,
|
|
74
74
|
...props
|
|
75
|
-
}: TextFieldProps<TFieldValues, TFieldName> & Omit<InputTextProps, 'onChange'>):
|
|
75
|
+
}: TextFieldProps<TFieldValues, TFieldName> & Omit<InputTextProps, 'onChange'>): react_jsx_runtime1.JSX.Element;
|
|
76
76
|
interface QueryTextFieldProps extends Omit<InputTextProps, 'onChange'> {
|
|
77
77
|
name: string;
|
|
78
78
|
defaultValue?: string;
|
|
@@ -84,7 +84,7 @@ declare function QueryTextField({
|
|
|
84
84
|
defaultValue,
|
|
85
85
|
options,
|
|
86
86
|
...props
|
|
87
|
-
}: QueryTextFieldProps):
|
|
87
|
+
}: QueryTextFieldProps): react_jsx_runtime1.JSX.Element;
|
|
88
88
|
interface CookieTextFieldProps extends InputTextProps {
|
|
89
89
|
name: string;
|
|
90
90
|
maxAge?: number;
|
|
@@ -93,7 +93,7 @@ declare function CookieTextField({
|
|
|
93
93
|
name,
|
|
94
94
|
maxAge,
|
|
95
95
|
...inputProps
|
|
96
|
-
}: CookieTextFieldProps):
|
|
96
|
+
}: CookieTextFieldProps): react_jsx_runtime1.JSX.Element;
|
|
97
97
|
//#endregion
|
|
98
98
|
export { CookieTextField, type CookieTextFieldProps, InputText, type InputTextProps, QueryTextField, type QueryTextFieldProps, TextField, type TextFieldProps };
|
|
99
99
|
//# sourceMappingURL=text-field.d.ts.map
|
package/dist/toggle-field.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime6 from "react/jsx-runtime";
|
|
3
3
|
import { Item, Root } from "@radix-ui/react-toggle-group";
|
|
4
4
|
import { VariantProps } from "class-variance-authority";
|
|
5
5
|
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
@@ -23,7 +23,7 @@ declare function ToggleGroup({
|
|
|
23
23
|
transition,
|
|
24
24
|
activeClassName,
|
|
25
25
|
...props
|
|
26
|
-
}: ToggleGroupProps):
|
|
26
|
+
}: ToggleGroupProps): react_jsx_runtime6.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
//#region src/components/toggle-field/ToggleField.d.ts
|
|
29
29
|
type ToggleOption = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maquinaweb-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.23.0",
|
|
4
4
|
"description": "A minimal React component library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -72,6 +72,9 @@
|
|
|
72
72
|
},
|
|
73
73
|
"cookies-next": {
|
|
74
74
|
"optional": true
|
|
75
|
+
},
|
|
76
|
+
"cmdk": {
|
|
77
|
+
"optional": true
|
|
75
78
|
}
|
|
76
79
|
},
|
|
77
80
|
"dependencies": {
|
|
@@ -85,11 +88,11 @@
|
|
|
85
88
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
86
89
|
"class-variance-authority": "^0.7.1",
|
|
87
90
|
"clsx": "^2.1.1",
|
|
88
|
-
"cmdk": "^1.1.1",
|
|
89
91
|
"tailwind-merge": "^3.3.1",
|
|
90
92
|
"use-debounce": "^10.0.6"
|
|
91
93
|
},
|
|
92
94
|
"devDependencies": {
|
|
95
|
+
"cmdk": "^1.1.1",
|
|
93
96
|
"@biomejs/biome": "^2.3.2",
|
|
94
97
|
"@semantic-release/changelog": "^6.0.3",
|
|
95
98
|
"@semantic-release/git": "^10.0.1",
|