@factorialco/f0-react 1.258.0 → 1.259.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.
- package/dist/experimental.d.ts +12 -6
- package/dist/experimental.js +5037 -5017
- package/dist/f0.d.ts +12 -6
- package/dist/f0.js +30 -24
- package/dist/{hooks-Bj3h_byv.js → hooks-nJDkwAyV.js} +18 -16
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1949,6 +1949,12 @@ declare const defaultTranslations: {
|
|
|
1949
1949
|
readonly previous: "Previous";
|
|
1950
1950
|
readonly next: "Next";
|
|
1951
1951
|
};
|
|
1952
|
+
readonly inputs: {
|
|
1953
|
+
readonly password: {
|
|
1954
|
+
readonly show: "Show password";
|
|
1955
|
+
readonly hide: "Hide password";
|
|
1956
|
+
};
|
|
1957
|
+
};
|
|
1952
1958
|
readonly actions: {
|
|
1953
1959
|
readonly add: "Add";
|
|
1954
1960
|
readonly edit: "Edit";
|
|
@@ -3036,7 +3042,7 @@ export declare type InfiniteScrollPaginatedResponse<TRecord> = BasePaginatedResp
|
|
|
3036
3042
|
hasMore: boolean;
|
|
3037
3043
|
};
|
|
3038
3044
|
|
|
3039
|
-
export declare const Input: <T extends string = string>(props: InputProps<T>) => JSX_2.Element;
|
|
3045
|
+
export declare const Input: <T extends string = string>({ type, ...props }: InputProps<T>) => JSX_2.Element;
|
|
3040
3046
|
|
|
3041
3047
|
declare const Input_2: React_2.ForwardRefExoticComponent<Omit<React_2.InputHTMLAttributes<HTMLInputElement>, "onChange" | "size"> & Pick<InputFieldProps<string>, "label" | "onChange" | "size" | "icon" | "role" | "onFocus" | "onBlur" | "status" | "disabled" | "maxLength" | "required" | "loading" | "error" | "hideLabel" | "append" | "labelIcon" | "onClickContent" | "hint" | "readonly" | "clearable" | "autocomplete" | "onClear" | "isEmpty" | "emptyValue" | "hideMaxLength" | "appendTag" | "lengthProvider"> & React_2.RefAttributes<HTMLInputElement>>;
|
|
3042
3048
|
|
|
@@ -5685,6 +5691,11 @@ declare module "@tiptap/core" {
|
|
|
5685
5691
|
}
|
|
5686
5692
|
|
|
5687
5693
|
|
|
5694
|
+
declare namespace Calendar {
|
|
5695
|
+
var displayName: string;
|
|
5696
|
+
}
|
|
5697
|
+
|
|
5698
|
+
|
|
5688
5699
|
declare module "@tiptap/core" {
|
|
5689
5700
|
interface Commands<ReturnType> {
|
|
5690
5701
|
moodTracker: {
|
|
@@ -5692,8 +5703,3 @@ declare module "@tiptap/core" {
|
|
|
5692
5703
|
};
|
|
5693
5704
|
}
|
|
5694
5705
|
}
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
declare namespace Calendar {
|
|
5698
|
-
var displayName: string;
|
|
5699
|
-
}
|