@factorialco/f0-react 1.258.0 → 1.259.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/experimental.d.ts +20 -8
- package/dist/experimental.js +5337 -5316
- package/dist/f0.d.ts +19 -7
- package/dist/f0.js +37 -25
- package/dist/{hooks-Bj3h_byv.js → hooks-nJDkwAyV.js} +18 -16
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1945,10 +1945,22 @@ declare const defaultTranslations: {
|
|
|
1945
1945
|
};
|
|
1946
1946
|
};
|
|
1947
1947
|
readonly navigation: {
|
|
1948
|
-
readonly sidebar:
|
|
1948
|
+
readonly sidebar: {
|
|
1949
|
+
readonly label: "Main navigation";
|
|
1950
|
+
readonly companySelector: {
|
|
1951
|
+
readonly label: "Select a company";
|
|
1952
|
+
readonly placeholder: "Select a company";
|
|
1953
|
+
};
|
|
1954
|
+
};
|
|
1949
1955
|
readonly previous: "Previous";
|
|
1950
1956
|
readonly next: "Next";
|
|
1951
1957
|
};
|
|
1958
|
+
readonly inputs: {
|
|
1959
|
+
readonly password: {
|
|
1960
|
+
readonly show: "Show password";
|
|
1961
|
+
readonly hide: "Hide password";
|
|
1962
|
+
};
|
|
1963
|
+
};
|
|
1952
1964
|
readonly actions: {
|
|
1953
1965
|
readonly add: "Add";
|
|
1954
1966
|
readonly edit: "Edit";
|
|
@@ -3036,7 +3048,7 @@ export declare type InfiniteScrollPaginatedResponse<TRecord> = BasePaginatedResp
|
|
|
3036
3048
|
hasMore: boolean;
|
|
3037
3049
|
};
|
|
3038
3050
|
|
|
3039
|
-
export declare const Input: <T extends string = string>(props: InputProps<T>) => JSX_2.Element;
|
|
3051
|
+
export declare const Input: <T extends string = string>({ type, ...props }: InputProps<T>) => JSX_2.Element;
|
|
3040
3052
|
|
|
3041
3053
|
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
3054
|
|
|
@@ -4687,7 +4699,7 @@ declare interface SidebarFooterProps {
|
|
|
4687
4699
|
options: DropdownItem[];
|
|
4688
4700
|
}
|
|
4689
4701
|
|
|
4690
|
-
export declare function SidebarHeader({ companies, selected, onChange, withNotification, additionalOptions, }: SidebarHeaderProps): JSX_2.Element;
|
|
4702
|
+
export declare function SidebarHeader({ companies, selected, onChange, withNotification, additionalOptions, isLoading, }: SidebarHeaderProps): JSX_2.Element;
|
|
4691
4703
|
|
|
4692
4704
|
export declare type SidebarHeaderProps = CompanySelectorProps & SidebarIconProps;
|
|
4693
4705
|
|
|
@@ -5685,6 +5697,11 @@ declare module "@tiptap/core" {
|
|
|
5685
5697
|
}
|
|
5686
5698
|
|
|
5687
5699
|
|
|
5700
|
+
declare namespace Calendar {
|
|
5701
|
+
var displayName: string;
|
|
5702
|
+
}
|
|
5703
|
+
|
|
5704
|
+
|
|
5688
5705
|
declare module "@tiptap/core" {
|
|
5689
5706
|
interface Commands<ReturnType> {
|
|
5690
5707
|
moodTracker: {
|
|
@@ -5692,8 +5709,3 @@ declare module "@tiptap/core" {
|
|
|
5692
5709
|
};
|
|
5693
5710
|
}
|
|
5694
5711
|
}
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
declare namespace Calendar {
|
|
5698
|
-
var displayName: string;
|
|
5699
|
-
}
|