@dartcom/ui-kit 2.9.0 → 2.9.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.
- package/dist/cjs/components/list/list.js +26 -5
- package/dist/cjs/components/list/list.js.map +1 -1
- package/dist/esm/components/list/list.js +1 -1
- package/dist/esm/components/list/list.js.map +1 -1
- package/dist/esm/types/components/list/list.d.ts +6 -2
- package/dist/esm/types/components/list/list.d.ts.map +1 -1
- package/dist/esm/types/components/list/list.stories.d.ts +2 -0
- package/dist/esm/types/components/list/list.stories.d.ts.map +1 -1
- package/dist/esm/types/components/list/stories/constants.d.ts +1 -0
- package/dist/esm/types/components/list/stories/constants.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -3,29 +3,50 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var jsxRuntime = require('react/jsx-runtime');
|
|
6
|
+
var React = require('react');
|
|
6
7
|
var noData = require('../no-data/no-data.js');
|
|
7
8
|
var Box = require('../../node_modules/@mui/material/esm/Box/Box.js');
|
|
8
9
|
var Typography = require('../../node_modules/@mui/material/esm/Typography/Typography.js');
|
|
9
10
|
var List = require('../../node_modules/@mui/material/esm/List/List.js');
|
|
10
11
|
var ListItem = require('../../node_modules/@mui/material/esm/ListItem/ListItem.js');
|
|
11
12
|
|
|
12
|
-
function
|
|
13
|
+
function _interopNamespace(e) {
|
|
14
|
+
if (e && e.__esModule) return e;
|
|
15
|
+
var n = Object.create(null);
|
|
16
|
+
if (e) {
|
|
17
|
+
Object.keys(e).forEach(function (k) {
|
|
18
|
+
if (k !== 'default') {
|
|
19
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
20
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: function () { return e[k]; }
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
n["default"] = e;
|
|
28
|
+
return Object.freeze(n);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
32
|
+
|
|
33
|
+
function CustomList({ items, columnsCount = 1, getContent, title, getKey, onClick, sx, isShowNoData = true, }) {
|
|
13
34
|
const isNoData = items.length === 0;
|
|
14
35
|
return (jsxRuntime.jsxs(Box["default"], { sx: {
|
|
15
36
|
display: 'grid',
|
|
16
37
|
gridTemplateColumns: '1fr',
|
|
17
38
|
gap: '15px',
|
|
39
|
+
...sx?.root,
|
|
18
40
|
}, children: [title ? (jsxRuntime.jsx(Typography["default"], { variant: "h6", noWrap: true, sx: {
|
|
19
41
|
textAlign: 'center',
|
|
20
42
|
fontWeight: 700,
|
|
21
|
-
|
|
43
|
+
...sx?.title,
|
|
44
|
+
}, children: title })) : null, isNoData ? (jsxRuntime.jsx(React__namespace.Fragment, { children: isShowNoData ? jsxRuntime.jsx(noData["default"], {}) : null })) : (jsxRuntime.jsx(List["default"], { sx: {
|
|
22
45
|
display: 'grid',
|
|
23
46
|
gridTemplateColumns: `repeat(${columnsCount}, 1fr)`,
|
|
24
47
|
gap: '15px',
|
|
25
48
|
...sx?.list,
|
|
26
|
-
}, disablePadding: true, children: items.map((item, index) => (jsxRuntime.jsx(ListItem["default"], { onClick: () => {
|
|
27
|
-
onClick?.(item, index);
|
|
28
|
-
}, sx: {
|
|
49
|
+
}, disablePadding: true, children: items.map((item, index) => (jsxRuntime.jsx(ListItem["default"], { onClick: () => onClick?.(item, index), sx: {
|
|
29
50
|
...sx?.item,
|
|
30
51
|
}, disablePadding: true, children: getContent(item, index) }, getKey(item, index)))) }))] }));
|
|
31
52
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.js","sources":["../../../../src/components/list/list.tsx"],"sourcesContent":["import * as React from 'react';\r\nimport { Box, List, ListItem, SxProps, Typography } from '@mui/material';\r\n\r\nimport { NoData } from '../no-data';\r\n\r\ninterface CustomListProps<T> {\r\n items: T[];\r\n columnsCount?: number;\r\n title?: string;\r\n\r\n getContent: (item: T, index: number) => React.JSX.Element;\r\n getKey: (item: T, index: number) =>
|
|
1
|
+
{"version":3,"file":"list.js","sources":["../../../../src/components/list/list.tsx"],"sourcesContent":["import * as React from 'react';\r\nimport { Box, List, ListItem, SxProps, Typography } from '@mui/material';\r\n\r\nimport { StringOrNumber } from '@/types';\r\n\r\nimport { NoData } from '../no-data';\r\n\r\ninterface CustomListProps<T> {\r\n items: T[];\r\n columnsCount?: number;\r\n title?: string;\r\n\r\n getContent: (item: T, index: number) => React.JSX.Element;\r\n getKey: (item: T, index: number) => StringOrNumber;\r\n onClick?: (item: T, index: number) => void;\r\n\r\n sx?: {\r\n root?: SxProps;\r\n list?: SxProps;\r\n title?: SxProps;\r\n item?: SxProps;\r\n };\r\n\r\n isShowNoData?: boolean;\r\n}\r\n\r\nfunction CustomList<T>({\r\n items,\r\n columnsCount = 1,\r\n getContent,\r\n title,\r\n getKey,\r\n onClick,\r\n sx,\r\n\r\n isShowNoData = true,\r\n}: CustomListProps<T>) {\r\n const isNoData = items.length === 0;\r\n\r\n return (\r\n <Box\r\n sx={{\r\n display: 'grid',\r\n\r\n gridTemplateColumns: '1fr',\r\n\r\n gap: '15px',\r\n\r\n ...sx?.root,\r\n }}>\r\n {title ? (\r\n <Typography\r\n variant=\"h6\"\r\n noWrap\r\n sx={{\r\n textAlign: 'center',\r\n\r\n fontWeight: 700,\r\n\r\n ...sx?.title,\r\n }}>\r\n {title}\r\n </Typography>\r\n ) : null}\r\n\r\n {isNoData ? (\r\n <React.Fragment>{isShowNoData ? <NoData /> : null}</React.Fragment>\r\n ) : (\r\n <List\r\n sx={{\r\n display: 'grid',\r\n\r\n gridTemplateColumns: `repeat(${columnsCount}, 1fr)`,\r\n\r\n gap: '15px',\r\n\r\n ...sx?.list,\r\n }}\r\n disablePadding>\r\n {items.map((item, index) => (\r\n <ListItem\r\n key={getKey(item, index)}\r\n onClick={() => onClick?.(item, index)}\r\n sx={{\r\n ...sx?.item,\r\n }}\r\n disablePadding>\r\n {getContent(item, index)}\r\n </ListItem>\r\n ))}\r\n </List>\r\n )}\r\n </Box>\r\n );\r\n}\r\n\r\nexport default CustomList;\r\n"],"names":["_jsxs","Box","_jsx","Typography","React","NoData","List","ListItem"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0BA,SAAS,UAAU,CAAI,EACrB,KAAK,EACL,YAAY,GAAG,CAAC,EAChB,UAAU,EACV,KAAK,EACL,MAAM,EACN,OAAO,EACP,EAAE,EAEF,YAAY,GAAG,IAAI,GACA,EAAA;AACnB,IAAA,MAAM,QAAQ,GAAG,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC;AAEpC,IAAA,QACEA,eAAA,CAACC,cAAG,EAAA,EACF,EAAE,EAAE;AACF,YAAA,OAAO,EAAE,MAAM;AAEf,YAAA,mBAAmB,EAAE,KAAK;AAE1B,YAAA,GAAG,EAAE,MAAM;YAEX,GAAG,EAAE,EAAE,IAAI;AACZ,SAAA,EAAA,QAAA,EAAA,CACA,KAAK,IACJC,cAAC,CAAAC,qBAAU,EACT,EAAA,OAAO,EAAC,IAAI,EACZ,MAAM,EAAA,IAAA,EACN,EAAE,EAAE;AACF,oBAAA,SAAS,EAAE,QAAQ;AAEnB,oBAAA,UAAU,EAAE,GAAG;oBAEf,GAAG,EAAE,EAAE,KAAK;AACb,iBAAA,EAAA,QAAA,EACA,KAAK,EACK,CAAA,IACX,IAAI,EAEP,QAAQ,IACPD,eAACE,gBAAK,CAAC,QAAQ,EAAE,EAAA,QAAA,EAAA,YAAY,GAAGF,cAAC,CAAAG,iBAAM,KAAG,GAAG,IAAI,EAAA,CAAkB,KAEnEH,eAACI,eAAI,EAAA,EACH,EAAE,EAAE;AACF,oBAAA,OAAO,EAAE,MAAM;oBAEf,mBAAmB,EAAE,CAAU,OAAA,EAAA,YAAY,CAAQ,MAAA,CAAA;AAEnD,oBAAA,GAAG,EAAE,MAAM;oBAEX,GAAG,EAAE,EAAE,IAAI;AACZ,iBAAA,EACD,cAAc,EAAA,IAAA,EAAA,QAAA,EACb,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,MACrBJ,cAAA,CAACK,mBAAQ,EAAA,EAEP,OAAO,EAAE,MAAM,OAAO,GAAG,IAAI,EAAE,KAAK,CAAC,EACrC,EAAE,EAAE;wBACF,GAAG,EAAE,EAAE,IAAI;qBACZ,EACD,cAAc,kBACb,UAAU,CAAC,IAAI,EAAE,KAAK,CAAC,EAAA,EANnB,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC,CAOf,CACZ,CAAC,EACG,CAAA,CACR,CACG,EAAA,CAAA,EACN;AACJ;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{jsxs as
|
|
1
|
+
import{jsxs as t,jsx as e}from"react/jsx-runtime";import*as i from"react";import o from"../no-data/no-data.js";import r from"../../node_modules/@mui/material/esm/Box/Box.js";import m from"../../node_modules/@mui/material/esm/Typography/Typography.js";import a from"../../node_modules/@mui/material/esm/List/List.js";import s from"../../node_modules/@mui/material/esm/ListItem/ListItem.js";function n({items:n,columnsCount:l=1,getContent:d,title:p,getKey:u,onClick:g,sx:c,isShowNoData:f=!0}){const x=0===n.length;return t(r,{sx:{display:"grid",gridTemplateColumns:"1fr",gap:"15px",...c?.root},children:[p?e(m,{variant:"h6",noWrap:!0,sx:{textAlign:"center",fontWeight:700,...c?.title},children:p}):null,x?e(i.Fragment,{children:f?e(o,{}):null}):e(a,{sx:{display:"grid",gridTemplateColumns:`repeat(${l}, 1fr)`,gap:"15px",...c?.list},disablePadding:!0,children:n.map((t,i)=>e(s,{onClick:()=>g?.(t,i),sx:{...c?.item},disablePadding:!0,children:d(t,i)},u(t,i)))})]})}export{n as default};
|
|
2
2
|
//# sourceMappingURL=list.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.js","sources":["../../../../src/components/list/list.tsx"],"sourcesContent":["import * as React from 'react';\r\nimport { Box, List, ListItem, SxProps, Typography } from '@mui/material';\r\n\r\nimport { NoData } from '../no-data';\r\n\r\ninterface CustomListProps<T> {\r\n items: T[];\r\n columnsCount?: number;\r\n title?: string;\r\n\r\n getContent: (item: T, index: number) => React.JSX.Element;\r\n getKey: (item: T, index: number) =>
|
|
1
|
+
{"version":3,"file":"list.js","sources":["../../../../src/components/list/list.tsx"],"sourcesContent":["import * as React from 'react';\r\nimport { Box, List, ListItem, SxProps, Typography } from '@mui/material';\r\n\r\nimport { StringOrNumber } from '@/types';\r\n\r\nimport { NoData } from '../no-data';\r\n\r\ninterface CustomListProps<T> {\r\n items: T[];\r\n columnsCount?: number;\r\n title?: string;\r\n\r\n getContent: (item: T, index: number) => React.JSX.Element;\r\n getKey: (item: T, index: number) => StringOrNumber;\r\n onClick?: (item: T, index: number) => void;\r\n\r\n sx?: {\r\n root?: SxProps;\r\n list?: SxProps;\r\n title?: SxProps;\r\n item?: SxProps;\r\n };\r\n\r\n isShowNoData?: boolean;\r\n}\r\n\r\nfunction CustomList<T>({\r\n items,\r\n columnsCount = 1,\r\n getContent,\r\n title,\r\n getKey,\r\n onClick,\r\n sx,\r\n\r\n isShowNoData = true,\r\n}: CustomListProps<T>) {\r\n const isNoData = items.length === 0;\r\n\r\n return (\r\n <Box\r\n sx={{\r\n display: 'grid',\r\n\r\n gridTemplateColumns: '1fr',\r\n\r\n gap: '15px',\r\n\r\n ...sx?.root,\r\n }}>\r\n {title ? (\r\n <Typography\r\n variant=\"h6\"\r\n noWrap\r\n sx={{\r\n textAlign: 'center',\r\n\r\n fontWeight: 700,\r\n\r\n ...sx?.title,\r\n }}>\r\n {title}\r\n </Typography>\r\n ) : null}\r\n\r\n {isNoData ? (\r\n <React.Fragment>{isShowNoData ? <NoData /> : null}</React.Fragment>\r\n ) : (\r\n <List\r\n sx={{\r\n display: 'grid',\r\n\r\n gridTemplateColumns: `repeat(${columnsCount}, 1fr)`,\r\n\r\n gap: '15px',\r\n\r\n ...sx?.list,\r\n }}\r\n disablePadding>\r\n {items.map((item, index) => (\r\n <ListItem\r\n key={getKey(item, index)}\r\n onClick={() => onClick?.(item, index)}\r\n sx={{\r\n ...sx?.item,\r\n }}\r\n disablePadding>\r\n {getContent(item, index)}\r\n </ListItem>\r\n ))}\r\n </List>\r\n )}\r\n </Box>\r\n );\r\n}\r\n\r\nexport default CustomList;\r\n"],"names":["CustomList","items","columnsCount","getContent","title","getKey","onClick","sx","isShowNoData","isNoData","length","_jsxs","Box","display","gridTemplateColumns","gap","root","children","_jsx","Typography","variant","noWrap","textAlign","fontWeight","React","Fragment","NoData","List","list","disablePadding","map","item","index","ListItem"],"mappings":"qYA0BA,SAASA,GAAcC,MACrBA,EAAKC,aACLA,EAAe,EAACC,WAChBA,EAAUC,MACVA,EAAKC,OACLA,EAAMC,QACNA,EAAOC,GACPA,EAAEC,aAEFA,GAAe,IAEf,MAAMC,EAA4B,IAAjBR,EAAMS,OAEvB,OACEC,EAACC,EAAG,CACFL,GAAI,CACFM,QAAS,OAETC,oBAAqB,MAErBC,IAAK,UAEFR,GAAIS,MACRC,SAAA,CACAb,EACCc,EAACC,EACC,CAAAC,QAAQ,KACRC,QAAM,EACNd,GAAI,CACFe,UAAW,SAEXC,WAAY,OAEThB,GAAIH,OACRa,SACAb,IAED,KAEHK,EACCS,EAACM,EAAMC,SAAU,CAAAR,SAAAT,EAAeU,EAACQ,MAAY,OAE7CR,EAACS,EAAI,CACHpB,GAAI,CACFM,QAAS,OAETC,oBAAqB,UAAUZ,UAE/Ba,IAAK,UAEFR,GAAIqB,MAETC,gBAAc,EAAAZ,SACbhB,EAAM6B,IAAI,CAACC,EAAMC,IAChBd,EAACe,EAAQ,CAEP3B,QAAS,IAAMA,IAAUyB,EAAMC,GAC/BzB,GAAI,IACCA,GAAIwB,MAETF,2BACC1B,EAAW4B,EAAMC,IANb3B,EAAO0B,EAAMC,SAahC"}
|
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { SxProps } from '@mui/material';
|
|
3
|
+
import { StringOrNumber } from '@/types';
|
|
3
4
|
interface CustomListProps<T> {
|
|
4
5
|
items: T[];
|
|
5
6
|
columnsCount?: number;
|
|
6
7
|
title?: string;
|
|
7
8
|
getContent: (item: T, index: number) => React.JSX.Element;
|
|
8
|
-
getKey: (item: T, index: number) =>
|
|
9
|
+
getKey: (item: T, index: number) => StringOrNumber;
|
|
9
10
|
onClick?: (item: T, index: number) => void;
|
|
10
11
|
sx?: {
|
|
12
|
+
root?: SxProps;
|
|
11
13
|
list?: SxProps;
|
|
14
|
+
title?: SxProps;
|
|
12
15
|
item?: SxProps;
|
|
13
16
|
};
|
|
17
|
+
isShowNoData?: boolean;
|
|
14
18
|
}
|
|
15
|
-
declare function CustomList<T>({ items, columnsCount, getContent, title, getKey, onClick, sx, }: CustomListProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
declare function CustomList<T>({ items, columnsCount, getContent, title, getKey, onClick, sx, isShowNoData, }: CustomListProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
16
20
|
export default CustomList;
|
|
17
21
|
//# sourceMappingURL=list.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../../src/components/list/list.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAuB,OAAO,EAAc,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../../src/components/list/list.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAuB,OAAO,EAAc,MAAM,eAAe,CAAC;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAIzC,UAAU,eAAe,CAAC,CAAC;IACzB,KAAK,EAAE,CAAC,EAAE,CAAC;IACX,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,UAAU,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;IAC1D,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,cAAc,CAAC;IACnD,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAE3C,EAAE,CAAC,EAAE;QACH,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,IAAI,CAAC,EAAE,OAAO,CAAC;KAChB,CAAC;IAEF,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,iBAAS,UAAU,CAAC,CAAC,EAAE,EACrB,KAAK,EACL,YAAgB,EAChB,UAAU,EACV,KAAK,EACL,MAAM,EACN,OAAO,EACP,EAAE,EAEF,YAAmB,GACpB,EAAE,eAAe,CAAC,CAAC,CAAC,2CA0DpB;AAED,eAAe,UAAU,CAAC"}
|
|
@@ -5,5 +5,7 @@ export default meta;
|
|
|
5
5
|
type Story = StoryObj<typeof meta>;
|
|
6
6
|
export declare const Primary: Story;
|
|
7
7
|
export declare const Empty: Story;
|
|
8
|
+
export declare const EmptyAndTitle: Story;
|
|
9
|
+
export declare const EmptyNoShow: Story;
|
|
8
10
|
export declare const WithTitle: Story;
|
|
9
11
|
//# sourceMappingURL=list.stories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.stories.d.ts","sourceRoot":"","sources":["../../../../../src/components/list/list.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAIvD,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,CAAC;AAEzB,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,IAAI,CAO3B,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAWrB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"list.stories.d.ts","sourceRoot":"","sources":["../../../../../src/components/list/list.stories.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAIvD,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,CAAC;AAEzB,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,IAAI,CAO3B,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAWrB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAWnB,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAY3B,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAYzB,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAYvB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../../src/components/list/stories/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,eAAO,MAAM,YAAY,EAAE,SAAS,EAenC,CAAC"}
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../../../src/components/list/stories/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEpC,eAAO,MAAM,UAAU,EAAE,SAAS,EAAO,CAAC;AAE1C,eAAO,MAAM,YAAY,EAAE,SAAS,EAenC,CAAC"}
|