@refinedev/antd 6.0.1 → 6.0.3

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.
Files changed (57) hide show
  1. package/CHANGELOG.md +63 -0
  2. package/dist/components/pages/index.d.cts +0 -2
  3. package/dist/components/pages/index.d.cts.map +1 -1
  4. package/dist/components/pages/index.d.mts +0 -2
  5. package/dist/components/pages/index.d.mts.map +0 -2
  6. package/dist/components/pages/index.d.ts +0 -2
  7. package/dist/components/pages/index.d.ts.map +1 -1
  8. package/dist/definitions/table/index.d.cts +0 -3
  9. package/dist/definitions/table/index.d.cts.map +1 -1
  10. package/dist/definitions/table/index.d.mts +0 -3
  11. package/dist/definitions/table/index.d.mts.map +0 -3
  12. package/dist/definitions/table/index.d.ts +0 -3
  13. package/dist/definitions/table/index.d.ts.map +1 -1
  14. package/dist/hooks/index.d.cts +0 -1
  15. package/dist/hooks/index.d.cts.map +1 -1
  16. package/dist/hooks/index.d.mts +0 -1
  17. package/dist/hooks/index.d.mts.map +0 -1
  18. package/dist/hooks/index.d.ts +0 -1
  19. package/dist/hooks/index.d.ts.map +1 -1
  20. package/dist/index.cjs +4162 -1
  21. package/dist/index.cjs.map +1 -1
  22. package/dist/index.mjs +4331 -1
  23. package/dist/index.mjs.map +1 -1
  24. package/package.json +11 -11
  25. package/src/components/pages/index.tsx +0 -2
  26. package/src/definitions/table/index.ts +0 -3
  27. package/src/hooks/index.ts +0 -1
  28. package/tsconfig.json +1 -1
  29. package/vitest.config.mts +43 -0
  30. package/dist/components/pages/login/index.d.cts +0 -15
  31. package/dist/components/pages/login/index.d.cts.map +0 -1
  32. package/dist/components/pages/login/index.d.mts +0 -15
  33. package/dist/components/pages/login/index.d.mts.map +0 -15
  34. package/dist/components/pages/login/index.d.ts +0 -15
  35. package/dist/components/pages/login/index.d.ts.map +0 -1
  36. package/dist/components/pages/login/styles.d.cts +0 -6
  37. package/dist/components/pages/login/styles.d.cts.map +0 -1
  38. package/dist/components/pages/login/styles.d.mts +0 -6
  39. package/dist/components/pages/login/styles.d.mts.map +0 -6
  40. package/dist/components/pages/login/styles.d.ts +0 -6
  41. package/dist/components/pages/login/styles.d.ts.map +0 -1
  42. package/dist/components/pages/ready/index.d.cts +0 -9
  43. package/dist/components/pages/ready/index.d.cts.map +0 -1
  44. package/dist/components/pages/ready/index.d.mts +0 -9
  45. package/dist/components/pages/ready/index.d.mts.map +0 -9
  46. package/dist/components/pages/ready/index.d.ts +0 -9
  47. package/dist/components/pages/ready/index.d.ts.map +0 -1
  48. package/dist/hooks/useSiderVisible/index.d.cts +0 -11
  49. package/dist/hooks/useSiderVisible/index.d.cts.map +0 -1
  50. package/dist/hooks/useSiderVisible/index.d.mts +0 -11
  51. package/dist/hooks/useSiderVisible/index.d.mts.map +0 -11
  52. package/dist/hooks/useSiderVisible/index.d.ts +0 -11
  53. package/dist/hooks/useSiderVisible/index.d.ts.map +0 -1
  54. package/src/components/pages/login/index.tsx +0 -147
  55. package/src/components/pages/login/styles.ts +0 -25
  56. package/src/components/pages/ready/index.tsx +0 -87
  57. package/src/hooks/useSiderVisible/index.ts +0 -29
package/CHANGELOG.md CHANGED
@@ -1,5 +1,68 @@
1
1
  # @refinedev/antd
2
2
 
3
+ ## 6.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#7086](https://github.com/refinedev/refine/pull/7086) [`5c57073cf7584a7ca28ad7e78dc25a16c72e83d3`](https://github.com/refinedev/refine/commit/5c57073cf7584a7ca28ad7e78dc25a16c72e83d3) Thanks [@BatuhanW](https://github.com/BatuhanW)! - feat: disable minify
8
+
9
+ Resolves #6417
10
+
11
+ - Updated dependencies [[`5c57073cf7584a7ca28ad7e78dc25a16c72e83d3`](https://github.com/refinedev/refine/commit/5c57073cf7584a7ca28ad7e78dc25a16c72e83d3)]:
12
+ - @refinedev/ui-types@2.0.1
13
+
14
+ ## 6.0.2
15
+
16
+ ### Patch Changes
17
+
18
+ - [#7016](https://github.com/refinedev/refine/pull/7016) [`97e974547949197ed9ca4a1e02b19ef3fc46b673`](https://github.com/refinedev/refine/commit/97e974547949197ed9ca4a1e02b19ef3fc46b673) Thanks [@DoguhanOzgurAkca](https://github.com/DoguhanOzgurAkca)! - feat: comprehensive deprecated code cleanup for v5
19
+
20
+ This release completes the cleanup of deprecated code that remained after the Refine v5 migration, providing a cleaner and more maintainable codebase.
21
+
22
+ ## Breaking Changes - Removed Deprecated Components
23
+
24
+ **@refinedev/antd:**
25
+
26
+ - Removed deprecated `ReadyPage` component (use custom components instead)
27
+ - Removed deprecated `LoginPage` component (use `AuthPage` instead)
28
+ - Removed deprecated `useSiderVisible` hook (use `useThemedLayoutContext` instead)
29
+
30
+ **@refinedev/chakra-ui:**
31
+
32
+ - Removed deprecated `ReadyPage` component (use custom components instead)
33
+ - Removed deprecated `useSiderVisible` hook (use `useThemedLayoutContext` instead)
34
+
35
+ **@refinedev/mantine:**
36
+
37
+ - Removed deprecated `useSiderVisible` hook (use `useThemedLayoutContext` instead)
38
+
39
+ ## New Features
40
+
41
+ **@refinedev/codemod:**
42
+
43
+ - Added `welcome-page-import-from-core` codemod transformation
44
+ - Automatically migrates WelcomePage imports from UI libraries to @refinedev/core
45
+ - Run with: `npx @refinedev/codemod@latest welcome-page-import-from-core`
46
+
47
+ ## Improvements
48
+
49
+ **@refinedev/antd:**
50
+
51
+ - Un-deprecated `getDefaultFilter` function - now the preferred import location
52
+ - Updated documentation to import `getDefaultFilter` from `@refinedev/antd` instead of `@refinedev/core`
53
+
54
+ **@refinedev/core:**
55
+
56
+ - Un-deprecated `warnWhenUnsavedChanges` property in RefineOptions (still valid and actively used)
57
+ - Updated all TanStack Query documentation links from v4 to v5
58
+ - Improved TSDoc comments with current TanStack Query v5 references
59
+
60
+ ## Documentation Updates
61
+
62
+ - Updated 7 documentation files to use `getDefaultFilter` from `@refinedev/antd`
63
+ - Migrated 22 TanStack Query v4 documentation links to v5
64
+ - All API references now point to current TanStack Query v5 documentation
65
+
3
66
  ## 6.0.1
4
67
 
5
68
  ### Patch Changes
@@ -1,6 +1,4 @@
1
1
  export { ErrorComponent } from "./error";
2
- export { LoginPage } from "./login";
3
- export { ReadyPage } from "./ready";
4
2
  export { WelcomePage } from "./welcome";
5
3
  export { AuthPage } from "./auth";
6
4
  export type { AuthProps } from "./auth";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/pages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAClC,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/pages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAClC,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC"}
@@ -1,6 +1,4 @@
1
1
  export { ErrorComponent } from "./error";
2
- export { LoginPage } from "./login";
3
- export { ReadyPage } from "./ready";
4
2
  export { WelcomePage } from "./welcome";
5
3
  export { AuthPage } from "./auth";
6
4
  export type { AuthProps } from "./auth";
@@ -1,6 +1,4 @@
1
1
  export { ErrorComponent } from "./error";
2
- export { LoginPage } from "./login";
3
- export { ReadyPage } from "./ready";
4
2
  export { WelcomePage } from "./welcome";
5
3
  export { AuthPage } from "./auth";
6
4
  export type { AuthProps } from "./auth";
@@ -1,6 +1,4 @@
1
1
  export { ErrorComponent } from "./error";
2
- export { LoginPage } from "./login";
3
- export { ReadyPage } from "./ready";
4
2
  export { WelcomePage } from "./welcome";
5
3
  export { AuthPage } from "./auth";
6
4
  export type { AuthProps } from "./auth";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/pages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAClC,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/pages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAClC,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC"}
@@ -4,9 +4,6 @@ export type FilterValue = Parameters<NonNullable<TableProps["onChange"]>>[1][str
4
4
  export type SortOrder = NonNullable<TableProps["sortDirections"]>[number];
5
5
  export type SorterResult = Exclude<Parameters<NonNullable<TableProps["onChange"]>>[2], any[]>;
6
6
  export declare const getDefaultSortOrder: (columnName: string, sorter?: CrudSorting) => SortOrder | undefined;
7
- /**
8
- * @deprecated getDefaultFilter moved to `@refinedev/core`. Use from `@refinedev/core`
9
- */
10
7
  export declare const getDefaultFilter: (columnName: string, filters?: CrudFilters, operatorType?: CrudOperators) => CrudFilter["value"] | undefined;
11
8
  export declare const mapAntdSorterToCrudSorting: (sorter: SorterResult | SorterResult[]) => CrudSorting;
12
9
  export declare const mapAntdFilterToCrudFilter: (tableFilters: Record<string, FilterValue | (string | number | boolean) | (string | number | boolean)[] | null>, prevFilters: CrudFilters, initialFilters?: CrudFilters) => CrudFilters;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/definitions/table/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,KAAK,WAAW,EAChB,KAAK,UAAU,EAKhB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEvC,MAAM,MAAM,WAAW,GAAG,UAAU,CAClC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CACpC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AACb,MAAM,MAAM,SAAS,GAAG,WAAW,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AAC1E,MAAM,MAAM,YAAY,GAAG,OAAO,CAChC,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAClD,GAAG,EAAE,CACN,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAC9B,YAAY,MAAM,EAClB,SAAS,WAAW,KACnB,SAAS,GAAG,SAQd,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB,GAC3B,YAAY,MAAM,EAClB,UAAU,WAAW,EACrB,eAAc,aAAoB,KACjC,UAAU,CAAC,OAAO,CAAC,GAAG,SAExB,CAAC;AAEF,eAAO,MAAM,0BAA0B,GACrC,QAAQ,YAAY,GAAG,YAAY,EAAE,KACpC,WAoCF,CAAC;AAEF,eAAO,MAAM,yBAAyB,GACpC,cAAc,MAAM,CAClB,MAAM,EACJ,WAAW,GACX,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,GAC3B,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,EAAE,GAC7B,IAAI,CACP,EACD,aAAa,WAAW,EACxB,iBAAiB,WAAW,KAC3B,WA4BF,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/definitions/table/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,KAAK,WAAW,EAChB,KAAK,UAAU,EAKhB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEvC,MAAM,MAAM,WAAW,GAAG,UAAU,CAClC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CACpC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AACb,MAAM,MAAM,SAAS,GAAG,WAAW,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AAC1E,MAAM,MAAM,YAAY,GAAG,OAAO,CAChC,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAClD,GAAG,EAAE,CACN,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAC9B,YAAY,MAAM,EAClB,SAAS,WAAW,KACnB,SAAS,GAAG,SAQd,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAC3B,YAAY,MAAM,EAClB,UAAU,WAAW,EACrB,eAAc,aAAoB,KACjC,UAAU,CAAC,OAAO,CAAC,GAAG,SAExB,CAAC;AAEF,eAAO,MAAM,0BAA0B,GACrC,QAAQ,YAAY,GAAG,YAAY,EAAE,KACpC,WAoCF,CAAC;AAEF,eAAO,MAAM,yBAAyB,GACpC,cAAc,MAAM,CAClB,MAAM,EACJ,WAAW,GACX,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,GAC3B,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,EAAE,GAC7B,IAAI,CACP,EACD,aAAa,WAAW,EACxB,iBAAiB,WAAW,KAC3B,WA4BF,CAAC"}
@@ -4,9 +4,6 @@ export type FilterValue = Parameters<NonNullable<TableProps["onChange"]>>[1][str
4
4
  export type SortOrder = NonNullable<TableProps["sortDirections"]>[number];
5
5
  export type SorterResult = Exclude<Parameters<NonNullable<TableProps["onChange"]>>[2], any[]>;
6
6
  export declare const getDefaultSortOrder: (columnName: string, sorter?: CrudSorting) => SortOrder | undefined;
7
- /**
8
- * @deprecated getDefaultFilter moved to `@refinedev/core`. Use from `@refinedev/core`
9
- */
10
7
  export declare const getDefaultFilter: (columnName: string, filters?: CrudFilters, operatorType?: CrudOperators) => CrudFilter["value"] | undefined;
11
8
  export declare const mapAntdSorterToCrudSorting: (sorter: SorterResult | SorterResult[]) => CrudSorting;
12
9
  export declare const mapAntdFilterToCrudFilter: (tableFilters: Record<string, FilterValue | (string | number | boolean) | (string | number | boolean)[] | null>, prevFilters: CrudFilters, initialFilters?: CrudFilters) => CrudFilters;
@@ -4,9 +4,6 @@ export type FilterValue = Parameters<NonNullable<TableProps["onChange"]>>[1][str
4
4
  export type SortOrder = NonNullable<TableProps["sortDirections"]>[number];
5
5
  export type SorterResult = Exclude<Parameters<NonNullable<TableProps["onChange"]>>[2], any[]>;
6
6
  export declare const getDefaultSortOrder: (columnName: string, sorter?: CrudSorting) => SortOrder | undefined;
7
- /**
8
- * @deprecated getDefaultFilter moved to `@refinedev/core`. Use from `@refinedev/core`
9
- */
10
7
  export declare const getDefaultFilter: (columnName: string, filters?: CrudFilters, operatorType?: CrudOperators) => CrudFilter["value"] | undefined;
11
8
  export declare const mapAntdSorterToCrudSorting: (sorter: SorterResult | SorterResult[]) => CrudSorting;
12
9
  export declare const mapAntdFilterToCrudFilter: (tableFilters: Record<string, FilterValue | (string | number | boolean) | (string | number | boolean)[] | null>, prevFilters: CrudFilters, initialFilters?: CrudFilters) => CrudFilters;
@@ -4,9 +4,6 @@ export type FilterValue = Parameters<NonNullable<TableProps["onChange"]>>[1][str
4
4
  export type SortOrder = NonNullable<TableProps["sortDirections"]>[number];
5
5
  export type SorterResult = Exclude<Parameters<NonNullable<TableProps["onChange"]>>[2], any[]>;
6
6
  export declare const getDefaultSortOrder: (columnName: string, sorter?: CrudSorting) => SortOrder | undefined;
7
- /**
8
- * @deprecated getDefaultFilter moved to `@refinedev/core`. Use from `@refinedev/core`
9
- */
10
7
  export declare const getDefaultFilter: (columnName: string, filters?: CrudFilters, operatorType?: CrudOperators) => CrudFilter["value"] | undefined;
11
8
  export declare const mapAntdSorterToCrudSorting: (sorter: SorterResult | SorterResult[]) => CrudSorting;
12
9
  export declare const mapAntdFilterToCrudFilter: (tableFilters: Record<string, FilterValue | (string | number | boolean) | (string | number | boolean)[] | null>, prevFilters: CrudFilters, initialFilters?: CrudFilters) => CrudFilters;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/definitions/table/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,KAAK,WAAW,EAChB,KAAK,UAAU,EAKhB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEvC,MAAM,MAAM,WAAW,GAAG,UAAU,CAClC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CACpC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AACb,MAAM,MAAM,SAAS,GAAG,WAAW,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AAC1E,MAAM,MAAM,YAAY,GAAG,OAAO,CAChC,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAClD,GAAG,EAAE,CACN,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAC9B,YAAY,MAAM,EAClB,SAAS,WAAW,KACnB,SAAS,GAAG,SAQd,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB,GAC3B,YAAY,MAAM,EAClB,UAAU,WAAW,EACrB,eAAc,aAAoB,KACjC,UAAU,CAAC,OAAO,CAAC,GAAG,SAExB,CAAC;AAEF,eAAO,MAAM,0BAA0B,GACrC,QAAQ,YAAY,GAAG,YAAY,EAAE,KACpC,WAoCF,CAAC;AAEF,eAAO,MAAM,yBAAyB,GACpC,cAAc,MAAM,CAClB,MAAM,EACJ,WAAW,GACX,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,GAC3B,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,EAAE,GAC7B,IAAI,CACP,EACD,aAAa,WAAW,EACxB,iBAAiB,WAAW,KAC3B,WA4BF,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/definitions/table/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,aAAa,EAClB,KAAK,WAAW,EAChB,KAAK,UAAU,EAKhB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEvC,MAAM,MAAM,WAAW,GAAG,UAAU,CAClC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CACpC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AACb,MAAM,MAAM,SAAS,GAAG,WAAW,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;AAC1E,MAAM,MAAM,YAAY,GAAG,OAAO,CAChC,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAClD,GAAG,EAAE,CACN,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAC9B,YAAY,MAAM,EAClB,SAAS,WAAW,KACnB,SAAS,GAAG,SAQd,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAC3B,YAAY,MAAM,EAClB,UAAU,WAAW,EACrB,eAAc,aAAoB,KACjC,UAAU,CAAC,OAAO,CAAC,GAAG,SAExB,CAAC;AAEF,eAAO,MAAM,0BAA0B,GACrC,QAAQ,YAAY,GAAG,YAAY,EAAE,KACpC,WAoCF,CAAC;AAEF,eAAO,MAAM,yBAAyB,GACpC,cAAc,MAAM,CAClB,MAAM,EACJ,WAAW,GACX,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,GAC3B,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,EAAE,GAC7B,IAAI,CACP,EACD,aAAa,WAAW,EACxB,iBAAiB,WAAW,KAC3B,WA4BF,CAAC"}
@@ -5,7 +5,6 @@ export * from "./import";
5
5
  export * from "./useSimpleList";
6
6
  export * from "./useFileUploadState";
7
7
  export * from "./modal";
8
- export * from "./useSiderVisible";
9
8
  export * from "./useThemedLayoutContext";
10
9
  export * from "./drawer";
11
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,0BAA0B,CAAC;AACzC,cAAc,UAAU,CAAC"}
@@ -5,7 +5,6 @@ export * from "./import";
5
5
  export * from "./useSimpleList";
6
6
  export * from "./useFileUploadState";
7
7
  export * from "./modal";
8
- export * from "./useSiderVisible";
9
8
  export * from "./useThemedLayoutContext";
10
9
  export * from "./drawer";
11
10
  //# sourceMappingURL=index.d.ts.map
@@ -5,7 +5,6 @@ export * from "./import";
5
5
  export * from "./useSimpleList";
6
6
  export * from "./useFileUploadState";
7
7
  export * from "./modal";
8
- export * from "./useSiderVisible";
9
8
  export * from "./useThemedLayoutContext";
10
9
  export * from "./drawer";
11
10
  //# sourceMappingURL=index.d.ts.map
@@ -5,7 +5,6 @@ export * from "./import";
5
5
  export * from "./useSimpleList";
6
6
  export * from "./useFileUploadState";
7
7
  export * from "./modal";
8
- export * from "./useSiderVisible";
9
8
  export * from "./useThemedLayoutContext";
10
9
  export * from "./drawer";
11
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC;AACxB,cAAc,0BAA0B,CAAC;AACzC,cAAc,UAAU,CAAC"}