@factorialco/f0-react 1.259.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 +8 -2
- package/dist/experimental.js +384 -383
- package/dist/f0.d.ts +7 -1
- package/dist/f0.js +7 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1945,7 +1945,13 @@ 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
|
};
|
|
@@ -4693,7 +4699,7 @@ declare interface SidebarFooterProps {
|
|
|
4693
4699
|
options: DropdownItem[];
|
|
4694
4700
|
}
|
|
4695
4701
|
|
|
4696
|
-
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;
|
|
4697
4703
|
|
|
4698
4704
|
export declare type SidebarHeaderProps = CompanySelectorProps & SidebarIconProps;
|
|
4699
4705
|
|