@factorialco/f0-react 1.257.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 +8 -1
- package/dist/experimental.js +5038 -5018
- package/dist/f0.d.ts +7 -1
- 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
|
|
|
@@ -5511,6 +5517,7 @@ declare interface WeekdaysProps {
|
|
|
5511
5517
|
declare type WelcomeScreenSuggestion = {
|
|
5512
5518
|
icon: IconType;
|
|
5513
5519
|
message: string;
|
|
5520
|
+
prompt?: string;
|
|
5514
5521
|
};
|
|
5515
5522
|
|
|
5516
5523
|
export declare const Widget: default_2.ForwardRefExoticComponent<WidgetProps & {
|