Skip to content

Releases: refinedev/refine

@pankod/[email protected]

28 Nov 12:34
05229bf
Compare
Choose a tag to compare

Patch Changes

@pankod/[email protected]

28 Nov 15:29
ff9a93e
Compare
Choose a tag to compare

Patch Changes

@pankod/[email protected]

28 Nov 12:34
05229bf
Compare
Choose a tag to compare

Minor Changes

  • #3067 6f83ddba2ad Thanks @alicanerdurmaz! - Added: whoami command to refine-cli. It's shows details of the development environment.
    Added: telemetry to refine-cli commands.

Patch Changes

[email protected]

25 Nov 12:38
11922d1
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@pankod/[email protected]

25 Nov 12:38
11922d1
Compare
Choose a tag to compare

Patch Changes

@pankod/[email protected]

25 Nov 12:38
11922d1
Compare
Choose a tag to compare

Patch Changes

@pankod/[email protected]

25 Nov 12:38
11922d1
Compare
Choose a tag to compare

Minor Changes

  • #3027 177d0a764fe Thanks @aliemir! - Initial release of the Inferencer package.

    This package provides series of components per each UI integration to generate list, show and edit pages for your resources. The fields and their representation are inferred from your resource's API response. Code is generated and presented with a preview and option to copy and edit in your project.

    Note: It's highly advised to only use this package in development environments. While generating the sample code, multiple requests are made to the API and the result might not be the best application for your data.

    Usage

    Components for UI integrations are exported in sub directories. For example, to use the components for Ant Design integration, you can import them like this:

    import {
        AntdListInferencer,
        AntdShowInferencer,
        AntdEditInferencer,
    } from "@pankod/refine-inferencer/antd";

    After importing the component, you can directly use it in <Refine/> component's resources prop.

    <Refine
        resources={[
            {
                name: "posts",
                list: AntdListInferencer,
                show: AntdShowInferencer,
                edit: AntdEditInferencer,
            },
        ]}
    />

    Tip: Relation data is only handled if the resource is present in the resources array. For example, if you have a posts resource with a users relation, you need to add users resource to the resources array as well. Otherwise, inferencer will try to show the relation data as a simple field like string or a number.

Patch Changes

  • #3064 27df262dd0a Thanks @aliemir! - Added undefined check for date field values in @pankod/refine-inferencer/antd's EditInferencer component to prevent setting it to current date when it's not provided.

@pankod/[email protected]

25 Nov 12:38
11922d1
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@pankod/[email protected]

22 Nov 12:15
d49275b
Compare
Choose a tag to compare

Minor Changes

@pankod/[email protected]

17 Nov 12:17
715c310
Compare
Choose a tag to compare

Patch Changes

  • #3011 593531713c3 Thanks @aliemir! - Fixed <NumberField /> type for missing value prop type, which was erroring out when using <NumberField />.