@factorialco/f0-react 1.235.0 → 1.235.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 +17 -15
- package/dist/experimental.js +3628 -3628
- package/dist/f0.d.ts +15 -15
- package/dist/f0.js +2 -2
- package/dist/{hooks-BEC6GuxY.js → hooks-DAhD9whu.js} +17017 -17012
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -912,16 +912,16 @@ declare type CardPropertyDefinition<T> = PropertyDefinition_2<T> & {
|
|
|
912
912
|
};
|
|
913
913
|
|
|
914
914
|
declare const cardPropertyRenderers: {
|
|
915
|
-
readonly text: (args: TextCellValue_2) => default_2.JSX.Element;
|
|
915
|
+
readonly text: (args: TextCellValue_2, meta: ValueDisplayRendererContext_2) => default_2.JSX.Element;
|
|
916
916
|
readonly number: (args: NumberCellValue_2, meta: ValueDisplayRendererContext_2) => default_2.JSX.Element;
|
|
917
|
-
readonly date: (args: DateCellValue_2) => default_2.JSX.Element;
|
|
917
|
+
readonly date: (args: DateCellValue_2, meta: ValueDisplayRendererContext_2) => default_2.JSX.Element;
|
|
918
918
|
readonly amount: (args: AmountCellValue_2, meta: ValueDisplayRendererContext_2) => default_2.JSX.Element;
|
|
919
|
-
readonly person: (args: PersonCellValue_2) => default_2.JSX.Element;
|
|
920
|
-
readonly company: (args: CompanyCellValue_2) => default_2.JSX.Element;
|
|
921
|
-
readonly team: (args: TeamCellValue_2) => default_2.JSX.Element;
|
|
919
|
+
readonly person: (args: PersonCellValue_2, meta: ValueDisplayRendererContext_2) => default_2.JSX.Element;
|
|
920
|
+
readonly company: (args: CompanyCellValue_2, meta: ValueDisplayRendererContext_2) => default_2.JSX.Element;
|
|
921
|
+
readonly team: (args: TeamCellValue_2, meta: ValueDisplayRendererContext_2) => default_2.JSX.Element;
|
|
922
922
|
readonly status: (args: StatusCellValue_2) => default_2.JSX.Element;
|
|
923
923
|
readonly tag: (args: TagCellValue_2) => default_2.JSX.Element;
|
|
924
|
-
readonly avatarList: (args: AvatarListCellValue_2) => default_2.JSX.Element;
|
|
924
|
+
readonly avatarList: (args: AvatarListCellValue_2, meta: ValueDisplayRendererContext_2) => default_2.JSX.Element;
|
|
925
925
|
readonly tagList: (args: TagListCellValue_2) => default_2.JSX.Element;
|
|
926
926
|
readonly alertTag: (args: AlertTagCellValue_2) => default_2.JSX.Element;
|
|
927
927
|
readonly dotTag: (args: DotTagCellValue_2) => default_2.JSX.Element;
|
|
@@ -4225,6 +4225,8 @@ export declare type SelectProps<T extends string, R = unknown> = {
|
|
|
4225
4225
|
options: SelectItemProps<T, unknown>[];
|
|
4226
4226
|
}) & Pick<InputFieldProps<T>, "loading" | "hideLabel" | "clearable" | "labelIcon" | "size" | "label" | "icon" | "placeholder" | "disabled" | "name" | "error" | "status" | "hint">;
|
|
4227
4227
|
|
|
4228
|
+
export declare const selectSizes: readonly ["sm", "md"];
|
|
4229
|
+
|
|
4228
4230
|
export declare function Shortcut({ keys, variant }: ShortcutProps): JSX_2.Element | null;
|
|
4229
4231
|
|
|
4230
4232
|
declare interface ShortcutProps extends VariantProps<typeof shortcutVariants> {
|
|
@@ -4899,22 +4901,22 @@ declare type ValueDisplayRendererDefinition = {
|
|
|
4899
4901
|
}[keyof typeof valueDisplayRenderers];
|
|
4900
4902
|
|
|
4901
4903
|
declare const valueDisplayRenderers: {
|
|
4902
|
-
readonly text: (args: TextCellValue) => JSX_2.Element;
|
|
4903
|
-
readonly longText: (args: LongTextCellValue) => JSX_2.Element;
|
|
4904
|
+
readonly text: (args: TextCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4905
|
+
readonly longText: (args: LongTextCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4904
4906
|
readonly number: (args: NumberCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4905
|
-
readonly date: (args: DateCellValue) => JSX_2.Element;
|
|
4907
|
+
readonly date: (args: DateCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4906
4908
|
readonly amount: (args: AmountCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4907
|
-
readonly avatarList: (args: AvatarListCellValue) => JSX_2.Element;
|
|
4909
|
+
readonly avatarList: (args: AvatarListCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4908
4910
|
readonly status: (args: StatusCellValue) => JSX_2.Element;
|
|
4909
4911
|
readonly alertTag: (args: AlertTagCellValue) => JSX_2.Element;
|
|
4910
|
-
readonly person: (args: PersonCellValue) => JSX_2.Element;
|
|
4911
|
-
readonly percentage: (args: PercentageCellValue) => JSX_2.Element | null;
|
|
4912
|
-
readonly company: (args: CompanyCellValue) => JSX_2.Element;
|
|
4913
|
-
readonly team: (args: TeamCellValue) => JSX_2.Element;
|
|
4912
|
+
readonly person: (args: PersonCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4913
|
+
readonly percentage: (args: PercentageCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element | null;
|
|
4914
|
+
readonly company: (args: CompanyCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4915
|
+
readonly team: (args: TeamCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4914
4916
|
readonly tag: (args: TagCellValue) => JSX_2.Element;
|
|
4915
4917
|
readonly dotTag: (args: DotTagCellValue) => JSX_2.Element;
|
|
4916
4918
|
readonly tagList: (args: TagListCellValue) => JSX_2.Element;
|
|
4917
|
-
readonly icon: (args: IconCellValue) => JSX_2.Element;
|
|
4919
|
+
readonly icon: (args: IconCellValue, meta: ValueDisplayRendererContext) => JSX_2.Element;
|
|
4918
4920
|
readonly file: (args: FileCellValue) => JSX_2.Element;
|
|
4919
4921
|
readonly folder: (args: FolderCellValue) => JSX_2.Element;
|
|
4920
4922
|
};
|