@refinedev/antd 5.6.0 → 5.9.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/CHANGELOG.md +45 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/themedLayout/header/index.d.ts +3 -0
- package/dist/components/themedLayout/header/index.d.ts.map +1 -1
- package/dist/components/themedLayout/index.d.ts +3 -0
- package/dist/components/themedLayout/index.d.ts.map +1 -1
- package/dist/components/themedLayout/sider/index.d.ts +3 -0
- package/dist/components/themedLayout/sider/index.d.ts.map +1 -1
- package/dist/components/themedLayout/title/index.d.ts +3 -0
- package/dist/components/themedLayout/title/index.d.ts.map +1 -1
- package/dist/components/themedLayoutV2/header/index.d.ts +4 -0
- package/dist/components/themedLayoutV2/header/index.d.ts.map +1 -0
- package/dist/components/themedLayoutV2/index.d.ts +4 -0
- package/dist/components/themedLayoutV2/index.d.ts.map +1 -0
- package/dist/components/themedLayoutV2/sider/index.d.ts +4 -0
- package/dist/components/themedLayoutV2/sider/index.d.ts.map +1 -0
- package/dist/components/themedLayoutV2/sider/styles.d.ts +3 -0
- package/dist/components/themedLayoutV2/sider/styles.d.ts.map +1 -0
- package/dist/components/themedLayoutV2/title/index.d.ts +4 -0
- package/dist/components/themedLayoutV2/title/index.d.ts.map +1 -0
- package/dist/components/themedLayoutV2/types.d.ts +3 -0
- package/dist/components/themedLayoutV2/types.d.ts.map +1 -0
- package/dist/contexts/index.d.ts +2 -0
- package/dist/contexts/index.d.ts.map +1 -0
- package/dist/contexts/themedLayoutContext/IThemedLayoutContext.d.ts +7 -0
- package/dist/contexts/themedLayoutContext/IThemedLayoutContext.d.ts.map +1 -0
- package/dist/contexts/themedLayoutContext/index.d.ts +7 -0
- package/dist/contexts/themedLayoutContext/index.d.ts.map +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/useSiderVisible/index.d.ts +4 -0
- package/dist/hooks/useSiderVisible/index.d.ts.map +1 -0
- package/dist/iife/index.js +12 -6
- package/dist/iife/index.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/refine.config.js +122 -1
- package/src/components/index.ts +6 -0
- package/src/components/themedLayout/header/index.tsx +3 -0
- package/src/components/themedLayout/index.tsx +3 -0
- package/src/components/themedLayout/sider/index.tsx +3 -0
- package/src/components/themedLayout/title/index.tsx +3 -0
- package/src/components/themedLayoutV2/header/index.tsx +44 -0
- package/src/components/themedLayoutV2/index.tsx +44 -0
- package/src/components/themedLayoutV2/sider/index.tsx +324 -0
- package/src/components/themedLayoutV2/sider/styles.ts +9 -0
- package/src/components/themedLayoutV2/title/index.tsx +85 -0
- package/src/components/themedLayoutV2/types.ts +13 -0
- package/src/contexts/index.ts +4 -0
- package/src/contexts/themedLayoutContext/IThemedLayoutContext.ts +6 -0
- package/src/contexts/themedLayoutContext/index.tsx +28 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useSiderVisible/index.ts +22 -0
- package/src/index.tsx +1 -0
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,50 @@
|
|
1
1
|
# @pankod/refine-antd
|
2
2
|
|
3
|
+
## 5.9.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- [#4193](https://github.com/refinedev/refine/pull/4193) [`3d28fccc1ca`](https://github.com/refinedev/refine/commit/3d28fccc1ca14cdf316d518935cb6c17500c62a4) Thanks [@yildirayunlu](https://github.com/yildirayunlu)! - feat: add `ThemedLayoutV2` component and `useSiderVisible` hook
|
8
|
+
|
9
|
+
`ThemeLayout` is deprecated. Added `ThemedLayoutV2` instead. This update fixed some UI problems in the layout. Also, with the new `useSiderVisible` hook, it's easier to collapse/uncollapse the `Sider`.
|
10
|
+
|
11
|
+
See here for detailed [migration guideline](https://refine.dev/docs/api-reference/antd/components/antd-themed-layout/#migrate-themedlayout-to-themedlayoutv2).
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- Updated dependencies [[`deec38a034a`](https://github.com/refinedev/refine/commit/deec38a034a0b5ab2d7842e428f6fc3a1b8561fa)]:
|
16
|
+
- @refinedev/ui-types@1.10.0
|
17
|
+
|
18
|
+
## 5.8.0
|
19
|
+
|
20
|
+
### Minor Changes
|
21
|
+
|
22
|
+
- [#4193](https://github.com/refinedev/refine/pull/4193) [`3d28fccc1ca`](https://github.com/refinedev/refine/commit/3d28fccc1ca14cdf316d518935cb6c17500c62a4) Thanks [@yildirayunlu](https://github.com/yildirayunlu)! - feat: add `ThemedLayoutV2` component and `useSiderVisible` hook
|
23
|
+
|
24
|
+
`ThemeLayout` is deprecated. Added `ThemedLayoutV2` instead. This update fixed some UI problems in the layout. Also, with the new `useSiderVisible` hook, it's easier to collapse/uncollapse the `Sider`.
|
25
|
+
|
26
|
+
See here for detailed [migration guideline](https://refine.dev/docs/api-reference/antd/components/antd-themed-layout/#migrate-themedlayout-to-themedlayoutv2).
|
27
|
+
|
28
|
+
### Patch Changes
|
29
|
+
|
30
|
+
- Updated dependencies [[`deec38a034a`](https://github.com/refinedev/refine/commit/deec38a034a0b5ab2d7842e428f6fc3a1b8561fa)]:
|
31
|
+
- @refinedev/ui-types@1.9.0
|
32
|
+
|
33
|
+
## 5.7.0
|
34
|
+
|
35
|
+
### Minor Changes
|
36
|
+
|
37
|
+
- [#4193](https://github.com/refinedev/refine/pull/4193) [`3d28fccc1ca`](https://github.com/refinedev/refine/commit/3d28fccc1ca14cdf316d518935cb6c17500c62a4) Thanks [@yildirayunlu](https://github.com/yildirayunlu)! - feat: add `ThemedLayoutV2` component and `useSiderVisible` hook
|
38
|
+
|
39
|
+
`ThemeLayout` is deprecated. Added `ThemedLayoutV2` instead. This update fixed some UI problems in the layout. Also, with the new `useSiderVisible` hook, it's easier to collapse/uncollapse the `Sider`.
|
40
|
+
|
41
|
+
See here for detailed [migration guideline](https://refine.dev/docs/api-reference/antd/components/antd-themed-layout/#migrate-themedlayout-to-themedlayoutv2).
|
42
|
+
|
43
|
+
### Patch Changes
|
44
|
+
|
45
|
+
- Updated dependencies [[`deec38a034a`](https://github.com/refinedev/refine/commit/deec38a034a0b5ab2d7842e428f6fc3a1b8561fa)]:
|
46
|
+
- @refinedev/ui-types@1.8.0
|
47
|
+
|
3
48
|
## 5.6.0
|
4
49
|
|
5
50
|
### Minor Changes
|
@@ -8,6 +8,11 @@ export { ThemedHeader } from "./themedLayout/header";
|
|
8
8
|
export { ThemedSider } from "./themedLayout/sider";
|
9
9
|
export { ThemedTitle } from "./themedLayout/title";
|
10
10
|
export * from "./themedLayout/types";
|
11
|
+
export { ThemedLayoutV2 } from "./themedLayoutV2";
|
12
|
+
export { ThemedHeaderV2 } from "./themedLayoutV2/header";
|
13
|
+
export { ThemedSiderV2 } from "./themedLayoutV2/sider";
|
14
|
+
export { ThemedTitleV2 } from "./themedLayoutV2/title";
|
15
|
+
export * from "./themedLayoutV2/types";
|
11
16
|
export * from "./buttons";
|
12
17
|
export * from "./crud";
|
13
18
|
export * from "./fields";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAE/B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,cAAc,sBAAsB,CAAC;AAErC,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAE/B,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,cAAc,sBAAsB,CAAC;AAErC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,cAAc,wBAAwB,CAAC;AAEvC,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
|
@@ -1,4 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { RefineThemedLayoutHeaderProps } from "../types";
|
3
|
+
/**
|
4
|
+
* @deprecated It is recommended to use the improved `ThemedLayoutV2`. Review migration guidelines. https://refine.dev/docs/api-reference/antd/components/antd-themed-layout/#migrate-themedlayout-to-themedlayoutv2
|
5
|
+
*/
|
3
6
|
export declare const ThemedHeader: React.FC<RefineThemedLayoutHeaderProps>;
|
4
7
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayout/header/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,6BAA6B,EAAE,MAAM,UAAU,CAAC;AAKzD,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,6BAA6B,CAmChE,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayout/header/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,6BAA6B,EAAE,MAAM,UAAU,CAAC;AAKzD;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,6BAA6B,CAmChE,CAAC"}
|
@@ -1,4 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { RefineThemedLayoutProps } from "./types";
|
3
|
+
/**
|
4
|
+
* @deprecated It is recommended to use the improved `ThemedLayoutV2`. Review migration guidelines. https://refine.dev/docs/api-reference/antd/components/antd-themed-layout/#migrate-themedlayout-to-themedlayoutv2
|
5
|
+
*/
|
3
6
|
export declare const ThemedLayout: React.FC<RefineThemedLayoutProps>;
|
4
7
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/themedLayout/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;AAElD,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAiC1D,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/themedLayout/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAiC1D,CAAC"}
|
@@ -1,4 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { RefineThemedLayoutSiderProps } from "../types";
|
3
|
+
/**
|
4
|
+
* @deprecated It is recommended to use the improved `ThemedLayoutV2`. Review migration guidelines. https://refine.dev/docs/api-reference/antd/components/antd-themed-layout/#migrate-themedlayout-to-themedlayoutv2
|
5
|
+
*/
|
3
6
|
export declare const ThemedSider: React.FC<RefineThemedLayoutSiderProps>;
|
4
7
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayout/sider/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AA4BxC,OAAO,EAAE,4BAA4B,EAAE,MAAM,UAAU,CAAC;AAMxD,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CA0R9D,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayout/sider/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AA4BxC,OAAO,EAAE,4BAA4B,EAAE,MAAM,UAAU,CAAC;AAMxD;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CA0R9D,CAAC"}
|
@@ -1,4 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { RefineLayoutThemedTitleProps } from "../types";
|
3
|
+
/**
|
4
|
+
* @deprecated It is recommended to use the improved `ThemedLayoutV2`. Review migration guidelines. https://refine.dev/docs/api-reference/antd/components/antd-themed-layout/#migrate-themedlayout-to-themedlayoutv2
|
5
|
+
*/
|
3
6
|
export declare const ThemedTitle: React.FC<RefineLayoutThemedTitleProps>;
|
4
7
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayout/title/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,4BAA4B,EAAE,MAAM,UAAU,CAAC;AA4BxD,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CAqD9D,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayout/title/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,4BAA4B,EAAE,MAAM,UAAU,CAAC;AA4BxD;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CAqD9D,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayoutV2/header/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,+BAA+B,EAAE,MAAM,UAAU,CAAC;AAK3D,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,+BAA+B,CAmCpE,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/themedLayoutV2/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AAGpD,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAmC9D,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayoutV2/sider/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AA4B1B,OAAO,EAAE,8BAA8B,EAAE,MAAM,UAAU,CAAC;AAO1D,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,8BAA8B,CAgSlE,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayoutV2/sider/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEtC,eAAO,MAAM,kBAAkB,EAAE,aAMhC,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/themedLayoutV2/title/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,4BAA4B,EAAE,MAAM,UAAU,CAAC;AA4BxD,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CAqDhE,CAAC"}
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import type { RefineThemedLayoutV2SiderProps, RefineThemedLayoutV2HeaderProps, RefineThemedLayoutV2Props, RefineLayoutThemedTitleProps } from "@refinedev/ui-types";
|
2
|
+
export type { RefineLayoutThemedTitleProps, RefineThemedLayoutV2SiderProps, RefineThemedLayoutV2HeaderProps, RefineThemedLayoutV2Props, };
|
3
|
+
//# sourceMappingURL=types.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/themedLayoutV2/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,8BAA8B,EAC9B,+BAA+B,EAC/B,yBAAyB,EACzB,4BAA4B,EAC/B,MAAM,qBAAqB,CAAC;AAE7B,YAAY,EACR,4BAA4B,EAC5B,8BAA8B,EAC9B,+BAA+B,EAC/B,yBAAyB,GAC5B,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/contexts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,mBAAmB,EACnB,2BAA2B,GAC9B,MAAM,uBAAuB,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"IThemedLayoutContext.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/IThemedLayoutContext.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,oBAAoB;IACjC,YAAY,EAAE,OAAO,CAAC;IACtB,kBAAkB,EAAE,OAAO,CAAC;IAC5B,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC7C,qBAAqB,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;CACtD"}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import React, { ReactNode } from "react";
|
2
|
+
import { IThemedLayoutContext } from "./IThemedLayoutContext";
|
3
|
+
export declare const ThemedLayoutContext: React.Context<IThemedLayoutContext>;
|
4
|
+
export declare const ThemedLayoutContextProvider: React.FC<{
|
5
|
+
children: ReactNode;
|
6
|
+
}>;
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contexts/themedLayoutContext/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAY,MAAM,OAAO,CAAC;AAEnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D,eAAO,MAAM,mBAAmB,qCAG9B,CAAC;AAEH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAAE,CAAC;IAAE,QAAQ,EAAE,SAAS,CAAA;CAAE,CAkBzE,CAAC"}
|