Skip to content

Commit

Permalink
Merge branch 'fix/useForm-promise-never-settles-5460' of github.com:S…
Browse files Browse the repository at this point in the history
…hivamDureja/refine into fix/useForm-promise-never-settles-5460
  • Loading branch information
ShivamDureja committed Jan 30, 2024
2 parents 3c5bc71 + d6ee423 commit e0f0d0f
Show file tree
Hide file tree
Showing 551 changed files with 12,669 additions and 22,044 deletions.
5 changes: 5 additions & 0 deletions .changeset/rich-avocados-walk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@refinedev/core": patch
---

refactor(core): re-export AuthBindings type as AuthProvider for consistency.
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ indent_size = 2
indent_size = 2

[*.mdx]
indent_size = 2
indent_size = 2

[documentation/**/*.tsx]
indent_size = 2
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* @refinedev/core

/documentation/blog/ @refinedev/marketing
1 change: 1 addition & 0 deletions .github/workflows/pull-request-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- "documentation/**"
jobs:
documentation:
if: github.repository_owner == 'refinedev'
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}-pr-doc
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ You can take a look at some live examples that can be built using **refine** fro

⚙️ Zero-config, **one-minute setup** with a **single CLI command**

🔌 Connectors for **15+ backend services** including [REST API](https://github.com/refinedev/refine/tree/master/packages/simple-rest), [GraphQL](https://github.com/refinedev/refine/tree/master/packages/graphql), [NestJs CRUD](https://github.com/refinedev/refine/tree/master/packages/nestjsx-crud), [Airtable](https://github.com/refinedev/refine/tree/master/packages/airtable), [Strapi](https://github.com/refinedev/refine/tree/master/packages/strapi), [Strapi v4](https://github.com/refinedev/refine/tree/master/packages/strapi-v4), [Strapi GraphQL](https://github.com/refinedev/refine/tree/master/packages/strapi-graphql), [Supabase](https://github.com/refinedev/refine/tree/master/packages/supabase), [Hasura](https://github.com/refinedev/refine/tree/master/packages/hasura), [Appwrite](https://github.com/refinedev/refine/tree/master/packages/appwrite), [Nestjs-Query](https://github.com/refinedev/refine/tree/master/packages/nestjs-query), [Firebase](https://firebase.google.com/), [Sanity](https://www.sanity.io/), and [Directus](https://directus.io/).
🔌 Connectors for **15+ backend services** including [REST API](https://github.com/refinedev/refine/tree/master/packages/simple-rest), [GraphQL](https://github.com/refinedev/refine/tree/master/packages/graphql), [NestJs CRUD](https://github.com/refinedev/refine/tree/master/packages/nestjsx-crud), [Airtable](https://github.com/refinedev/refine/tree/master/packages/airtable), [Strapi](https://github.com/refinedev/refine/tree/master/packages/strapi), [Strapi v4](https://github.com/refinedev/refine/tree/master/packages/strapi-v4), [Supabase](https://github.com/refinedev/refine/tree/master/packages/supabase), [Hasura](https://github.com/refinedev/refine/tree/master/packages/hasura), [Appwrite](https://github.com/refinedev/refine/tree/master/packages/appwrite), [Nestjs-Query](https://github.com/refinedev/refine/tree/master/packages/nestjs-query), [Firebase](https://firebase.google.com/), [Sanity](https://www.sanity.io/), and [Directus](https://directus.io/).

🌐 **SSR support** with **Next.js** or **Remix**

Expand Down
4 changes: 1 addition & 3 deletions documentation/blog/2021-11-26-refine-vs-react-admin.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ In order to create a query, we need to specify the fields that we will use from
```tsx src/App.tsx
import { Refine } from "@pankod/refine";
import routerProvider from "@refinedev/react-router-v6";
import dataProvider, { GraphQLClient } from "@refinedev/strapi-graphql";
import dataProvider, { GraphQLClient } from "@refinedev/graphql";

const client = new GraphQLClient("API_URL");

Expand Down Expand Up @@ -554,10 +554,8 @@ Connects to any REST or GraphQL custom backend.
- Airtable: [https://github.com/refinedev/refine/tree/master/examples/data-provider-airtable](https://github.com/refinedev/refine/tree/master/examples/data-provider-airtable)
- Strapi: [https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi](https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi)
- Strapi v4: [https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi-v4](https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi-v4)
- Strapi GraphQL: [https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi-graphql](https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi-graphql)
- Supabase: [https://github.com/refinedev/refine/tree/master/examples/data-provider-supabase](https://github.com/refinedev/refine/tree/master/examples/data-provider-supabase)
- Hasura: [https://github.com/refinedev/refine/tree/master/examples/data-provider-hasura](https://github.com/refinedev/refine/tree/master/examples/data-provider-hasura)
- Nhost: [https://github.com/refinedev/refine/tree/master/examples/data-provider-nhost](https://github.com/refinedev/refine/tree/master/examples/data-provider-nhost)
- Appwrite: [https://github.com/refinedev/refine/tree/master/examples/data-provider-appwrite](https://github.com/refinedev/refine/tree/master/examples/data-provider-appwrite)

### Customization
Expand Down
4 changes: 1 addition & 3 deletions documentation/blog/2021-11-29-refine-vs-admin-bro.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ In order to create a query, we need to specify the fields that we will use from
```tsx src/App.tsx
import { Refine } from "@pankod/refine";
import routerProvider from "@refinedev/react-router-v6";
import dataProvider, { GraphQLClient } from "@refinedev/strapi-graphql";
import dataProvider, { GraphQLClient } from "@refinedev/graphql";

const client = new GraphQLClient("API_URL");

Expand Down Expand Up @@ -354,10 +354,8 @@ Connects to any REST or GraphQL custom backend.
- Airtable: [https://github.com/refinedev/refine/tree/master/examples/data-provider-airtable](https://github.com/refinedev/refine/tree/master/examples/data-provider-airtable)
- Strapi: [https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi](https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi)
- Strapi v4: [https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi-v4](https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi-v4)
- Strapi GraphQL: [https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi-graphql](https://github.com/refinedev/refine/tree/master/examples/data-provider-strapi-graphql)
- Supabase: [https://github.com/refinedev/refine/tree/master/examples/data-provider-supabase](https://github.com/refinedev/refine/tree/master/examples/data-provider-supabase)
- Hasura: [https://github.com/refinedev/refine/tree/master/examples/data-provider-hasura](https://github.com/refinedev/refine/tree/master/examples/data-provider-hasura)
- Nhost: [https://github.com/refinedev/refine/tree/master/examples/data-provider-nhost](https://github.com/refinedev/refine/tree/master/examples/data-provider-nhost)
- Appwrite: [https://github.com/refinedev/refine/tree/master/examples/data-provider-appwrite](https://github.com/refinedev/refine/tree/master/examples/data-provider-appwrite)
- Medusa: [https://github.com/refinedev/refine/tree/master/packages/medusa](https://github.com/refinedev/refine/tree/master/packages/medusa)

Expand Down
15 changes: 3 additions & 12 deletions documentation/blog/2022-02-21-become-production-hero.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ With 2022, a new future in our careers as software developers. We will meet new

<!--truncate-->

### Production Oriented Approach 🧰
### Production Oriented Approach 🧰

`{ Production }`

Expand All @@ -25,7 +25,7 @@ So is speed exactly everything?
3 main components affect production in traditional production methods.

Speed 💨
Quality👌
Quality👌
Time ⌛

Can you imagine what a development environment would be like where we provided all 3 components at the same time?
Expand All @@ -44,8 +44,6 @@ The word headless is underlined above. So Refine drop you into UI heaven, meanwh
- React Location
- Next.js Router



#### Data Provider

- Rest API
Expand All @@ -57,12 +55,10 @@ The word headless is underlined above. So Refine drop you into UI heaven, meanwh
- Strapi GraphQL
- Supabase
- Hasura
- Nhost
- Medusa
- Appwrite
- Firebase
- Directus


#### State Management

Expand All @@ -82,10 +78,9 @@ Yes, of course.Both for React and Next.

Realtime support to your app via liveProvider, there's even an [example](https://refine.dev/docs/examples/live-provider/ably/) made for you with Ably.


### What makes Refine Unique?

Refine stands out with its wide _**routing**_, **_access control_** options, supporting the ability to use _**any UI Framework**_ and **_NextJS SSR_** support when compared to React Admin, retool, adminBro.
Refine stands out with its wide _**routing**_, **_access control_** options, supporting the ability to use _**any UI Framework**_ and **_NextJS SSR_** support when compared to React Admin, retool, adminBro.

### Look at your productivity without worrying about is everything on the way

Expand All @@ -94,7 +89,3 @@ As you can see, you can find all the support you need to develop a data-intensiv
If you want to take a closer look at [Refine](https://refine.dev/)

If you say you don't want to be alone while developing a product, the community is ready to meet you. Click for the [Discord link](https://discord.gg/refine).




Loading

0 comments on commit e0f0d0f

Please sign in to comment.