antd-crud-table 0.0.13 → 0.1.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/README.md CHANGED
@@ -246,10 +246,6 @@ Create your own specialized hooks for different use cases:
246
246
  ```tsx
247
247
  import { useCrudTable, type UseCrudTableConfig } from 'antd-crud-table';
248
248
 
249
- #### Example 1: useUserCrud - Specialized User Management
250
- ```tsx
251
- import { useCrudTable, type UseCrudTableConfig } from 'antd-crud-table';
252
-
253
249
  export const useUserCrud = (baseConfig?: Partial<UseCrudTableConfig<any>['api']>) => {
254
250
  const config: UseCrudTableConfig<any> = {
255
251
  api: {
@@ -372,8 +368,6 @@ export const useLocalStorageCrud = <T extends Record<string, any>>(
372
368
  };
373
369
  ```
374
370
 
375
- #### Example 3: useRealtimeCrud - WebSocket Integration
376
- ```tsx
377
371
  #### Example 3: useRealtimeCrud - WebSocket Integration
378
372
  ```tsx
379
373
  export const useRealtimeCrud = <T extends Record<string, any>>(
@@ -410,8 +404,6 @@ export const useRealtimeCrud = <T extends Record<string, any>>(
410
404
  };
411
405
  ```
412
406
 
413
- #### Example 4: useInfiniteScrollCrud - Infinite Scrolling
414
- ```tsx
415
407
  #### Example 4: useInfiniteScrollCrud - Infinite Scrolling
416
408
  ```tsx
417
409
  export const useInfiniteScrollCrud = <T extends Record<string, any>>(
@@ -430,8 +422,6 @@ export const useInfiniteScrollCrud = <T extends Record<string, any>>(
430
422
  };
431
423
  ```
432
424
 
433
- #### Example 5: useCachedCrud - Advanced Caching
434
- ```tsx
435
425
  #### Example 5: useCachedCrud - Advanced Caching
436
426
  ```tsx
437
427
  export const useCachedCrud = <T extends Record<string, any>>(