@scottish-government/designsystem-react 0.8.0 → 0.10.0-beta.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/.storybook/main.ts +20 -0
- package/.storybook/manager.ts +13 -0
- package/.storybook/preview-head.html +1 -0
- package/.storybook/preview.tsx +56 -0
- package/.storybook/sgdsArgTypes.ts +123 -0
- package/.storybook/sgdsTheme.ts +9 -0
- package/.storybook/vitest.setup.ts +7 -0
- package/@types/common/AbstractNotificationBanner.d.ts +2 -2
- package/@types/common/ActionLink.d.ts +1 -1
- package/@types/common/Icon.d.ts +1 -1
- package/@types/components/Accordion.d.ts +2 -3
- package/@types/components/Button.d.ts +5 -5
- package/@types/components/CategoryItem.d.ts +10 -0
- package/@types/components/CategoryList.d.ts +7 -0
- package/@types/components/Checkbox.d.ts +2 -2
- package/@types/components/ContentsNav.d.ts +1 -1
- package/@types/components/DatePicker.d.ts +1 -1
- package/@types/components/ErrorMessage.d.ts +1 -2
- package/@types/components/ErrorSummary.d.ts +1 -1
- package/@types/components/FileDownload.d.ts +2 -2
- package/@types/components/Metadata.d.ts +1 -1
- package/@types/components/Pagination.d.ts +1 -1
- package/@types/components/RadioButton.d.ts +2 -2
- package/@types/components/SideNavigation.d.ts +1 -1
- package/@types/components/SiteNavigation.d.ts +1 -1
- package/@types/components/SummaryList.d.ts +1 -1
- package/@types/components/Tabs.d.ts +3 -3
- package/@types/components/TextInput.d.ts +1 -1
- package/@types/sgds.d.ts +2 -1
- package/CHANGELOG.md +29 -0
- package/dist/common/AbstractNotificationBanner.jsx +4 -4
- package/dist/common/Icon.jsx +2 -2
- package/dist/components/Accordion/Accordion.jsx +8 -7
- package/dist/components/Button/Button.jsx +6 -6
- package/dist/components/CategoryItem/CategoryItem.jsx +35 -0
- package/dist/components/CategoryList/CategoryList.jsx +55 -0
- package/dist/components/Checkbox/Checkbox.jsx +7 -4
- package/dist/components/Checkbox/CheckboxGroup.jsx +5 -11
- package/dist/components/ContentsNav/ContentsNav.jsx +2 -2
- package/dist/components/DatePicker/DatePicker.jsx +1 -1
- package/dist/components/ErrorMessage/ErrorMessage.jsx +3 -3
- package/dist/components/FileDownload/FileDownload.jsx +2 -2
- package/dist/components/NotificationBanner/NotificationBanner.jsx +2 -2
- package/dist/components/PageMetadata/PageMetadata.jsx +4 -4
- package/dist/components/Pagination/Pagination.jsx +4 -4
- package/dist/components/Question/Question.jsx +1 -1
- package/dist/components/RadioButton/RadioButton.jsx +6 -2
- package/dist/components/RadioButton/RadioGroup.jsx +7 -47
- package/dist/components/Select/Select.jsx +1 -1
- package/dist/components/SideNavigation/SideNavigation.jsx +2 -2
- package/dist/components/SiteHeader/SiteHeader.jsx +3 -3
- package/dist/components/SiteNavigation/SiteNavigation.jsx +2 -2
- package/dist/components/SiteSearch/SiteSearch.jsx +1 -1
- package/dist/components/SkipLinks/SkipLinks.jsx +1 -1
- package/dist/components/SummaryList/SummaryList.jsx +3 -3
- package/dist/components/Tabs/Tabs.jsx +6 -7
- package/dist/components/TextInput/TextInput.jsx +5 -5
- package/dist/components/Textarea/Textarea.jsx +1 -1
- package/dist/hooks/useTracking.js +21 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/context.js +5 -0
- package/package.json +15 -4
- package/src/common/AbstractNotificationBanner.test.tsx +1 -1
- package/src/common/AbstractNotificationBanner.tsx +4 -4
- package/src/common/Icon.test.tsx +1 -1
- package/src/common/Icon.tsx +2 -2
- package/src/components/Accordion/Accordion.stories.tsx +111 -0
- package/src/components/Accordion/Accordion.test.tsx +5 -17
- package/src/components/Accordion/Accordion.tsx +11 -10
- package/src/components/AspectBox/AspectBox.stories.tsx +64 -0
- package/src/components/BackToTop/BackToTop.stories.tsx +36 -0
- package/src/components/Breadcrumbs/Breadcrumbs.stories.tsx +49 -0
- package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +0 -1
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +1 -1
- package/src/components/Button/Button.stories.tsx +194 -0
- package/src/components/Button/Button.test.tsx +4 -4
- package/src/components/Button/Button.tsx +9 -9
- package/src/components/CategoryItem/CategoryItem.stories.tsx +55 -0
- package/src/components/CategoryItem/CategoryItem.test.tsx +93 -0
- package/src/components/CategoryItem/CategoryItem.tsx +56 -0
- package/src/components/CategoryList/CategoryList.stories.tsx +65 -0
- package/src/components/CategoryList/CategoryList.test.tsx +59 -0
- package/src/components/CategoryList/CategoryList.tsx +33 -0
- package/src/components/Checkbox/Checkbox.stories.tsx +85 -0
- package/src/components/Checkbox/Checkbox.test.tsx +2 -2
- package/src/components/Checkbox/Checkbox.tsx +11 -6
- package/src/components/Checkbox/CheckboxGroup.stories.tsx +68 -0
- package/src/components/Checkbox/CheckboxGroup.tsx +7 -12
- package/src/components/ConfirmationMessage/ConfirmationMessage.stories.tsx +38 -0
- package/src/components/ContentsNav/ContentsNav.stories.tsx +43 -0
- package/src/components/ContentsNav/ContentsNav.test.tsx +2 -2
- package/src/components/ContentsNav/ContentsNav.tsx +2 -2
- package/src/components/CookieBanner/CookieBanner.stories.tsx +33 -0
- package/src/components/DatePicker/DatePicker.stories.tsx +113 -0
- package/src/components/DatePicker/DatePicker.tsx +1 -1
- package/src/components/Details/Details.stories.tsx +36 -0
- package/src/components/ErrorMessage/ErrorMessage.stories.tsx +19 -0
- package/src/components/ErrorMessage/ErrorMessage.test.tsx +3 -15
- package/src/components/ErrorMessage/ErrorMessage.tsx +1 -3
- package/src/components/ErrorSummary/ErrorSummary.stories.tsx +38 -0
- package/src/components/FileDownload/FileDownload.stories.tsx +75 -0
- package/src/components/FileDownload/FileDownload.test.tsx +1 -1
- package/src/components/FileDownload/FileDownload.tsx +2 -2
- package/src/components/HideThisPage/HideThisPage.stories.tsx +20 -0
- package/src/components/InsetText/InsetText.stories.tsx +21 -0
- package/src/components/NotificationBanner/NotificationBanner.stories.tsx +57 -0
- package/src/components/NotificationBanner/NotificationBanner.test.tsx +1 -1
- package/src/components/NotificationBanner/NotificationBanner.tsx +4 -4
- package/src/components/NotificationPanel/NotificationPanel.stories.tsx +32 -0
- package/src/components/PageHeader/PageHeader.stories.tsx +60 -0
- package/src/components/PageMetadata/PageMetadata.stories.tsx +58 -0
- package/src/components/PageMetadata/PageMetadata.test.tsx +2 -2
- package/src/components/PageMetadata/PageMetadata.tsx +4 -4
- package/src/components/Pagination/Pagination.stories.tsx +69 -0
- package/src/components/Pagination/Pagination.test.tsx +1 -1
- package/src/components/Pagination/Pagination.tsx +4 -4
- package/src/components/PhaseBanner/PhaseBanner.stories.tsx +38 -0
- package/src/components/Question/Question.stories.tsx +78 -0
- package/src/components/Question/Question.tsx +1 -1
- package/src/components/RadioButton/RadioButton.stories.tsx +67 -0
- package/src/components/RadioButton/RadioButton.test.tsx +2 -1
- package/src/components/RadioButton/RadioButton.tsx +9 -3
- package/src/components/RadioButton/RadioGroup.stories.tsx +77 -0
- package/src/components/RadioButton/RadioGroup.test.tsx +2 -2
- package/src/components/RadioButton/RadioGroup.tsx +8 -15
- package/src/components/Select/Select.stories.tsx +76 -0
- package/src/components/Select/Select.tsx +1 -1
- package/src/components/SequentialNavigation/SequentialNavigation.stories.tsx +31 -0
- package/src/components/SideNavigation/SideNavigation.stories.tsx +92 -0
- package/src/components/SideNavigation/SideNavigation.test.tsx +2 -2
- package/src/components/SideNavigation/SideNavigation.tsx +2 -2
- package/src/components/SiteFooter/SiteFooter.stories.tsx +65 -0
- package/src/components/SiteHeader/SiteHeader.stories.tsx +92 -0
- package/src/components/SiteHeader/SiteHeader.tsx +2 -7
- package/src/components/SiteNavigation/SiteNavigation.stories.tsx +45 -0
- package/src/components/SiteNavigation/SiteNavigation.test.tsx +1 -1
- package/src/components/SiteNavigation/SiteNavigation.tsx +2 -2
- package/src/components/SiteSearch/SiteSearch.stories.tsx +81 -0
- package/src/components/SiteSearch/SiteSearch.tsx +1 -1
- package/src/components/SkipLinks/SkipLinks.stories.tsx +57 -0
- package/src/components/SkipLinks/SkipLinks.tsx +1 -1
- package/src/components/SummaryCard/SummaryCard.stories.tsx +46 -0
- package/src/components/SummaryList/SummaryList.stories.tsx +75 -0
- package/src/components/SummaryList/SummaryList.test.tsx +1 -1
- package/src/components/SummaryList/SummaryList.tsx +3 -3
- package/src/components/Table/Table.stories.tsx +96 -0
- package/src/components/Tabs/Tabs.stories.tsx +90 -0
- package/src/components/Tabs/Tabs.test.tsx +6 -8
- package/src/components/Tabs/Tabs.tsx +8 -9
- package/src/components/Tag/Tag.stories.tsx +25 -0
- package/src/components/TaskList/TaskList.stories.tsx +129 -0
- package/src/components/TextInput/TextInput.stories.tsx +123 -0
- package/src/components/TextInput/TextInput.test.tsx +2 -2
- package/src/components/TextInput/TextInput.tsx +5 -5
- package/src/components/Textarea/Textarea.stories.tsx +71 -0
- package/src/components/Textarea/Textarea.tsx +1 -1
- package/src/components/WarningText/WarningText.stories.tsx +21 -0
- package/src/hooks/useTracking.test.tsx +64 -0
- package/src/hooks/useTracking.ts +19 -0
- package/src/utils/context.ts +3 -0
- package/static/data/autocomplete-dummy-data.json +2361 -0
- package/static/images/highland-cow.jpg +0 -0
- package/static/images/scottish-government--min.svg +11 -0
- package/static/images/scottish-government.svg +6 -0
- package/tsconfig.json +3 -2
- package/vite.config.ts +45 -11
- package/vitest-setup.ts +1 -0
- package/vitest.shims.d.ts +1 -0
- package/src/utils/slugify.ts +0 -13
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.default = default_1;
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
//@ts-ignore
|
|
9
|
+
const tracking_1 = __importDefault(require("@scottish-government/design-system/src/base/tools/tracking/tracking"));
|
|
10
|
+
function default_1() {
|
|
11
|
+
(0, react_1.useEffect)(() => {
|
|
12
|
+
const observer = new MutationObserver(() => {
|
|
13
|
+
tracking_1.default.init();
|
|
14
|
+
});
|
|
15
|
+
tracking_1.default.init();
|
|
16
|
+
observer.observe(document.body, { childList: true, subtree: true, characterData: true });
|
|
17
|
+
return () => {
|
|
18
|
+
observer.disconnect();
|
|
19
|
+
};
|
|
20
|
+
}, []);
|
|
21
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/react/index.d.ts","../@types/global.d.ts","../@types/sgds.d.ts","../@types/common/AbstractNotificationBanner.d.ts","../@types/common/ActionLink.d.ts","../@types/common/ConditionalWrapper.d.ts","../@types/common/FileIcon.d.ts","../@types/common/HintText.d.ts","../@types/common/Icon.d.ts","../@types/common/ScreenReaderText.d.ts","../@types/common/WrapperTag.d.ts","../@types/components/Accordion.d.ts","../@types/components/AspectBox.d.ts","../@types/components/BackToTop.d.ts","../@types/components/Breadcrumbs.d.ts","../@types/components/Button.d.ts","../@types/components/Checkbox.d.ts","../@types/components/ConfirmationMessage.d.ts","../@types/components/ContentsNav.d.ts","../@types/components/DatePicker.d.ts","../@types/components/Details.d.ts","../@types/components/ErrorMessage.d.ts","../@types/components/ErrorSummary.d.ts","../@types/components/FileDownload.d.ts","../@types/components/HideThisPage.d.ts","../@types/components/InsetText.d.ts","../@types/components/Metadata.d.ts","../@types/components/NotificationPanel.d.ts","../@types/components/PageHeader.d.ts","../@types/components/Pagination.d.ts","../@types/components/PhaseBanner.d.ts","../@types/components/Question.d.ts","../@types/components/RadioButton.d.ts","../@types/components/Select.d.ts","../@types/components/SequentialNavigation.d.ts","../@types/components/SideNavigation.d.ts","../@types/components/SiteFooter.d.ts","../@types/components/SiteHeader.d.ts","../@types/components/SiteNavigation.d.ts","../@types/components/SiteSearch.d.ts","../@types/components/SkipLinks.d.ts","../@types/components/SummaryCard.d.ts","../@types/components/SummaryList.d.ts","../@types/components/Table.d.ts","../@types/components/Tabs.d.ts","../@types/components/Tag.d.ts","../@types/components/TaskList.d.ts","../@types/components/TextInput.d.ts","../@types/components/Textarea.d.ts","../@types/components/WarningText.d.ts","../src/images/icons/arrow_upward.tsx","../src/images/icons/calendar_today.tsx","../src/images/icons/cancel.tsx","../src/images/icons/check_circle.tsx","../src/images/icons/chevron_left.tsx","../src/images/icons/chevron_right.tsx","../src/images/icons/close.tsx","../src/images/icons/description.tsx","../src/images/icons/double_chevron_left.tsx","../src/images/icons/double_chevron_right.tsx","../src/images/icons/error.tsx","../src/images/icons/expand_less.tsx","../src/images/icons/expand_more.tsx","../src/images/icons/list.tsx","../src/images/icons/menu.tsx","../src/images/icons/priority_high.tsx","../src/images/icons/search.tsx","../src/images/icons/index.ts","../src/common/Icon.tsx","../src/common/ScreenReaderText.tsx","../src/common/AbstractNotificationBanner.tsx","../src/common/ActionLink.tsx","../src/common/ConditionalWrapper.tsx","../src/images/documents/audio.tsx","../src/images/documents/csv.tsx","../src/images/documents/excel.tsx","../src/images/documents/file.tsx","../src/images/documents/generic.tsx","../src/images/documents/geodata.tsx","../src/images/documents/ical.tsx","../src/images/documents/ico.tsx","../src/images/documents/image.tsx","../src/images/documents/odf.tsx","../src/images/documents/odg.tsx","../src/images/documents/odp.tsx","../src/images/documents/ods.tsx","../src/images/documents/odt.tsx","../src/images/documents/pdf.tsx","../src/images/documents/ppt.tsx","../src/images/documents/rtf.tsx","../src/images/documents/text.tsx","../src/images/documents/video.tsx","../src/images/documents/word.tsx","../src/images/documents/xml.tsx","../src/images/documents/zip.tsx","../src/images/documents/index.ts","../src/common/FileIcon.tsx","../src/common/HintText.tsx","../src/common/WrapperTag.tsx","../src/components/Accordion/Accordion.tsx","../src/components/AspectBox/AspectBox.tsx","../src/components/BackToTop/BackToTop.tsx","../src/components/Breadcrumbs/Breadcrumbs.tsx","../src/components/Button/Button.tsx","../src/components/Checkbox/Checkbox.tsx","../src/components/Checkbox/CheckboxGroup.tsx","../src/components/ConfirmationMessage/ConfirmationMessage.tsx","../src/components/ContentsNav/ContentsNav.tsx","../src/components/CookieBanner/CookieBanner.tsx","../src/components/ErrorMessage/ErrorMessage.tsx","../src/components/TextInput/TextInput.tsx","../src/components/DatePicker/DatePicker.tsx","../src/components/Details/Details.tsx","../src/components/ErrorSummary/ErrorSummary.tsx","../src/components/FileDownload/FileDownload.tsx","../src/components/HideThisPage/HideThisPage.tsx","../src/components/InsetText/InsetText.tsx","../src/components/NotificationBanner/NotificationBanner.tsx","../src/components/NotificationPanel/NotificationPanel.tsx","../src/components/PageHeader/PageHeader.tsx","../src/components/PageMetadata/PageMetadata.tsx","../src/components/Pagination/Pagination.tsx","../src/components/Tag/Tag.tsx","../src/components/PhaseBanner/PhaseBanner.tsx","../src/components/Question/Question.tsx","../src/components/RadioButton/RadioButton.tsx","../src/components/RadioButton/RadioGroup.tsx","../src/components/Select/Select.tsx","../src/components/SequentialNavigation/SequentialNavigation.tsx","../src/components/SideNavigation/SideNavigation.tsx","../src/components/SiteFooter/SiteFooter.tsx","../src/components/SiteNavigation/SiteNavigation.tsx","../src/components/SiteHeader/SiteHeader.tsx","../src/components/SiteSearch/SiteSearch.tsx","../src/components/SkipLinks/SkipLinks.tsx","../src/components/SummaryCard/SummaryCard.tsx","../src/components/SummaryList/SummaryList.tsx","../src/components/Table/Table.tsx","../src/utils/slugify.ts","../src/components/Tabs/Tabs.tsx","../src/components/TaskList/TaskList.tsx","../src/components/Textarea/Textarea.tsx","../src/components/WarningText/WarningText.tsx"],"fileIdsList":[[83],[81,82],[83,151,152],[83,178],[83,150],[83,181],[83,151],[151,152,181],[180],[83,187],[151,181],[153],[83,192,193],[83,179],[83,153],[181],[151],[205],[180,181,192],[83,208],[180,192],[83,155],[83,151,214],[83,186],[83,154,155,181],[83,154,155],[83,181,221],[83,152,155,180,205],[83,155,180,186,192],[83,155,180,192],[156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177],[133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"19539467bf78201a93c2a00eeb99c728f52b4e623f14a7f20a691137e784c334","impliedFormat":1},{"version":"adae951b2a9ce8bca36d38963c53ce34eaa6ed595ad188cd8a49efe26ec4c73d","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ec12903cc0b7f03138fac485cfe61e3679179ff652ac124d92b25c3b63d37c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"bdf198e0013a8e9ce4acaa705eebea28630d12fc59bd0f2026ea6b74e557f6c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"098d9d86ccf5d87f66dd1aba5edc7a79ac3c743252d0fcfc165f0842bbbbc03d","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b92ec64829cca003eaca5ee4ef9c7d844817100aa037415a7042f6e01f9a3ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"5c64ea2259c2aca1681436a2c3515bbb8ae5961c9e3b7586599b9ea93d5126bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"89b15b0221825646f8387ec7885cd6ddb6e20e52b0000beb16e6ffbeae7f35db","affectsGlobalScope":true,"impliedFormat":1},{"version":"a2e5bd2aad7954b25979f0365662427432b417fee161a0143f4b57df59a77bee","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e4b84a1a0cf7e4beddc9fd133eeb16f57be77a743ed54a22a16f2573dd1049c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ac7b88f4f142c994cac434ce84964b1fca77338cb36b780b8db3422a42dfc6b","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d9f663a357c9604e121dbb84c3197397d4cf0a70c632a7bb8ab52ecffb47fe9","affectsGlobalScope":true,"impliedFormat":1},{"version":"795a3344a3c1b9b23670d059e1d787d9b19bf4f5ba95a2bf1bf6d45f68edf879","affectsGlobalScope":true,"impliedFormat":1},{"version":"5879dda2931b3f5a62c3d96f9ce4bf1de56ca8887c1f4f8f6f2103fe93955905","affectsGlobalScope":true,"impliedFormat":1},{"version":"859f84766ebee648a181490b4f8ebc29a3f2759f5e42bc208772eccb094c52db","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c0248295706b905ddc49c114e2ea459ac7d556684c9bbd1298e77b50b23b005","affectsGlobalScope":true,"impliedFormat":1},{"version":"53f7dc3a3f556f2b579ee4d9319754b6c468e7eb52ee9291533f6888010bca0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c6353734d227764e90f129f5478b0ab841fa462397d4f773c8d7c19a0d817cc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a4f4972ea78b5546066129b237fc48b2f8d71292f0a3bf02580319e22c22f29","affectsGlobalScope":true,"impliedFormat":1},{"version":"2308590a9d9174ba57f30d6cfe8e07756948759df448de60f3f2efd31615c49b","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f933631f0519bd773d97948188b592717de588ecd462f11345d7a37c5df5176","affectsGlobalScope":true,"impliedFormat":1},{"version":"dcc834596eb8a4e958ef6370fb69c686942a01d0dd58497c5c5ce6dda824c38e","affectsGlobalScope":true,"impliedFormat":1},{"version":"494d4a386ee8f22de5ab775acf157e02d11a2ee8eec9d734ba8cf0e897126162","affectsGlobalScope":true,"impliedFormat":1},{"version":"2516bb822c2a7518b292c5ba9eac441fba997a3d1c8b6df7e81a2fe806b6e477","affectsGlobalScope":true,"impliedFormat":1},{"version":"c206b97d5374757c38f36fb1b6c356b4af822ab252d21a3e90c1b467df41ba13","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4a7a40fb52c0bebeeeed3e67e40d02c576daf6d0c568433b1004fbdc281826b","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b7e3365456e22a85329dbfce849302d65f6e5002958bb65a00c269976742ce8","affectsGlobalScope":true,"impliedFormat":1},{"version":"98ca85bc6fcc9b784ae5e74a4645a079ea54f01f8ccce536d08d69bf35bee782","affectsGlobalScope":true,"impliedFormat":1},{"version":"6164b966858e8f1788f2da1b479579fb150d505aaa82fe3d912b1ca5ffb99a8f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e1bd61a56720b4adb5bb5fca7a7f91ed91cb5afc70860cd652f10cb390a9321","affectsGlobalScope":true,"impliedFormat":1},{"version":"79616e26be6f4f3380de475ac9f2e347299eac21fa4ad5b78791d6e97dd821d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"89041ceae7ebbc1435175ad93a229ed6430e8c7a0be8048e08c9cfed6be41c95","affectsGlobalScope":true,"impliedFormat":1},{"version":"512b5fb9998e9ae4c4ea32ce0fa4fa4ec18fb6744169d818b0aa19d347807cbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"f44e5b71f78761d31bb55c8ef924fa4c619a11ba457e9e58429c36263536bed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"82b9494afb54135532ab9f6982f4391a78eea8e2b6152ced8d8ad47a8fc4723c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a49a47be2e325495caf1b3d0be5a22e991c262273242df6cba316216e559aae9","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f7be37b765736ea258256b6d0e898c233f45b639b242930e6f425f6429f35c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b625203843f680ff6f3c0304c0477a9bffaf51104c41ad40b2e5f819d0f7ebc2","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fba9b8227813f40a4b1da3b0621a6875ac3a60fb03f716bad5ba35ae31200e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"a3072897e6cc0db7c3c0224f3908667479353ea95c9df716ba6c8a5aa0c864dc","affectsGlobalScope":true,"impliedFormat":1},{"version":"1653b209dce2fe213a49d50ec26c664abdd519376a3b63a85f54e46cd0f2f20f","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa704ec334fff17a4a885bc69b504108f01b6ac8674ec3f4f3486bd9ab657d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fd64a2bd3d11981ffdc37a2d3d85f0ad2fad5bde616df7f9a28cd17c0849620","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd82d7aef1382ec89fb1e258520c08d76d7e6483747442d906bbdf0076a636fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2dc5cab1d5ca1bacc04bd196aab6ec4c8e4628cb219d6d8f990c8b7857cd85c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab1a31de76dff33cecf38cf15773bcf0077cbb0d6324d7de2c01a013b380e61c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c3e2bde011912c71f039c03fed5121c804bb49fdd3845f6aef36f620e9d113ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc670c5cfaeed3b2362c9addc3b2037c2633f284f6d5d2679d9bcf043a8f21e5","affectsGlobalScope":true,"impliedFormat":1},{"version":"02e9eac7ab6147b04f14766548bdfea780b3e8b662ae95d2f6c855b34bc2de50","affectsGlobalScope":true,"impliedFormat":1},{"version":"d48a57bbd0f108b0b823e4b7e504202849565bc7ec3d6152c1edd034085e634d","impliedFormat":1},{"version":"cdc6aa72ff56d7ba4b5663b538499b7a62e28949b90998d9de586efa1f0da6c2","impliedFormat":1},{"version":"fbe469b136d2a63dd6646f4db9fd20a0450fb36669c41b7e0cbfab02e4fd92c9","impliedFormat":1},{"version":"efe87d1b6cb3254e1653596191c4a1fa9b804bdae9698688ba5baf810dbc4023","impliedFormat":1},{"version":"e0342cb84d606a3b91e9784941133d2f13bd165357a1c7dbb2b3601f974e645b","impliedFormat":1},{"version":"1470e989c2de33c13f0fcfa6a474155fe4feae743b159de0c8b083b7dc1b3873","impliedFormat":1},{"version":"857f0ef3de579385929b8000aa19144ecc5832542a4d723c8caa303a0ad8bd9a","impliedFormat":1},{"version":"e0b7f78273174809c37621c93e4afdb6dda2e4c0f40805408f4fa56514e652ae","impliedFormat":1},{"version":"3cc501ddf785b169b74f8e432bde654cd922a754750bb29a576b2a79b8f9618e","impliedFormat":1},{"version":"a971267c48315984df5712dfeb2b281a17a5548caa891a54c2502279b7e2444f","impliedFormat":1},{"version":"3d72a0e2843bcabaf41c6ef01643d13a75e06d76cb3495b48151ef96822c40fb","impliedFormat":1},{"version":"3049d785b956bb9de6260c9c1d5cc58f4226362a7fa82c01351df3531163d906","impliedFormat":1},{"version":"acb8d9e9d696eab779c15c7c8b055222af07080555be8accc9b018cd8d534cba","impliedFormat":1},{"version":"98789e27920c08833bd9ccae41894fb57127b9f4d0477b9b733834126038744b","impliedFormat":1},{"version":"312bbdca0451338ddba6e043ff7b0e00fe1f3e8297e08d043090f8e33ca01201","impliedFormat":1},{"version":"847b85d627fdf793907ca6e4fb9474b97990f3ea74fe11f3f8de11428015812d","impliedFormat":1},{"version":"d1a2785ad9fcef9d68e4a921ee246c013e486f5e1481561f39e46a37e1a5dcd1","impliedFormat":1},{"version":"2ed0c132b911e6c0f23a0c3075f25071365fc01479c3cbaff7a5e761963eb645","impliedFormat":1},{"version":"83b84f9479c9cafa8ba74faa290de31143473b2c2d9105abd44de7c04db605a7","impliedFormat":1},{"version":"79a38f4d0f2885a4dc7d5ee03067a0f054654a097b6bcdd7b9399a7340e5d6bd","impliedFormat":1},{"version":"891fad0ffa8e8b67db3feec100073cebde1a0759ad2219a7ce5fa44db9c95177","impliedFormat":1},{"version":"d4dcf03d540d83c900fa86d317804a80a7425c666c483a9c1f206d3219b84f18","impliedFormat":1},{"version":"5a87a98019912323fc87efe0360e2bd1fc244f022a4b03e3f2df29896f29126f","impliedFormat":1},{"version":"4ad3ed87009688524c365aee0eadca522078c7d5aa8580b5ef5f3c54b3aab497","impliedFormat":1},{"version":"3cd22ddcf1b7801b5705e718ec529a5ee9611cc9ae88b979028646a0782dbc1e","impliedFormat":1},{"version":"2bfd5b960fac0e16390347af778921ee1ec70894cd099aa5805af751a658cd05","impliedFormat":1},{"version":"ef01c52d8c99c994665adc0c35942fe50464f4179bc2826bc0ebfe0759374a51","impliedFormat":1},{"version":"4d500cf6792ed5997ed48a97f9df7a4e1b8d1d9825797add4215981ed8940046","impliedFormat":1},{"version":"8d94ba35c9d4014f1607fe7c619c95edd80c197d91f5e1cd49ca428ee9214175","impliedFormat":1},{"version":"ba6fcf4cb53cf471cf2f4e51ebe973a50ddf00b7762335d1e92fab3c26c4985c","impliedFormat":1},{"version":"fc53b3d7998e3f6d395d762c58bb4790ddaf162d6795031cee30650072cebd6a","impliedFormat":1},{"version":"05c3ab68f6fc6dbd5c841e7b9ab4959719eeda79a3572f4ee7aa6647033a91cc","impliedFormat":1},{"version":"727a2a7b31a1dd98fee8f15fa0bc59c87ce44dffbd3492222f053488018ae017","impliedFormat":1},{"version":"ad1b75ae0628e97c294c977069f54d6945f8ae628cea3355cb642a73a5709754","impliedFormat":1},{"version":"6dee112c19ee4481913be31716b7053d3123cd0d210a6ee0a94388f8fd3c055f","impliedFormat":1},{"version":"2e9ac24fa9545e88077981989b45418b014705d350f836004c090a8ba43b49eb","impliedFormat":1},{"version":"cccd6ce5f2e39a4f7dfe3da2579e31a93d257da2130476b52964bbab4eabf074","impliedFormat":1},{"version":"5bd1f7eb991058cf97ad8a884f1983515cb63b7d0b3718d6c442ce919b60ff2b","impliedFormat":1},{"version":"1481b554bb62382ab4d37ba7f294840eedebe6b7b855500469255f0f452360d3","impliedFormat":1},{"version":"e717716fc6b35d446fa36116871b4c54209fd7b0bb1f25890beff8168bdb74ba","impliedFormat":1},{"version":"9fc88fd6212156d278fde6a05ba371a3a50c9c2e4d15567dcf25f7e1d193d550","impliedFormat":1},{"version":"4da6750f81a1f188d1a0b4c7b4bebb5f45cfcd1fbe1b6a1d3b771e1f520f5a27","impliedFormat":1},{"version":"d6f81749732dbecc7ed7aaf1229dc7d4eebcc4fdf3701c1281c5c3a77e26b0d6","impliedFormat":1},{"version":"2dee2550ac9958f1ca335a2997d8f257be4665a915203c191cc7ff7d60d544ee","impliedFormat":1},{"version":"2e6f87d9b1be91dfae7f3678976ef5509256db51887037a34b44171da404a5d4","impliedFormat":1},{"version":"6737d9626d44a77c65c9f0bdfebee37dffbf8c20c560121bf9ed7694ceb1de0a","impliedFormat":1},{"version":"dde0e9138f5ffda29f60072f967742e56b986a757b1ae78df7bf8f1bdad1c89f","impliedFormat":1},{"version":"fab635b7cd38d5c3698aa03a3bdd3e13441c5593223c4310c25c575ca75e4121","impliedFormat":1},{"version":"4d2887550949e09054b1c75f1a2a3bd0123df2b1d3b6fcb495956353ca0a8aa6","impliedFormat":1},{"version":"f1958528384165de737e7bd7dbca49f6a44924a709ab10b8836dc08c9fd01d45","impliedFormat":1},{"version":"29e196807a614c9e1543d5d4e3d65a90f3d27c69eb392efb576be7a052f020f7","impliedFormat":1},{"version":"0ac9ec588bf62b7e23fe2cbc30471f14427324ae354f48516e791f98cbf12a4d","impliedFormat":1},{"version":"a283132e93c668757d98f092cc91284fb04112df22cbba2abd9bc3fc167d1390","impliedFormat":1},{"version":"a3f69c8a1ae60de0837e44be80abe29b65a6184e6d049cfd5ea55c47852d307d","impliedFormat":1},{"version":"8f9d8544808c56d844b6c1a528d80e322532b4d316cf782cb46a807446274da7","impliedFormat":1},{"version":"7c41ecf94f149eafeeb9b09689bb1e5f4ac8420ab0e142801ca122f8308f4ae2","impliedFormat":1},{"version":"1b57a37ece281f1f694101841fc57a911d05ec7f56914d6966bdb17ea8fb92d5","impliedFormat":1},{"version":"87f788fd20fca97981a4ab9e79ab20f46a277b8a3864e9d630f7f9fd1977b50e","impliedFormat":1},{"version":"1393bd9e30235dbdb793ca53abf31508dbb91d0c427c897491060ade71c86a8c","impliedFormat":1},{"version":"17830eb9e8ff721e077c09f140551bff2c8c0771d32b93b33f2b042e5babc635","impliedFormat":1},{"version":"185fd345203a658869714222703651c430163bc2c86b0e838d63ec8836e447f0","impliedFormat":1},{"version":"6115e4f57b30cc8b8a93b41784d931eaf1d12d0f77dc7006c7f6f0661895aa0b","impliedFormat":1},{"version":"aae9028ab30404a07bda3b02595677da8664d65b0a7968f67c4bd6947febb3df","impliedFormat":1},{"version":"67637f4c17c80eac4b9ccc223453fea5d714763378827d13b7c36cc7214aedcf","impliedFormat":1},{"version":"3863c5a661b7ed39e1fc1f882e55ac09ab11cf445e373337209849e984ee8353","impliedFormat":1},{"version":"92ff60a4cb2f5542841e21dd79731d513700e0476040490b7121705e0bb214ad","impliedFormat":1},{"version":"22c6620cd8ee807b4fbbafa392a6df61ba6de35a34d21ffeb4b4071f65ff991e","impliedFormat":1},{"version":"cfcd9e310f1d37c794fd3787ebc0d2aea4f3f2c18a3792415f8518f3a5cbc088","impliedFormat":1},{"version":"5abcd34e58b471c0443fe3f9147ce3ff28720e35f2038b160049122fee6cdd84","impliedFormat":1},{"version":"4fc75cac8af69a85abd91a47c57888690bc0e4515227b7acbf27038c0868d67e","impliedFormat":1},{"version":"0dd9fbc2806c1742ecae3aacfcd05317d5dac5812b11b90dde6bb373ac729008","impliedFormat":1},{"version":"edc3e12f7950ecc5d33bcd8880472cf9a4d76c650512ce066260b97f63184a10","impliedFormat":1},{"version":"c7a0e6645fcbc36006ee7556a55e9785ffe9c99cf5cd1ea8f42590781e33a8b3","impliedFormat":1},{"version":"d1992aa5e232c6116e6ea434da3bf92631dfd1ff36421689e05f49ab5c6e6e3a","impliedFormat":1},{"version":"f978b733dc76602fb76074a752da96f95a3e266410e98fc9beca2fe9847762a0","impliedFormat":1},{"version":"c02cc358ce68b7e00a49d2876e05af0a062fb0adb02cdbfc89ecccb80f3d35f1","impliedFormat":1},{"version":"81d53eae87b6c590cc7a6b54982f0c34132d40f29d4c1659cd4f167a7eb85af7","impliedFormat":1},{"version":"d4405491338b1f17e471083925bfffe2538f2e919f554ea69b2454d6235227b8","impliedFormat":1},{"version":"8adf95ab6f1bc0e3f69d32580d24a27e82fea9396100b3cbe159f9522a554228","impliedFormat":1},{"version":"299145881dc9bd2c6ca0fc14dc0c5447e78129d67c81776840488d0ff02f569e","impliedFormat":1},{"version":"bedfb0b86b6514727876c44ddb2a353606b6f2ee341447f9a3d7861ab3716685","impliedFormat":1},{"version":"325774a6d2a0c5a503a087364e1d2308ce4730ee210899b8d11b412dd00395f8","impliedFormat":1},{"version":"036bc43b320764702c313459a00814eb8d13b15641431df1dc116eee5654f2cb","impliedFormat":1},{"version":"1a52149ef8654709f701cc929df1034589e525f4d7da9aff024b4a3c8a695df4","impliedFormat":1},{"version":"0095c76e08b8444867670738f1694e6d18800398fc8c981bc8d9cf856d928318","impliedFormat":1},{"version":"e598736710dc41a63dc4ab02a282c0557c98bc7e647a6e512e1b127ff4eecb70","impliedFormat":1},{"version":"12bbe7019dde5c5384318674ead1886b88e257ec5bb4bd44281652637c1faf90","impliedFormat":1},{"version":"21e95c6d52386346fa336119b704724e0d3324bbb37896c8cf108fca492feb49","impliedFormat":1},{"version":"ed55f5ab7c994d6d22b1594d49294bee3bbe954ff864df537eef74bc510149c0","impliedFormat":1},{"version":"d385b968d24473a514c60ffa6c0e4f898ba1849e4b1757ee1def4cae63234392","impliedFormat":1},{"version":"722b13bcbb6e2400386b00847ff1b2d9e4f3b9cb840549e627f56eecd5a7874e","impliedFormat":1},{"version":"216e7a59fbecb203edeca6e5570ee6dbae724b4f55d251c7941b5eec4df8c671","impliedFormat":1},{"version":"29a06fc9b5402fef47d72924b1971cdb0cb39ffede86618eb4cadc1b7fabc558","impliedFormat":1}],"root":[[84,149],[151,177],[179,220],[222,225]],"options":{"allowJs":false,"esModuleInterop":true,"jsx":1,"module":199,"noFallthroughCasesInSwitch":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","strict":true,"target":99},"referencedMap":[[84,1],[83,2],[153,3],[179,4],[151,5],[182,6],[183,1],[184,7],[186,8],[187,9],[188,10],[189,11],[190,1],[191,12],[194,13],[196,1],[197,14],[198,1],[200,15],[201,16],[204,17],[206,18],[207,19],[208,9],[209,20],[210,21],[212,1],[213,22],[215,23],[216,24],[218,25],[219,26],[220,1],[222,27],[223,28],[193,29],[224,30],[156,1],[157,1],[158,1],[159,1],[160,1],[161,1],[162,1],[163,1],[164,1],[178,31],[165,1],[166,1],[167,1],[168,1],[169,1],[170,1],[171,1],[172,1],[173,1],[174,1],[175,1],[176,1],[177,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,1],[142,1],[143,1],[144,1],[145,1],[150,32],[146,1],[147,1],[148,1],[149,1]],"version":"5.8.3"}
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/react/index.d.ts","../@types/global.d.ts","../@types/sgds.d.ts","../@types/common/AbstractNotificationBanner.d.ts","../@types/common/ActionLink.d.ts","../@types/common/ConditionalWrapper.d.ts","../@types/common/FileIcon.d.ts","../@types/common/HintText.d.ts","../@types/common/Icon.d.ts","../@types/common/ScreenReaderText.d.ts","../@types/common/WrapperTag.d.ts","../@types/components/Accordion.d.ts","../@types/components/AspectBox.d.ts","../@types/components/BackToTop.d.ts","../@types/components/Breadcrumbs.d.ts","../@types/components/Button.d.ts","../@types/components/CategoryItem.d.ts","../@types/components/CategoryList.d.ts","../@types/components/Checkbox.d.ts","../@types/components/ConfirmationMessage.d.ts","../@types/components/ContentsNav.d.ts","../@types/components/DatePicker.d.ts","../@types/components/Details.d.ts","../@types/components/ErrorMessage.d.ts","../@types/components/ErrorSummary.d.ts","../@types/components/FileDownload.d.ts","../@types/components/HideThisPage.d.ts","../@types/components/InsetText.d.ts","../@types/components/Metadata.d.ts","../@types/components/NotificationPanel.d.ts","../@types/components/PageHeader.d.ts","../@types/components/Pagination.d.ts","../@types/components/PhaseBanner.d.ts","../@types/components/Question.d.ts","../@types/components/RadioButton.d.ts","../@types/components/Select.d.ts","../@types/components/SequentialNavigation.d.ts","../@types/components/SideNavigation.d.ts","../@types/components/SiteFooter.d.ts","../@types/components/SiteHeader.d.ts","../@types/components/SiteNavigation.d.ts","../@types/components/SiteSearch.d.ts","../@types/components/SkipLinks.d.ts","../@types/components/SummaryCard.d.ts","../@types/components/SummaryList.d.ts","../@types/components/Table.d.ts","../@types/components/Tabs.d.ts","../@types/components/Tag.d.ts","../@types/components/TaskList.d.ts","../@types/components/TextInput.d.ts","../@types/components/Textarea.d.ts","../@types/components/WarningText.d.ts","../src/images/icons/arrow_upward.tsx","../src/images/icons/calendar_today.tsx","../src/images/icons/cancel.tsx","../src/images/icons/check_circle.tsx","../src/images/icons/chevron_left.tsx","../src/images/icons/chevron_right.tsx","../src/images/icons/close.tsx","../src/images/icons/description.tsx","../src/images/icons/double_chevron_left.tsx","../src/images/icons/double_chevron_right.tsx","../src/images/icons/error.tsx","../src/images/icons/expand_less.tsx","../src/images/icons/expand_more.tsx","../src/images/icons/list.tsx","../src/images/icons/menu.tsx","../src/images/icons/priority_high.tsx","../src/images/icons/search.tsx","../src/images/icons/index.ts","../src/common/Icon.tsx","../src/common/ScreenReaderText.tsx","../src/common/AbstractNotificationBanner.tsx","../src/common/ActionLink.tsx","../src/common/ConditionalWrapper.tsx","../src/images/documents/audio.tsx","../src/images/documents/csv.tsx","../src/images/documents/excel.tsx","../src/images/documents/file.tsx","../src/images/documents/generic.tsx","../src/images/documents/geodata.tsx","../src/images/documents/ical.tsx","../src/images/documents/ico.tsx","../src/images/documents/image.tsx","../src/images/documents/odf.tsx","../src/images/documents/odg.tsx","../src/images/documents/odp.tsx","../src/images/documents/ods.tsx","../src/images/documents/odt.tsx","../src/images/documents/pdf.tsx","../src/images/documents/ppt.tsx","../src/images/documents/rtf.tsx","../src/images/documents/text.tsx","../src/images/documents/video.tsx","../src/images/documents/word.tsx","../src/images/documents/xml.tsx","../src/images/documents/zip.tsx","../src/images/documents/index.ts","../src/common/FileIcon.tsx","../src/common/HintText.tsx","../src/common/WrapperTag.tsx","../src/components/Accordion/Accordion.tsx","../src/components/AspectBox/AspectBox.tsx","../src/components/BackToTop/BackToTop.tsx","../src/components/Breadcrumbs/Breadcrumbs.tsx","../src/components/Button/Button.tsx","../src/components/CategoryItem/CategoryItem.tsx","../src/components/CategoryList/CategoryList.tsx","../src/utils/context.ts","../src/components/Checkbox/Checkbox.tsx","../src/components/Checkbox/CheckboxGroup.tsx","../src/components/ConfirmationMessage/ConfirmationMessage.tsx","../src/components/ContentsNav/ContentsNav.tsx","../src/components/CookieBanner/CookieBanner.tsx","../src/components/ErrorMessage/ErrorMessage.tsx","../src/components/TextInput/TextInput.tsx","../src/components/DatePicker/DatePicker.tsx","../src/components/Details/Details.tsx","../src/components/ErrorSummary/ErrorSummary.tsx","../src/components/FileDownload/FileDownload.tsx","../src/components/HideThisPage/HideThisPage.tsx","../src/components/InsetText/InsetText.tsx","../src/components/NotificationBanner/NotificationBanner.tsx","../src/components/NotificationPanel/NotificationPanel.tsx","../src/components/PageHeader/PageHeader.tsx","../src/components/PageMetadata/PageMetadata.tsx","../src/components/Pagination/Pagination.tsx","../src/components/Tag/Tag.tsx","../src/components/PhaseBanner/PhaseBanner.tsx","../src/components/Question/Question.tsx","../src/components/RadioButton/RadioButton.tsx","../src/components/RadioButton/RadioGroup.tsx","../src/components/Select/Select.tsx","../src/components/SequentialNavigation/SequentialNavigation.tsx","../src/components/SideNavigation/SideNavigation.tsx","../src/components/SiteFooter/SiteFooter.tsx","../src/components/SiteNavigation/SiteNavigation.tsx","../src/components/SiteHeader/SiteHeader.tsx","../src/components/SiteSearch/SiteSearch.tsx","../src/components/SkipLinks/SkipLinks.tsx","../src/components/SummaryCard/SummaryCard.tsx","../src/components/SummaryList/SummaryList.tsx","../src/components/Table/Table.tsx","../src/components/Tabs/Tabs.tsx","../src/components/TaskList/TaskList.tsx","../src/components/Textarea/Textarea.tsx","../src/components/WarningText/WarningText.tsx","../src/hooks/useTracking.ts"],"fileIdsList":[[83],[81,82],[83,153,154],[83,180],[83,152],[83,183],[83,153],[153,154,183],[157,183],[83,182,191],[83,191],[153,183],[155],[83,197,198],[83,181],[83,155],[183],[153],[210],[182,183,197],[182,197],[83,157],[83,153,219],[83,188],[83,156,157,183],[83,156,157],[83,154,157,182,210],[83,157,182,188,197],[83,157,182,197],[158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"19539467bf78201a93c2a00eeb99c728f52b4e623f14a7f20a691137e784c334","impliedFormat":1},{"version":"1317afd136988f1336e8c0933d180427abebeaf3cc8d9c5806074309b72134c8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffeaa210bf86d96905a330c4d6bd57f077146273b2c577c36ea0360b5328b84e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbde28cec4fe7df1a0e4e3e64e1829c922f4d5b32d4bdd6225339cd56bdd8320","affectsGlobalScope":true,"impliedFormat":1},{"version":"098d9d86ccf5d87f66dd1aba5edc7a79ac3c743252d0fcfc165f0842bbbbc03d","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b92ec64829cca003eaca5ee4ef9c7d844817100aa037415a7042f6e01f9a3ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"5c64ea2259c2aca1681436a2c3515bbb8ae5961c9e3b7586599b9ea93d5126bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c9360e38fe52de32a59efd76c2da2a9e9d76f49c2eb64991a8fb77713aa1aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"a2e5bd2aad7954b25979f0365662427432b417fee161a0143f4b57df59a77bee","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e4b84a1a0cf7e4beddc9fd133eeb16f57be77a743ed54a22a16f2573dd1049c","affectsGlobalScope":true,"impliedFormat":1},{"version":"47fa351abcf4e8d2d80a4933ab007da58afaef6b50c9f4afe0cd39f0a013394e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d9f663a357c9604e121dbb84c3197397d4cf0a70c632a7bb8ab52ecffb47fe9","affectsGlobalScope":true,"impliedFormat":1},{"version":"795a3344a3c1b9b23670d059e1d787d9b19bf4f5ba95a2bf1bf6d45f68edf879","affectsGlobalScope":true,"impliedFormat":1},{"version":"5879dda2931b3f5a62c3d96f9ce4bf1de56ca8887c1f4f8f6f2103fe93955905","affectsGlobalScope":true,"impliedFormat":1},{"version":"99d6f426e83c6d4ab37da95aff830e867141e283d1f160630ee92f7f5b43fdbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a801aff8a828c19adefdabafe4f07f483e21b62b3f98dced5f04d99658560bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cffb4ed8afe893595efde1e3ada2019889d9741fdb5190541ce3512a7f362b46","affectsGlobalScope":true,"impliedFormat":1},{"version":"1d252869e539f44db1caf6321190c41a88613035196a971db50d97a2f550fd2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"53f7dc3a3f556f2b579ee4d9319754b6c468e7eb52ee9291533f6888010bca0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7774503c390b0aa8c4e2e413067df3bc0877628860c13515c6b887db1fe7148a","affectsGlobalScope":true,"impliedFormat":1},{"version":"147d504d20ff86ecdc7d8f2311ebe4255843f8a3576f3b84cddea98caf43e4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"2308590a9d9174ba57f30d6cfe8e07756948759df448de60f3f2efd31615c49b","affectsGlobalScope":true,"impliedFormat":1},{"version":"db6deb9fc72c9e61e1ae93aaf927ee0110b9204cd3df2beb08f8d8d86e2702a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"86f69c9738a9b1379d749372d009e236c6ba2b232c331ba872434d8e1b6a729c","affectsGlobalScope":true,"impliedFormat":1},{"version":"af09dd3b4f18c3b4314e6b7cf004d92d4379746243ba240fe8be98106ea7f14d","affectsGlobalScope":true,"impliedFormat":1},{"version":"2516bb822c2a7518b292c5ba9eac441fba997a3d1c8b6df7e81a2fe806b6e477","affectsGlobalScope":true,"impliedFormat":1},{"version":"c206b97d5374757c38f36fb1b6c356b4af822ab252d21a3e90c1b467df41ba13","affectsGlobalScope":true,"impliedFormat":1},{"version":"12b4718b14acfe3798c1ef8603522450c41c2cee9412a177224138474e004eea","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b7e3365456e22a85329dbfce849302d65f6e5002958bb65a00c269976742ce8","affectsGlobalScope":true,"impliedFormat":1},{"version":"98ca85bc6fcc9b784ae5e74a4645a079ea54f01f8ccce536d08d69bf35bee782","affectsGlobalScope":true,"impliedFormat":1},{"version":"feef0898c1615004fc5e6b231bdf366d88ac83186fb06b3fcbd3b0b011112cf3","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e1bd61a56720b4adb5bb5fca7a7f91ed91cb5afc70860cd652f10cb390a9321","affectsGlobalScope":true,"impliedFormat":1},{"version":"79616e26be6f4f3380de475ac9f2e347299eac21fa4ad5b78791d6e97dd821d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"2159c8a47dafbf09010f7f771503e14bb7b9d83d02c2546458baa4af111267ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"512b5fb9998e9ae4c4ea32ce0fa4fa4ec18fb6744169d818b0aa19d347807cbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"f44e5b71f78761d31bb55c8ef924fa4c619a11ba457e9e58429c36263536bed7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e23516b121b21109be780f2acc595f7f8b1ca9b5ccf8defe8085e15396a17dc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"a49a47be2e325495caf1b3d0be5a22e991c262273242df6cba316216e559aae9","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f7be37b765736ea258256b6d0e898c233f45b639b242930e6f425f6429f35c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d624af46a96430c4ceda35cd14d13989118ad7c08e9e050c3583c7fd4e817fe5","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fba9b8227813f40a4b1da3b0621a6875ac3a60fb03f716bad5ba35ae31200e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"a3072897e6cc0db7c3c0224f3908667479353ea95c9df716ba6c8a5aa0c864dc","affectsGlobalScope":true,"impliedFormat":1},{"version":"1653b209dce2fe213a49d50ec26c664abdd519376a3b63a85f54e46cd0f2f20f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3a701e8f6d1fcbd64d5290c5910c7d4d4a51b0962cc7cc066bc0857fdf2a769f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fd64a2bd3d11981ffdc37a2d3d85f0ad2fad5bde616df7f9a28cd17c0849620","affectsGlobalScope":true,"impliedFormat":1},{"version":"766ec21ebeae89752917970c19fbe1a55e4667892fac931c2d631e2408902661","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2dc5cab1d5ca1bacc04bd196aab6ec4c8e4628cb219d6d8f990c8b7857cd85c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab1a31de76dff33cecf38cf15773bcf0077cbb0d6324d7de2c01a013b380e61c","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d6b27c44ec5d13a92e2fa535565a0402370c6c2e6df9dcee384214657cbde4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc670c5cfaeed3b2362c9addc3b2037c2633f284f6d5d2679d9bcf043a8f21e5","affectsGlobalScope":true,"impliedFormat":1},{"version":"02e9eac7ab6147b04f14766548bdfea780b3e8b662ae95d2f6c855b34bc2de50","affectsGlobalScope":true,"impliedFormat":1},{"version":"d48a57bbd0f108b0b823e4b7e504202849565bc7ec3d6152c1edd034085e634d","impliedFormat":1},{"version":"cdc6aa72ff56d7ba4b5663b538499b7a62e28949b90998d9de586efa1f0da6c2","impliedFormat":1},{"version":"fbe469b136d2a63dd6646f4db9fd20a0450fb36669c41b7e0cbfab02e4fd92c9","impliedFormat":1},{"version":"efe87d1b6cb3254e1653596191c4a1fa9b804bdae9698688ba5baf810dbc4023","impliedFormat":1},{"version":"e0342cb84d606a3b91e9784941133d2f13bd165357a1c7dbb2b3601f974e645b","impliedFormat":1},{"version":"1470e989c2de33c13f0fcfa6a474155fe4feae743b159de0c8b083b7dc1b3873","impliedFormat":1},{"version":"857f0ef3de579385929b8000aa19144ecc5832542a4d723c8caa303a0ad8bd9a","impliedFormat":1},{"version":"e0b7f78273174809c37621c93e4afdb6dda2e4c0f40805408f4fa56514e652ae","impliedFormat":1},{"version":"3cc501ddf785b169b74f8e432bde654cd922a754750bb29a576b2a79b8f9618e","impliedFormat":1},{"version":"a971267c48315984df5712dfeb2b281a17a5548caa891a54c2502279b7e2444f","impliedFormat":1},{"version":"3d72a0e2843bcabaf41c6ef01643d13a75e06d76cb3495b48151ef96822c40fb","impliedFormat":1},{"version":"3049d785b956bb9de6260c9c1d5cc58f4226362a7fa82c01351df3531163d906","impliedFormat":1},{"version":"acb8d9e9d696eab779c15c7c8b055222af07080555be8accc9b018cd8d534cba","impliedFormat":1},{"version":"98789e27920c08833bd9ccae41894fb57127b9f4d0477b9b733834126038744b","impliedFormat":1},{"version":"312bbdca0451338ddba6e043ff7b0e00fe1f3e8297e08d043090f8e33ca01201","impliedFormat":1},{"version":"847b85d627fdf793907ca6e4fb9474b97990f3ea74fe11f3f8de11428015812d","impliedFormat":1},{"version":"d1a2785ad9fcef9d68e4a921ee246c013e486f5e1481561f39e46a37e1a5dcd1","impliedFormat":1},{"version":"2ed0c132b911e6c0f23a0c3075f25071365fc01479c3cbaff7a5e761963eb645","impliedFormat":1},{"version":"8ffca064114a9e96f61e725646a7b52de6c4e81ad6cf4cff7ec58d7b09b2b2f5","impliedFormat":1},{"version":"79a38f4d0f2885a4dc7d5ee03067a0f054654a097b6bcdd7b9399a7340e5d6bd","impliedFormat":1},{"version":"280baa93393f5bae1ce373b85841e66c2f2868bc59d78a6b17e894f085c7b45e","impliedFormat":1},{"version":"d4dcf03d540d83c900fa86d317804a80a7425c666c483a9c1f206d3219b84f18","impliedFormat":1},{"version":"5a87a98019912323fc87efe0360e2bd1fc244f022a4b03e3f2df29896f29126f","impliedFormat":1},{"version":"4ad3ed87009688524c365aee0eadca522078c7d5aa8580b5ef5f3c54b3aab497","impliedFormat":1},{"version":"3cd22ddcf1b7801b5705e718ec529a5ee9611cc9ae88b979028646a0782dbc1e","impliedFormat":1},{"version":"2bfd5b960fac0e16390347af778921ee1ec70894cd099aa5805af751a658cd05","impliedFormat":1},{"version":"ef01c52d8c99c994665adc0c35942fe50464f4179bc2826bc0ebfe0759374a51","impliedFormat":1},{"version":"4d500cf6792ed5997ed48a97f9df7a4e1b8d1d9825797add4215981ed8940046","impliedFormat":1},{"version":"8d94ba35c9d4014f1607fe7c619c95edd80c197d91f5e1cd49ca428ee9214175","impliedFormat":1},{"version":"ba6fcf4cb53cf471cf2f4e51ebe973a50ddf00b7762335d1e92fab3c26c4985c","impliedFormat":1},{"version":"fc53b3d7998e3f6d395d762c58bb4790ddaf162d6795031cee30650072cebd6a","impliedFormat":1},{"version":"05c3ab68f6fc6dbd5c841e7b9ab4959719eeda79a3572f4ee7aa6647033a91cc","impliedFormat":1},{"version":"727a2a7b31a1dd98fee8f15fa0bc59c87ce44dffbd3492222f053488018ae017","impliedFormat":1},{"version":"ad1b75ae0628e97c294c977069f54d6945f8ae628cea3355cb642a73a5709754","impliedFormat":1},{"version":"6dee112c19ee4481913be31716b7053d3123cd0d210a6ee0a94388f8fd3c055f","impliedFormat":1},{"version":"2e9ac24fa9545e88077981989b45418b014705d350f836004c090a8ba43b49eb","impliedFormat":1},{"version":"cccd6ce5f2e39a4f7dfe3da2579e31a93d257da2130476b52964bbab4eabf074","impliedFormat":1},{"version":"5bd1f7eb991058cf97ad8a884f1983515cb63b7d0b3718d6c442ce919b60ff2b","impliedFormat":1},{"version":"1481b554bb62382ab4d37ba7f294840eedebe6b7b855500469255f0f452360d3","impliedFormat":1},{"version":"e717716fc6b35d446fa36116871b4c54209fd7b0bb1f25890beff8168bdb74ba","impliedFormat":1},{"version":"9fc88fd6212156d278fde6a05ba371a3a50c9c2e4d15567dcf25f7e1d193d550","impliedFormat":1},{"version":"4da6750f81a1f188d1a0b4c7b4bebb5f45cfcd1fbe1b6a1d3b771e1f520f5a27","impliedFormat":1},{"version":"d6f81749732dbecc7ed7aaf1229dc7d4eebcc4fdf3701c1281c5c3a77e26b0d6","impliedFormat":1},{"version":"2dee2550ac9958f1ca335a2997d8f257be4665a915203c191cc7ff7d60d544ee","impliedFormat":1},{"version":"2e6f87d9b1be91dfae7f3678976ef5509256db51887037a34b44171da404a5d4","impliedFormat":1},{"version":"6737d9626d44a77c65c9f0bdfebee37dffbf8c20c560121bf9ed7694ceb1de0a","impliedFormat":1},{"version":"dde0e9138f5ffda29f60072f967742e56b986a757b1ae78df7bf8f1bdad1c89f","impliedFormat":1},{"version":"fab635b7cd38d5c3698aa03a3bdd3e13441c5593223c4310c25c575ca75e4121","impliedFormat":1},{"version":"4d2887550949e09054b1c75f1a2a3bd0123df2b1d3b6fcb495956353ca0a8aa6","impliedFormat":1},{"version":"96a026f5ce8451eac7e748384845c6973251cb5d3ca58b77db7acab564cc063c","impliedFormat":1},{"version":"29e196807a614c9e1543d5d4e3d65a90f3d27c69eb392efb576be7a052f020f7","impliedFormat":1},{"version":"0ac9ec588bf62b7e23fe2cbc30471f14427324ae354f48516e791f98cbf12a4d","impliedFormat":1},{"version":"47a69b5144ce5951c503bb5fbfd856af5ed445b3daca4a317e55746cf7dfcfd4","impliedFormat":1},{"version":"4d70e4d39b0e667e978fed9bae9c2ff0916059e9d5e0c59c95b4f5a670b8e821","impliedFormat":1},{"version":"a16fd1b94fdf01ecbf4eb6b2c0fb824e8f4c6219ececf897b570874d8c9a040c","impliedFormat":1},{"version":"9901c1c19b4727dad4cc99fa74399b08a38fddf18753e90f6f2e8c2d2365deff","impliedFormat":1},{"version":"5ae6a3d059b40ce6295920d35e8a5101a69dc08fbfaf2c4f1ca0100cde13885a","impliedFormat":1},{"version":"5205c45c7f1b04d55c5fcd0f20ea366026bf978463d1e3adf1035a4defdd02df","impliedFormat":1},{"version":"ef1ad5de102742747c008e247758111c194785ad8879c1c49442e2d9b9d438da","impliedFormat":1},{"version":"1b57a37ece281f1f694101841fc57a911d05ec7f56914d6966bdb17ea8fb92d5","impliedFormat":1},{"version":"e610775d339249f577ea716cfbc013da077ec2c1ef53b628e645fe5de1ef6a54","impliedFormat":1},{"version":"1393bd9e30235dbdb793ca53abf31508dbb91d0c427c897491060ade71c86a8c","impliedFormat":1},{"version":"888c153991685ecf26888c3af13f2bb9bb9e6477a1493563dd5f9de94261b1dc","impliedFormat":1},{"version":"fd231ec8b9f8ca94d03f46f256cdd390dfd87501d3d018eb5b3b47ddb5458838","impliedFormat":1},{"version":"4a2745f6ef3076d847c2c593e3cf87e0d71d65e5a89ee37c35c5695716afba81","impliedFormat":1},{"version":"aae9028ab30404a07bda3b02595677da8664d65b0a7968f67c4bd6947febb3df","impliedFormat":1},{"version":"67637f4c17c80eac4b9ccc223453fea5d714763378827d13b7c36cc7214aedcf","impliedFormat":1},{"version":"daa3a71c841c692be4e97288a626adafe6bf01c387841baafe6d0d49cb13400e","impliedFormat":1},{"version":"92ff60a4cb2f5542841e21dd79731d513700e0476040490b7121705e0bb214ad","impliedFormat":1},{"version":"22c6620cd8ee807b4fbbafa392a6df61ba6de35a34d21ffeb4b4071f65ff991e","impliedFormat":1},{"version":"b9ba2892a2276ef7f0d32ad95c57f49c7446db747f61e610ec00a2b68fc9e461","impliedFormat":1},{"version":"5abcd34e58b471c0443fe3f9147ce3ff28720e35f2038b160049122fee6cdd84","impliedFormat":1},{"version":"4fc75cac8af69a85abd91a47c57888690bc0e4515227b7acbf27038c0868d67e","impliedFormat":1},{"version":"ece9648a0bde20e2e63f2f5114a652aaed2be937bbeff81cc7861b131b1dad66","impliedFormat":1},{"version":"ae1e14c0cf514fc8c8b973dfcb9ea3b045c6d9c025a04d1df2bd45d155bb875e","impliedFormat":1},{"version":"c7a0e6645fcbc36006ee7556a55e9785ffe9c99cf5cd1ea8f42590781e33a8b3","impliedFormat":1},{"version":"d1992aa5e232c6116e6ea434da3bf92631dfd1ff36421689e05f49ab5c6e6e3a","impliedFormat":1},{"version":"dde248e4baf7afc1caf3b6be32effce6811615260d2b672c36ba1b8f1730b90f","impliedFormat":1},{"version":"36d2b369713badb14cb762bf8dab71f94435fe3766d17c7e4c2efa9e225dd4b4","impliedFormat":1},{"version":"d6dc45aa20358bbcba857c2b236d78d8f0d37f9491fed573db3d9a2710667f7f","impliedFormat":1},{"version":"2e9868bbb89729d8d383839894cd9db5407ed4b7402baf2fb073edf5e3a1cd97","impliedFormat":1},{"version":"8adf95ab6f1bc0e3f69d32580d24a27e82fea9396100b3cbe159f9522a554228","impliedFormat":1},{"version":"8cec7195b8a05abdb2c73d77e1024756fb2fdf16147eee7a138b4ac72414dd5f","impliedFormat":1},{"version":"bedfb0b86b6514727876c44ddb2a353606b6f2ee341447f9a3d7861ab3716685","impliedFormat":1},{"version":"3a5d3125c7602bffcb087ce0a318044bcc671ddd8b61cafe01ee34c8da8d387d","impliedFormat":1},{"version":"6c20f0b290014710ba697b3ba5b20ebb23462d1662ed7ce2a03791b359a93ec7","impliedFormat":1},{"version":"7fa57ee858c75bf2b47750ed83ea5dbfe0e83106bcc231020a4ba50f6e2e5b8f","impliedFormat":1},{"version":"316a4313abd684c6fe7f114fedb2cb7db2bec3e0e90b01441f6b319a3f546a61","impliedFormat":1},{"version":"e598736710dc41a63dc4ab02a282c0557c98bc7e647a6e512e1b127ff4eecb70","impliedFormat":1},{"version":"346a121dfebd0d5c04690f455e38d44098818325942323718dea166f2b965c2a","impliedFormat":1},{"version":"21e95c6d52386346fa336119b704724e0d3324bbb37896c8cf108fca492feb49","impliedFormat":1},{"version":"0c2a1aa81c12b7b20a15184ac40dccb9d7ea8a1c5f8773ff6e7931335c253b61","impliedFormat":1},{"version":"722b13bcbb6e2400386b00847ff1b2d9e4f3b9cb840549e627f56eecd5a7874e","impliedFormat":1},{"version":"e4d7b2ae1ffd50765d4e595dc75139a0bc7691372bf6c58cd21c5d9fff511ad3","impliedFormat":1},{"version":"29a06fc9b5402fef47d72924b1971cdb0cb39ffede86618eb4cadc1b7fabc558","impliedFormat":1},{"version":"dbbed8e6f506890bf1e3065ab6124680f59d0fca135762a027fa7252b32ab559","impliedFormat":1}],"root":[[84,230]],"options":{"allowJs":false,"esModuleInterop":true,"jsx":1,"module":199,"noFallthroughCasesInSwitch":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","strict":true,"target":99},"referencedMap":[[84,1],[83,2],[155,3],[181,4],[153,5],[184,6],[185,1],[186,7],[188,8],[189,9],[190,6],[192,10],[193,11],[194,12],[195,1],[196,13],[199,14],[201,1],[202,15],[203,1],[205,16],[206,17],[209,18],[211,19],[212,20],[213,10],[214,11],[215,21],[217,1],[218,22],[220,23],[221,24],[223,25],[224,26],[225,1],[226,6],[227,27],[198,28],[228,29],[230,1],[158,1],[159,1],[160,1],[161,1],[162,1],[163,1],[164,1],[165,1],[166,1],[180,30],[167,1],[168,1],[169,1],[170,1],[171,1],[172,1],[173,1],[174,1],[175,1],[176,1],[177,1],[178,1],[179,1],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,1],[142,1],[143,1],[144,1],[145,1],[146,1],[147,1],[152,31],[148,1],[149,1],[150,1],[151,1],[191,1]],"version":"5.8.3"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scottish-government/designsystem-react",
|
|
3
3
|
"description": "A React/JSX implementation of the Scottish Government Design System",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.10.0-beta.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Scottish Government Digital Design System team",
|
|
@@ -14,12 +14,20 @@
|
|
|
14
14
|
"svgr": "npx @svgr/cli node_modules/@scottish-government/design-system/src/images/icons/svg --config-file .svgrrc",
|
|
15
15
|
"svgr_documents": "npx @svgr/cli node_modules/@scottish-government/design-system/src/images/documents/svg --config-file .svgrrc_documents",
|
|
16
16
|
"test": "vitest",
|
|
17
|
-
"tsc": "node ./node_modules/typescript/bin/tsc"
|
|
17
|
+
"tsc": "node ./node_modules/typescript/bin/tsc",
|
|
18
|
+
"storybook": "storybook dev -p 6006",
|
|
19
|
+
"build-storybook": "storybook build"
|
|
18
20
|
},
|
|
19
21
|
"dependencies": {
|
|
20
|
-
"@scottish-government/design-system": "^3.
|
|
22
|
+
"@scottish-government/design-system": "^3.2.1"
|
|
21
23
|
},
|
|
22
24
|
"devDependencies": {
|
|
25
|
+
"@chromatic-com/storybook": "^4.0.1",
|
|
26
|
+
"@storybook/addon-a11y": "^9.0.15",
|
|
27
|
+
"@storybook/addon-docs": "^9.0.15",
|
|
28
|
+
"@storybook/addon-onboarding": "^9.0.15",
|
|
29
|
+
"@storybook/addon-vitest": "^9.0.15",
|
|
30
|
+
"@storybook/react-vite": "^9.0.15",
|
|
23
31
|
"@svgr/cli": "^8.1.0",
|
|
24
32
|
"@testing-library/dom": "^10.4.0",
|
|
25
33
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -33,7 +41,10 @@
|
|
|
33
41
|
"jsdom": "^26.1.0",
|
|
34
42
|
"react": "^19.1.0",
|
|
35
43
|
"react-dom": "^19.1.0",
|
|
44
|
+
"storybook": "^9.0.15",
|
|
36
45
|
"typescript": "^5.8.3",
|
|
37
|
-
"vitest": "^3.2.0"
|
|
46
|
+
"vitest": "^3.2.0",
|
|
47
|
+
"@vitest/browser": "3.2.4",
|
|
48
|
+
"playwright": "^1.53.2"
|
|
38
49
|
}
|
|
39
50
|
}
|
|
@@ -33,7 +33,7 @@ test('abstract notification banner renders correctly', () => {
|
|
|
33
33
|
|
|
34
34
|
test('abstract notification banner with close button', () => {
|
|
35
35
|
render(
|
|
36
|
-
<AbstractNotificationBanner
|
|
36
|
+
<AbstractNotificationBanner isDismissable>
|
|
37
37
|
{NOTIFICATION_TEXT}
|
|
38
38
|
</AbstractNotificationBanner>
|
|
39
39
|
);
|
|
@@ -11,10 +11,10 @@ const Buttons = ({
|
|
|
11
11
|
const AbstractNotificationBanner = ({
|
|
12
12
|
children,
|
|
13
13
|
className,
|
|
14
|
-
close,
|
|
15
14
|
hasColourIcon,
|
|
16
15
|
hasInverseIcon,
|
|
17
16
|
icon,
|
|
17
|
+
isDismissable,
|
|
18
18
|
title = 'Information',
|
|
19
19
|
...props
|
|
20
20
|
}: SGDS.Common.AbstractNotificationBanner) => {
|
|
@@ -43,7 +43,7 @@ const AbstractNotificationBanner = ({
|
|
|
43
43
|
<div className={
|
|
44
44
|
[
|
|
45
45
|
'ds_notification__content',
|
|
46
|
-
|
|
46
|
+
isDismissable && 'ds_notification__content--has-close'
|
|
47
47
|
].join(' ')}
|
|
48
48
|
>
|
|
49
49
|
<h2 className="visually-hidden">{title}</h2>
|
|
@@ -63,10 +63,10 @@ const AbstractNotificationBanner = ({
|
|
|
63
63
|
{content}
|
|
64
64
|
</div>
|
|
65
65
|
|
|
66
|
-
{
|
|
66
|
+
{isDismissable &&
|
|
67
67
|
<button type="button" className="ds_notification__close js-close-notification">
|
|
68
68
|
<ScreenReaderText>Close this notification</ScreenReaderText>
|
|
69
|
-
<Icon
|
|
69
|
+
<Icon isFilled icon="Close" aria-hidden="true" />
|
|
70
70
|
</button>
|
|
71
71
|
}
|
|
72
72
|
|
package/src/common/Icon.test.tsx
CHANGED
package/src/common/Icon.tsx
CHANGED
|
@@ -4,7 +4,7 @@ import * as Icons from '../images/icons';
|
|
|
4
4
|
const Icon = ({
|
|
5
5
|
ariaLabel,
|
|
6
6
|
className,
|
|
7
|
-
|
|
7
|
+
isFilled,
|
|
8
8
|
icon,
|
|
9
9
|
iconSize
|
|
10
10
|
}: SGDS.Common.Icon) => {
|
|
@@ -17,7 +17,7 @@ const Icon = ({
|
|
|
17
17
|
className={[
|
|
18
18
|
'ds_icon',
|
|
19
19
|
className,
|
|
20
|
-
|
|
20
|
+
isFilled && 'ds_icon--fill',
|
|
21
21
|
iconSize && `ds_icon--${iconSize}`
|
|
22
22
|
].join(' ')}
|
|
23
23
|
/>
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import argTypes from '../../../.storybook/sgdsArgTypes';
|
|
3
|
+
|
|
4
|
+
import Accordion from './Accordion';
|
|
5
|
+
|
|
6
|
+
const meta = {
|
|
7
|
+
title: 'Components/Accordion',
|
|
8
|
+
component: Accordion,
|
|
9
|
+
argTypes: {
|
|
10
|
+
headingLevel: argTypes.headingLevel({
|
|
11
|
+
description: 'Heading level to use for the accordion items\' titles'
|
|
12
|
+
}),
|
|
13
|
+
hideOpenAll: {
|
|
14
|
+
control: 'boolean',
|
|
15
|
+
description: 'Do not show the ‘open all’ button',
|
|
16
|
+
type: 'boolean'
|
|
17
|
+
},
|
|
18
|
+
children: {
|
|
19
|
+
control: false
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
args: {
|
|
23
|
+
children: <>
|
|
24
|
+
<Accordion.Item id='accordion-1' title='Healthcare for veterans'>
|
|
25
|
+
<p>
|
|
26
|
+
Veterans are entitled to the same healthcare as any citizen. And there are health care options and support available specifically for veterans.
|
|
27
|
+
</p>
|
|
28
|
+
<p>
|
|
29
|
+
If you have a health condition that's related to your service, you're entitled to priority treatment based on clinical need.
|
|
30
|
+
</p>
|
|
31
|
+
</Accordion.Item>
|
|
32
|
+
<Accordion.Item id='accordion-2' title='Employability for veterans'>
|
|
33
|
+
<p>
|
|
34
|
+
If you're looking for a job, there are several organisations that can help you <a href="#accordion-link">find a job or develop new skills</a>.
|
|
35
|
+
</p>
|
|
36
|
+
</Accordion.Item>
|
|
37
|
+
<Accordion.Item id='accordion-3' title='Housing for veterans'>
|
|
38
|
+
<p>
|
|
39
|
+
If you need <a href="#accordion-link"> help finding a place to live</a> there's support specifically for veterans.
|
|
40
|
+
</p>
|
|
41
|
+
</Accordion.Item>
|
|
42
|
+
</>
|
|
43
|
+
}
|
|
44
|
+
} satisfies Meta<typeof Accordion>;
|
|
45
|
+
|
|
46
|
+
export default meta;
|
|
47
|
+
type Story = StoryObj<typeof meta>;
|
|
48
|
+
|
|
49
|
+
export const Default: Story = {
|
|
50
|
+
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export const OpenPanelOnLoad: Story = {
|
|
54
|
+
args: {
|
|
55
|
+
children: <>
|
|
56
|
+
<Accordion.Item id='accordion-1' title='Healthcare for veterans'>
|
|
57
|
+
<p>
|
|
58
|
+
Veterans are entitled to the same healthcare as any citizen. And there are health care options and support available specifically for veterans.
|
|
59
|
+
</p>
|
|
60
|
+
<p>
|
|
61
|
+
If you have a health condition that's related to your service, you're entitled to priority treatment based on clinical need.
|
|
62
|
+
</p>
|
|
63
|
+
</Accordion.Item>
|
|
64
|
+
<Accordion.Item id='accordion-2' title='Employability for veterans' isOpen>
|
|
65
|
+
<p>
|
|
66
|
+
If you're looking for a job, there are several organisations that can help you <a href="#accordion-link">find a job or develop new skills</a>.
|
|
67
|
+
</p>
|
|
68
|
+
</Accordion.Item>
|
|
69
|
+
<Accordion.Item id='accordion-3' title='Housing for veterans'>
|
|
70
|
+
<p>
|
|
71
|
+
If you need <a href="#accordion-link"> help finding a place to live</a> there's support specifically for veterans.
|
|
72
|
+
</p>
|
|
73
|
+
</Accordion.Item>
|
|
74
|
+
</>
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export const AutomaticallyAssignedId: Story = {
|
|
79
|
+
args: {
|
|
80
|
+
children: <>
|
|
81
|
+
<Accordion.Item title='Healthcare for veterans'>
|
|
82
|
+
<p>
|
|
83
|
+
Veterans are entitled to the same healthcare as any citizen. And there are health care options and support available specifically for veterans.
|
|
84
|
+
</p>
|
|
85
|
+
<p>
|
|
86
|
+
If you have a health condition that's related to your service, you're entitled to priority treatment based on clinical need.
|
|
87
|
+
</p>
|
|
88
|
+
</Accordion.Item>
|
|
89
|
+
<Accordion.Item title='Employability for veterans' isOpen>
|
|
90
|
+
<p>
|
|
91
|
+
If you're looking for a job, there are several organisations that can help you <a href="#accordion-link">find a job or develop new skills</a>.
|
|
92
|
+
</p>
|
|
93
|
+
</Accordion.Item>
|
|
94
|
+
<Accordion.Item title='Housing for veterans'>
|
|
95
|
+
<p>
|
|
96
|
+
If you need <a href="#accordion-link"> help finding a place to live</a> there's support specifically for veterans.
|
|
97
|
+
</p>
|
|
98
|
+
</Accordion.Item>
|
|
99
|
+
</>
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export const HideOpenAll: Story = {
|
|
104
|
+
args: {
|
|
105
|
+
hideOpenAll: true
|
|
106
|
+
},
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export const InvalidNoChildren: Story = {
|
|
110
|
+
args: {children: undefined}
|
|
111
|
+
}
|
|
@@ -19,7 +19,7 @@ test('accordion renders correctly', () => {
|
|
|
19
19
|
<p>If you have a health condition that’s related to your service, you’re
|
|
20
20
|
entitled to priority treatment based on clinical need.</p>
|
|
21
21
|
</Accordion.Item>
|
|
22
|
-
<Accordion.Item
|
|
22
|
+
<Accordion.Item isOpen id="accordion-2" title="Employability for veterans">
|
|
23
23
|
<p>If you're looking for a job, there are several organisations that can help
|
|
24
24
|
you <a href="#accordion-link">find a job or develop new skills</a>.</p>
|
|
25
25
|
</Accordion.Item>
|
|
@@ -32,7 +32,6 @@ test('accordion renders correctly', () => {
|
|
|
32
32
|
|
|
33
33
|
const accordion = screen.getByTestId(ACCORDION_ID);
|
|
34
34
|
const openAllButton = document.querySelector('.ds_accordion__open-all');
|
|
35
|
-
const accordionItems = document.querySelectorAll('.ds_accordion-item');
|
|
36
35
|
const firstAccordionTitle = document.querySelector('.ds_accordion-item__title');
|
|
37
36
|
|
|
38
37
|
expect(accordion).toHaveClass('ds_accordion');
|
|
@@ -43,8 +42,6 @@ test('accordion renders correctly', () => {
|
|
|
43
42
|
expect(openAllButton?.textContent).toEqual('Open all sections');
|
|
44
43
|
expect(openAllButton?.innerHTML).toEqual('Open all <span class="visually-hidden">sections</span>');
|
|
45
44
|
|
|
46
|
-
expect(accordionItems.length).toEqual(3);
|
|
47
|
-
|
|
48
45
|
expect(firstAccordionTitle?.tagName).toEqual(DEFAULT_HEADING_LEVEL.toUpperCase());
|
|
49
46
|
});
|
|
50
47
|
|
|
@@ -172,29 +169,20 @@ test('accordion items without ID are given unique IDs', () => {
|
|
|
172
169
|
<p>If you're looking for a job, there are several organisations that can help
|
|
173
170
|
you <a href="#accordion-link">find a job or develop new skills</a>.</p>
|
|
174
171
|
</Accordion.Item>
|
|
175
|
-
<Accordion.Item data-testid="item3" title="Housing for veterans">
|
|
176
|
-
<p>If you need <a href="#accordion-link">help finding a place to live</a>{' '}
|
|
177
|
-
there's support specifically for veterans.</p>
|
|
178
|
-
</Accordion.Item>
|
|
179
172
|
</Accordion>
|
|
180
173
|
);
|
|
181
174
|
|
|
182
175
|
const accordionItem1 = screen.getByTestId('item1');
|
|
183
176
|
const accordionItem2 = screen.getByTestId('item2');
|
|
184
|
-
const accordionItem3 = screen.getByTestId('item3');
|
|
185
|
-
|
|
186
|
-
let idModifier = Number(accordionItem1.id.replace('accordion-item-', ''));
|
|
187
177
|
|
|
188
|
-
expect(accordionItem1).toHaveAttribute('id'
|
|
189
|
-
|
|
190
|
-
expect(
|
|
191
|
-
idModifier = idModifier + 1;
|
|
192
|
-
expect(accordionItem3).toHaveAttribute('id', `accordion-item-${idModifier}`);
|
|
178
|
+
expect(accordionItem1).toHaveAttribute('id');
|
|
179
|
+
expect(accordionItem2).toHaveAttribute('id');
|
|
180
|
+
expect(accordionItem1.id).not.toEqual(accordionItem2.id);
|
|
193
181
|
});
|
|
194
182
|
|
|
195
183
|
test('open accordion item', () => {
|
|
196
184
|
render(
|
|
197
|
-
<Accordion.Item
|
|
185
|
+
<Accordion.Item isOpen id={ACCORDION_ITEM_ID} data-testid={ACCORDION_ITEM_ID} title={TITLE_TEXT}>
|
|
198
186
|
<p>{CONTENT_TEXT}</p>
|
|
199
187
|
</Accordion.Item>
|
|
200
188
|
);
|
|
@@ -1,21 +1,24 @@
|
|
|
1
|
-
import React, {
|
|
1
|
+
import React, { createContext, useContext, useEffect, useRef, useId } from 'react';
|
|
2
2
|
import WrapperTag from '../../common/WrapperTag';
|
|
3
3
|
// @ts-ignore
|
|
4
4
|
import DSAccordion from '@scottish-government/design-system/src/components/accordion/accordion';
|
|
5
5
|
|
|
6
6
|
let accordionItemCounter = 0;
|
|
7
|
+
const AccordionHeadingLevelContext = createContext('h3');
|
|
7
8
|
|
|
8
9
|
const AccordionItem = ({
|
|
9
10
|
children,
|
|
10
11
|
className,
|
|
11
|
-
headingLevel = 'h3',
|
|
12
12
|
id: rawId,
|
|
13
|
-
|
|
13
|
+
isOpen = false,
|
|
14
14
|
title,
|
|
15
15
|
...props
|
|
16
16
|
}: SGDS.Component.Accordion.Item) => {
|
|
17
17
|
accordionItemCounter = accordionItemCounter + 1;
|
|
18
|
-
const processedId = rawId || `accordion-item-${
|
|
18
|
+
const processedId = rawId || `accordion-item-${useId()}`;
|
|
19
|
+
|
|
20
|
+
let headingLevel = useContext(AccordionHeadingLevelContext);
|
|
21
|
+
|
|
19
22
|
return (
|
|
20
23
|
<div
|
|
21
24
|
className={[
|
|
@@ -31,7 +34,7 @@ const AccordionItem = ({
|
|
|
31
34
|
'ds_accordion-item__control',
|
|
32
35
|
'visually-hidden'
|
|
33
36
|
].join(' ')}
|
|
34
|
-
defaultChecked={
|
|
37
|
+
defaultChecked={isOpen}
|
|
35
38
|
id={`${processedId}-control`}
|
|
36
39
|
type="checkbox"
|
|
37
40
|
/>
|
|
@@ -77,10 +80,6 @@ const Accordion = ({
|
|
|
77
80
|
hideOpenAll = true;
|
|
78
81
|
}
|
|
79
82
|
|
|
80
|
-
function processChild(child: any) {
|
|
81
|
-
return React.cloneElement(child, { headingLevel: headingLevel });
|
|
82
|
-
}
|
|
83
|
-
|
|
84
83
|
return (
|
|
85
84
|
<div
|
|
86
85
|
className={[
|
|
@@ -105,7 +104,9 @@ const Accordion = ({
|
|
|
105
104
|
</button>
|
|
106
105
|
)}
|
|
107
106
|
|
|
108
|
-
{
|
|
107
|
+
<AccordionHeadingLevelContext value={headingLevel}>
|
|
108
|
+
{children}
|
|
109
|
+
</AccordionHeadingLevelContext>
|
|
109
110
|
</div>
|
|
110
111
|
);
|
|
111
112
|
};
|