@refinedev/antd 5.44.0 → 5.45.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 (59) hide show
  1. package/CHANGELOG.md +148 -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/definitions/filter-mappers/index.d.cts +1 -1
  32. package/dist/definitions/filter-mappers/index.d.cts.map +1 -1
  33. package/dist/definitions/filter-mappers/index.d.mts +1 -1
  34. package/dist/definitions/filter-mappers/index.d.mts.map +1 -1
  35. package/dist/definitions/filter-mappers/index.d.ts +1 -1
  36. package/dist/definitions/filter-mappers/index.d.ts.map +1 -1
  37. package/dist/hooks/useThemedLayoutContext/index.d.cts +1 -1
  38. package/dist/hooks/useThemedLayoutContext/index.d.cts.map +1 -1
  39. package/dist/hooks/useThemedLayoutContext/index.d.mts +1 -1
  40. package/dist/hooks/useThemedLayoutContext/index.d.mts.map +1 -1
  41. package/dist/hooks/useThemedLayoutContext/index.d.ts +1 -1
  42. package/dist/hooks/useThemedLayoutContext/index.d.ts.map +1 -1
  43. package/dist/index.cjs +1 -1
  44. package/dist/index.cjs.map +1 -1
  45. package/dist/index.mjs +1 -1
  46. package/dist/index.mjs.map +1 -1
  47. package/package.json +7 -7
  48. package/src/components/breadcrumb/index.tsx +2 -3
  49. package/src/components/buttons/clone/index.tsx +6 -3
  50. package/src/components/buttons/create/index.tsx +7 -4
  51. package/src/components/buttons/delete/index.tsx +6 -5
  52. package/src/components/buttons/edit/index.tsx +6 -3
  53. package/src/components/buttons/list/index.tsx +7 -4
  54. package/src/components/buttons/show/index.tsx +6 -3
  55. package/src/components/themedLayoutV2/index.tsx +5 -1
  56. package/src/contexts/themedLayoutContext/IThemedLayoutContext.ts +1 -0
  57. package/src/contexts/themedLayoutContext/index.tsx +10 -2
  58. package/src/definitions/filter-mappers/index.ts +1 -1
  59. package/src/hooks/useThemedLayoutContext/index.ts +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,153 @@
1
1
  # @refinedev/antd
2
2
 
3
+ ## 5.45.3
4
+
5
+ ### Patch Changes
6
+
7
+ 📢 **Refine Community Release** 📢
8
+
9
+ - fix(types): remove path aliases from type imports
10
+
11
+ Since typescript doesn't resolve and replace path aliases, using them for the type imports will cause `d.ts` files to reference unresolvable paths and types.
12
+
13
+ While this doesn't break everything, it breaks the types in places where the path aliases are used for type imports.
14
+
15
+ This change removes the path aliases from the type imports and replaces them with relative imports.
16
+
17
+ ## 5.45.2
18
+
19
+ ### Patch Changes
20
+
21
+ ⚡ **Refine Enterprise Release** ⚡
22
+
23
+ - [#6683](https://github.com/refinedev/refine/pull/6683) [`a12a0821e3c573386c2a8eea4ac1582cc46dd26d`](https://github.com/refinedev/refine/commit/a12a0821e3c573386c2a8eea4ac1582cc46dd26d) Thanks [@aliemir](https://github.com/aliemir)! - fix(types): remove path aliases from type imports
24
+
25
+ Since typescript doesn't resolve and replace path aliases, using them for the type imports will cause `d.ts` files to reference unresolvable paths and types.
26
+
27
+ While this doesn't break everything, it breaks the types in places where the path aliases are used for type imports.
28
+
29
+ This change removes the path aliases from the type imports and replaces them with relative imports.
30
+
31
+ ## 5.45.1
32
+
33
+ ### Patch Changes
34
+
35
+ 📢 **Refine Community Release** 📢
36
+
37
+ - chore: update package descriptions
38
+
39
+ 📢 **Refine Community Release** 📢
40
+
41
+ - fix: UI buttons doesn't respect `hidden` prop.
42
+ From now on, `hidden` prop will work as expected on all [UI buttons](https://refine.dev/docs/guides-concepts/ui-libraries/#buttons).
43
+
44
+ UI Buttons:
45
+
46
+ - `CreateButton`
47
+ - `ShowButton`
48
+ - `ListButton`
49
+ - `EditButton`
50
+ - `DeleteButton`
51
+ - `CloneButton`
52
+
53
+ Resolves [#6513](https://github.com/refinedev/refine/issues/6513)
54
+
55
+ 📢 **Refine Community Release** 📢
56
+
57
+ - fix: UI buttons doesn't respect `disabled` prop.
58
+ From now on, `disabled` prop will work as expected on all [UI buttons](https://refine.dev/docs/guides-concepts/ui-libraries/#buttons).
59
+
60
+ UI Buttons:
61
+
62
+ - `CreateButton`
63
+ - `ShowButton`
64
+ - `ListButton`
65
+ - `EditButton`
66
+ - `DeleteButton`
67
+ - `CloneButton`
68
+
69
+ Resolves [#6513](https://github.com/refinedev/refine/issues/6513)
70
+
71
+ 📢 **Refine Community Release** 📢
72
+
73
+ - feat: React Router v7 support added.
74
+
75
+ 🚨 These packages are not dependent on `react-router`. However, they use the `react-router` package for testing purposes on [Jest](https://jestjs.io/) environment.
76
+
77
+ 📢 **Refine Community Release** 📢
78
+
79
+ - feat: added `minItems` prop to specify the minimum number of items required for rendering breadcrumbs. #6497
80
+
81
+ Resolves [#6497](https://github.com/refinedev/refine/issues/6497)
82
+
83
+ 📢 **Refine Community Release** 📢
84
+
85
+ - 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
86
+
87
+ - Updated dependencies []:
88
+ - @refinedev/ui-types@1.23.1
89
+
90
+ ## 5.45.0
91
+
92
+ ### Minor Changes
93
+
94
+ ⚡ **Refine Enterprise Release** ⚡
95
+
96
+ - [#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
97
+
98
+ Resolves [#6497](https://github.com/refinedev/refine/issues/6497)
99
+
100
+ ⚡ **Refine Enterprise Release** ⚡
101
+
102
+ - [#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
103
+
104
+ ### Patch Changes
105
+
106
+ ⚡ **Refine Enterprise Release** ⚡
107
+
108
+ - [#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
109
+
110
+ ⚡ **Refine Enterprise Release** ⚡
111
+
112
+ - [#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.
113
+ From now on, `hidden` prop will work as expected on all [UI buttons](https://refine.dev/docs/guides-concepts/ui-libraries/#buttons).
114
+
115
+ UI Buttons:
116
+
117
+ - `CreateButton`
118
+ - `ShowButton`
119
+ - `ListButton`
120
+ - `EditButton`
121
+ - `DeleteButton`
122
+ - `CloneButton`
123
+
124
+ Resolves [#6513](https://github.com/refinedev/refine/issues/6513)
125
+
126
+ ⚡ **Refine Enterprise Release** ⚡
127
+
128
+ - [#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.
129
+ From now on, `disabled` prop will work as expected on all [UI buttons](https://refine.dev/docs/guides-concepts/ui-libraries/#buttons).
130
+
131
+ UI Buttons:
132
+
133
+ - `CreateButton`
134
+ - `ShowButton`
135
+ - `ListButton`
136
+ - `EditButton`
137
+ - `DeleteButton`
138
+ - `CloneButton`
139
+
140
+ Resolves [#6513](https://github.com/refinedev/refine/issues/6513)
141
+
142
+ ⚡ **Refine Enterprise Release** ⚡
143
+
144
+ - [#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.
145
+
146
+ 🚨 These packages are not dependent on `react-router`. However, they use the `react-router` package for testing purposes on [Jest](https://jestjs.io/) environment.
147
+
148
+ - 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)]:
149
+ - @refinedev/ui-types@1.23.0
150
+
3
151
  ## 5.44.0
4
152
 
5
153
  ### 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"}
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { FilterDropdownProps, MapValueEvent } from "@components/table/components";
2
+ import type { FilterDropdownProps, MapValueEvent } from "../../components/table/components";
3
3
  import dayjs from "dayjs";
4
4
  /**
5
5
  * It is a mapper function for the <DatePicker.RangePicker /> filter.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/definitions/filter-mappers/index.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,aAAa,EACd,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,uBAAuB,iBACpB,mBAAmB,CAAC,cAAc,CAAC,SAC1C,aAAa,8DAuBrB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/definitions/filter-mappers/index.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,aAAa,EACd,MAAM,mCAAmC,CAAC;AAC3C,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,uBAAuB,iBACpB,mBAAmB,CAAC,cAAc,CAAC,SAC1C,aAAa,8DAuBrB,CAAC"}
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { FilterDropdownProps, MapValueEvent } from "@components/table/components";
2
+ import type { FilterDropdownProps, MapValueEvent } from "../../components/table/components";
3
3
  import dayjs from "dayjs";
4
4
  /**
5
5
  * It is a mapper function for the <DatePicker.RangePicker /> filter.
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { FilterDropdownProps, MapValueEvent } from "@components/table/components";
2
+ import type { FilterDropdownProps, MapValueEvent } from "../../components/table/components";
3
3
  import dayjs from "dayjs";
4
4
  /**
5
5
  * It is a mapper function for the <DatePicker.RangePicker /> filter.
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { FilterDropdownProps, MapValueEvent } from "@components/table/components";
2
+ import type { FilterDropdownProps, MapValueEvent } from "../../components/table/components";
3
3
  import dayjs from "dayjs";
4
4
  /**
5
5
  * It is a mapper function for the <DatePicker.RangePicker /> filter.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/definitions/filter-mappers/index.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,aAAa,EACd,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,uBAAuB,iBACpB,mBAAmB,CAAC,cAAc,CAAC,SAC1C,aAAa,8DAuBrB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/definitions/filter-mappers/index.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,aAAa,EACd,MAAM,mCAAmC,CAAC;AAC3C,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,uBAAuB,iBACpB,mBAAmB,CAAC,cAAc,CAAC,SAC1C,aAAa,8DAuBrB,CAAC"}
@@ -1,4 +1,4 @@
1
- import type { IThemedLayoutContext } from "@contexts/themedLayoutContext/IThemedLayoutContext";
1
+ import type { IThemedLayoutContext } from "../../contexts/themedLayoutContext/IThemedLayoutContext";
2
2
  export type UseThemedLayoutContextType = IThemedLayoutContext;
3
3
  export declare const useThemedLayoutContext: () => UseThemedLayoutContextType;
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/useThemedLayoutContext/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAC;AAE/F,MAAM,MAAM,0BAA0B,GAAG,oBAAoB,CAAC;AAE9D,eAAO,MAAM,sBAAsB,QAAO,0BAczC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/useThemedLayoutContext/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,yDAAyD,CAAC;AAEpG,MAAM,MAAM,0BAA0B,GAAG,oBAAoB,CAAC;AAE9D,eAAO,MAAM,sBAAsB,QAAO,0BAczC,CAAC"}
@@ -1,4 +1,4 @@
1
- import type { IThemedLayoutContext } from "@contexts/themedLayoutContext/IThemedLayoutContext";
1
+ import type { IThemedLayoutContext } from "../../contexts/themedLayoutContext/IThemedLayoutContext";
2
2
  export type UseThemedLayoutContextType = IThemedLayoutContext;
3
3
  export declare const useThemedLayoutContext: () => UseThemedLayoutContextType;
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { IThemedLayoutContext } from "@contexts/themedLayoutContext/IThemedLayoutContext";
1
+ import type { IThemedLayoutContext } from "../../contexts/themedLayoutContext/IThemedLayoutContext";
2
2
  export type UseThemedLayoutContextType = IThemedLayoutContext;
3
3
  export declare const useThemedLayoutContext: () => UseThemedLayoutContextType;
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,4 @@
1
- import type { IThemedLayoutContext } from "@contexts/themedLayoutContext/IThemedLayoutContext";
1
+ import type { IThemedLayoutContext } from "../../contexts/themedLayoutContext/IThemedLayoutContext";
2
2
  export type UseThemedLayoutContextType = IThemedLayoutContext;
3
3
  export declare const useThemedLayoutContext: () => UseThemedLayoutContextType;
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/useThemedLayoutContext/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oDAAoD,CAAC;AAE/F,MAAM,MAAM,0BAA0B,GAAG,oBAAoB,CAAC;AAE9D,eAAO,MAAM,sBAAsB,QAAO,0BAczC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/useThemedLayoutContext/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,yDAAyD,CAAC;AAEpG,MAAM,MAAM,0BAA0B,GAAG,oBAAoB,CAAC;AAE9D,eAAO,MAAM,sBAAsB,QAAO,0BAczC,CAAC"}