@factorialco/f0-react 1.201.8 → 1.203.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 +3 -3
- package/dist/experimental.js +1366 -1313
- package/dist/f0.d.ts +4 -2
- package/dist/f0.js +266 -258
- package/dist/{hooks-cSFsvOLC.js → hooks-CSPFCwyM.js} +1048 -1044
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1886,12 +1886,11 @@ export declare const EntitySelect: (props: EntitySelectProps & {
|
|
|
1886
1886
|
children?: React.ReactNode;
|
|
1887
1887
|
}) => JSX_2.Element;
|
|
1888
1888
|
|
|
1889
|
-
declare interface EntitySelectCommonProps extends Omit<PopoverProps, "children" | "modal"> {
|
|
1889
|
+
declare interface EntitySelectCommonProps extends Omit<PopoverProps, "children" | "modal">, Pick<InputFieldProps<string>, "label" | "labelIcon" | "icon" | "error" | "status" | "hint" | "hideLabel" | "maxLength" | "value" | "disabled" | "placeholder" | "loading" | "required" | "readonly" | "append"> {
|
|
1890
1890
|
entities: EntitySelectEntity[];
|
|
1891
1891
|
groups: EntitySelectNamedGroup[];
|
|
1892
1892
|
selectedGroup: string;
|
|
1893
|
-
|
|
1894
|
-
triggerSelected: string;
|
|
1893
|
+
selectedItemsCopy: string;
|
|
1895
1894
|
notFoundTitle: string;
|
|
1896
1895
|
notFoundSubtitle: string;
|
|
1897
1896
|
onItemExpandedChange: (id: EntityId, expanded: boolean) => void;
|
|
@@ -2567,6 +2566,7 @@ declare type InputFieldProps<T> = {
|
|
|
2567
2566
|
appendTag?: string;
|
|
2568
2567
|
lengthProvider?: (value: T | undefined) => number;
|
|
2569
2568
|
loading?: boolean;
|
|
2569
|
+
avatar?: AvatarVariant;
|
|
2570
2570
|
loadingIndicator?: {
|
|
2571
2571
|
/**
|
|
2572
2572
|
* If true, the loading spinner will be displayed over the content without affecting the layout
|