@scottish-government/designsystem-react 0.7.1 → 0.8.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/@types/common/AbstractNotificationBanner.d.ts +2 -2
- package/@types/common/ActionLink.d.ts +8 -0
- package/@types/common/FileIcon.d.ts +1 -1
- package/@types/common/Icon.d.ts +1 -1
- package/@types/components/Accordion.d.ts +0 -1
- package/@types/components/Breadcrumbs.d.ts +2 -5
- package/@types/components/Checkbox.d.ts +0 -2
- package/@types/components/ConfirmationMessage.d.ts +1 -1
- package/@types/components/ContentsNav.d.ts +4 -6
- package/@types/components/DatePicker.d.ts +1 -1
- package/@types/components/ErrorSummary.d.ts +3 -4
- package/@types/components/NotificationPanel.d.ts +1 -1
- package/@types/components/Pagination.d.ts +5 -4
- package/@types/components/PhaseBanner.d.ts +0 -1
- package/@types/components/Question.d.ts +1 -1
- package/@types/components/RadioButton.d.ts +0 -1
- package/@types/components/Select.d.ts +0 -7
- package/@types/components/SequentialNavigation.d.ts +4 -4
- package/@types/components/SideNavigation.d.ts +4 -5
- package/@types/components/SiteFooter.d.ts +25 -0
- package/@types/components/SiteHeader.d.ts +10 -3
- package/@types/components/SiteNavigation.d.ts +2 -3
- package/@types/components/SkipLinks.d.ts +3 -4
- package/@types/components/SummaryCard.d.ts +0 -2
- package/@types/components/SummaryList.d.ts +0 -13
- package/@types/components/Tabs.d.ts +0 -1
- package/@types/components/Tag.d.ts +1 -3
- package/@types/components/TaskList.d.ts +1 -0
- package/@types/sgds.d.ts +13 -2
- package/CHANGELOG.md +63 -1
- package/dist/common/AbstractNotificationBanner.jsx +8 -6
- package/dist/common/ActionLink.jsx +19 -0
- package/dist/common/FileIcon.jsx +2 -7
- package/dist/common/Icon.jsx +3 -9
- package/dist/components/Accordion/Accordion.jsx +12 -7
- package/dist/components/Breadcrumbs/Breadcrumbs.jsx +20 -15
- package/dist/components/Checkbox/Checkbox.jsx +4 -29
- package/dist/components/Checkbox/CheckboxGroup.jsx +63 -0
- package/dist/components/ContentsNav/ContentsNav.jsx +27 -16
- package/dist/components/CookieBanner/CookieBanner.jsx +1 -0
- package/dist/components/DatePicker/DatePicker.jsx +5 -5
- package/dist/components/ErrorSummary/ErrorSummary.jsx +28 -18
- package/dist/components/NotificationBanner/NotificationBanner.jsx +2 -2
- package/dist/components/Pagination/Pagination.jsx +42 -22
- package/dist/components/PhaseBanner/PhaseBanner.jsx +3 -3
- package/dist/components/Question/Question.jsx +3 -3
- package/dist/components/RadioButton/RadioButton.jsx +7 -17
- package/dist/components/RadioButton/RadioGroup.jsx +21 -0
- package/dist/components/Select/Select.jsx +4 -7
- package/dist/components/SequentialNavigation/SequentialNavigation.jsx +31 -18
- package/dist/components/SideNavigation/SideNavigation.jsx +17 -16
- package/dist/components/SiteFooter/SiteFooter.jsx +104 -0
- package/dist/components/SiteHeader/SiteHeader.jsx +113 -32
- package/dist/components/SiteNavigation/SiteNavigation.jsx +20 -7
- package/dist/components/SkipLinks/SkipLinks.jsx +10 -10
- package/dist/components/SummaryCard/SummaryCard.jsx +25 -14
- package/dist/components/SummaryList/SummaryList.jsx +65 -47
- package/dist/components/Tabs/Tabs.jsx +6 -6
- package/dist/components/Tag/Tag.jsx +2 -2
- package/dist/components/TaskList/TaskList.jsx +14 -3
- package/dist/components/TextInput/TextInput.jsx +3 -3
- package/dist/components/Textarea/Textarea.jsx +3 -3
- package/dist/hooks/useTracking.js +21 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/context.js +5 -0
- package/package.json +2 -2
- package/src/common/AbstractNotificationBanner.test.tsx +1 -1
- package/src/common/AbstractNotificationBanner.tsx +14 -13
- package/src/common/ActionLink.test.tsx +80 -0
- package/src/common/ActionLink.tsx +27 -0
- package/src/common/ConditionalWrapper.tsx +1 -1
- package/src/common/FileIcon.tsx +7 -11
- package/src/common/HintText.tsx +2 -2
- package/src/common/Icon.tsx +13 -17
- package/src/common/ScreenReaderText.tsx +2 -2
- package/src/common/WrapperTag.tsx +2 -2
- package/src/components/Accordion/Accordion.test.tsx +17 -4
- package/src/components/Accordion/Accordion.tsx +19 -14
- package/src/components/AspectBox/AspectBox.tsx +2 -2
- package/src/components/BackToTop/BackToTop.tsx +2 -2
- package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +79 -48
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +31 -31
- package/src/components/Button/Button.tsx +2 -2
- package/src/components/Checkbox/Checkbox.test.tsx +1 -96
- package/src/components/Checkbox/Checkbox.tsx +8 -55
- package/src/components/Checkbox/CheckboxGroup.test.tsx +37 -0
- package/src/components/Checkbox/CheckboxGroup.tsx +41 -0
- package/src/components/ConfirmationMessage/ConfirmationMessage.tsx +2 -2
- package/src/components/ContentsNav/ContentsNav.test.tsx +40 -51
- package/src/components/ContentsNav/ContentsNav.tsx +32 -25
- package/src/components/CookieBanner/CookieBanner.tsx +3 -3
- package/src/components/DatePicker/DatePicker.test.tsx +1 -1
- package/src/components/DatePicker/DatePicker.tsx +7 -7
- package/src/components/Details/Details.tsx +2 -2
- package/src/components/ErrorMessage/ErrorMessage.tsx +2 -2
- package/src/components/ErrorSummary/ErrorSummary.test.tsx +40 -34
- package/src/components/ErrorSummary/ErrorSummary.tsx +40 -32
- package/src/components/FileDownload/FileDownload.tsx +2 -2
- package/src/components/HideThisPage/HideThisPage.tsx +2 -2
- package/src/components/InsetText/InsetText.tsx +2 -2
- package/src/components/NotificationBanner/NotificationBanner.tsx +6 -7
- package/src/components/NotificationPanel/NotificationPanel.tsx +2 -2
- package/src/components/PageHeader/PageHeader.tsx +2 -2
- package/src/components/PageMetadata/PageMetadata.tsx +4 -5
- package/src/components/Pagination/Pagination.test.tsx +26 -7
- package/src/components/Pagination/Pagination.tsx +70 -36
- package/src/components/PhaseBanner/PhaseBanner.tsx +4 -5
- package/src/components/Question/Question.test.tsx +1 -1
- package/src/components/Question/Question.tsx +5 -5
- package/src/components/RadioButton/RadioButton.test.tsx +7 -126
- package/src/components/RadioButton/RadioButton.tsx +10 -41
- package/src/components/RadioButton/RadioGroup.test.tsx +65 -0
- package/src/components/RadioButton/RadioGroup.tsx +31 -0
- package/src/components/Select/Select.test.tsx +39 -37
- package/src/components/Select/Select.tsx +7 -22
- package/src/components/SequentialNavigation/SequentialNavigation.test.tsx +32 -21
- package/src/components/SequentialNavigation/SequentialNavigation.tsx +52 -30
- package/src/components/SideNavigation/SideNavigation.test.tsx +39 -85
- package/src/components/SideNavigation/SideNavigation.tsx +27 -29
- package/src/components/SiteFooter/SiteFooter.test.tsx +153 -0
- package/src/components/SiteFooter/SiteFooter.tsx +107 -0
- package/src/components/SiteHeader/SiteHeader.test.tsx +87 -79
- package/src/components/SiteHeader/SiteHeader.tsx +103 -40
- package/src/components/SiteNavigation/SiteNavigation.test.tsx +42 -23
- package/src/components/SiteNavigation/SiteNavigation.tsx +28 -16
- package/src/components/SiteSearch/SiteSearch.tsx +2 -2
- package/src/components/SkipLinks/SkipLinks.test.tsx +22 -10
- package/src/components/SkipLinks/SkipLinks.tsx +16 -15
- package/src/components/SummaryCard/SummaryCard.test.tsx +31 -35
- package/src/components/SummaryCard/SummaryCard.tsx +39 -28
- package/src/components/SummaryList/SummaryList.test.tsx +49 -148
- package/src/components/SummaryList/SummaryList.tsx +54 -92
- package/src/components/Table/Table.tsx +2 -2
- package/src/components/Tabs/Tabs.tsx +14 -15
- package/src/components/Tag/Tag.test.tsx +4 -4
- package/src/components/Tag/Tag.tsx +4 -4
- package/src/components/TaskList/TaskList.test.tsx +26 -0
- package/src/components/TaskList/TaskList.tsx +21 -11
- package/src/components/TextInput/TextInput.test.tsx +1 -1
- package/src/components/TextInput/TextInput.tsx +5 -5
- package/src/components/Textarea/Textarea.test.tsx +1 -1
- package/src/components/Textarea/Textarea.tsx +5 -5
- package/src/components/WarningText/WarningText.tsx +2 -2
- package/src/hooks/useTracking.test.tsx +64 -0
- package/src/hooks/useTracking.ts +19 -0
- package/src/utils/context.ts +3 -0
- package/tsconfig.json +1 -1
|
@@ -1,75 +1,93 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
2
35
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
36
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
37
|
};
|
|
5
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
|
|
39
|
+
const react_1 = __importStar(require("react"));
|
|
40
|
+
const ActionLink_1 = __importDefault(require("../../common/ActionLink"));
|
|
7
41
|
const ConditionalWrapper_1 = __importDefault(require("../../common/ConditionalWrapper"));
|
|
8
|
-
const
|
|
9
|
-
function escapedNewLineToLineBreakTag(string) {
|
|
10
|
-
if (typeof string === 'string') {
|
|
11
|
-
// @ts-ignore
|
|
12
|
-
return string.split('\n').map((item, index) => {
|
|
13
|
-
return (index === 0) ? item : [<br key={index}/>, item];
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
function convertToSlug(string) {
|
|
18
|
-
return string.toLowerCase()
|
|
19
|
-
.replace(/[^\w ]+/g, "")
|
|
20
|
-
.replace(/ +/g, "-");
|
|
21
|
-
}
|
|
22
|
-
const Answer = ({ value }) => {
|
|
23
|
-
const processedValue = escapedNewLineToLineBreakTag(value.toString());
|
|
24
|
-
return (<q className="ds_summary-list__answer">{processedValue}</q>);
|
|
25
|
-
};
|
|
26
|
-
exports.Answer = Answer;
|
|
27
|
-
const Action = ({ describedby, href, onclick, title, }) => {
|
|
28
|
-
let tagName = 'button';
|
|
29
|
-
if (href) {
|
|
30
|
-
tagName = 'a';
|
|
31
|
-
}
|
|
32
|
-
return (<WrapperTag_1.default aria-describedby={describedby} className="ds_link" href={href} onClick={onclick} tagName={tagName} type={tagName === 'button' ? 'button' : undefined}>
|
|
33
|
-
{title}
|
|
34
|
-
</WrapperTag_1.default>);
|
|
35
|
-
};
|
|
36
|
-
exports.Action = Action;
|
|
37
|
-
const Item = ({ actions, index = 1, title, value }) => {
|
|
42
|
+
const Item = ({ children, title }) => {
|
|
38
43
|
let values = [];
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
let actions = [];
|
|
45
|
+
const describedById = (0, react_1.useId)();
|
|
46
|
+
react_1.Children.forEach(children, (child) => {
|
|
47
|
+
const thisChild = child;
|
|
48
|
+
if (thisChild && thisChild.type === Value) {
|
|
49
|
+
values.push(thisChild);
|
|
50
|
+
}
|
|
51
|
+
else if (thisChild && thisChild.type === ActionLink_1.default) {
|
|
52
|
+
actions.push(react_1.default.cloneElement(thisChild, { describedby: describedById }));
|
|
53
|
+
}
|
|
54
|
+
});
|
|
46
55
|
return (<li className="ds_summary-list__item">
|
|
47
56
|
<span className="ds_summary-list__key" id={describedById}>{title}</span>
|
|
48
57
|
<span className="ds_summary-list__value">
|
|
49
58
|
<ConditionalWrapper_1.default condition={values.length > 1} wrapper={(children) => <ul className="ds_no-bullets">{children}</ul>}>
|
|
50
|
-
|
|
51
|
-
|
|
59
|
+
{values && values.map((value, index) => (<ConditionalWrapper_1.default condition={values.length > 1} wrapper={(children) => <li>{children}</li>} key={'answer' + index}>
|
|
60
|
+
{value}
|
|
52
61
|
</ConditionalWrapper_1.default>))}
|
|
53
62
|
</ConditionalWrapper_1.default>
|
|
54
63
|
</span>
|
|
55
64
|
{actions &&
|
|
56
65
|
<div className="ds_summary-list__actions">
|
|
57
|
-
|
|
66
|
+
<ConditionalWrapper_1.default condition={actions.length > 1} wrapper={(children) => <ul className="ds_summary-list__actions-list">{children}</ul>}>
|
|
67
|
+
{actions && actions.map((action, index) => (<ConditionalWrapper_1.default condition={actions.length > 1} wrapper={(children) => <li className="ds_summary-list__actions-list-item">{children}</li>} key={'action' + index}>
|
|
68
|
+
{action}
|
|
69
|
+
</ConditionalWrapper_1.default>))}
|
|
70
|
+
</ConditionalWrapper_1.default>
|
|
58
71
|
</div>}
|
|
59
72
|
</li>);
|
|
60
73
|
};
|
|
61
|
-
|
|
62
|
-
|
|
74
|
+
const Value = ({ children }) => {
|
|
75
|
+
return (<q className="ds_summary-list__answer">{children}</q>);
|
|
76
|
+
};
|
|
77
|
+
const SummaryList = ({ children, className, noBorder, ...props }) => {
|
|
63
78
|
return (<ol className={[
|
|
64
79
|
'ds_summary-list',
|
|
65
80
|
noBorder && 'ds_summary-list--no-border',
|
|
66
81
|
className
|
|
67
82
|
].join(' ')} {...props}>
|
|
68
|
-
|
|
83
|
+
{children}
|
|
69
84
|
</ol>);
|
|
70
85
|
};
|
|
86
|
+
SummaryList.Action = ActionLink_1.default;
|
|
87
|
+
SummaryList.Item = Item;
|
|
88
|
+
SummaryList.Value = Value;
|
|
71
89
|
SummaryList.displayName = 'SummaryList';
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
90
|
+
SummaryList.Action.displayName = 'SummaryList.Action';
|
|
91
|
+
Item.displayName = 'SummaryList.Item';
|
|
92
|
+
Value.displayName = 'SumaryList.Value';
|
|
75
93
|
exports.default = SummaryList;
|
|
@@ -50,9 +50,9 @@ const TabItem = ({ bordered, children, className, id, tabLabel, ...props }) => {
|
|
|
50
50
|
{children}
|
|
51
51
|
</div>);
|
|
52
52
|
};
|
|
53
|
-
const TabListItem = ({
|
|
53
|
+
const TabListItem = ({ children, href }) => {
|
|
54
54
|
return (<li className="ds_tabs__tab">
|
|
55
|
-
<a className="ds_tabs__tab-link" href={href}>{
|
|
55
|
+
<a className="ds_tabs__tab-link" href={href}>{children}</a>
|
|
56
56
|
</li>);
|
|
57
57
|
};
|
|
58
58
|
const Tabs = ({ baseId = 'tabs', bordered = true, children, className, headingLevel = 'h2', manual = false, title = 'Contents', ...props }) => {
|
|
@@ -64,8 +64,8 @@ const Tabs = ({ baseId = 'tabs', bordered = true, children, className, headingLe
|
|
|
64
64
|
}
|
|
65
65
|
}, [ref]);
|
|
66
66
|
const processedItems = react_1.Children.map(children, child => {
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
const thisChild = child;
|
|
68
|
+
if (thisChild && thisChild.type === TabItem) {
|
|
69
69
|
return react_1.default.cloneElement(thisChild, {
|
|
70
70
|
bordered: bordered,
|
|
71
71
|
id: thisChild.props.id || `${baseId}-${(0, slugify_1.default)(thisChild.props.tabLabel)}`,
|
|
@@ -73,8 +73,8 @@ const Tabs = ({ baseId = 'tabs', bordered = true, children, className, headingLe
|
|
|
73
73
|
}
|
|
74
74
|
});
|
|
75
75
|
const tabListItems = react_1.Children.map(processedItems, child => {
|
|
76
|
-
if (
|
|
77
|
-
return
|
|
76
|
+
if (child && child.type === TabItem) {
|
|
77
|
+
return <TabListItem href={`#${child.props.id}`}>{child.props.tabLabel}</TabListItem>;
|
|
78
78
|
}
|
|
79
79
|
});
|
|
80
80
|
return (<div className={[
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const Tag = ({ className, colour,
|
|
3
|
+
const Tag = ({ children, className, colour, ...props }) => {
|
|
4
4
|
return (<span className={[
|
|
5
5
|
'ds_tag',
|
|
6
6
|
className,
|
|
7
7
|
colour && `ds_tag--${colour}`,
|
|
8
8
|
].join(' ')} {...props}>
|
|
9
|
-
{
|
|
9
|
+
{children}
|
|
10
10
|
</span>);
|
|
11
11
|
};
|
|
12
12
|
Tag.displayName = 'Tag';
|
|
@@ -8,17 +8,26 @@ const ConditionalWrapper_1 = __importDefault(require("../../common/ConditionalWr
|
|
|
8
8
|
const HintText_1 = __importDefault(require("../../common/HintText"));
|
|
9
9
|
const ScreenReaderText_1 = __importDefault(require("../../common/ScreenReaderText"));
|
|
10
10
|
const Tag_1 = __importDefault(require("../Tag/Tag"));
|
|
11
|
-
const TaskItem = ({ children, className, href, id, isComplete = false, statusText, tagColour = 'grey', title, ...props }) => {
|
|
11
|
+
const TaskItem = ({ children, className, href, id, isComplete = false, linkComponent, statusText, tagColour = 'grey', title, ...props }) => {
|
|
12
12
|
if (isComplete) {
|
|
13
13
|
tagColour = 'green';
|
|
14
14
|
}
|
|
15
|
+
const LINK_CLASS = 'ds_task-list__task-link';
|
|
16
|
+
function getLinkElement(children) {
|
|
17
|
+
if (linkComponent) {
|
|
18
|
+
return linkComponent({ className: LINK_CLASS, href, children });
|
|
19
|
+
}
|
|
20
|
+
else if (href) {
|
|
21
|
+
return <a href={href} className={LINK_CLASS}>{children}</a>;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
15
24
|
return (<li className={[
|
|
16
25
|
'ds_task-list__task',
|
|
17
26
|
className
|
|
18
27
|
].join(' ')} id={id} {...props}>
|
|
19
28
|
<div className="ds_task-list__task-details">
|
|
20
29
|
<h3 className="ds_task-list__task-heading">
|
|
21
|
-
<ConditionalWrapper_1.default condition={typeof href !== 'undefined'} wrapper={(children) =>
|
|
30
|
+
<ConditionalWrapper_1.default condition={typeof href !== 'undefined'} wrapper={(children) => getLinkElement(children)}>
|
|
22
31
|
{title}
|
|
23
32
|
{statusText && <ScreenReaderText_1.default>({statusText})</ScreenReaderText_1.default>}
|
|
24
33
|
</ConditionalWrapper_1.default>
|
|
@@ -27,7 +36,9 @@ const TaskItem = ({ children, className, href, id, isComplete = false, statusTex
|
|
|
27
36
|
</div>
|
|
28
37
|
|
|
29
38
|
{typeof statusText !== 'undefined' &&
|
|
30
|
-
<Tag_1.default aria-hidden="true" colour={tagColour}
|
|
39
|
+
<Tag_1.default aria-hidden="true" colour={tagColour}>
|
|
40
|
+
{statusText}
|
|
41
|
+
</Tag_1.default>}
|
|
31
42
|
</li>);
|
|
32
43
|
};
|
|
33
44
|
/**
|
|
@@ -10,7 +10,7 @@ const Button_1 = __importDefault(require("../Button/Button"));
|
|
|
10
10
|
const ConditionalWrapper_1 = __importDefault(require("../../common/ConditionalWrapper"));
|
|
11
11
|
const ErrorMessage_1 = __importDefault(require("../ErrorMessage/ErrorMessage"));
|
|
12
12
|
const HintText_1 = __importDefault(require("../../common/HintText"));
|
|
13
|
-
const TextInput = ({ buttonIcon, buttonText, children, className, countThreshold, width, currency, currencySymbol,
|
|
13
|
+
const TextInput = ({ buttonIcon, buttonText, children, className, countThreshold, width, currency, currencySymbol, errorMessage, hasButton = false, hasError, hintText, id, label, maxlength, name, onBlur, onChange, placeholder, type = 'text', value, ...props }) => {
|
|
14
14
|
const errorMessageId = `error-message-${id}`;
|
|
15
15
|
const hintTextId = `hint-text-${id}`;
|
|
16
16
|
const ref = (0, react_1.useRef)(null);
|
|
@@ -44,10 +44,10 @@ const TextInput = ({ buttonIcon, buttonText, children, className, countThreshold
|
|
|
44
44
|
{hintText && <HintText_1.default id={hintTextId} text={hintText}/>}
|
|
45
45
|
{errorMessage && <ErrorMessage_1.default id={errorMessageId} text={errorMessage}/>}
|
|
46
46
|
<ConditionalWrapper_1.default condition={hasButton || typeof currency !== 'undefined' && currency} wrapper={(children) => <div className={inputWrapperClasses} data-symbol={currencySymbol}>{children}</div>}>
|
|
47
|
-
<input aria-describedby={describedbys.join(' ')} aria-invalid={
|
|
47
|
+
<input aria-describedby={describedbys.join(' ')} aria-invalid={hasError} className={[
|
|
48
48
|
'ds_input',
|
|
49
49
|
className,
|
|
50
|
-
|
|
50
|
+
hasError ? 'ds_input--error' : '',
|
|
51
51
|
width ? `ds_input--${width}` : '',
|
|
52
52
|
].join(' ')} defaultValue={value} id={id} maxLength={maxlength} name={name || id} onBlur={handleBlur} onChange={handleChange} placeholder={placeholder} type={type} {...props}/>
|
|
53
53
|
{hasButton && (buttonText || buttonIcon) && <Button_1.default iconOnly icon={buttonIcon}>{buttonText}</Button_1.default>}
|
|
@@ -9,7 +9,7 @@ const character_count_1 = __importDefault(require("@scottish-government/design-s
|
|
|
9
9
|
const ConditionalWrapper_1 = __importDefault(require("../../common/ConditionalWrapper"));
|
|
10
10
|
const ErrorMessage_1 = __importDefault(require("../ErrorMessage/ErrorMessage"));
|
|
11
11
|
const HintText_1 = __importDefault(require("../../common/HintText"));
|
|
12
|
-
const Textarea = ({ className, countThreshold,
|
|
12
|
+
const Textarea = ({ className, countThreshold, errorMessage, hasError, hintText, id, label, maxlength, name, onBlur, onChange, placeholder, rows = 4, value, ...props }) => {
|
|
13
13
|
const errorMessageId = `error-message-${id}`;
|
|
14
14
|
const hintTextId = `hint-text-${id}`;
|
|
15
15
|
const ref = (0, react_1.useRef)(null);
|
|
@@ -42,9 +42,9 @@ const Textarea = ({ className, countThreshold, error, errorMessage, hintText, id
|
|
|
42
42
|
{hintText && <HintText_1.default id={hintTextId} text={hintText}/>}
|
|
43
43
|
{errorMessage && <ErrorMessage_1.default id={errorMessageId} text={errorMessage}/>}
|
|
44
44
|
|
|
45
|
-
<textarea aria-describedby={describedbys.join(' ')} aria-invalid={
|
|
45
|
+
<textarea aria-describedby={describedbys.join(' ')} aria-invalid={hasError} className={[
|
|
46
46
|
'ds_input',
|
|
47
|
-
|
|
47
|
+
hasError && 'ds_input--error',
|
|
48
48
|
className
|
|
49
49
|
].join(' ')} defaultValue={value} id={id} maxLength={maxlength} name={name || id} onBlur={handleBlur} onChange={handleChange} placeholder={placeholder} rows={rows} {...props}/>
|
|
50
50
|
|
|
@@ -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/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/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/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/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/Select/Select.tsx","../src/components/SequentialNavigation/SequentialNavigation.tsx","../src/components/SideNavigation/SideNavigation.tsx","../src/components/SiteNavigation/SiteNavigation.tsx","../src/components/SiteSearch/SiteSearch.tsx","../src/components/SiteHeader/SiteHeader.tsx","../src/components/SkipLinks/SkipLinks.tsx","../src/components/SummaryList/SummaryList.tsx","../src/components/SummaryCard/SummaryCard.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,149,150],[83,175],[83,148],[83,178],[83,149],[149,150,178],[83,177],[149,178],[178],[151],[83,188,189],[152],[83,176],[83,151],[149],[201],[177,178,188],[177],[177,188],[83,149,202,208,209],[83,183],[178,212],[152,178],[83,178,215],[83,150,152,177,201],[83,152,177,183,188],[83,152,177,188],[153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147]],"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":"fdac3aafa3b2700a7a69fad3d8df84a081d8f11817231e32bfa72a29e79470be","affectsGlobalScope":true,"impliedFormat":1},{"version":"c9a3869a7e2f200d90c4fb7f074b3343ee2234f77b85b222ba3aa5295d7de302","affectsGlobalScope":true,"impliedFormat":1},{"version":"098d9d86ccf5d87f66dd1aba5edc7a79ac3c743252d0fcfc165f0842bbbbc03d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7ed73c935a79eecdece193841faa681529c45150d66fd916adfcfac30448505","affectsGlobalScope":true,"impliedFormat":1},{"version":"5c64ea2259c2aca1681436a2c3515bbb8ae5961c9e3b7586599b9ea93d5126bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"8eed310d2db0da3da23118a505eac0b6a44b1b167a3029ca3946ed816d6c6310","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":"7a44882e64a6d02f9a1f7a5df840527c880f521f8391b34139bc3e0bc1a01071","affectsGlobalScope":true,"impliedFormat":1},{"version":"859f84766ebee648a181490b4f8ebc29a3f2759f5e42bc208772eccb094c52db","affectsGlobalScope":true,"impliedFormat":1},{"version":"0cbae2256b8da5fa94a91e4588aacdeb0a76fdc4b95f130fd2a52ce14bae56ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"296b0c2f98eac9db28a9d5afa0349e0168a3841e4decaade12733435b6497571","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d1bbfc37f476714da448da21f0149cb29764dc28cc293860cd869b433bb4faa","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b284bb0522cbc9d24e506e3fee0da98b27951f88051a6195f98d9fb22b59bd0","affectsGlobalScope":true,"impliedFormat":1},{"version":"2308590a9d9174ba57f30d6cfe8e07756948759df448de60f3f2efd31615c49b","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f933631f0519bd773d97948188b592717de588ecd462f11345d7a37c5df5176","affectsGlobalScope":true,"impliedFormat":1},{"version":"c451de37bca08e532fe1b5688fb7c057bf7d96e8045b9f583dd130be97f09024","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":"853deb7e6b385a26df3efdd01688761e444306e23ca3e51709bcb73676fd67c2","affectsGlobalScope":true,"impliedFormat":1},{"version":"98ca85bc6fcc9b784ae5e74a4645a079ea54f01f8ccce536d08d69bf35bee782","affectsGlobalScope":true,"impliedFormat":1},{"version":"53ce3d7076412b563e1c7e54e888b38b0e6045843151079e09467df5e9c5e8cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4ba6f778f0044c8f53d0fc059d1f67892d6ae5810e38e59462b727eb5b72ad6","affectsGlobalScope":true,"impliedFormat":1},{"version":"4d00e31abec9e0f86cf5930cb318852dfbdb7249e86a3135cb80d38a9872b142","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e9bd4fd9758ed505ae41d33753a0cdf46e1549c7809f50bcac83a698905b7e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fe4b9f17452cbf2eb5723458db431366666f7a49547e309b6215cf81abd30e1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e4e533ab1cd3bb55d1a4e87645737eb9b1697a0f203d8f87ea749d33e069d44","affectsGlobalScope":true,"impliedFormat":1},{"version":"d26f2ab557b364856451c4b6fe7a13f7bb259502decf8f3c4d05df5ee9e8a495","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a910368c69138f6efe186997d42428a8dee0a17d7c6e318a77c9f5eef46ba35","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebf92bba7da776647db0b137a4dd1bee2a18711b7dd71aad6aa389359d5ed810","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fba9b8227813f40a4b1da3b0621a6875ac3a60fb03f716bad5ba35ae31200e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f79373f20bb8b8a2268e13516a67c003b5f87edd088d49478028031299567fce","affectsGlobalScope":true,"impliedFormat":1},{"version":"834e747055f63c846321633006c1c021a56763f057675ce0899094aa1c1dc875","affectsGlobalScope":true,"impliedFormat":1},{"version":"477a87953ee685333f2cf710e9ff782ec97cdb3a26dbe551b1915949db847ffe","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fd64a2bd3d11981ffdc37a2d3d85f0ad2fad5bde616df7f9a28cd17c0849620","affectsGlobalScope":true,"impliedFormat":1},{"version":"1499212eb999323309f1b2c116c5f651d093835e272cb1d0ee030d9a72810cfd","affectsGlobalScope":true,"impliedFormat":1},{"version":"f320fba72ee15fdba35a7e57744f432f12d200d4cf4ff8ddfdfe7faee84a8cae","affectsGlobalScope":true,"impliedFormat":1},{"version":"5251ef771f0f0ada4392ca49abbdfa9b6acfa36670f4861dfc52862663b3a6b9","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":"ac78fd71229cb156d28ec74a2cea7a66848fbfad2fc2ca298f3c5815e9fa5b6d","impliedFormat":1},{"version":"71658a25bc2c1c615459d63c9e1ecc230822572c06112d570f63b2a6352333b1","impliedFormat":1},{"version":"4cfcc9532ed3625327403c0aff741c7c073bf42b1354824f10f582813af14e42","impliedFormat":1},{"version":"68fe33fa82c2dd40de4f5e62d46ff7712a55e5ff11c5a00f45d46e3f4736dd32","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":"34ffffdaf62c89fe2b731135e13a37d3aaa7f3ee9ffd71b4fc899b012c9717e3","impliedFormat":1},{"version":"81196068f2e4f59cc70e5a595b073a5798eef50054ed3807a43e457f78c84c55","impliedFormat":1},{"version":"1c1d08289fee4149d7a9b6a71f2d8f622312c642ba23ca6c67dbc182a34a90e6","impliedFormat":1},{"version":"72595b1a2872d15578b9c3bb1c11c72eaee01249f8840667cf46c70a935c1a76","impliedFormat":1},{"version":"68ed7411ba50ebf08ff30d1adb3907f4760f0426fe150d0499ee735a7fb421c3","impliedFormat":1},{"version":"b46b5de6e0e663531960a3e017531d97642585b15686e4d27b45e10d2233947c","impliedFormat":1},{"version":"db439b85bb461984c749b7f4092b36bc302320df05e6ecabb5abcb722eb3647d","impliedFormat":1},{"version":"65ec401cf21a92b4126b94737a153b04f5e3243acef448e71fdd61885eb41823","impliedFormat":1},{"version":"4a76ea53fb0ff22445587b1a958263b7d40af642d00ce8b786662ff493034f03","impliedFormat":1},{"version":"36391dfb04afe57213d0df284032aa528f4ee3bbb0d75d3db6f665de30d5a42e","impliedFormat":1},{"version":"50e1f1f0d62d3599cb040bff23a27c30552ad40c04155ce7c3e8706f7cdc5fac","impliedFormat":1},{"version":"2375279907f9a38d4d91b631dc87c286b54c1c1adb00098c5dcf3ae9c0c127e7","impliedFormat":1},{"version":"0416a5fe878ebedc02e06bfe19bd663ecc9c04509dea0e5e3f4bbfc62de890b8","impliedFormat":1},{"version":"f0b4f3563ab6d107b8dafc1fe3c479e8b4c951a113b5cba38580f3aff072cd3a","impliedFormat":1},{"version":"19dffcd3f8a5d995044b9ffc9fd7f5f5b45a15270ce36424757482ac3b493076","impliedFormat":1},{"version":"d63b732a10871586e4e10603788a3b4beedd0e4dfcf96e3f9a62e3024d605953","impliedFormat":1},{"version":"76731478de406d2ac12dcf5e00b11df4c6fe38fb97245da6835ae84f3f5dba5f","impliedFormat":1},{"version":"407fd9630c9911dad3c6bc8be81df707a30304cdbeb879cc2e550d8827e80558","impliedFormat":1},{"version":"d8756644733f3bafed6551e4a2ee846ad7871b873e195cfea1373cad5e333717","impliedFormat":1},{"version":"bb075edab757fa79c11ea29b67ff72f5bf9714314f03959aca0ba98b3b9aec4c","impliedFormat":1},{"version":"05ab03ab4a20e6779993a8b6d7e8a1934c2e408121962547ce9bed21e149792f","impliedFormat":1},{"version":"e0f8aa54975c7f1601913b0d49570e218b472e6d897d02deca5aff4da926ffcf","impliedFormat":1},{"version":"9afd7adbfef5e5cb2c7bf1bc4699e770e3a5322860a681c413b76518f212a8a7","impliedFormat":1},{"version":"eaeb2f723339e787d4b215c614247f58f81d35c1417a7b00ba092bb4e3598c39","impliedFormat":1},{"version":"e9a54b676443f60ebaf0c61e4d01cdcc792aa8f8d81ba0d9bc6e3c75f3b5ee44","impliedFormat":1},{"version":"19ac84ce5462c741d67e99fb788a5f7766bb392f938a9ea6f94534a71d4a7b7a","impliedFormat":1},{"version":"9209620154b86ccc296e565db61bf839806c870edec42c14492624412c140214","impliedFormat":1},{"version":"54d174226eb6fd5177757ad57399ac0f3573519104bc11e3d27630c8f28fb584","impliedFormat":1},{"version":"f3b09bc32d82eddbc0f5731330be4b7d8fa707ed7693d23dd938a78c257fbdc3","impliedFormat":1},{"version":"4d3aa7573de09c5d2ee386a70535ae08f79d1da20d984b4e7f4f51974dacc5be","impliedFormat":1},{"version":"ca9fbca3a40eb55e3566e6b5c67a535faf6c0d50654f0c3d49b9b62cd84650fb","impliedFormat":1},{"version":"5b50fb0a2b3e7d124e4b7547cc1670fa3a6b0430abafa488ec82a45605917b66","impliedFormat":1},{"version":"823be4a3cafb660e571baa2a82240a584304192e83e9d473b34f154235cb9870","impliedFormat":1},{"version":"cd48100b65699418cc089658f9b70171b7fbcf93c36731dbf3fff87f2bbddfde","impliedFormat":1},{"version":"ce03874001c4db8760f0f07ca0f10c37870fdd640f12dc92641c8d9ddabafdb8","impliedFormat":1},{"version":"d8a8326bd7f6c4ec38d06566169e7ad954a8e9cca2faadd1996e9fa6e89653ce","impliedFormat":1},{"version":"fb5c341cca7adc46ecec1cf8877a5af75bf608314ae45cf81118cac3dbc5db7b","impliedFormat":1},{"version":"8f1751c3e1dd84800b29a622e24d2b5b40e94300b4a5a354f7630e11035ddcb2","impliedFormat":1},{"version":"9f20a7a4edc38e8ce934b45fcd4fee73646cacfe1f562a6e32485dc5877ce626","impliedFormat":1},{"version":"ed55f5ab7c994d6d22b1594d49294bee3bbe954ff864df537eef74bc510149c0","impliedFormat":1},{"version":"809eb59eb397d28736fc497d9584b74df0bf9136d145d5839de2fa3202aae965","impliedFormat":1},{"version":"620318dcaa03fd9fef30636ebd8bb6991a89e9a37a269994c3f5a7e99432e0ef","impliedFormat":1},{"version":"91b4a894ee4de988b0282fa08fdb0e897f38df34e61f26f1453a62e5c61d7fee","impliedFormat":1},{"version":"651fdffc4aca1129ae4a70228d3171e8acb637307bb6a85b791cd68f33416aaf","impliedFormat":1}],"root":[[84,147],[149,174],[176,214],[216,219]],"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],[151,3],[176,4],[149,5],[179,6],[180,1],[181,7],[183,8],[184,9],[185,10],[186,11],[187,12],[190,13],[192,14],[193,15],[194,1],[196,16],[197,11],[200,17],[202,18],[203,19],[204,20],[205,21],[207,1],[210,22],[209,23],[213,24],[212,25],[214,1],[216,26],[217,27],[189,28],[218,29],[153,1],[154,1],[155,1],[156,1],[157,1],[158,1],[159,1],[160,1],[161,1],[175,30],[162,1],[163,1],[164,1],[165,1],[166,1],[167,1],[168,1],[169,1],[170,1],[171,1],[172,1],[173,1],[174,1],[131,1],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,1],[142,1],[143,1],[148,31],[144,1],[145,1],[146,1],[147,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/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/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/utils/slugify.ts","../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,151,152],[83,178],[83,150],[83,181],[83,151],[151,152,181],[83,180,187],[83,187],[151,181],[153],[83,193,194],[83,179],[83,153],[181],[151],[206],[180,181,193],[180,193],[83,155],[83,151,215],[83,186],[83,154,155,181],[83,154,155],[83,181,222],[83,152,155,180,206],[83,155,180,186,193],[83,155,180,193],[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":"369b14d66dd9c504143e407b4a658fe6d2a2d3fd25f5a2bea4cbd197f4781715","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":"73ec95c42837d65f73503ed9430c800c2d5be2ba6b44021dfe3ef25ac044d510","impliedFormat":1},{"version":"29e196807a614c9e1543d5d4e3d65a90f3d27c69eb392efb576be7a052f020f7","impliedFormat":1},{"version":"0ac9ec588bf62b7e23fe2cbc30471f14427324ae354f48516e791f98cbf12a4d","impliedFormat":1},{"version":"a283132e93c668757d98f092cc91284fb04112df22cbba2abd9bc3fc167d1390","impliedFormat":1},{"version":"a3f69c8a1ae60de0837e44be80abe29b65a6184e6d049cfd5ea55c47852d307d","impliedFormat":1},{"version":"d452ee29f1ece047fad4a0925c454070ddca92e2c08be89d727f7cc64f163411","impliedFormat":1},{"version":"e94e89ed06e9a382df8f0b58f97ff3ac49655ae001fcf6b91b289d313f5de621","impliedFormat":1},{"version":"f44d50e48084eb22a1e2e22673dfc0ce139c7fff471d45a791c4d4ee23ba078d","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":"be02e338d56599904a8fa9fbbfa00c4ea47158bcb9c60715654791189b8dcf4e","impliedFormat":1},{"version":"629f48879b6fd16bfdd8021e506575a513b9f832934596a0cf39ba63089bceea","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},{"version":"dbbed8e6f506890bf1e3065ab6124680f59d0fca135762a027fa7252b32ab559","impliedFormat":1}],"root":[[84,227]],"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],[188,9],[189,10],[190,11],[191,1],[192,12],[195,13],[197,1],[198,14],[199,1],[201,15],[202,16],[205,17],[207,18],[208,19],[209,9],[210,10],[211,20],[213,1],[214,21],[216,22],[217,23],[219,24],[220,25],[221,1],[223,26],[224,27],[194,28],[225,29],[227,1],[156,1],[157,1],[158,1],[159,1],[160,1],[161,1],[162,1],[163,1],[164,1],[178,30],[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,31],[146,1],[147,1],[148,1],[149,1],[187,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.8.0-beta.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Scottish Government Digital Design System team",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"tsc": "node ./node_modules/typescript/bin/tsc"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@scottish-government/design-system": "^3.
|
|
20
|
+
"@scottish-government/design-system": "^3.2.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@svgr/cli": "^8.1.0",
|
|
@@ -72,7 +72,7 @@ test('abstract notification banner with icon', () => {
|
|
|
72
72
|
|
|
73
73
|
test('abstract notification banner with icon modifier classes', () => {
|
|
74
74
|
render(
|
|
75
|
-
<AbstractNotificationBanner icon="Search"
|
|
75
|
+
<AbstractNotificationBanner icon="Search" hasColourIcon hasInverseIcon>
|
|
76
76
|
{NOTIFICATION_TEXT}
|
|
77
77
|
</AbstractNotificationBanner>
|
|
78
78
|
);
|