@televet/kibble-ui 5.0.26-franklin.2 → 5.0.26-franklin.4
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/chunks/{calendar.component-C0vLCSZ4.js → calendar.component-CSvl4JHD.js} +10 -20
- package/dist/chunks/calendar.component-CSvl4JHD.js.map +1 -0
- package/dist/chunks/calendar.component-DMoLaJfB.js.map +1 -1
- package/dist/esm/components/Calendar/index.js +1 -1
- package/dist/esm/components/index.js +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunks/calendar.component-C0vLCSZ4.js.map +0 -1
|
@@ -12,28 +12,18 @@ const f = ({
|
|
|
12
12
|
const e = b(/* @__PURE__ */ new Date());
|
|
13
13
|
s(e), o(e), t?.();
|
|
14
14
|
};
|
|
15
|
-
return /* @__PURE__ */ a.jsx(
|
|
16
|
-
|
|
15
|
+
return /* @__PURE__ */ a.jsx(i, { "data-testid": r, bg: "background.secondaryAlpha", borderRadius: "md", p: 2, w: "full", children: /* @__PURE__ */ a.jsx(
|
|
16
|
+
x,
|
|
17
17
|
{
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
borderRadius: "md",
|
|
21
|
-
p: 2,
|
|
18
|
+
variant: "ghostNeutral",
|
|
19
|
+
size: "md",
|
|
22
20
|
w: "full",
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
size: "md",
|
|
28
|
-
w: "full",
|
|
29
|
-
border: "1px solid",
|
|
30
|
-
borderColor: "border.default",
|
|
31
|
-
onClick: d,
|
|
32
|
-
children: "Today"
|
|
33
|
-
}
|
|
34
|
-
)
|
|
21
|
+
border: "1px solid",
|
|
22
|
+
borderColor: "border.default",
|
|
23
|
+
onClick: d,
|
|
24
|
+
children: "Today"
|
|
35
25
|
}
|
|
36
|
-
);
|
|
26
|
+
) });
|
|
37
27
|
}, g = ({
|
|
38
28
|
["data-testid"]: t = "kibble-calendar",
|
|
39
29
|
withDateRange: r = !0,
|
|
@@ -51,4 +41,4 @@ export {
|
|
|
51
41
|
g as C,
|
|
52
42
|
f as a
|
|
53
43
|
};
|
|
54
|
-
//# sourceMappingURL=calendar.component-
|
|
44
|
+
//# sourceMappingURL=calendar.component-CSvl4JHD.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar.component-CSvl4JHD.js","sources":["../../src/components/Calendar/calendarTodayButton.component.tsx","../../src/components/Calendar/calendar.component.tsx"],"sourcesContent":["import React from 'react';\nimport { Box } from '@chakra-ui/react/box';\nimport { Button } from 'components/Button/button.component';\nimport { useDatePickerContext } from 'components/DatePicker/context/datePicker.context';\nimport startOfDay from 'date-fns/startOfDay';\n\nexport interface CalendarTodayButtonProps {\n /** Callback fired after today is selected. */\n onTodayClick?: () => void;\n /** Data test id for the today button container.\n * @default kibble-calendar-today-button\n */\n 'data-testid'?: string;\n}\n\nexport const CalendarTodayButton = ({\n onTodayClick,\n ['data-testid']: dataTestId = 'kibble-calendar-today-button',\n}: CalendarTodayButtonProps): React.JSX.Element => {\n const { goToDate, onDateSelect } = useDatePickerContext();\n\n const handleClick = (): void => {\n const today = startOfDay(new Date());\n goToDate(today);\n onDateSelect(today);\n onTodayClick?.();\n };\n\n return (\n <Box data-testid={dataTestId} bg=\"background.secondaryAlpha\" borderRadius=\"md\" p={2} w=\"full\">\n <Button\n variant=\"ghostNeutral\"\n size=\"md\"\n w=\"full\"\n border=\"1px solid\"\n borderColor=\"border.default\"\n onClick={handleClick}\n >\n Today\n </Button>\n </Box>\n );\n};\n","import React from 'react';\nimport { Box } from '@chakra-ui/react/box';\nimport { DatePickerCalendar } from 'components/DatePicker/components/DatePickerCalendar/datePickerCalendar.component';\nimport { DatePickerHeader } from 'components/DatePicker/components/DatePickerHeader/datePickerHeader.component';\nimport { Divider } from 'components/Divider';\nimport { DatePickerProvider } from 'components/DatePicker/context/datePicker.provider';\nimport { DateProps } from 'components/DatePicker/datePicker.types';\nimport { CalendarTodayButton } from './calendarTodayButton.component';\n\nexport interface CalendarProps extends DateProps {\n /** Data test id for the calendar.\n * @default kibble-calendar\n */\n 'data-testid'?: string;\n /**\n * If true, the calendar will allow for a date range selection.\n * @default true\n */\n withDateRange?: boolean;\n /**\n * If true, the calendar will show the month and year selectors in the header.\n * @default false\n */\n withHeaderTriggers?: boolean;\n /**\n * If true, a \"Today\" button is rendered below the calendar grid.\n * Clicking it selects today's date and navigates to the current month.\n * @default false\n */\n showTodayButton?: boolean;\n /**\n * Callback fired after the \"Today\" button is clicked.\n * Only relevant when showTodayButton is true.\n */\n onTodayClick?: () => void;\n}\n\nexport const Calendar = ({\n ['data-testid']: dataTestId = 'kibble-calendar',\n withDateRange = true,\n withHeaderTriggers = false,\n showTodayButton = false,\n onTodayClick,\n ...rest\n}: CalendarProps): React.JSX.Element => {\n return (\n <Box className=\"Calendar\" data-testid={dataTestId} maxW=\"360px\">\n <DatePickerProvider withDateRange={withDateRange} {...rest} standalone>\n <DatePickerHeader withTriggers={withHeaderTriggers} />\n <Divider />\n <DatePickerCalendar />\n {showTodayButton && <CalendarTodayButton onTodayClick={onTodayClick} />}\n </DatePickerProvider>\n </Box>\n );\n};\n"],"names":["CalendarTodayButton","onTodayClick","dataTestId","goToDate","onDateSelect","useDatePickerContext","handleClick","today","startOfDay","jsx","Box","Button","Calendar","withDateRange","withHeaderTriggers","showTodayButton","rest","jsxs","DatePickerProvider","DatePickerHeader","Divider","DatePickerCalendar"],"mappings":";;;;;;AAeO,MAAMA,IAAsB,CAAC;AAAA,EAClC,cAAAC;AAAA,EACA,CAAC,gBAAgBC,IAAa;AAChC,MAAmD;AACjD,QAAM,EAAE,UAAAC,GAAU,cAAAC,EAAa,IAAIC,EAAqB,GAElDC,IAAc,MAAY;AAC9B,UAAMC,IAAQC,EAAe,oBAAA,MAAM;AACnC,IAAAL,EAASI,CAAK,GACdH,EAAaG,CAAK,GACHN,IAAA;AAAA,EACjB;AAGE,SAAAQ,gBAAAA,EAAAA,IAACC,GAAI,EAAA,eAAaR,GAAY,IAAG,6BAA4B,cAAa,MAAK,GAAG,GAAG,GAAE,QACrF,UAAAO,gBAAAA,EAAA;AAAA,IAACE;AAAA,IAAA;AAAA,MACC,SAAQ;AAAA,MACR,MAAK;AAAA,MACL,GAAE;AAAA,MACF,QAAO;AAAA,MACP,aAAY;AAAA,MACZ,SAASL;AAAA,MACV,UAAA;AAAA,IAAA;AAAA,EAAA,GAGH;AAEJ,GCLaM,IAAW,CAAC;AAAA,EACvB,CAAC,gBAAgBV,IAAa;AAAA,EAC9B,eAAAW,IAAgB;AAAA,EAChB,oBAAAC,IAAqB;AAAA,EACrB,iBAAAC,IAAkB;AAAA,EAClB,cAAAd;AAAA,EACA,GAAGe;AACL,MAEKP,gBAAAA,EAAAA,IAAAC,GAAA,EAAI,WAAU,YAAW,eAAaR,GAAY,MAAK,SACtD,UAAAe,gBAAAA,EAAA,KAACC,GAAmB,EAAA,eAAAL,GAA+B,GAAGG,GAAM,YAAU,IACpE,UAAA;AAAA,EAACP,gBAAAA,EAAAA,IAAAU,GAAA,EAAiB,cAAcL,EAAoB,CAAA;AAAA,wBACnDM,GAAQ,EAAA;AAAA,wBACRC,GAAmB,EAAA;AAAA,EACnBN,KAAoBN,gBAAAA,EAAA,IAAAT,GAAA,EAAoB,cAAAC,EAA4B,CAAA;AAAA,EAAA,CACvE,EACF,CAAA;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendar.component-DMoLaJfB.js","sources":["../../src/components/Calendar/calendarTodayButton.component.tsx","../../src/components/Calendar/calendar.component.tsx"],"sourcesContent":["import React from 'react';\nimport { Box } from '@chakra-ui/react/box';\nimport { Button } from 'components/Button/button.component';\nimport { useDatePickerContext } from 'components/DatePicker/context/datePicker.context';\nimport startOfDay from 'date-fns/startOfDay';\n\nexport interface CalendarTodayButtonProps {\n /** Callback fired after today is selected. */\n onTodayClick?: () => void;\n /** Data test id for the today button container.\n * @default kibble-calendar-today-button\n */\n 'data-testid'?: string;\n}\n\nexport const CalendarTodayButton = ({\n onTodayClick,\n ['data-testid']: dataTestId = 'kibble-calendar-today-button',\n}: CalendarTodayButtonProps): React.JSX.Element => {\n const { goToDate, onDateSelect } = useDatePickerContext();\n\n const handleClick = (): void => {\n const today = startOfDay(new Date());\n goToDate(today);\n onDateSelect(today);\n onTodayClick?.();\n };\n\n return (\n <Box
|
|
1
|
+
{"version":3,"file":"calendar.component-DMoLaJfB.js","sources":["../../src/components/Calendar/calendarTodayButton.component.tsx","../../src/components/Calendar/calendar.component.tsx"],"sourcesContent":["import React from 'react';\nimport { Box } from '@chakra-ui/react/box';\nimport { Button } from 'components/Button/button.component';\nimport { useDatePickerContext } from 'components/DatePicker/context/datePicker.context';\nimport startOfDay from 'date-fns/startOfDay';\n\nexport interface CalendarTodayButtonProps {\n /** Callback fired after today is selected. */\n onTodayClick?: () => void;\n /** Data test id for the today button container.\n * @default kibble-calendar-today-button\n */\n 'data-testid'?: string;\n}\n\nexport const CalendarTodayButton = ({\n onTodayClick,\n ['data-testid']: dataTestId = 'kibble-calendar-today-button',\n}: CalendarTodayButtonProps): React.JSX.Element => {\n const { goToDate, onDateSelect } = useDatePickerContext();\n\n const handleClick = (): void => {\n const today = startOfDay(new Date());\n goToDate(today);\n onDateSelect(today);\n onTodayClick?.();\n };\n\n return (\n <Box data-testid={dataTestId} bg=\"background.secondaryAlpha\" borderRadius=\"md\" p={2} w=\"full\">\n <Button\n variant=\"ghostNeutral\"\n size=\"md\"\n w=\"full\"\n border=\"1px solid\"\n borderColor=\"border.default\"\n onClick={handleClick}\n >\n Today\n </Button>\n </Box>\n );\n};\n","import React from 'react';\nimport { Box } from '@chakra-ui/react/box';\nimport { DatePickerCalendar } from 'components/DatePicker/components/DatePickerCalendar/datePickerCalendar.component';\nimport { DatePickerHeader } from 'components/DatePicker/components/DatePickerHeader/datePickerHeader.component';\nimport { Divider } from 'components/Divider';\nimport { DatePickerProvider } from 'components/DatePicker/context/datePicker.provider';\nimport { DateProps } from 'components/DatePicker/datePicker.types';\nimport { CalendarTodayButton } from './calendarTodayButton.component';\n\nexport interface CalendarProps extends DateProps {\n /** Data test id for the calendar.\n * @default kibble-calendar\n */\n 'data-testid'?: string;\n /**\n * If true, the calendar will allow for a date range selection.\n * @default true\n */\n withDateRange?: boolean;\n /**\n * If true, the calendar will show the month and year selectors in the header.\n * @default false\n */\n withHeaderTriggers?: boolean;\n /**\n * If true, a \"Today\" button is rendered below the calendar grid.\n * Clicking it selects today's date and navigates to the current month.\n * @default false\n */\n showTodayButton?: boolean;\n /**\n * Callback fired after the \"Today\" button is clicked.\n * Only relevant when showTodayButton is true.\n */\n onTodayClick?: () => void;\n}\n\nexport const Calendar = ({\n ['data-testid']: dataTestId = 'kibble-calendar',\n withDateRange = true,\n withHeaderTriggers = false,\n showTodayButton = false,\n onTodayClick,\n ...rest\n}: CalendarProps): React.JSX.Element => {\n return (\n <Box className=\"Calendar\" data-testid={dataTestId} maxW=\"360px\">\n <DatePickerProvider withDateRange={withDateRange} {...rest} standalone>\n <DatePickerHeader withTriggers={withHeaderTriggers} />\n <Divider />\n <DatePickerCalendar />\n {showTodayButton && <CalendarTodayButton onTodayClick={onTodayClick} />}\n </DatePickerProvider>\n </Box>\n );\n};\n"],"names":["CalendarTodayButton","onTodayClick","dataTestId","goToDate","onDateSelect","useDatePickerContext","handleClick","today","startOfDay","jsx","Box","Button","Calendar","withDateRange","withHeaderTriggers","showTodayButton","rest","jsxs","DatePickerProvider","DatePickerHeader","Divider","DatePickerCalendar"],"mappings":"qQAeaA,EAAsB,CAAC,CAClC,aAAAC,EACA,CAAC,eAAgBC,EAAa,8BAChC,IAAmD,CACjD,KAAM,CAAE,SAAAC,EAAU,aAAAC,CAAa,EAAIC,uBAAqB,EAElDC,EAAc,IAAY,CAC9B,MAAMC,EAAQC,EAAAA,WAAe,IAAA,IAAM,EACnCL,EAASI,CAAK,EACdH,EAAaG,CAAK,EACHN,IAAA,CACjB,EAGE,OAAAQ,EAAAA,kBAAAA,IAACC,EAAAA,IAAI,CAAA,cAAaR,EAAY,GAAG,4BAA4B,aAAa,KAAK,EAAG,EAAG,EAAE,OACrF,SAAAO,EAAA,kBAAA,IAACE,EAAA,OAAA,CACC,QAAQ,eACR,KAAK,KACL,EAAE,OACF,OAAO,YACP,YAAY,iBACZ,QAASL,EACV,SAAA,OAAA,CAAA,EAGH,CAEJ,ECLaM,EAAW,CAAC,CACvB,CAAC,eAAgBV,EAAa,kBAC9B,cAAAW,EAAgB,GAChB,mBAAAC,EAAqB,GACrB,gBAAAC,EAAkB,GAClB,aAAAd,EACA,GAAGe,CACL,IAEKP,EAAAA,kBAAAA,IAAAC,EAAAA,IAAA,CAAI,UAAU,WAAW,cAAaR,EAAY,KAAK,QACtD,SAAAe,EAAA,kBAAA,KAACC,EAAmB,mBAAA,CAAA,cAAAL,EAA+B,GAAGG,EAAM,WAAU,GACpE,SAAA,CAACP,EAAAA,kBAAAA,IAAAU,EAAA,iBAAA,CAAiB,aAAcL,CAAoB,CAAA,0BACnDM,EAAQ,QAAA,EAAA,0BACRC,EAAmB,mBAAA,EAAA,EACnBN,GAAoBN,EAAA,kBAAA,IAAAT,EAAA,CAAoB,aAAAC,CAA4B,CAAA,CAAA,CAAA,CACvE,CACF,CAAA"}
|
|
@@ -6,7 +6,7 @@ import { A as x } from "../../chunks/avatarGroup.component-BPhQpVYM.js";
|
|
|
6
6
|
import { B as d } from "../../chunks/button.component-BO6oee_V.js";
|
|
7
7
|
import { b as u, d as T, c as S, e as b, a as v } from "../../chunks/button.types-BjfcUcMn.js";
|
|
8
8
|
import { B as P } from "../../chunks/buttonGroup.component-CO5lC36l.js";
|
|
9
|
-
import { C as D, a as W } from "../../chunks/calendar.component-
|
|
9
|
+
import { C as D, a as W } from "../../chunks/calendar.component-CSvl4JHD.js";
|
|
10
10
|
import { C as B } from "../../chunks/card.component-B1AznjWF.js";
|
|
11
11
|
import { c as k } from "../../chunks/card.types-Cixp7ouC.js";
|
|
12
12
|
import { C as M } from "../../chunks/characterCounter.component-DI_FQNUR.js";
|
package/dist/esm/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { A as x } from "../chunks/avatarGroup.component-BPhQpVYM.js";
|
|
|
6
6
|
import { B as l } from "../chunks/button.component-BO6oee_V.js";
|
|
7
7
|
import { b as u, d as T, c as S, e as b, a as C } from "../chunks/button.types-BjfcUcMn.js";
|
|
8
8
|
import { B as g } from "../chunks/buttonGroup.component-CO5lC36l.js";
|
|
9
|
-
import { C as P, a as y } from "../chunks/calendar.component-
|
|
9
|
+
import { C as P, a as y } from "../chunks/calendar.component-CSvl4JHD.js";
|
|
10
10
|
import { C as M } from "../chunks/card.component-B1AznjWF.js";
|
|
11
11
|
import { c as W } from "../chunks/card.types-Cixp7ouC.js";
|
|
12
12
|
import { C as B } from "../chunks/characterCounter.component-DI_FQNUR.js";
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"calendar.component-C0vLCSZ4.js","sources":["../../src/components/Calendar/calendarTodayButton.component.tsx","../../src/components/Calendar/calendar.component.tsx"],"sourcesContent":["import React from 'react';\nimport { Box } from '@chakra-ui/react/box';\nimport { Button } from 'components/Button/button.component';\nimport { useDatePickerContext } from 'components/DatePicker/context/datePicker.context';\nimport startOfDay from 'date-fns/startOfDay';\n\nexport interface CalendarTodayButtonProps {\n /** Callback fired after today is selected. */\n onTodayClick?: () => void;\n /** Data test id for the today button container.\n * @default kibble-calendar-today-button\n */\n 'data-testid'?: string;\n}\n\nexport const CalendarTodayButton = ({\n onTodayClick,\n ['data-testid']: dataTestId = 'kibble-calendar-today-button',\n}: CalendarTodayButtonProps): React.JSX.Element => {\n const { goToDate, onDateSelect } = useDatePickerContext();\n\n const handleClick = (): void => {\n const today = startOfDay(new Date());\n goToDate(today);\n onDateSelect(today);\n onTodayClick?.();\n };\n\n return (\n <Box\n data-testid={dataTestId}\n bg=\"background.secondaryAlpha\"\n borderRadius=\"md\"\n p={2}\n w=\"full\"\n >\n <Button\n variant=\"ghostNeutral\"\n size=\"md\"\n w=\"full\"\n border=\"1px solid\"\n borderColor=\"border.default\"\n onClick={handleClick}\n >\n Today\n </Button>\n </Box>\n );\n};\n","import React from 'react';\nimport { Box } from '@chakra-ui/react/box';\nimport { DatePickerCalendar } from 'components/DatePicker/components/DatePickerCalendar/datePickerCalendar.component';\nimport { DatePickerHeader } from 'components/DatePicker/components/DatePickerHeader/datePickerHeader.component';\nimport { Divider } from 'components/Divider';\nimport { DatePickerProvider } from 'components/DatePicker/context/datePicker.provider';\nimport { DateProps } from 'components/DatePicker/datePicker.types';\nimport { CalendarTodayButton } from './calendarTodayButton.component';\n\nexport interface CalendarProps extends DateProps {\n /** Data test id for the calendar.\n * @default kibble-calendar\n */\n 'data-testid'?: string;\n /**\n * If true, the calendar will allow for a date range selection.\n * @default true\n */\n withDateRange?: boolean;\n /**\n * If true, the calendar will show the month and year selectors in the header.\n * @default false\n */\n withHeaderTriggers?: boolean;\n /**\n * If true, a \"Today\" button is rendered below the calendar grid.\n * Clicking it selects today's date and navigates to the current month.\n * @default false\n */\n showTodayButton?: boolean;\n /**\n * Callback fired after the \"Today\" button is clicked.\n * Only relevant when showTodayButton is true.\n */\n onTodayClick?: () => void;\n}\n\nexport const Calendar = ({\n ['data-testid']: dataTestId = 'kibble-calendar',\n withDateRange = true,\n withHeaderTriggers = false,\n showTodayButton = false,\n onTodayClick,\n ...rest\n}: CalendarProps): React.JSX.Element => {\n return (\n <Box className=\"Calendar\" data-testid={dataTestId} maxW=\"360px\">\n <DatePickerProvider withDateRange={withDateRange} {...rest} standalone>\n <DatePickerHeader withTriggers={withHeaderTriggers} />\n <Divider />\n <DatePickerCalendar />\n {showTodayButton && <CalendarTodayButton onTodayClick={onTodayClick} />}\n </DatePickerProvider>\n </Box>\n );\n};\n"],"names":["CalendarTodayButton","onTodayClick","dataTestId","goToDate","onDateSelect","useDatePickerContext","handleClick","today","startOfDay","jsx","Box","Button","Calendar","withDateRange","withHeaderTriggers","showTodayButton","rest","jsxs","DatePickerProvider","DatePickerHeader","Divider","DatePickerCalendar"],"mappings":";;;;;;AAeO,MAAMA,IAAsB,CAAC;AAAA,EAClC,cAAAC;AAAA,EACA,CAAC,gBAAgBC,IAAa;AAChC,MAAmD;AACjD,QAAM,EAAE,UAAAC,GAAU,cAAAC,EAAa,IAAIC,EAAqB,GAElDC,IAAc,MAAY;AAC9B,UAAMC,IAAQC,EAAe,oBAAA,MAAM;AACnC,IAAAL,EAASI,CAAK,GACdH,EAAaG,CAAK,GACHN,IAAA;AAAA,EACjB;AAGE,SAAAQ,gBAAAA,EAAA;AAAA,IAACC;AAAA,IAAA;AAAA,MACC,eAAaR;AAAA,MACb,IAAG;AAAA,MACH,cAAa;AAAA,MACb,GAAG;AAAA,MACH,GAAE;AAAA,MAEF,UAAAO,gBAAAA,EAAA;AAAA,QAACE;AAAA,QAAA;AAAA,UACC,SAAQ;AAAA,UACR,MAAK;AAAA,UACL,GAAE;AAAA,UACF,QAAO;AAAA,UACP,aAAY;AAAA,UACZ,SAASL;AAAA,UACV,UAAA;AAAA,QAAA;AAAA,MAAA;AAAA,IAED;AAAA,EACF;AAEJ,GCXaM,IAAW,CAAC;AAAA,EACvB,CAAC,gBAAgBV,IAAa;AAAA,EAC9B,eAAAW,IAAgB;AAAA,EAChB,oBAAAC,IAAqB;AAAA,EACrB,iBAAAC,IAAkB;AAAA,EAClB,cAAAd;AAAA,EACA,GAAGe;AACL,MAEKP,gBAAAA,EAAAA,IAAAC,GAAA,EAAI,WAAU,YAAW,eAAaR,GAAY,MAAK,SACtD,UAAAe,gBAAAA,EAAA,KAACC,GAAmB,EAAA,eAAAL,GAA+B,GAAGG,GAAM,YAAU,IACpE,UAAA;AAAA,EAACP,gBAAAA,EAAAA,IAAAU,GAAA,EAAiB,cAAcL,EAAoB,CAAA;AAAA,wBACnDM,GAAQ,EAAA;AAAA,wBACRC,GAAmB,EAAA;AAAA,EACnBN,KAAoBN,gBAAAA,EAAA,IAAAT,GAAA,EAAoB,cAAAC,EAA4B,CAAA;AAAA,EAAA,CACvE,EACF,CAAA;"}
|