@refinedev/antd 5.44.0 → 5.45.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +120 -0
  2. package/README.md +2 -2
  3. package/dist/components/breadcrumb/index.d.cts.map +1 -1
  4. package/dist/components/breadcrumb/index.d.ts.map +1 -1
  5. package/dist/components/buttons/clone/index.d.cts.map +1 -1
  6. package/dist/components/buttons/clone/index.d.ts.map +1 -1
  7. package/dist/components/buttons/create/index.d.cts.map +1 -1
  8. package/dist/components/buttons/create/index.d.ts.map +1 -1
  9. package/dist/components/buttons/delete/index.d.cts.map +1 -1
  10. package/dist/components/buttons/delete/index.d.ts.map +1 -1
  11. package/dist/components/buttons/edit/index.d.cts.map +1 -1
  12. package/dist/components/buttons/edit/index.d.ts.map +1 -1
  13. package/dist/components/buttons/list/index.d.cts.map +1 -1
  14. package/dist/components/buttons/list/index.d.ts.map +1 -1
  15. package/dist/components/buttons/show/index.d.cts.map +1 -1
  16. package/dist/components/buttons/show/index.d.ts.map +1 -1
  17. package/dist/components/themedLayoutV2/index.d.cts.map +1 -1
  18. package/dist/components/themedLayoutV2/index.d.ts.map +1 -1
  19. package/dist/contexts/themedLayoutContext/IThemedLayoutContext.d.cts +1 -0
  20. package/dist/contexts/themedLayoutContext/IThemedLayoutContext.d.cts.map +1 -1
  21. package/dist/contexts/themedLayoutContext/IThemedLayoutContext.d.mts +1 -0
  22. package/dist/contexts/themedLayoutContext/IThemedLayoutContext.d.mts.map +1 -0
  23. package/dist/contexts/themedLayoutContext/IThemedLayoutContext.d.ts +1 -0
  24. package/dist/contexts/themedLayoutContext/IThemedLayoutContext.d.ts.map +1 -1
  25. package/dist/contexts/themedLayoutContext/index.d.cts +1 -0
  26. package/dist/contexts/themedLayoutContext/index.d.cts.map +1 -1
  27. package/dist/contexts/themedLayoutContext/index.d.mts +1 -0
  28. package/dist/contexts/themedLayoutContext/index.d.mts.map +1 -0
  29. package/dist/contexts/themedLayoutContext/index.d.ts +1 -0
  30. package/dist/contexts/themedLayoutContext/index.d.ts.map +1 -1
  31. package/dist/index.cjs +1 -1
  32. package/dist/index.cjs.map +1 -1
  33. package/dist/index.mjs +1 -1
  34. package/dist/index.mjs.map +1 -1
  35. package/package.json +7 -7
  36. package/src/components/breadcrumb/index.tsx +2 -3
  37. package/src/components/buttons/clone/index.tsx +6 -3
  38. package/src/components/buttons/create/index.tsx +7 -4
  39. package/src/components/buttons/delete/index.tsx +6 -5
  40. package/src/components/buttons/edit/index.tsx +6 -3
  41. package/src/components/buttons/list/index.tsx +7 -4
  42. package/src/components/buttons/show/index.tsx +6 -3
  43. package/src/components/themedLayoutV2/index.tsx +5 -1
  44. package/src/contexts/themedLayoutContext/IThemedLayoutContext.ts +1 -0
  45. package/src/contexts/themedLayoutContext/index.tsx +10 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,125 @@
1
1
  # @refinedev/antd
2
2
 
3
+ ## 5.45.1
4
+
5
+ ### Patch Changes
6
+
7
+ 📢 **Refine Community Release** 📢
8
+
9
+ - chore: update package descriptions
10
+
11
+ 📢 **Refine Community Release** 📢
12
+
13
+ - fix: UI buttons doesn't respect `hidden` prop.
14
+ From now on, `hidden` prop will work as expected on all [UI buttons](https://refine.dev/docs/guides-concepts/ui-libraries/#buttons).
15
+
16
+ UI Buttons:
17
+
18
+ - `CreateButton`
19
+ - `ShowButton`
20
+ - `ListButton`
21
+ - `EditButton`
22
+ - `DeleteButton`
23
+ - `CloneButton`
24
+
25
+ Resolves [#6513](https://github.com/refinedev/refine/issues/6513)
26
+
27
+ 📢 **Refine Community Release** 📢
28
+
29
+ - fix: UI buttons doesn't respect `disabled` prop.
30
+ From now on, `disabled` prop will work as expected on all [UI buttons](https://refine.dev/docs/guides-concepts/ui-libraries/#buttons).
31
+
32
+ UI Buttons:
33
+
34
+ - `CreateButton`
35
+ - `ShowButton`
36
+ - `ListButton`
37
+ - `EditButton`
38
+ - `DeleteButton`
39
+ - `CloneButton`
40
+
41
+ Resolves [#6513](https://github.com/refinedev/refine/issues/6513)
42
+
43
+ 📢 **Refine Community Release** 📢
44
+
45
+ - feat: React Router v7 support added.
46
+
47
+ 🚨 These packages are not dependent on `react-router`. However, they use the `react-router` package for testing purposes on [Jest](https://jestjs.io/) environment.
48
+
49
+ 📢 **Refine Community Release** 📢
50
+
51
+ - feat: added `minItems` prop to specify the minimum number of items required for rendering breadcrumbs. #6497
52
+
53
+ Resolves [#6497](https://github.com/refinedev/refine/issues/6497)
54
+
55
+ 📢 **Refine Community Release** 📢
56
+
57
+ - Enhanced the ThemedSideV2 component with new functionality to support dynamic onSiderCollapsed handling. This allows better customization of sider collapse/expand events and improved responsiveness for mobile and desktop views. Added additional type definitions and ensured compatibility across all layout contexts. resolves #6508
58
+
59
+ - Updated dependencies []:
60
+ - @refinedev/ui-types@1.23.1
61
+
62
+ ## 5.45.0
63
+
64
+ ### Minor Changes
65
+
66
+ ⚡ **Refine Enterprise Release** ⚡
67
+
68
+ - [#6503](https://github.com/refinedev/refine/pull/6503) [`29d00f8dc49485e0f5c42d208417e158118d11f2`](https://github.com/refinedev/refine/commit/29d00f8dc49485e0f5c42d208417e158118d11f2) Thanks [@aress31](https://github.com/aress31)! - feat: added `minItems` prop to specify the minimum number of items required for rendering breadcrumbs. #6497
69
+
70
+ Resolves [#6497](https://github.com/refinedev/refine/issues/6497)
71
+
72
+ ⚡ **Refine Enterprise Release** ⚡
73
+
74
+ - [#6527](https://github.com/refinedev/refine/pull/6527) [`1d2613381c50f438270d6a3e486595d54496ef92`](https://github.com/refinedev/refine/commit/1d2613381c50f438270d6a3e486595d54496ef92) Thanks [@OmkarBansod02](https://github.com/OmkarBansod02)! - Enhanced the ThemedSideV2 component with new functionality to support dynamic onSiderCollapsed handling. This allows better customization of sider collapse/expand events and improved responsiveness for mobile and desktop views. Added additional type definitions and ensured compatibility across all layout contexts. resolves #6508
75
+
76
+ ### Patch Changes
77
+
78
+ ⚡ **Refine Enterprise Release** ⚡
79
+
80
+ - [#6554](https://github.com/refinedev/refine/pull/6554) [`3cb2ca6f687398e422b867692b597b0c0d911706`](https://github.com/refinedev/refine/commit/3cb2ca6f687398e422b867692b597b0c0d911706) Thanks [@necatiozmen](https://github.com/necatiozmen)! - chore: update package descriptions
81
+
82
+ ⚡ **Refine Enterprise Release** ⚡
83
+
84
+ - [#6515](https://github.com/refinedev/refine/pull/6515) [`2312f4648cf8cae427884163cc025c3f925da988`](https://github.com/refinedev/refine/commit/2312f4648cf8cae427884163cc025c3f925da988) Thanks [@OmkarBansod02](https://github.com/OmkarBansod02)! - fix: UI buttons doesn't respect `hidden` prop.
85
+ From now on, `hidden` prop will work as expected on all [UI buttons](https://refine.dev/docs/guides-concepts/ui-libraries/#buttons).
86
+
87
+ UI Buttons:
88
+
89
+ - `CreateButton`
90
+ - `ShowButton`
91
+ - `ListButton`
92
+ - `EditButton`
93
+ - `DeleteButton`
94
+ - `CloneButton`
95
+
96
+ Resolves [#6513](https://github.com/refinedev/refine/issues/6513)
97
+
98
+ ⚡ **Refine Enterprise Release** ⚡
99
+
100
+ - [#6515](https://github.com/refinedev/refine/pull/6515) [`2312f4648cf8cae427884163cc025c3f925da988`](https://github.com/refinedev/refine/commit/2312f4648cf8cae427884163cc025c3f925da988) Thanks [@OmkarBansod02](https://github.com/OmkarBansod02)! - fix: UI buttons doesn't respect `disabled` prop.
101
+ From now on, `disabled` prop will work as expected on all [UI buttons](https://refine.dev/docs/guides-concepts/ui-libraries/#buttons).
102
+
103
+ UI Buttons:
104
+
105
+ - `CreateButton`
106
+ - `ShowButton`
107
+ - `ListButton`
108
+ - `EditButton`
109
+ - `DeleteButton`
110
+ - `CloneButton`
111
+
112
+ Resolves [#6513](https://github.com/refinedev/refine/issues/6513)
113
+
114
+ ⚡ **Refine Enterprise Release** ⚡
115
+
116
+ - [#6556](https://github.com/refinedev/refine/pull/6556) [`1ced1baa1dda3251b2a3d058a9168533126efb53`](https://github.com/refinedev/refine/commit/1ced1baa1dda3251b2a3d058a9168533126efb53) Thanks [@alicanerdurmaz](https://github.com/alicanerdurmaz)! - feat: React Router v7 support added.
117
+
118
+ 🚨 These packages are not dependent on `react-router`. However, they use the `react-router` package for testing purposes on [Jest](https://jestjs.io/) environment.
119
+
120
+ - Updated dependencies [[`3cb2ca6f687398e422b867692b597b0c0d911706`](https://github.com/refinedev/refine/commit/3cb2ca6f687398e422b867692b597b0c0d911706), [`29d00f8dc49485e0f5c42d208417e158118d11f2`](https://github.com/refinedev/refine/commit/29d00f8dc49485e0f5c42d208417e158118d11f2), [`1d2613381c50f438270d6a3e486595d54496ef92`](https://github.com/refinedev/refine/commit/1d2613381c50f438270d6a3e486595d54496ef92)]:
121
+ - @refinedev/ui-types@1.23.0
122
+
3
123
  ## 5.44.0
4
124
 
5
125
  ### Minor Changes
package/README.md CHANGED
@@ -71,8 +71,8 @@ Here's Refine in action, the below code is an example of a simple CRUD applicati
71
71
  import { Refine } from "@refinedev/core";
72
72
  import { ThemedLayoutV2 } from "@refinedev/antd";
73
73
  import dataProvider from "@refinedev/simple-rest";
74
- import routerBindings from "@refinedev/react-router-v6";
75
- import { BrowserRouter, Outlet, Route, Routes } from "react-router-dom";
74
+ import routerBindings from "@refinedev/react-router";
75
+ import { BrowserRouter, Outlet, Route, Routes } from "react-router";
76
76
 
77
77
  import "antd/dist/reset.css";
78
78
 
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/breadcrumb/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,EAEL,KAAK,eAAe,IAAI,mBAAmB,EAC5C,MAAM,MAAM,CAAC;AAGd,MAAM,MAAM,eAAe,GAAG,qBAAqB,CAAC,mBAAmB,CAAC,CAAC;AAEzE,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAgEhD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/breadcrumb/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,EAEL,KAAK,eAAe,IAAI,mBAAmB,EAC5C,MAAM,MAAM,CAAC;AAGd,MAAM,MAAM,eAAe,GAAG,qBAAqB,CAAC,mBAAmB,CAAC,CAAC;AAEzE,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA+DhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/breadcrumb/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,EAEL,KAAK,eAAe,IAAI,mBAAmB,EAC5C,MAAM,MAAM,CAAC;AAGd,MAAM,MAAM,eAAe,GAAG,qBAAqB,CAAC,mBAAmB,CAAC,CAAC;AAEzE,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAgEhD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/breadcrumb/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAEjE,OAAO,EAEL,KAAK,eAAe,IAAI,mBAAmB,EAC5C,MAAM,MAAM,CAAC;AAGd,MAAM,MAAM,eAAe,GAAG,qBAAqB,CAAC,mBAAmB,CAAC,CAAC;AAEzE,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA+DhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/clone/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD;;;;;;GAMG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CA+ClD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/clone/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD;;;;;;GAMG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAkDlD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/clone/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD;;;;;;GAMG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CA+ClD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/clone/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD;;;;;;GAMG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAkDlD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/create/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD;;;;;;GAMG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAgDpD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/create/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD;;;;;;GAMG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAmDpD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/create/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD;;;;;;GAMG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAgDpD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/create/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD;;;;;;GAMG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAmDpD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/delete/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD;;;;;GAKG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAwEpD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/delete/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD;;;;;GAKG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAyEpD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/delete/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD;;;;;GAKG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAwEpD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/delete/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD;;;;;GAKG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAyEpD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/edit/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA+ChD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/edit/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAkDhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/edit/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA+ChD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/edit/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAkDhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA6ChD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAgDhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA6ChD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAgDhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/show/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA+ChD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/show/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAkDhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/show/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA+ChD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/show/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;GAMG;AACH,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAkDhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/themedLayoutV2/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAKvC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AAGzD,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAqC9D,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/themedLayoutV2/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAKvC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AAGzD,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAyC9D,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/themedLayoutV2/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAKvC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AAGzD,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAqC9D,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/themedLayoutV2/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAKvC,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AAGzD,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAyC9D,CAAC"}
@@ -3,5 +3,6 @@ export interface IThemedLayoutContext {
3
3
  setSiderCollapsed: (visible: boolean) => void;
4
4
  mobileSiderOpen: boolean;
5
5
  setMobileSiderOpen: (visible: boolean) => void;
6
+ onSiderCollapsed?: (collapsed: boolean) => void;
6
7
  }
7
8
  //# sourceMappingURL=IThemedLayoutContext.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"IThemedLayoutContext.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/IThemedLayoutContext.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,cAAc,EAAE,OAAO,CAAC;IACxB,iBAAiB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC9C,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;CAChD"}
1
+ {"version":3,"file":"IThemedLayoutContext.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/IThemedLayoutContext.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,cAAc,EAAE,OAAO,CAAC;IACxB,iBAAiB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC9C,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC/C,gBAAgB,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;CACjD"}
@@ -3,5 +3,6 @@ export interface IThemedLayoutContext {
3
3
  setSiderCollapsed: (visible: boolean) => void;
4
4
  mobileSiderOpen: boolean;
5
5
  setMobileSiderOpen: (visible: boolean) => void;
6
+ onSiderCollapsed?: (collapsed: boolean) => void;
6
7
  }
7
8
  //# sourceMappingURL=IThemedLayoutContext.d.ts.map
@@ -3,5 +3,6 @@ export interface IThemedLayoutContext {
3
3
  setSiderCollapsed: (visible: boolean) => void;
4
4
  mobileSiderOpen: boolean;
5
5
  setMobileSiderOpen: (visible: boolean) => void;
6
+ onSiderCollapsed?: (collapsed: boolean) => void;
6
7
  }
7
8
  //# sourceMappingURL=IThemedLayoutContext.d.ts.map
@@ -3,5 +3,6 @@ export interface IThemedLayoutContext {
3
3
  setSiderCollapsed: (visible: boolean) => void;
4
4
  mobileSiderOpen: boolean;
5
5
  setMobileSiderOpen: (visible: boolean) => void;
6
+ onSiderCollapsed?: (collapsed: boolean) => void;
6
7
  }
7
8
  //# sourceMappingURL=IThemedLayoutContext.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"IThemedLayoutContext.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/IThemedLayoutContext.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,cAAc,EAAE,OAAO,CAAC;IACxB,iBAAiB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC9C,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;CAChD"}
1
+ {"version":3,"file":"IThemedLayoutContext.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/IThemedLayoutContext.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACnC,cAAc,EAAE,OAAO,CAAC;IACxB,iBAAiB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC9C,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC/C,gBAAgB,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;CACjD"}
@@ -4,5 +4,6 @@ export declare const ThemedLayoutContext: React.Context<IThemedLayoutContext>;
4
4
  export declare const ThemedLayoutContextProvider: React.FC<{
5
5
  children: ReactNode;
6
6
  initialSiderCollapsed?: boolean;
7
+ onSiderCollapsed?: (collapsed: boolean) => void;
7
8
  }>;
8
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,KAAK,SAAS,EAAY,MAAM,OAAO,CAAC;AAExD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAEnE,eAAO,MAAM,mBAAmB,qCAK9B,CAAC;AAEH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAAE,CAAC;IACjD,QAAQ,EAAE,SAAS,CAAC;IACpB,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC,CAkBA,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,KAAK,SAAS,EAAY,MAAM,OAAO,CAAC;AAExD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAEnE,eAAO,MAAM,mBAAmB,qCAK9B,CAAC;AAEH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAAE,CAAC;IACjD,QAAQ,EAAE,SAAS,CAAC;IACpB,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;CACjD,CAyBA,CAAC"}
@@ -4,5 +4,6 @@ export declare const ThemedLayoutContext: React.Context<IThemedLayoutContext>;
4
4
  export declare const ThemedLayoutContextProvider: React.FC<{
5
5
  children: ReactNode;
6
6
  initialSiderCollapsed?: boolean;
7
+ onSiderCollapsed?: (collapsed: boolean) => void;
7
8
  }>;
8
9
  //# sourceMappingURL=index.d.ts.map
@@ -4,5 +4,6 @@ export declare const ThemedLayoutContext: React.Context<IThemedLayoutContext>;
4
4
  export declare const ThemedLayoutContextProvider: React.FC<{
5
5
  children: ReactNode;
6
6
  initialSiderCollapsed?: boolean;
7
+ onSiderCollapsed?: (collapsed: boolean) => void;
7
8
  }>;
8
9
  //# sourceMappingURL=index.d.ts.map
@@ -4,5 +4,6 @@ export declare const ThemedLayoutContext: React.Context<IThemedLayoutContext>;
4
4
  export declare const ThemedLayoutContextProvider: React.FC<{
5
5
  children: ReactNode;
6
6
  initialSiderCollapsed?: boolean;
7
+ onSiderCollapsed?: (collapsed: boolean) => void;
7
8
  }>;
8
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,KAAK,SAAS,EAAY,MAAM,OAAO,CAAC;AAExD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAEnE,eAAO,MAAM,mBAAmB,qCAK9B,CAAC;AAEH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAAE,CAAC;IACjD,QAAQ,EAAE,SAAS,CAAC;IACpB,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC,CAkBA,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,KAAK,SAAS,EAAY,MAAM,OAAO,CAAC;AAExD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAEnE,eAAO,MAAM,mBAAmB,qCAK9B,CAAC;AAEH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAAE,CAAC;IACjD,QAAQ,EAAE,SAAS,CAAC;IACpB,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,gBAAgB,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;CACjD,CAyBA,CAAC"}