@hmlr/govuk-react-components-library 1.0.3 → 1.1.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/.stylelintrc.json +1 -1
- package/README.md +215 -1
- package/assets/uml-diagram.svg +731 -572
- package/bundle-analysis-main.html +3 -1
- package/bundle-analysis-pdfvc.html +1 -1
- package/dist/PDFViewerCanvas.cjs.css +4 -4
- package/dist/PDFViewerCanvas.esm.css +4 -4
- package/dist/index.cjs.css +7 -7
- package/dist/index.cjs.js +93 -31
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +104 -10
- package/dist/index.esm.css +7 -7
- package/dist/index.esm.js +93 -37
- package/dist/index.esm.js.map +1 -1
- package/dist/types/components/ExitThisPage/ExitThisPage.config.d.ts +1 -0
- package/dist/types/components/ExitThisPage/ExitThisPage.d.ts +4 -0
- package/dist/types/components/ExitThisPage/ExitThisPage.types.d.ts +17 -0
- package/dist/types/components/ExitThisPage/index.d.ts +2 -0
- package/dist/types/components/Pagination/Pagination.types.d.ts +23 -13
- package/dist/types/components/Pagination/index.d.ts +2 -0
- package/dist/types/components/PasswordInput/PasswordInput.config.d.ts +1 -0
- package/dist/types/components/PasswordInput/PasswordInput.d.ts +4 -0
- package/dist/types/components/PasswordInput/PasswordInput.types.d.ts +49 -0
- package/dist/types/components/PasswordInput/index.d.ts +2 -0
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/utils/WithReference.types.d.ts +7 -2
- package/package.json +63 -59
- package/scripts/generateStories.mjs +433 -0
- package/dist/types/JestSetup.d.ts +0 -1
package/assets/uml-diagram.svg
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
<svg version="1.1" baseProfile="full" width="
|
|
1
|
+
<svg version="1.1" baseProfile="full" width="24463.5" height="791.0" viewBox="0 0 24463.5 791" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events">
|
|
2
2
|
<desc >#.interface: fill=lightblue
|
|
3
3
|
#.enumeration: fill=lightgreen
|
|
4
4
|
#.type: fill=lightgray
|
|
5
5
|
|
|
6
6
|
[<interface>JsonMap||]
|
|
7
|
-
[<interface>AnnotationsConfig|+parameters?: JsonMap;+args?: JsonMap;+argTypes?: ArgTypes
|
|
7
|
+
[<interface>AnnotationsConfig|+parameters?: JsonMap;+args?: JsonMap;+argTypes?: ArgTypes<Args>;+tags?: string\[\]|]
|
|
8
8
|
[<interface>MetaConfig|+title?: string|]
|
|
9
9
|
[<interface>StoryConfig|+name?: string|]
|
|
10
10
|
[<interface>DynamicConfig|+baseCsf: string;+storiesCsf?: string;+stories?: () => StoryConfigs \| Promise<StoryConfigs>|]
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
[<interface>ComponentFixtureRoot|+component: string;+fixtures: ComponentFixture\[\]|]
|
|
13
13
|
[AnnotationsConfig]<:--[MetaConfig]
|
|
14
14
|
[AnnotationsConfig]<:--[StoryConfig]
|
|
15
|
-
[<interface>WithRefProps|+Component: React.ComponentType<unknown>
|
|
16
|
-
[<interface>InfoSectionProps|+refName: string;+Component: React.ComponentType<unknown>;+restProps: Record<string, unknown>|]
|
|
15
|
+
[<interface>WithRefProps|+Component: React.ComponentType<Record<string, unknown> & { ref?: React.Ref<HTMLElement>; }>;+items?: unknown\[\]|]
|
|
16
|
+
[<interface>InfoSectionProps|+refName: string;+Component: React.ComponentType<Record<string, unknown> & { ref?: React.Ref<HTMLElement>; }>;+restProps: Record<string, unknown>|]
|
|
17
17
|
[<interface>AccordionItem|+reactListKey?: string \| number;+expanded?: boolean;+heading: { children: ReactNode; };+summary?: { children: ReactNode; };+content: { children: ReactNode; }|]
|
|
18
18
|
[<interface>AccordionProps|+className?: string;+headingLevel?: ElementType;+id?: string;+items: AccordionItem\[\]|]
|
|
19
19
|
[HTMLAttributes<T>]<:--[AccordionProps]
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
[<interface>Action|+reactListKey?: string|]
|
|
22
22
|
[<interface>BackLinkProps|+to?: To;+state?: object;+children?: ReactNode;+href?: string;+className?: string|]
|
|
23
23
|
[<interface>BooleanItem|+id?: string;+children?: ReactNode;+hint?: HintProps;+conditional?: { children: ReactNode; };+behaviour?: string;+label?: LabelProps;+reactListKey?: string \| number;+divider?: string;+name?: string;+checked?: boolean;+value?: string;+defaultChecked?: boolean|]
|
|
24
|
-
[<interface>BooleanProps|+className?: string;+errorMessage?: ErrorMessageProps;+fieldset?: FieldsetProps;+formGroup?: { \[key: string\]: unknown; className?: string; };+hint?: HintProps;+idPrefix?: string;+items?: BooleanItem\[\];+controlType: "radios" \| "checkboxes";+name?: string;+onChange?: (event: ChangeEvent<HTMLInputElement>) => void;+onBlur?: (event: FocusEvent<HTMLInputElement, Element>) => void;+aria-describedby?: string|]
|
|
24
|
+
[<interface>BooleanProps|+className?: string;+errorMessage?: ErrorMessageProps;+fieldset?: FieldsetProps;+formGroup?: { \[key: string\]: unknown; className?: string; };+hint?: HintProps;+idPrefix?: string;+items?: BooleanItem\[\];+controlType: "radios" \| "checkboxes";+name?: string;+onChange?: (event: ChangeEvent<HTMLInputElement, Element>) => void;+onBlur?: (event: FocusEvent<HTMLInputElement, Element>) => void;+aria-describedby?: string|]
|
|
25
25
|
[<interface>BreadcrumbItem|+href?: string;+to?: string;+reactListKey?: string \| number;+children: ReactNode|]
|
|
26
26
|
[<interface>BreadcrumbsProps|+items?: BreadcrumbItem\[\];+className?: string;+collapseOnMobile?: boolean|]
|
|
27
27
|
[HTMLAttributes<T>]<:--[BreadcrumbsProps]
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
[<interface>CookieBannerProps|+className?: string;+messages: CookieBannerMessageItem\[\]|]
|
|
36
36
|
[<interface>DataNavigationProps|+dataId: number;+setDataFocus: (id: number) => void;+previousText: string;+previousCondition: boolean;+nextText: string;+nextCondition: boolean;+dataDescription?: string|]
|
|
37
37
|
[<interface>DateInputItem|+name: string;+className?: string;+type?: string;+label?: string;+reactListKey?: string \| number;+id?: string;+pattern?: string;+inputMode?: "search" \| "text" \| "none" \| "tel" \| "url" \| "email" \| "numeric" \| "decimal"|]
|
|
38
|
-
[<interface>DateInputProps|+className?: string;+errorMessage?: ErrorMessageProps;+fieldset?: FieldsetProps;+formGroup?: { \[key: string\]: unknown; className?: string; };+hint?: HintProps;+id?: string;+items?: DateInputItem\[\];+namePrefix?: string;+onChange: (event: ChangeEvent<HTMLInputElement>) => void|]
|
|
38
|
+
[<interface>DateInputProps|+className?: string;+errorMessage?: ErrorMessageProps;+fieldset?: FieldsetProps;+formGroup?: { \[key: string\]: unknown; className?: string; };+hint?: HintProps;+id?: string;+items?: DateInputItem\[\];+namePrefix?: string;+onChange: (event: ChangeEvent<HTMLInputElement, Element>) => void|]
|
|
39
39
|
[<interface>DetailsProps|+className?: string;+children: ReactNode;+summaryChildren: ReactNode|]
|
|
40
40
|
[<interface>DifferenceNavigationProps|+differenceId: number;+setDifferenceFocus: (id: number) => void;+totalDifferences: number;+keyword?: string;+plural?: string|]
|
|
41
41
|
[ErrorBoundary||+static getDerivedStateFromError(): Partial<ErrorBoundaryState>;+componentDidCatch(): void;+render(): ReactNode]
|
|
@@ -46,6 +46,8 @@
|
|
|
46
46
|
[HTMLAttributes<T>]<:--[ErrorMessageProps]
|
|
47
47
|
[<interface>ErrorSummaryProps|+className?: string;+descriptionChildren?: ReactNode;+errorList?: { \[key: string\]: unknown; reactListKey?: string \| number; children: ReactNode; href?: string; }\[\];+titleChildren?: ReactNode;+disableAutoFocus?: boolean|]
|
|
48
48
|
[HTMLAttributes<T>]<:--[ErrorSummaryProps]
|
|
49
|
+
[<interface>ExitThisPageProps|+children?: ReactNode;+className?: string;+redirectUrl?: string;+activatedText?: string;+timedOutText?: string;+pressTwoMoreTimesText?: string;+pressOneMoreTimeText?: string|]
|
|
50
|
+
[HTMLAttributes<T>]<:--[ExitThisPageProps]
|
|
49
51
|
[<interface>LegendProps|+children: ReactNode;+className?: string;+isPageHeading?: boolean|]
|
|
50
52
|
[<interface>FieldsetProps|+className?: string;+legend?: LegendProps;+children: ReactNode;+aria-describedby?: string|]
|
|
51
53
|
[FieldsetHTMLAttributes<T>]<:--[FieldsetProps]
|
|
@@ -69,12 +71,16 @@
|
|
|
69
71
|
[<interface>LoadingProps|+message?: string;+html?: ReactNode|]
|
|
70
72
|
[<interface>MainProps|+children?: ReactNode;+backLink?: string;+backLinkState?: object|]
|
|
71
73
|
[<interface>NotificationBannerProps|+type: "success" \| "error" \| "info" \| "warning";+titleChildren?: string;+titleHeadingLevel?: ElementType;+children: ReactNode;+className?: string;+titleId?: string;+role?: string;+disableAutoFocus?: boolean|]
|
|
72
|
-
[<interface>
|
|
74
|
+
[<interface>PaginationItemProps|+number?: string \| number;+href?: string;+current?: boolean;+ellipsis?: boolean|]
|
|
75
|
+
[<interface>PaginationNavProps|+href: string;+children?: ReactNode;+labelText?: string|]
|
|
76
|
+
[<interface>PaginationProps|+previous?: PaginationNavProps;+next?: PaginationNavProps;+items?: PaginationItemProps\[\];+className?: string|]
|
|
73
77
|
[<interface>SvgIconProps|+type: string|]
|
|
74
|
-
[<interface>NavigationButtonProps|+
|
|
78
|
+
[<interface>NavigationButtonProps|+href: string;+type: "next" \| "previous";+children?: ReactNode;+labelText?: string|]
|
|
75
79
|
[<interface>UsePaginationProps|+totalCount: number;+pageSize: number;+siblingCount?: number;+currentPage: number|]
|
|
76
80
|
[<interface>PanelProps|+headingLevel?: ElementType;+className?: string;+titleChildren: ReactNode;+children?: ReactNode|]
|
|
77
81
|
[HTMLAttributes<T>]<:--[PanelProps]
|
|
82
|
+
[<interface>PasswordInputLabelProps|+children?: ReactNode;+className?: string;+isPageHeading?: boolean|]
|
|
83
|
+
[<interface>PasswordInputProps|+className?: string;+aria-describedby?: string;+errorMessage?: { \[key: string\]: unknown; children?: ReactNode; };+formGroup?: { \[key: string\]: unknown; className?: string; };+hint?: { \[key: string\]: unknown; children?: ReactNode; };+label?: PasswordInputLabelProps;+name?: string;+id?: string;+autoComplete?: string;+showPasswordText?: string;+hidePasswordText?: string;+showPasswordAriaLabelText?: string;+hidePasswordAriaLabelText?: string;+passwordShownAnnouncementText?: string;+passwordHiddenAnnouncementText?: string|]
|
|
78
84
|
[<interface>PDFJsProps|+iframeId: string;+source: string;+viewerLocation: string;+documentName?: string;+documentNameColour?: string;+element: HTMLElement;+toolbar?: "full" \| "fullHidePrint" \| "minimal" \| "minimalHidePrint"|]
|
|
79
85
|
[<interface>PDFViewerProps|+iframeId: string;+src: string;+viewerLocation: string;+documentName?: string;+documentNameColour?: string;+toolbar?: "full" \| "fullHidePrint" \| "minimal" \| "minimalHidePrint";+backend: (jsProps: PDFJsProps) => void;+additionalBackendAttributes?: Record<string, string \| number \| boolean>|]
|
|
80
86
|
[<interface>SourceDeterminer|+isBase64Source: boolean;+source: string|]
|
|
@@ -106,90 +112,94 @@
|
|
|
106
112
|
<g stroke-width="1.0" text-align="left" font="12pt Helvetica, Arial, sans-serif" font-size="12pt" font-family="Helvetica" font-weight="normal" font-style="normal">
|
|
107
113
|
<g font-family="Helvetica" font-size="12pt" font-weight="bold" font-style="normal" stroke-width="3.0" stroke-linejoin="round" stroke-linecap="round" stroke="#33322E">
|
|
108
114
|
<g stroke="transparent" fill="transparent">
|
|
109
|
-
<rect x="0.0" y="0.0" height="
|
|
115
|
+
<rect x="0.0" y="0.0" height="791.0" width="24463.5" stroke="none"></rect>
|
|
110
116
|
</g>
|
|
111
117
|
<g transform="translate(8, 8)" fill="#33322E">
|
|
112
118
|
<g transform="translate(20, 20)" fill="#eee8d5" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal">
|
|
113
119
|
<g stroke-dasharray="6 6">
|
|
114
|
-
<path d="
|
|
120
|
+
<path d="M225.7 271.0 L170.5 416 L170.5 549.5 L170.5 549.5 " fill="none"></path>
|
|
115
121
|
</g>
|
|
116
|
-
<path d="
|
|
122
|
+
<path d="M230.7 272.9 L225.7 271.0 L220.7 269.1 L230.5 258.5 Z"></path>
|
|
117
123
|
<g stroke-dasharray="6 6">
|
|
118
|
-
<path d="
|
|
124
|
+
<path d="M392.0 229.2 L1220.25 416 L1220.25 549.5 L1220.3 549.5 " fill="none"></path>
|
|
119
125
|
</g>
|
|
120
|
-
<path d="
|
|
126
|
+
<path d="M393.2 224.0 L392.0 229.2 L390.8 234.4 L379.0 226.3 Z"></path>
|
|
121
127
|
<g stroke-dasharray="6 6">
|
|
122
|
-
<path d="
|
|
128
|
+
<path d="M3542.7 207.7 L1455.25 416 L1455.25 525 L1455.3 525.0 " fill="none"></path>
|
|
123
129
|
</g>
|
|
124
|
-
<path d="
|
|
130
|
+
<path d="M3543.3 213.0 L3542.7 207.7 L3542.2 202.4 L3556.0 206.3 Z"></path>
|
|
125
131
|
<g stroke-dasharray="6 6">
|
|
126
|
-
<path d="
|
|
132
|
+
<path d="M3542.8 209.2 L1748.75 416 L1748.75 533 L1748.8 533.0 " fill="none"></path>
|
|
127
133
|
</g>
|
|
128
|
-
<path d="
|
|
129
|
-
<path d="
|
|
130
|
-
<path d="
|
|
134
|
+
<path d="M3543.4 214.5 L3542.8 209.2 L3542.1 203.9 L3556.0 207.6 Z"></path>
|
|
135
|
+
<path d="M10750.0 227.3 L10750 416 L10750 533 L10750.0 533.0 " fill="none"></path>
|
|
136
|
+
<path d="M10755.3 227.3 L10750.0 227.3 L10744.7 227.3 L10750.0 214.0 Z"></path>
|
|
131
137
|
<g stroke-dasharray="6 6">
|
|
132
|
-
<path d="
|
|
138
|
+
<path d="M3542.8 211.1 L2033.75 416 L2033.75 533 L2033.8 533.0 " fill="none"></path>
|
|
133
139
|
</g>
|
|
134
|
-
<path d="
|
|
140
|
+
<path d="M3543.5 216.4 L3542.8 211.1 L3542.1 205.8 L3556.0 209.3 Z"></path>
|
|
135
141
|
<g stroke-dasharray="6 6">
|
|
136
|
-
<path d="
|
|
142
|
+
<path d="M3542.9 214.2 L2341.25 416 L2341.25 484.5 L2341.3 484.5 " fill="none"></path>
|
|
137
143
|
</g>
|
|
138
|
-
<path d="
|
|
144
|
+
<path d="M3543.7 219.5 L3542.9 214.2 L3542.0 209.0 L3556.0 212.0 Z"></path>
|
|
139
145
|
<g stroke-dasharray="6 6">
|
|
140
|
-
<path d="
|
|
146
|
+
<path d="M3555.5 216.9 L2672.75 416 L2672.75 501 L2672.8 501.0 " fill="none"></path>
|
|
141
147
|
</g>
|
|
142
|
-
<path d="
|
|
148
|
+
<path d="M3556.7 222.1 L3555.5 216.9 L3554.4 211.7 L3568.5 214.0 Z"></path>
|
|
143
149
|
<g stroke-dasharray="6 6">
|
|
144
|
-
<path d="
|
|
150
|
+
<path d="M11765.5 227.3 L11765.5 416 L11765.5 525 L11765.5 525.0 " fill="none"></path>
|
|
145
151
|
</g>
|
|
146
|
-
<path d="
|
|
152
|
+
<path d="M11770.8 227.3 L11765.5 227.3 L11760.2 227.3 L11765.5 214.0 Z"></path>
|
|
147
153
|
<g stroke-dasharray="6 6">
|
|
148
|
-
<path d="
|
|
154
|
+
<path d="M12074.0 227.3 L12074 416 L12074 484.5 L12074.0 484.5 " fill="none"></path>
|
|
149
155
|
</g>
|
|
150
|
-
<path d="
|
|
156
|
+
<path d="M12079.3 227.3 L12074.0 227.3 L12068.7 227.3 L12074.0 214.0 Z"></path>
|
|
151
157
|
<g stroke-dasharray="6 6">
|
|
152
|
-
<path d="
|
|
158
|
+
<path d="M3736.3 205.6 L6417.5 416 L6417.5 525 L6417.5 525.0 " fill="none"></path>
|
|
153
159
|
</g>
|
|
154
|
-
<path d="
|
|
160
|
+
<path d="M3736.7 200.3 L3736.3 205.6 L3735.9 210.9 L3723.0 204.6 Z"></path>
|
|
155
161
|
<g stroke-dasharray="6 6">
|
|
156
|
-
<path d="
|
|
162
|
+
<path d="M3736.3 204.8 L6730 416 L6730 436 L6730.0 436.0 " fill="none"></path>
|
|
157
163
|
</g>
|
|
158
|
-
<path d="
|
|
164
|
+
<path d="M3736.7 199.5 L3736.3 204.8 L3735.9 210.1 L3723.0 203.9 Z"></path>
|
|
159
165
|
<g stroke-dasharray="6 6">
|
|
160
|
-
<path d="
|
|
166
|
+
<path d="M14476.0 227.3 L14476 416 L14476 525 L14476.0 525.0 " fill="none"></path>
|
|
161
167
|
</g>
|
|
162
|
-
<path d="
|
|
168
|
+
<path d="M14481.3 227.3 L14476.0 227.3 L14470.7 227.3 L14476.0 214.0 Z"></path>
|
|
163
169
|
<g stroke-dasharray="6 6">
|
|
164
|
-
<path d="
|
|
170
|
+
<path d="M3736.3 204.2 L7042.5 416 L7042.5 525 L7042.5 525.0 " fill="none"></path>
|
|
165
171
|
</g>
|
|
166
|
-
<path d="
|
|
172
|
+
<path d="M3736.6 198.9 L3736.3 204.2 L3736.0 209.5 L3723.0 203.3 Z"></path>
|
|
167
173
|
<g stroke-dasharray="6 6">
|
|
168
|
-
<path d="
|
|
174
|
+
<path d="M3736.3 203.7 L7331 416 L7331 501 L7331.0 501.0 " fill="none"></path>
|
|
169
175
|
</g>
|
|
170
|
-
<path d="
|
|
176
|
+
<path d="M3736.6 198.4 L3736.3 203.7 L3736.0 209.0 L3723.0 202.9 Z"></path>
|
|
171
177
|
<g stroke-dasharray="6 6">
|
|
172
|
-
<path d="
|
|
178
|
+
<path d="M3736.3 203.4 L7580 416 L7580 517 L7580.0 517.0 " fill="none"></path>
|
|
173
179
|
</g>
|
|
174
|
-
<path d="
|
|
180
|
+
<path d="M3736.6 198.0 L3736.3 203.4 L3736.0 208.7 L3723.0 202.6 Z"></path>
|
|
181
|
+
<g stroke-dasharray="6 6">
|
|
182
|
+
<path d="M23784.0 227.3 L23784 416 L23784 484.5 L23784.0 484.5 " fill="none"></path>
|
|
183
|
+
</g>
|
|
184
|
+
<path d="M23789.3 227.3 L23784.0 227.3 L23778.7 227.3 L23784.0 214.0 Z"></path>
|
|
175
185
|
<g data-name="JsonMap">
|
|
176
186
|
<g fill="lightblue" stroke="#33322E" data-name="JsonMap">
|
|
177
|
-
<rect x="0.0" y="
|
|
178
|
-
<path d="M0.0
|
|
179
|
-
<path d="M0.0
|
|
187
|
+
<rect x="0.0" y="174.0" height="48.0" width="88.0" data-name="JsonMap"></rect>
|
|
188
|
+
<path d="M0.0 206.0 L88.0 206.0" fill="none" data-name="JsonMap"></path>
|
|
189
|
+
<path d="M0.0 214.0 L88.0 214.0" fill="none" data-name="JsonMap"></path>
|
|
180
190
|
</g>
|
|
181
|
-
<g transform="translate(0,
|
|
191
|
+
<g transform="translate(0, 174)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="JsonMap" data-compartment="0">
|
|
182
192
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="JsonMap" data-compartment="0">
|
|
183
193
|
<a id="../src/dynamics/types.ts.JsonMap" xlink:href="../src/dynamics/types.ts"><text x="36.0" y="14.1" stroke="none" text-anchor="middle" data-name="JsonMap" data-compartment="0">JsonMap</text></a>
|
|
184
194
|
|
|
185
195
|
</g>
|
|
186
196
|
</g>
|
|
187
|
-
<g transform="translate(0,
|
|
197
|
+
<g transform="translate(0, 206)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="JsonMap" data-compartment="1">
|
|
188
198
|
<g transform="translate(8, 8)" fill="#33322E" data-name="JsonMap" data-compartment="1">
|
|
189
199
|
|
|
190
200
|
</g>
|
|
191
201
|
</g>
|
|
192
|
-
<g transform="translate(0,
|
|
202
|
+
<g transform="translate(0, 214)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="JsonMap" data-compartment="2">
|
|
193
203
|
<g transform="translate(8, 8)" fill="#33322E" data-name="JsonMap" data-compartment="2">
|
|
194
204
|
|
|
195
205
|
</g>
|
|
@@ -197,26 +207,26 @@
|
|
|
197
207
|
</g>
|
|
198
208
|
<g data-name="AnnotationsConfig">
|
|
199
209
|
<g fill="lightblue" stroke="#33322E" data-name="AnnotationsConfig">
|
|
200
|
-
<rect x="128.0" y="
|
|
201
|
-
<path d="M128.0
|
|
202
|
-
<path d="M128.0
|
|
210
|
+
<rect x="128.0" y="137.5" height="121.0" width="251.0" data-name="AnnotationsConfig"></rect>
|
|
211
|
+
<path d="M128.0 169.5 L379.0 169.5" fill="none" data-name="AnnotationsConfig"></path>
|
|
212
|
+
<path d="M128.0 250.5 L379.0 250.5" fill="none" data-name="AnnotationsConfig"></path>
|
|
203
213
|
</g>
|
|
204
|
-
<g transform="translate(128,
|
|
214
|
+
<g transform="translate(128, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AnnotationsConfig" data-compartment="0">
|
|
205
215
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="AnnotationsConfig" data-compartment="0">
|
|
206
|
-
<a id="../src/dynamics/types.ts.AnnotationsConfig" xlink:href="../src/dynamics/types.ts"><text x="
|
|
216
|
+
<a id="../src/dynamics/types.ts.AnnotationsConfig" xlink:href="../src/dynamics/types.ts"><text x="117.5" y="14.1" stroke="none" text-anchor="middle" data-name="AnnotationsConfig" data-compartment="0">AnnotationsConfig</text></a>
|
|
207
217
|
|
|
208
218
|
</g>
|
|
209
219
|
</g>
|
|
210
|
-
<g transform="translate(128,
|
|
220
|
+
<g transform="translate(128, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AnnotationsConfig" data-compartment="1">
|
|
211
221
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="AnnotationsConfig" data-compartment="1">
|
|
212
222
|
<text x="0.0" y="14.1" stroke="none" data-name="AnnotationsConfig" data-compartment="1">+parameters?: JsonMap</text>
|
|
213
223
|
<text x="0.0" y="30.3" stroke="none" data-name="AnnotationsConfig" data-compartment="1">+args?: JsonMap</text>
|
|
214
|
-
<text x="0.0" y="46.5" stroke="none" data-name="AnnotationsConfig" data-compartment="1">+argTypes?: ArgTypes
|
|
215
|
-
<text x="0.0" y="62.7" stroke="none" data-name="AnnotationsConfig" data-compartment="1">+tags?:
|
|
224
|
+
<text x="0.0" y="46.5" stroke="none" data-name="AnnotationsConfig" data-compartment="1">+argTypes?: ArgTypes<Args></text>
|
|
225
|
+
<text x="0.0" y="62.7" stroke="none" data-name="AnnotationsConfig" data-compartment="1">+tags?: string[]</text>
|
|
216
226
|
|
|
217
227
|
</g>
|
|
218
228
|
</g>
|
|
219
|
-
<g transform="translate(128,
|
|
229
|
+
<g transform="translate(128, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AnnotationsConfig" data-compartment="2">
|
|
220
230
|
<g transform="translate(8, 8)" fill="#33322E" data-name="AnnotationsConfig" data-compartment="2">
|
|
221
231
|
|
|
222
232
|
</g>
|
|
@@ -224,23 +234,23 @@
|
|
|
224
234
|
</g>
|
|
225
235
|
<g data-name="MetaConfig">
|
|
226
236
|
<g fill="lightblue" stroke="#33322E" data-name="MetaConfig">
|
|
227
|
-
<rect x="
|
|
228
|
-
<path d="
|
|
229
|
-
<path d="
|
|
237
|
+
<rect x="111.5" y="549.5" height="72.0" width="118.0" data-name="MetaConfig"></rect>
|
|
238
|
+
<path d="M111.5 581.5 L229.5 581.5" fill="none" data-name="MetaConfig"></path>
|
|
239
|
+
<path d="M111.5 613.5 L229.5 613.5" fill="none" data-name="MetaConfig"></path>
|
|
230
240
|
</g>
|
|
231
|
-
<g transform="translate(
|
|
241
|
+
<g transform="translate(111.5, 549.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MetaConfig" data-compartment="0">
|
|
232
242
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="MetaConfig" data-compartment="0">
|
|
233
243
|
<a id="../src/dynamics/types.ts.MetaConfig" xlink:href="../src/dynamics/types.ts"><text x="51.0" y="14.1" stroke="none" text-anchor="middle" data-name="MetaConfig" data-compartment="0">MetaConfig</text></a>
|
|
234
244
|
|
|
235
245
|
</g>
|
|
236
246
|
</g>
|
|
237
|
-
<g transform="translate(
|
|
247
|
+
<g transform="translate(111.5, 581.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MetaConfig" data-compartment="1">
|
|
238
248
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="MetaConfig" data-compartment="1">
|
|
239
249
|
<text x="0.0" y="14.1" stroke="none" data-name="MetaConfig" data-compartment="1">+title?: string</text>
|
|
240
250
|
|
|
241
251
|
</g>
|
|
242
252
|
</g>
|
|
243
|
-
<g transform="translate(
|
|
253
|
+
<g transform="translate(111.5, 613.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MetaConfig" data-compartment="2">
|
|
244
254
|
<g transform="translate(8, 8)" fill="#33322E" data-name="MetaConfig" data-compartment="2">
|
|
245
255
|
|
|
246
256
|
</g>
|
|
@@ -248,23 +258,23 @@
|
|
|
248
258
|
</g>
|
|
249
259
|
<g data-name="StoryConfig">
|
|
250
260
|
<g fill="lightblue" stroke="#33322E" data-name="StoryConfig">
|
|
251
|
-
<rect x="
|
|
252
|
-
<path d="
|
|
253
|
-
<path d="
|
|
261
|
+
<rect x="1153.3" y="549.5" height="72.0" width="134.0" data-name="StoryConfig"></rect>
|
|
262
|
+
<path d="M1153.3 581.5 L1287.3 581.5" fill="none" data-name="StoryConfig"></path>
|
|
263
|
+
<path d="M1153.3 613.5 L1287.3 613.5" fill="none" data-name="StoryConfig"></path>
|
|
254
264
|
</g>
|
|
255
|
-
<g transform="translate(
|
|
265
|
+
<g transform="translate(1153.25, 549.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="StoryConfig" data-compartment="0">
|
|
256
266
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="StoryConfig" data-compartment="0">
|
|
257
267
|
<a id="../src/dynamics/types.ts.StoryConfig" xlink:href="../src/dynamics/types.ts"><text x="59.0" y="14.1" stroke="none" text-anchor="middle" data-name="StoryConfig" data-compartment="0">StoryConfig</text></a>
|
|
258
268
|
|
|
259
269
|
</g>
|
|
260
270
|
</g>
|
|
261
|
-
<g transform="translate(
|
|
271
|
+
<g transform="translate(1153.25, 581.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="StoryConfig" data-compartment="1">
|
|
262
272
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="StoryConfig" data-compartment="1">
|
|
263
273
|
<text x="0.0" y="14.1" stroke="none" data-name="StoryConfig" data-compartment="1">+name?: string</text>
|
|
264
274
|
|
|
265
275
|
</g>
|
|
266
276
|
</g>
|
|
267
|
-
<g transform="translate(
|
|
277
|
+
<g transform="translate(1153.25, 613.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="StoryConfig" data-compartment="2">
|
|
268
278
|
<g transform="translate(8, 8)" fill="#33322E" data-name="StoryConfig" data-compartment="2">
|
|
269
279
|
|
|
270
280
|
</g>
|
|
@@ -272,17 +282,17 @@
|
|
|
272
282
|
</g>
|
|
273
283
|
<g data-name="DynamicConfig">
|
|
274
284
|
<g fill="lightblue" stroke="#33322E" data-name="DynamicConfig">
|
|
275
|
-
<rect x="
|
|
276
|
-
<path d="
|
|
277
|
-
<path d="
|
|
285
|
+
<rect x="419.0" y="145.5" height="105.0" width="442.0" data-name="DynamicConfig"></rect>
|
|
286
|
+
<path d="M419.0 177.5 L861.0 177.5" fill="none" data-name="DynamicConfig"></path>
|
|
287
|
+
<path d="M419.0 242.5 L861.0 242.5" fill="none" data-name="DynamicConfig"></path>
|
|
278
288
|
</g>
|
|
279
|
-
<g transform="translate(
|
|
289
|
+
<g transform="translate(419, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DynamicConfig" data-compartment="0">
|
|
280
290
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="DynamicConfig" data-compartment="0">
|
|
281
291
|
<a id="../src/dynamics/types.ts.DynamicConfig" xlink:href="../src/dynamics/types.ts"><text x="213.0" y="14.1" stroke="none" text-anchor="middle" data-name="DynamicConfig" data-compartment="0">DynamicConfig</text></a>
|
|
282
292
|
|
|
283
293
|
</g>
|
|
284
294
|
</g>
|
|
285
|
-
<g transform="translate(
|
|
295
|
+
<g transform="translate(419, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DynamicConfig" data-compartment="1">
|
|
286
296
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="DynamicConfig" data-compartment="1">
|
|
287
297
|
<text x="0.0" y="14.1" stroke="none" data-name="DynamicConfig" data-compartment="1">+baseCsf: string</text>
|
|
288
298
|
<text x="0.0" y="30.3" stroke="none" data-name="DynamicConfig" data-compartment="1">+storiesCsf?: string</text>
|
|
@@ -290,7 +300,7 @@
|
|
|
290
300
|
|
|
291
301
|
</g>
|
|
292
302
|
</g>
|
|
293
|
-
<g transform="translate(
|
|
303
|
+
<g transform="translate(419, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DynamicConfig" data-compartment="2">
|
|
294
304
|
<g transform="translate(8, 8)" fill="#33322E" data-name="DynamicConfig" data-compartment="2">
|
|
295
305
|
|
|
296
306
|
</g>
|
|
@@ -298,17 +308,17 @@
|
|
|
298
308
|
</g>
|
|
299
309
|
<g data-name="ComponentFixture">
|
|
300
310
|
<g fill="lightblue" stroke="#33322E" data-name="ComponentFixture">
|
|
301
|
-
<rect x="
|
|
302
|
-
<path d="
|
|
303
|
-
<path d="
|
|
311
|
+
<rect x="901.0" y="113.5" height="169.0" width="314.0" data-name="ComponentFixture"></rect>
|
|
312
|
+
<path d="M901.0 145.5 L1215.0 145.5" fill="none" data-name="ComponentFixture"></path>
|
|
313
|
+
<path d="M901.0 274.5 L1215.0 274.5" fill="none" data-name="ComponentFixture"></path>
|
|
304
314
|
</g>
|
|
305
|
-
<g transform="translate(
|
|
315
|
+
<g transform="translate(901, 113.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ComponentFixture" data-compartment="0">
|
|
306
316
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ComponentFixture" data-compartment="0">
|
|
307
317
|
<a id="../src/dynamics/types.ts.ComponentFixture" xlink:href="../src/dynamics/types.ts"><text x="149.0" y="14.1" stroke="none" text-anchor="middle" data-name="ComponentFixture" data-compartment="0">ComponentFixture</text></a>
|
|
308
318
|
|
|
309
319
|
</g>
|
|
310
320
|
</g>
|
|
311
|
-
<g transform="translate(
|
|
321
|
+
<g transform="translate(901, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ComponentFixture" data-compartment="1">
|
|
312
322
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ComponentFixture" data-compartment="1">
|
|
313
323
|
<text x="0.0" y="14.1" stroke="none" data-name="ComponentFixture" data-compartment="1">+name: string</text>
|
|
314
324
|
<text x="0.0" y="30.3" stroke="none" data-name="ComponentFixture" data-compartment="1">+options?: object</text>
|
|
@@ -320,7 +330,7 @@
|
|
|
320
330
|
|
|
321
331
|
</g>
|
|
322
332
|
</g>
|
|
323
|
-
<g transform="translate(
|
|
333
|
+
<g transform="translate(901, 274.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ComponentFixture" data-compartment="2">
|
|
324
334
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ComponentFixture" data-compartment="2">
|
|
325
335
|
|
|
326
336
|
</g>
|
|
@@ -328,24 +338,24 @@
|
|
|
328
338
|
</g>
|
|
329
339
|
<g data-name="ComponentFixtureRoot">
|
|
330
340
|
<g fill="lightblue" stroke="#33322E" data-name="ComponentFixtureRoot">
|
|
331
|
-
<rect x="
|
|
332
|
-
<path d="
|
|
333
|
-
<path d="
|
|
341
|
+
<rect x="1255.0" y="154.0" height="88.0" width="249.0" data-name="ComponentFixtureRoot"></rect>
|
|
342
|
+
<path d="M1255.0 186.0 L1504.0 186.0" fill="none" data-name="ComponentFixtureRoot"></path>
|
|
343
|
+
<path d="M1255.0 234.0 L1504.0 234.0" fill="none" data-name="ComponentFixtureRoot"></path>
|
|
334
344
|
</g>
|
|
335
|
-
<g transform="translate(
|
|
345
|
+
<g transform="translate(1255, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ComponentFixtureRoot" data-compartment="0">
|
|
336
346
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ComponentFixtureRoot" data-compartment="0">
|
|
337
347
|
<a id="../src/dynamics/types.ts.ComponentFixtureRoot" xlink:href="../src/dynamics/types.ts"><text x="116.5" y="14.1" stroke="none" text-anchor="middle" data-name="ComponentFixtureRoot" data-compartment="0">ComponentFixtureRoot</text></a>
|
|
338
348
|
|
|
339
349
|
</g>
|
|
340
350
|
</g>
|
|
341
|
-
<g transform="translate(
|
|
351
|
+
<g transform="translate(1255, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ComponentFixtureRoot" data-compartment="1">
|
|
342
352
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ComponentFixtureRoot" data-compartment="1">
|
|
343
353
|
<text x="0.0" y="14.1" stroke="none" data-name="ComponentFixtureRoot" data-compartment="1">+component: string</text>
|
|
344
354
|
<text x="0.0" y="30.3" stroke="none" data-name="ComponentFixtureRoot" data-compartment="1">+fixtures: ComponentFixture[]</text>
|
|
345
355
|
|
|
346
356
|
</g>
|
|
347
357
|
</g>
|
|
348
|
-
<g transform="translate(
|
|
358
|
+
<g transform="translate(1255, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ComponentFixtureRoot" data-compartment="2">
|
|
349
359
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ComponentFixtureRoot" data-compartment="2">
|
|
350
360
|
|
|
351
361
|
</g>
|
|
@@ -353,23 +363,25 @@
|
|
|
353
363
|
</g>
|
|
354
364
|
<g data-name="WithRefProps">
|
|
355
365
|
<g fill="lightblue" stroke="#33322E" data-name="WithRefProps">
|
|
356
|
-
<rect x="
|
|
357
|
-
<path d="
|
|
358
|
-
<path d="
|
|
366
|
+
<rect x="1544.0" y="145.5" height="105.0" width="801.0" data-name="WithRefProps"></rect>
|
|
367
|
+
<path d="M1544.0 177.5 L2345.0 177.5" fill="none" data-name="WithRefProps"></path>
|
|
368
|
+
<path d="M1544.0 242.5 L2345.0 242.5" fill="none" data-name="WithRefProps"></path>
|
|
359
369
|
</g>
|
|
360
|
-
<g transform="translate(
|
|
370
|
+
<g transform="translate(1544, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WithRefProps" data-compartment="0">
|
|
361
371
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="WithRefProps" data-compartment="0">
|
|
362
|
-
<a id="../src/utils/WithReference.types.ts.WithRefProps" xlink:href="../src/utils/WithReference.types.ts"><text x="
|
|
372
|
+
<a id="../src/utils/WithReference.types.ts.WithRefProps" xlink:href="../src/utils/WithReference.types.ts"><text x="392.5" y="14.1" stroke="none" text-anchor="middle" data-name="WithRefProps" data-compartment="0">WithRefProps</text></a>
|
|
363
373
|
|
|
364
374
|
</g>
|
|
365
375
|
</g>
|
|
366
|
-
<g transform="translate(
|
|
376
|
+
<g transform="translate(1544, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WithRefProps" data-compartment="1">
|
|
367
377
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="WithRefProps" data-compartment="1">
|
|
368
|
-
<text x="0.0" y="14.1" stroke="none" data-name="WithRefProps" data-compartment="1">+Component: React.ComponentType<unknown></text>
|
|
378
|
+
<text x="0.0" y="14.1" stroke="none" data-name="WithRefProps" data-compartment="1">+Component: React.ComponentType<Record<string, unknown> & { ref?: React.Ref<HTMLElement></text>
|
|
379
|
+
<text x="0.0" y="30.3" stroke="none" data-name="WithRefProps" data-compartment="1">}></text>
|
|
380
|
+
<text x="0.0" y="46.5" stroke="none" data-name="WithRefProps" data-compartment="1">+items?: unknown[]</text>
|
|
369
381
|
|
|
370
382
|
</g>
|
|
371
383
|
</g>
|
|
372
|
-
<g transform="translate(
|
|
384
|
+
<g transform="translate(1544, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WithRefProps" data-compartment="2">
|
|
373
385
|
<g transform="translate(8, 8)" fill="#33322E" data-name="WithRefProps" data-compartment="2">
|
|
374
386
|
|
|
375
387
|
</g>
|
|
@@ -377,25 +389,26 @@
|
|
|
377
389
|
</g>
|
|
378
390
|
<g data-name="InfoSectionProps">
|
|
379
391
|
<g fill="lightblue" stroke="#33322E" data-name="InfoSectionProps">
|
|
380
|
-
<rect x="
|
|
381
|
-
<path d="
|
|
382
|
-
<path d="
|
|
392
|
+
<rect x="2385.0" y="137.5" height="121.0" width="801.0" data-name="InfoSectionProps"></rect>
|
|
393
|
+
<path d="M2385.0 169.5 L3186.0 169.5" fill="none" data-name="InfoSectionProps"></path>
|
|
394
|
+
<path d="M2385.0 250.5 L3186.0 250.5" fill="none" data-name="InfoSectionProps"></path>
|
|
383
395
|
</g>
|
|
384
|
-
<g transform="translate(
|
|
396
|
+
<g transform="translate(2385, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InfoSectionProps" data-compartment="0">
|
|
385
397
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="InfoSectionProps" data-compartment="0">
|
|
386
|
-
<a id="../src/utils/WithReference.types.ts.InfoSectionProps" xlink:href="../src/utils/WithReference.types.ts"><text x="
|
|
398
|
+
<a id="../src/utils/WithReference.types.ts.InfoSectionProps" xlink:href="../src/utils/WithReference.types.ts"><text x="392.5" y="14.1" stroke="none" text-anchor="middle" data-name="InfoSectionProps" data-compartment="0">InfoSectionProps</text></a>
|
|
387
399
|
|
|
388
400
|
</g>
|
|
389
401
|
</g>
|
|
390
|
-
<g transform="translate(
|
|
402
|
+
<g transform="translate(2385, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InfoSectionProps" data-compartment="1">
|
|
391
403
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="InfoSectionProps" data-compartment="1">
|
|
392
404
|
<text x="0.0" y="14.1" stroke="none" data-name="InfoSectionProps" data-compartment="1">+refName: string</text>
|
|
393
|
-
<text x="0.0" y="30.3" stroke="none" data-name="InfoSectionProps" data-compartment="1">+Component: React.ComponentType<unknown></text>
|
|
394
|
-
<text x="0.0" y="46.5" stroke="none" data-name="InfoSectionProps" data-compartment="1"
|
|
405
|
+
<text x="0.0" y="30.3" stroke="none" data-name="InfoSectionProps" data-compartment="1">+Component: React.ComponentType<Record<string, unknown> & { ref?: React.Ref<HTMLElement></text>
|
|
406
|
+
<text x="0.0" y="46.5" stroke="none" data-name="InfoSectionProps" data-compartment="1">}></text>
|
|
407
|
+
<text x="0.0" y="62.7" stroke="none" data-name="InfoSectionProps" data-compartment="1">+restProps: Record<string, unknown></text>
|
|
395
408
|
|
|
396
409
|
</g>
|
|
397
410
|
</g>
|
|
398
|
-
<g transform="translate(
|
|
411
|
+
<g transform="translate(2385, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InfoSectionProps" data-compartment="2">
|
|
399
412
|
<g transform="translate(8, 8)" fill="#33322E" data-name="InfoSectionProps" data-compartment="2">
|
|
400
413
|
|
|
401
414
|
</g>
|
|
@@ -403,17 +416,17 @@
|
|
|
403
416
|
</g>
|
|
404
417
|
<g data-name="AccordionItem">
|
|
405
418
|
<g fill="lightblue" stroke="#33322E" data-name="AccordionItem">
|
|
406
|
-
<rect x="
|
|
407
|
-
<path d="
|
|
408
|
-
<path d="
|
|
419
|
+
<rect x="3226.0" y="105.0" height="186.0" width="290.0" data-name="AccordionItem"></rect>
|
|
420
|
+
<path d="M3226.0 137.0 L3516.0 137.0" fill="none" data-name="AccordionItem"></path>
|
|
421
|
+
<path d="M3226.0 283.0 L3516.0 283.0" fill="none" data-name="AccordionItem"></path>
|
|
409
422
|
</g>
|
|
410
|
-
<g transform="translate(
|
|
423
|
+
<g transform="translate(3226, 105)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AccordionItem" data-compartment="0">
|
|
411
424
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="AccordionItem" data-compartment="0">
|
|
412
425
|
<a id="../src/components/Accordion/Accordion.types.ts.AccordionItem" xlink:href="../src/components/Accordion/Accordion.types.ts"><text x="137.0" y="14.1" stroke="none" text-anchor="middle" data-name="AccordionItem" data-compartment="0">AccordionItem</text></a>
|
|
413
426
|
|
|
414
427
|
</g>
|
|
415
428
|
</g>
|
|
416
|
-
<g transform="translate(
|
|
429
|
+
<g transform="translate(3226, 137)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AccordionItem" data-compartment="1">
|
|
417
430
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="AccordionItem" data-compartment="1">
|
|
418
431
|
<text x="0.0" y="14.1" stroke="none" data-name="AccordionItem" data-compartment="1">+reactListKey?: string | number</text>
|
|
419
432
|
<text x="0.0" y="30.3" stroke="none" data-name="AccordionItem" data-compartment="1">+expanded?: boolean</text>
|
|
@@ -426,7 +439,7 @@
|
|
|
426
439
|
|
|
427
440
|
</g>
|
|
428
441
|
</g>
|
|
429
|
-
<g transform="translate(
|
|
442
|
+
<g transform="translate(3226, 283)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AccordionItem" data-compartment="2">
|
|
430
443
|
<g transform="translate(8, 8)" fill="#33322E" data-name="AccordionItem" data-compartment="2">
|
|
431
444
|
|
|
432
445
|
</g>
|
|
@@ -434,17 +447,17 @@
|
|
|
434
447
|
</g>
|
|
435
448
|
<g data-name="AccordionProps">
|
|
436
449
|
<g fill="lightblue" stroke="#33322E" data-name="AccordionProps">
|
|
437
|
-
<rect x="
|
|
438
|
-
<path d="
|
|
439
|
-
<path d="
|
|
450
|
+
<rect x="1327.3" y="525.0" height="121.0" width="256.0" data-name="AccordionProps"></rect>
|
|
451
|
+
<path d="M1327.3 557.0 L1583.3 557.0" fill="none" data-name="AccordionProps"></path>
|
|
452
|
+
<path d="M1327.3 638.0 L1583.3 638.0" fill="none" data-name="AccordionProps"></path>
|
|
440
453
|
</g>
|
|
441
|
-
<g transform="translate(
|
|
454
|
+
<g transform="translate(1327.25, 525)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AccordionProps" data-compartment="0">
|
|
442
455
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="AccordionProps" data-compartment="0">
|
|
443
456
|
<a id="../src/components/Accordion/Accordion.types.ts.AccordionProps" xlink:href="../src/components/Accordion/Accordion.types.ts"><text x="120.0" y="14.1" stroke="none" text-anchor="middle" data-name="AccordionProps" data-compartment="0">AccordionProps</text></a>
|
|
444
457
|
|
|
445
458
|
</g>
|
|
446
459
|
</g>
|
|
447
|
-
<g transform="translate(
|
|
460
|
+
<g transform="translate(1327.25, 557)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AccordionProps" data-compartment="1">
|
|
448
461
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="AccordionProps" data-compartment="1">
|
|
449
462
|
<text x="0.0" y="14.1" stroke="none" data-name="AccordionProps" data-compartment="1">+className?: string</text>
|
|
450
463
|
<text x="0.0" y="30.3" stroke="none" data-name="AccordionProps" data-compartment="1">+headingLevel?: ElementType</text>
|
|
@@ -453,7 +466,7 @@
|
|
|
453
466
|
|
|
454
467
|
</g>
|
|
455
468
|
</g>
|
|
456
|
-
<g transform="translate(
|
|
469
|
+
<g transform="translate(1327.25, 638)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="AccordionProps" data-compartment="2">
|
|
457
470
|
<g transform="translate(8, 8)" fill="#33322E" data-name="AccordionProps" data-compartment="2">
|
|
458
471
|
|
|
459
472
|
</g>
|
|
@@ -461,9 +474,9 @@
|
|
|
461
474
|
</g>
|
|
462
475
|
<g data-name="HTMLAttributes<T>">
|
|
463
476
|
<g fill="#eee8d5" stroke="#33322E" data-name="HTMLAttributes<T>">
|
|
464
|
-
<rect x="
|
|
477
|
+
<rect x="3556.0" y="182.0" height="32.0" width="167.0" data-name="HTMLAttributes<T>"></rect>
|
|
465
478
|
</g>
|
|
466
|
-
<g transform="translate(
|
|
479
|
+
<g transform="translate(3556, 182)" font-family="Helvetica" font-size="12pt" font-weight="bold" font-style="normal" data-name="HTMLAttributes<T>" data-compartment="0">
|
|
467
480
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="HTMLAttributes<T>" data-compartment="0">
|
|
468
481
|
<text x="75.5" y="14.1" stroke="none" text-anchor="middle" data-name="HTMLAttributes<T>" data-compartment="0">HTMLAttributes<T></text>
|
|
469
482
|
|
|
@@ -472,17 +485,17 @@
|
|
|
472
485
|
</g>
|
|
473
486
|
<g data-name="ActionLinkProps">
|
|
474
487
|
<g fill="lightblue" stroke="#33322E" data-name="ActionLinkProps">
|
|
475
|
-
<rect x="
|
|
476
|
-
<path d="
|
|
477
|
-
<path d="
|
|
488
|
+
<rect x="3763.0" y="129.5" height="137.0" width="239.0" data-name="ActionLinkProps"></rect>
|
|
489
|
+
<path d="M3763.0 161.5 L4002.0 161.5" fill="none" data-name="ActionLinkProps"></path>
|
|
490
|
+
<path d="M3763.0 258.5 L4002.0 258.5" fill="none" data-name="ActionLinkProps"></path>
|
|
478
491
|
</g>
|
|
479
|
-
<g transform="translate(
|
|
492
|
+
<g transform="translate(3763, 129.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ActionLinkProps" data-compartment="0">
|
|
480
493
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ActionLinkProps" data-compartment="0">
|
|
481
494
|
<a id="../src/components/ActionLink/ActionLink.types.ts.ActionLinkProps" xlink:href="../src/components/ActionLink/ActionLink.types.ts"><text x="111.5" y="14.1" stroke="none" text-anchor="middle" data-name="ActionLinkProps" data-compartment="0">ActionLinkProps</text></a>
|
|
482
495
|
|
|
483
496
|
</g>
|
|
484
497
|
</g>
|
|
485
|
-
<g transform="translate(
|
|
498
|
+
<g transform="translate(3763, 161.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ActionLinkProps" data-compartment="1">
|
|
486
499
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ActionLinkProps" data-compartment="1">
|
|
487
500
|
<text x="0.0" y="14.1" stroke="none" data-name="ActionLinkProps" data-compartment="1">+children?: ReactNode</text>
|
|
488
501
|
<text x="0.0" y="30.3" stroke="none" data-name="ActionLinkProps" data-compartment="1">+visuallyHiddenText?: string</text>
|
|
@@ -492,7 +505,7 @@
|
|
|
492
505
|
|
|
493
506
|
</g>
|
|
494
507
|
</g>
|
|
495
|
-
<g transform="translate(
|
|
508
|
+
<g transform="translate(3763, 258.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ActionLinkProps" data-compartment="2">
|
|
496
509
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ActionLinkProps" data-compartment="2">
|
|
497
510
|
|
|
498
511
|
</g>
|
|
@@ -500,23 +513,23 @@
|
|
|
500
513
|
</g>
|
|
501
514
|
<g data-name="Action">
|
|
502
515
|
<g fill="lightblue" stroke="#33322E" data-name="Action">
|
|
503
|
-
<rect x="
|
|
504
|
-
<path d="
|
|
505
|
-
<path d="
|
|
516
|
+
<rect x="4042.0" y="162.0" height="72.0" width="188.0" data-name="Action"></rect>
|
|
517
|
+
<path d="M4042.0 194.0 L4230.0 194.0" fill="none" data-name="Action"></path>
|
|
518
|
+
<path d="M4042.0 226.0 L4230.0 226.0" fill="none" data-name="Action"></path>
|
|
506
519
|
</g>
|
|
507
|
-
<g transform="translate(
|
|
520
|
+
<g transform="translate(4042, 162)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Action" data-compartment="0">
|
|
508
521
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="Action" data-compartment="0">
|
|
509
522
|
<a id="../src/components/ActionLink/ActionLink.types.ts.Action" xlink:href="../src/components/ActionLink/ActionLink.types.ts"><text x="86.0" y="14.1" stroke="none" text-anchor="middle" data-name="Action" data-compartment="0">Action</text></a>
|
|
510
523
|
|
|
511
524
|
</g>
|
|
512
525
|
</g>
|
|
513
|
-
<g transform="translate(
|
|
526
|
+
<g transform="translate(4042, 194)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Action" data-compartment="1">
|
|
514
527
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="Action" data-compartment="1">
|
|
515
528
|
<text x="0.0" y="14.1" stroke="none" data-name="Action" data-compartment="1">+reactListKey?: string</text>
|
|
516
529
|
|
|
517
530
|
</g>
|
|
518
531
|
</g>
|
|
519
|
-
<g transform="translate(
|
|
532
|
+
<g transform="translate(4042, 226)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Action" data-compartment="2">
|
|
520
533
|
<g transform="translate(8, 8)" fill="#33322E" data-name="Action" data-compartment="2">
|
|
521
534
|
|
|
522
535
|
</g>
|
|
@@ -524,17 +537,17 @@
|
|
|
524
537
|
</g>
|
|
525
538
|
<g data-name="BackLinkProps">
|
|
526
539
|
<g fill="lightblue" stroke="#33322E" data-name="BackLinkProps">
|
|
527
|
-
<rect x="
|
|
528
|
-
<path d="
|
|
529
|
-
<path d="
|
|
540
|
+
<rect x="4270.0" y="129.5" height="137.0" width="197.0" data-name="BackLinkProps"></rect>
|
|
541
|
+
<path d="M4270.0 161.5 L4467.0 161.5" fill="none" data-name="BackLinkProps"></path>
|
|
542
|
+
<path d="M4270.0 258.5 L4467.0 258.5" fill="none" data-name="BackLinkProps"></path>
|
|
530
543
|
</g>
|
|
531
|
-
<g transform="translate(
|
|
544
|
+
<g transform="translate(4270, 129.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BackLinkProps" data-compartment="0">
|
|
532
545
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="BackLinkProps" data-compartment="0">
|
|
533
546
|
<a id="../src/components/BackLink/BackLink.types.ts.BackLinkProps" xlink:href="../src/components/BackLink/BackLink.types.ts"><text x="90.5" y="14.1" stroke="none" text-anchor="middle" data-name="BackLinkProps" data-compartment="0">BackLinkProps</text></a>
|
|
534
547
|
|
|
535
548
|
</g>
|
|
536
549
|
</g>
|
|
537
|
-
<g transform="translate(
|
|
550
|
+
<g transform="translate(4270, 161.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BackLinkProps" data-compartment="1">
|
|
538
551
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="BackLinkProps" data-compartment="1">
|
|
539
552
|
<text x="0.0" y="14.1" stroke="none" data-name="BackLinkProps" data-compartment="1">+to?: To</text>
|
|
540
553
|
<text x="0.0" y="30.3" stroke="none" data-name="BackLinkProps" data-compartment="1">+state?: object</text>
|
|
@@ -544,7 +557,7 @@
|
|
|
544
557
|
|
|
545
558
|
</g>
|
|
546
559
|
</g>
|
|
547
|
-
<g transform="translate(
|
|
560
|
+
<g transform="translate(4270, 258.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BackLinkProps" data-compartment="2">
|
|
548
561
|
<g transform="translate(8, 8)" fill="#33322E" data-name="BackLinkProps" data-compartment="2">
|
|
549
562
|
|
|
550
563
|
</g>
|
|
@@ -552,17 +565,17 @@
|
|
|
552
565
|
</g>
|
|
553
566
|
<g data-name="BooleanItem">
|
|
554
567
|
<g fill="lightblue" stroke="#33322E" data-name="BooleanItem">
|
|
555
|
-
<rect x="
|
|
556
|
-
<path d="
|
|
557
|
-
<path d="
|
|
568
|
+
<rect x="4507.0" y="64.5" height="267.0" width="304.0" data-name="BooleanItem"></rect>
|
|
569
|
+
<path d="M4507.0 96.5 L4811.0 96.5" fill="none" data-name="BooleanItem"></path>
|
|
570
|
+
<path d="M4507.0 323.5 L4811.0 323.5" fill="none" data-name="BooleanItem"></path>
|
|
558
571
|
</g>
|
|
559
|
-
<g transform="translate(
|
|
572
|
+
<g transform="translate(4507, 64.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BooleanItem" data-compartment="0">
|
|
560
573
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="BooleanItem" data-compartment="0">
|
|
561
574
|
<a id="../src/components/Boolean/Boolean.types.ts.BooleanItem" xlink:href="../src/components/Boolean/Boolean.types.ts"><text x="144.0" y="14.1" stroke="none" text-anchor="middle" data-name="BooleanItem" data-compartment="0">BooleanItem</text></a>
|
|
562
575
|
|
|
563
576
|
</g>
|
|
564
577
|
</g>
|
|
565
|
-
<g transform="translate(
|
|
578
|
+
<g transform="translate(4507, 96.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BooleanItem" data-compartment="1">
|
|
566
579
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="BooleanItem" data-compartment="1">
|
|
567
580
|
<text x="0.0" y="14.1" stroke="none" data-name="BooleanItem" data-compartment="1">+id?: string</text>
|
|
568
581
|
<text x="0.0" y="30.3" stroke="none" data-name="BooleanItem" data-compartment="1">+children?: ReactNode</text>
|
|
@@ -580,7 +593,7 @@
|
|
|
580
593
|
|
|
581
594
|
</g>
|
|
582
595
|
</g>
|
|
583
|
-
<g transform="translate(
|
|
596
|
+
<g transform="translate(4507, 323.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BooleanItem" data-compartment="2">
|
|
584
597
|
<g transform="translate(8, 8)" fill="#33322E" data-name="BooleanItem" data-compartment="2">
|
|
585
598
|
|
|
586
599
|
</g>
|
|
@@ -588,17 +601,17 @@
|
|
|
588
601
|
</g>
|
|
589
602
|
<g data-name="BooleanProps">
|
|
590
603
|
<g fill="lightblue" stroke="#33322E" data-name="BooleanProps">
|
|
591
|
-
<rect x="
|
|
592
|
-
<path d="
|
|
593
|
-
<path d="
|
|
604
|
+
<rect x="4851.0" y="56.5" height="283.0" width="608.0" data-name="BooleanProps"></rect>
|
|
605
|
+
<path d="M4851.0 88.5 L5459.0 88.5" fill="none" data-name="BooleanProps"></path>
|
|
606
|
+
<path d="M4851.0 331.5 L5459.0 331.5" fill="none" data-name="BooleanProps"></path>
|
|
594
607
|
</g>
|
|
595
|
-
<g transform="translate(
|
|
608
|
+
<g transform="translate(4851, 56.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BooleanProps" data-compartment="0">
|
|
596
609
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="BooleanProps" data-compartment="0">
|
|
597
|
-
<a id="../src/components/Boolean/Boolean.types.ts.BooleanProps" xlink:href="../src/components/Boolean/Boolean.types.ts"><text x="
|
|
610
|
+
<a id="../src/components/Boolean/Boolean.types.ts.BooleanProps" xlink:href="../src/components/Boolean/Boolean.types.ts"><text x="296.0" y="14.1" stroke="none" text-anchor="middle" data-name="BooleanProps" data-compartment="0">BooleanProps</text></a>
|
|
598
611
|
|
|
599
612
|
</g>
|
|
600
613
|
</g>
|
|
601
|
-
<g transform="translate(
|
|
614
|
+
<g transform="translate(4851, 88.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BooleanProps" data-compartment="1">
|
|
602
615
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="BooleanProps" data-compartment="1">
|
|
603
616
|
<text x="0.0" y="14.1" stroke="none" data-name="BooleanProps" data-compartment="1">+className?: string</text>
|
|
604
617
|
<text x="0.0" y="30.3" stroke="none" data-name="BooleanProps" data-compartment="1">+errorMessage?: ErrorMessageProps</text>
|
|
@@ -611,13 +624,13 @@
|
|
|
611
624
|
<text x="0.0" y="143.7" stroke="none" data-name="BooleanProps" data-compartment="1">+items?: BooleanItem[]</text>
|
|
612
625
|
<text x="0.0" y="159.9" stroke="none" data-name="BooleanProps" data-compartment="1">+controlType: "radios" | "checkboxes"</text>
|
|
613
626
|
<text x="0.0" y="176.1" stroke="none" data-name="BooleanProps" data-compartment="1">+name?: string</text>
|
|
614
|
-
<text x="0.0" y="192.3" stroke="none" data-name="BooleanProps" data-compartment="1">+onChange?: (event: ChangeEvent<HTMLInputElement>) => void</text>
|
|
627
|
+
<text x="0.0" y="192.3" stroke="none" data-name="BooleanProps" data-compartment="1">+onChange?: (event: ChangeEvent<HTMLInputElement, Element>) => void</text>
|
|
615
628
|
<text x="0.0" y="208.5" stroke="none" data-name="BooleanProps" data-compartment="1">+onBlur?: (event: FocusEvent<HTMLInputElement, Element>) => void</text>
|
|
616
629
|
<text x="0.0" y="224.7" stroke="none" data-name="BooleanProps" data-compartment="1">+aria-describedby?: string</text>
|
|
617
630
|
|
|
618
631
|
</g>
|
|
619
632
|
</g>
|
|
620
|
-
<g transform="translate(
|
|
633
|
+
<g transform="translate(4851, 331.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BooleanProps" data-compartment="2">
|
|
621
634
|
<g transform="translate(8, 8)" fill="#33322E" data-name="BooleanProps" data-compartment="2">
|
|
622
635
|
|
|
623
636
|
</g>
|
|
@@ -625,17 +638,17 @@
|
|
|
625
638
|
</g>
|
|
626
639
|
<g data-name="BreadcrumbItem">
|
|
627
640
|
<g fill="lightblue" stroke="#33322E" data-name="BreadcrumbItem">
|
|
628
|
-
<rect x="
|
|
629
|
-
<path d="
|
|
630
|
-
<path d="
|
|
641
|
+
<rect x="5499.0" y="137.5" height="121.0" width="263.0" data-name="BreadcrumbItem"></rect>
|
|
642
|
+
<path d="M5499.0 169.5 L5762.0 169.5" fill="none" data-name="BreadcrumbItem"></path>
|
|
643
|
+
<path d="M5499.0 250.5 L5762.0 250.5" fill="none" data-name="BreadcrumbItem"></path>
|
|
631
644
|
</g>
|
|
632
|
-
<g transform="translate(
|
|
645
|
+
<g transform="translate(5499, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BreadcrumbItem" data-compartment="0">
|
|
633
646
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="BreadcrumbItem" data-compartment="0">
|
|
634
647
|
<a id="../src/components/Breadcrumbs/Breadcrumbs.types.ts.BreadcrumbItem" xlink:href="../src/components/Breadcrumbs/Breadcrumbs.types.ts"><text x="123.5" y="14.1" stroke="none" text-anchor="middle" data-name="BreadcrumbItem" data-compartment="0">BreadcrumbItem</text></a>
|
|
635
648
|
|
|
636
649
|
</g>
|
|
637
650
|
</g>
|
|
638
|
-
<g transform="translate(
|
|
651
|
+
<g transform="translate(5499, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BreadcrumbItem" data-compartment="1">
|
|
639
652
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="BreadcrumbItem" data-compartment="1">
|
|
640
653
|
<text x="0.0" y="14.1" stroke="none" data-name="BreadcrumbItem" data-compartment="1">+href?: string</text>
|
|
641
654
|
<text x="0.0" y="30.3" stroke="none" data-name="BreadcrumbItem" data-compartment="1">+to?: string</text>
|
|
@@ -644,7 +657,7 @@
|
|
|
644
657
|
|
|
645
658
|
</g>
|
|
646
659
|
</g>
|
|
647
|
-
<g transform="translate(
|
|
660
|
+
<g transform="translate(5499, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BreadcrumbItem" data-compartment="2">
|
|
648
661
|
<g transform="translate(8, 8)" fill="#33322E" data-name="BreadcrumbItem" data-compartment="2">
|
|
649
662
|
|
|
650
663
|
</g>
|
|
@@ -652,17 +665,17 @@
|
|
|
652
665
|
</g>
|
|
653
666
|
<g data-name="BreadcrumbsProps">
|
|
654
667
|
<g fill="lightblue" stroke="#33322E" data-name="BreadcrumbsProps">
|
|
655
|
-
<rect x="
|
|
656
|
-
<path d="
|
|
657
|
-
<path d="
|
|
668
|
+
<rect x="1623.3" y="533.0" height="105.0" width="251.0" data-name="BreadcrumbsProps"></rect>
|
|
669
|
+
<path d="M1623.3 565.0 L1874.3 565.0" fill="none" data-name="BreadcrumbsProps"></path>
|
|
670
|
+
<path d="M1623.3 630.0 L1874.3 630.0" fill="none" data-name="BreadcrumbsProps"></path>
|
|
658
671
|
</g>
|
|
659
|
-
<g transform="translate(
|
|
672
|
+
<g transform="translate(1623.25, 533)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BreadcrumbsProps" data-compartment="0">
|
|
660
673
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="BreadcrumbsProps" data-compartment="0">
|
|
661
674
|
<a id="../src/components/Breadcrumbs/Breadcrumbs.types.ts.BreadcrumbsProps" xlink:href="../src/components/Breadcrumbs/Breadcrumbs.types.ts"><text x="117.5" y="14.1" stroke="none" text-anchor="middle" data-name="BreadcrumbsProps" data-compartment="0">BreadcrumbsProps</text></a>
|
|
662
675
|
|
|
663
676
|
</g>
|
|
664
677
|
</g>
|
|
665
|
-
<g transform="translate(
|
|
678
|
+
<g transform="translate(1623.25, 565)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BreadcrumbsProps" data-compartment="1">
|
|
666
679
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="BreadcrumbsProps" data-compartment="1">
|
|
667
680
|
<text x="0.0" y="14.1" stroke="none" data-name="BreadcrumbsProps" data-compartment="1">+items?: BreadcrumbItem[]</text>
|
|
668
681
|
<text x="0.0" y="30.3" stroke="none" data-name="BreadcrumbsProps" data-compartment="1">+className?: string</text>
|
|
@@ -670,7 +683,7 @@
|
|
|
670
683
|
|
|
671
684
|
</g>
|
|
672
685
|
</g>
|
|
673
|
-
<g transform="translate(
|
|
686
|
+
<g transform="translate(1623.25, 630)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="BreadcrumbsProps" data-compartment="2">
|
|
674
687
|
<g transform="translate(8, 8)" fill="#33322E" data-name="BreadcrumbsProps" data-compartment="2">
|
|
675
688
|
|
|
676
689
|
</g>
|
|
@@ -678,17 +691,17 @@
|
|
|
678
691
|
</g>
|
|
679
692
|
<g data-name="ButtonProps">
|
|
680
693
|
<g fill="lightblue" stroke="#33322E" data-name="ButtonProps">
|
|
681
|
-
<rect x="
|
|
682
|
-
<path d="
|
|
683
|
-
<path d="
|
|
694
|
+
<rect x="5802.0" y="89.0" height="218.0" width="264.0" data-name="ButtonProps"></rect>
|
|
695
|
+
<path d="M5802.0 121.0 L6066.0 121.0" fill="none" data-name="ButtonProps"></path>
|
|
696
|
+
<path d="M5802.0 299.0 L6066.0 299.0" fill="none" data-name="ButtonProps"></path>
|
|
684
697
|
</g>
|
|
685
|
-
<g transform="translate(
|
|
698
|
+
<g transform="translate(5802, 89)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ButtonProps" data-compartment="0">
|
|
686
699
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ButtonProps" data-compartment="0">
|
|
687
700
|
<a id="../src/components/Button/Button.types.ts.ButtonProps" xlink:href="../src/components/Button/Button.types.ts"><text x="124.0" y="14.1" stroke="none" text-anchor="middle" data-name="ButtonProps" data-compartment="0">ButtonProps</text></a>
|
|
688
701
|
|
|
689
702
|
</g>
|
|
690
703
|
</g>
|
|
691
|
-
<g transform="translate(
|
|
704
|
+
<g transform="translate(5802, 121)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ButtonProps" data-compartment="1">
|
|
692
705
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ButtonProps" data-compartment="1">
|
|
693
706
|
<text x="0.0" y="14.1" stroke="none" data-name="ButtonProps" data-compartment="1">+element?: string</text>
|
|
694
707
|
<text x="0.0" y="30.3" stroke="none" data-name="ButtonProps" data-compartment="1">+href?: string</text>
|
|
@@ -703,7 +716,7 @@
|
|
|
703
716
|
|
|
704
717
|
</g>
|
|
705
718
|
</g>
|
|
706
|
-
<g transform="translate(
|
|
719
|
+
<g transform="translate(5802, 299)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ButtonProps" data-compartment="2">
|
|
707
720
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ButtonProps" data-compartment="2">
|
|
708
721
|
|
|
709
722
|
</g>
|
|
@@ -711,17 +724,17 @@
|
|
|
711
724
|
</g>
|
|
712
725
|
<g data-name="CardColumnProps">
|
|
713
726
|
<g fill="lightblue" stroke="#33322E" data-name="CardColumnProps">
|
|
714
|
-
<rect x="
|
|
715
|
-
<path d="
|
|
716
|
-
<path d="
|
|
727
|
+
<rect x="6106.0" y="145.5" height="105.0" width="160.0" data-name="CardColumnProps"></rect>
|
|
728
|
+
<path d="M6106.0 177.5 L6266.0 177.5" fill="none" data-name="CardColumnProps"></path>
|
|
729
|
+
<path d="M6106.0 242.5 L6266.0 242.5" fill="none" data-name="CardColumnProps"></path>
|
|
717
730
|
</g>
|
|
718
|
-
<g transform="translate(
|
|
731
|
+
<g transform="translate(6106, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CardColumnProps" data-compartment="0">
|
|
719
732
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="CardColumnProps" data-compartment="0">
|
|
720
733
|
<a id="../src/components/CardColumn/CardColumn.types.ts.CardColumnProps" xlink:href="../src/components/CardColumn/CardColumn.types.ts"><text x="72.0" y="14.1" stroke="none" text-anchor="middle" data-name="CardColumnProps" data-compartment="0">CardColumnProps</text></a>
|
|
721
734
|
|
|
722
735
|
</g>
|
|
723
736
|
</g>
|
|
724
|
-
<g transform="translate(
|
|
737
|
+
<g transform="translate(6106, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CardColumnProps" data-compartment="1">
|
|
725
738
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="CardColumnProps" data-compartment="1">
|
|
726
739
|
<text x="0.0" y="14.1" stroke="none" data-name="CardColumnProps" data-compartment="1">+link: string</text>
|
|
727
740
|
<text x="0.0" y="30.3" stroke="none" data-name="CardColumnProps" data-compartment="1">+header: string</text>
|
|
@@ -729,7 +742,7 @@
|
|
|
729
742
|
|
|
730
743
|
</g>
|
|
731
744
|
</g>
|
|
732
|
-
<g transform="translate(
|
|
745
|
+
<g transform="translate(6106, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CardColumnProps" data-compartment="2">
|
|
733
746
|
<g transform="translate(8, 8)" fill="#33322E" data-name="CardColumnProps" data-compartment="2">
|
|
734
747
|
|
|
735
748
|
</g>
|
|
@@ -737,24 +750,24 @@
|
|
|
737
750
|
</g>
|
|
738
751
|
<g data-name="CardLayoutProps">
|
|
739
752
|
<g fill="lightblue" stroke="#33322E" data-name="CardLayoutProps">
|
|
740
|
-
<rect x="
|
|
741
|
-
<path d="
|
|
742
|
-
<path d="
|
|
753
|
+
<rect x="6306.0" y="154.0" height="88.0" width="294.0" data-name="CardLayoutProps"></rect>
|
|
754
|
+
<path d="M6306.0 186.0 L6600.0 186.0" fill="none" data-name="CardLayoutProps"></path>
|
|
755
|
+
<path d="M6306.0 234.0 L6600.0 234.0" fill="none" data-name="CardLayoutProps"></path>
|
|
743
756
|
</g>
|
|
744
|
-
<g transform="translate(
|
|
757
|
+
<g transform="translate(6306, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CardLayoutProps" data-compartment="0">
|
|
745
758
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="CardLayoutProps" data-compartment="0">
|
|
746
759
|
<a id="../src/components/CardLayout/CardLayout.types.ts.CardLayoutProps" xlink:href="../src/components/CardLayout/CardLayout.types.ts"><text x="139.0" y="14.1" stroke="none" text-anchor="middle" data-name="CardLayoutProps" data-compartment="0">CardLayoutProps</text></a>
|
|
747
760
|
|
|
748
761
|
</g>
|
|
749
762
|
</g>
|
|
750
|
-
<g transform="translate(
|
|
763
|
+
<g transform="translate(6306, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CardLayoutProps" data-compartment="1">
|
|
751
764
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="CardLayoutProps" data-compartment="1">
|
|
752
765
|
<text x="0.0" y="14.1" stroke="none" data-name="CardLayoutProps" data-compartment="1">+cardColumns: CardColumnProps[]</text>
|
|
753
766
|
<text x="0.0" y="30.3" stroke="none" data-name="CardLayoutProps" data-compartment="1">+numberOfGridColumns?: number</text>
|
|
754
767
|
|
|
755
768
|
</g>
|
|
756
769
|
</g>
|
|
757
|
-
<g transform="translate(
|
|
770
|
+
<g transform="translate(6306, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CardLayoutProps" data-compartment="2">
|
|
758
771
|
<g transform="translate(8, 8)" fill="#33322E" data-name="CardLayoutProps" data-compartment="2">
|
|
759
772
|
|
|
760
773
|
</g>
|
|
@@ -762,17 +775,17 @@
|
|
|
762
775
|
</g>
|
|
763
776
|
<g data-name="CharacterCountProps">
|
|
764
777
|
<g fill="lightblue" stroke="#33322E" data-name="CharacterCountProps">
|
|
765
|
-
<rect x="
|
|
766
|
-
<path d="
|
|
767
|
-
<path d="
|
|
778
|
+
<rect x="6640.0" y="105.0" height="186.0" width="324.0" data-name="CharacterCountProps"></rect>
|
|
779
|
+
<path d="M6640.0 137.0 L6964.0 137.0" fill="none" data-name="CharacterCountProps"></path>
|
|
780
|
+
<path d="M6640.0 283.0 L6964.0 283.0" fill="none" data-name="CharacterCountProps"></path>
|
|
768
781
|
</g>
|
|
769
|
-
<g transform="translate(
|
|
782
|
+
<g transform="translate(6640, 105)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CharacterCountProps" data-compartment="0">
|
|
770
783
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="CharacterCountProps" data-compartment="0">
|
|
771
784
|
<a id="../src/components/CharacterCount/CharacterCount.types.ts.CharacterCountProps" xlink:href="../src/components/CharacterCount/CharacterCount.types.ts"><text x="154.0" y="14.1" stroke="none" text-anchor="middle" data-name="CharacterCountProps" data-compartment="0">CharacterCountProps</text></a>
|
|
772
785
|
|
|
773
786
|
</g>
|
|
774
787
|
</g>
|
|
775
|
-
<g transform="translate(
|
|
788
|
+
<g transform="translate(6640, 137)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CharacterCountProps" data-compartment="1">
|
|
776
789
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="CharacterCountProps" data-compartment="1">
|
|
777
790
|
<text x="0.0" y="14.1" stroke="none" data-name="CharacterCountProps" data-compartment="1">+id: string</text>
|
|
778
791
|
<text x="0.0" y="30.3" stroke="none" data-name="CharacterCountProps" data-compartment="1">+className?: string</text>
|
|
@@ -785,7 +798,7 @@
|
|
|
785
798
|
|
|
786
799
|
</g>
|
|
787
800
|
</g>
|
|
788
|
-
<g transform="translate(
|
|
801
|
+
<g transform="translate(6640, 283)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CharacterCountProps" data-compartment="2">
|
|
789
802
|
<g transform="translate(8, 8)" fill="#33322E" data-name="CharacterCountProps" data-compartment="2">
|
|
790
803
|
|
|
791
804
|
</g>
|
|
@@ -793,22 +806,22 @@
|
|
|
793
806
|
</g>
|
|
794
807
|
<g data-name="CheckboxesProps">
|
|
795
808
|
<g fill="lightblue" stroke="#33322E" data-name="CheckboxesProps">
|
|
796
|
-
<rect x="
|
|
797
|
-
<path d="
|
|
798
|
-
<path d="
|
|
809
|
+
<rect x="7004.0" y="174.0" height="48.0" width="160.0" data-name="CheckboxesProps"></rect>
|
|
810
|
+
<path d="M7004.0 206.0 L7164.0 206.0" fill="none" data-name="CheckboxesProps"></path>
|
|
811
|
+
<path d="M7004.0 214.0 L7164.0 214.0" fill="none" data-name="CheckboxesProps"></path>
|
|
799
812
|
</g>
|
|
800
|
-
<g transform="translate(
|
|
813
|
+
<g transform="translate(7004, 174)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CheckboxesProps" data-compartment="0">
|
|
801
814
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="CheckboxesProps" data-compartment="0">
|
|
802
815
|
<a id="../src/components/Checkboxes/Checkboxes.types.ts.CheckboxesProps" xlink:href="../src/components/Checkboxes/Checkboxes.types.ts"><text x="72.0" y="14.1" stroke="none" text-anchor="middle" data-name="CheckboxesProps" data-compartment="0">CheckboxesProps</text></a>
|
|
803
816
|
|
|
804
817
|
</g>
|
|
805
818
|
</g>
|
|
806
|
-
<g transform="translate(
|
|
819
|
+
<g transform="translate(7004, 206)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CheckboxesProps" data-compartment="1">
|
|
807
820
|
<g transform="translate(8, 8)" fill="#33322E" data-name="CheckboxesProps" data-compartment="1">
|
|
808
821
|
|
|
809
822
|
</g>
|
|
810
823
|
</g>
|
|
811
|
-
<g transform="translate(
|
|
824
|
+
<g transform="translate(7004, 214)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CheckboxesProps" data-compartment="2">
|
|
812
825
|
<g transform="translate(8, 8)" fill="#33322E" data-name="CheckboxesProps" data-compartment="2">
|
|
813
826
|
|
|
814
827
|
</g>
|
|
@@ -816,17 +829,17 @@
|
|
|
816
829
|
</g>
|
|
817
830
|
<g data-name="CookieBannerMessageAction">
|
|
818
831
|
<g fill="lightblue" stroke="#33322E" data-name="CookieBannerMessageAction">
|
|
819
|
-
<rect x="
|
|
820
|
-
<path d="
|
|
821
|
-
<path d="
|
|
832
|
+
<rect x="7204.0" y="129.5" height="137.0" width="288.0" data-name="CookieBannerMessageAction"></rect>
|
|
833
|
+
<path d="M7204.0 161.5 L7492.0 161.5" fill="none" data-name="CookieBannerMessageAction"></path>
|
|
834
|
+
<path d="M7204.0 258.5 L7492.0 258.5" fill="none" data-name="CookieBannerMessageAction"></path>
|
|
822
835
|
</g>
|
|
823
|
-
<g transform="translate(
|
|
836
|
+
<g transform="translate(7204, 129.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerMessageAction" data-compartment="0">
|
|
824
837
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="CookieBannerMessageAction" data-compartment="0">
|
|
825
838
|
<a id="../src/components/CookieBanner/CookieBanner.types.ts.CookieBannerMessageAction" xlink:href="../src/components/CookieBanner/CookieBanner.types.ts"><text x="136.0" y="14.1" stroke="none" text-anchor="middle" data-name="CookieBannerMessageAction" data-compartment="0">CookieBannerMessageAction</text></a>
|
|
826
839
|
|
|
827
840
|
</g>
|
|
828
841
|
</g>
|
|
829
|
-
<g transform="translate(
|
|
842
|
+
<g transform="translate(7204, 161.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerMessageAction" data-compartment="1">
|
|
830
843
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="CookieBannerMessageAction" data-compartment="1">
|
|
831
844
|
<text x="0.0" y="14.1" stroke="none" data-name="CookieBannerMessageAction" data-compartment="1">+className?: string</text>
|
|
832
845
|
<text x="0.0" y="30.3" stroke="none" data-name="CookieBannerMessageAction" data-compartment="1">+href?: string</text>
|
|
@@ -836,7 +849,7 @@
|
|
|
836
849
|
|
|
837
850
|
</g>
|
|
838
851
|
</g>
|
|
839
|
-
<g transform="translate(
|
|
852
|
+
<g transform="translate(7204, 258.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerMessageAction" data-compartment="2">
|
|
840
853
|
<g transform="translate(8, 8)" fill="#33322E" data-name="CookieBannerMessageAction" data-compartment="2">
|
|
841
854
|
|
|
842
855
|
</g>
|
|
@@ -844,17 +857,17 @@
|
|
|
844
857
|
</g>
|
|
845
858
|
<g data-name="CookieBannerMessageItem">
|
|
846
859
|
<g fill="lightblue" stroke="#33322E" data-name="CookieBannerMessageItem">
|
|
847
|
-
<rect x="
|
|
848
|
-
<path d="
|
|
849
|
-
<path d="
|
|
860
|
+
<rect x="7532.0" y="129.5" height="137.0" width="346.0" data-name="CookieBannerMessageItem"></rect>
|
|
861
|
+
<path d="M7532.0 161.5 L7878.0 161.5" fill="none" data-name="CookieBannerMessageItem"></path>
|
|
862
|
+
<path d="M7532.0 258.5 L7878.0 258.5" fill="none" data-name="CookieBannerMessageItem"></path>
|
|
850
863
|
</g>
|
|
851
|
-
<g transform="translate(
|
|
864
|
+
<g transform="translate(7532, 129.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerMessageItem" data-compartment="0">
|
|
852
865
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="CookieBannerMessageItem" data-compartment="0">
|
|
853
866
|
<a id="../src/components/CookieBanner/CookieBanner.types.ts.CookieBannerMessageItem" xlink:href="../src/components/CookieBanner/CookieBanner.types.ts"><text x="165.0" y="14.1" stroke="none" text-anchor="middle" data-name="CookieBannerMessageItem" data-compartment="0">CookieBannerMessageItem</text></a>
|
|
854
867
|
|
|
855
868
|
</g>
|
|
856
869
|
</g>
|
|
857
|
-
<g transform="translate(
|
|
870
|
+
<g transform="translate(7532, 161.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerMessageItem" data-compartment="1">
|
|
858
871
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="CookieBannerMessageItem" data-compartment="1">
|
|
859
872
|
<text x="0.0" y="14.1" stroke="none" data-name="CookieBannerMessageItem" data-compartment="1">+headingChildren?: React.ReactNode</text>
|
|
860
873
|
<text x="0.0" y="30.3" stroke="none" data-name="CookieBannerMessageItem" data-compartment="1">+children?: React.ReactNode</text>
|
|
@@ -864,7 +877,7 @@
|
|
|
864
877
|
|
|
865
878
|
</g>
|
|
866
879
|
</g>
|
|
867
|
-
<g transform="translate(
|
|
880
|
+
<g transform="translate(7532, 258.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerMessageItem" data-compartment="2">
|
|
868
881
|
<g transform="translate(8, 8)" fill="#33322E" data-name="CookieBannerMessageItem" data-compartment="2">
|
|
869
882
|
|
|
870
883
|
</g>
|
|
@@ -872,24 +885,24 @@
|
|
|
872
885
|
</g>
|
|
873
886
|
<g data-name="CookieBannerProps">
|
|
874
887
|
<g fill="lightblue" stroke="#33322E" data-name="CookieBannerProps">
|
|
875
|
-
<rect x="
|
|
876
|
-
<path d="
|
|
877
|
-
<path d="
|
|
888
|
+
<rect x="7918.0" y="154.0" height="88.0" width="345.0" data-name="CookieBannerProps"></rect>
|
|
889
|
+
<path d="M7918.0 186.0 L8263.0 186.0" fill="none" data-name="CookieBannerProps"></path>
|
|
890
|
+
<path d="M7918.0 234.0 L8263.0 234.0" fill="none" data-name="CookieBannerProps"></path>
|
|
878
891
|
</g>
|
|
879
|
-
<g transform="translate(
|
|
892
|
+
<g transform="translate(7918, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerProps" data-compartment="0">
|
|
880
893
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="CookieBannerProps" data-compartment="0">
|
|
881
894
|
<a id="../src/components/CookieBanner/CookieBanner.types.ts.CookieBannerProps" xlink:href="../src/components/CookieBanner/CookieBanner.types.ts"><text x="164.5" y="14.1" stroke="none" text-anchor="middle" data-name="CookieBannerProps" data-compartment="0">CookieBannerProps</text></a>
|
|
882
895
|
|
|
883
896
|
</g>
|
|
884
897
|
</g>
|
|
885
|
-
<g transform="translate(
|
|
898
|
+
<g transform="translate(7918, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerProps" data-compartment="1">
|
|
886
899
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="CookieBannerProps" data-compartment="1">
|
|
887
900
|
<text x="0.0" y="14.1" stroke="none" data-name="CookieBannerProps" data-compartment="1">+className?: string</text>
|
|
888
901
|
<text x="0.0" y="30.3" stroke="none" data-name="CookieBannerProps" data-compartment="1">+messages: CookieBannerMessageItem[]</text>
|
|
889
902
|
|
|
890
903
|
</g>
|
|
891
904
|
</g>
|
|
892
|
-
<g transform="translate(
|
|
905
|
+
<g transform="translate(7918, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="CookieBannerProps" data-compartment="2">
|
|
893
906
|
<g transform="translate(8, 8)" fill="#33322E" data-name="CookieBannerProps" data-compartment="2">
|
|
894
907
|
|
|
895
908
|
</g>
|
|
@@ -897,17 +910,17 @@
|
|
|
897
910
|
</g>
|
|
898
911
|
<g data-name="DataNavigationProps">
|
|
899
912
|
<g fill="lightblue" stroke="#33322E" data-name="DataNavigationProps">
|
|
900
|
-
<rect x="
|
|
901
|
-
<path d="
|
|
902
|
-
<path d="
|
|
913
|
+
<rect x="8303.0" y="113.5" height="169.0" width="304.0" data-name="DataNavigationProps"></rect>
|
|
914
|
+
<path d="M8303.0 145.5 L8607.0 145.5" fill="none" data-name="DataNavigationProps"></path>
|
|
915
|
+
<path d="M8303.0 274.5 L8607.0 274.5" fill="none" data-name="DataNavigationProps"></path>
|
|
903
916
|
</g>
|
|
904
|
-
<g transform="translate(
|
|
917
|
+
<g transform="translate(8303, 113.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DataNavigationProps" data-compartment="0">
|
|
905
918
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="DataNavigationProps" data-compartment="0">
|
|
906
919
|
<a id="../src/components/DataNavigation/DataNavigation.types.ts.DataNavigationProps" xlink:href="../src/components/DataNavigation/DataNavigation.types.ts"><text x="144.0" y="14.1" stroke="none" text-anchor="middle" data-name="DataNavigationProps" data-compartment="0">DataNavigationProps</text></a>
|
|
907
920
|
|
|
908
921
|
</g>
|
|
909
922
|
</g>
|
|
910
|
-
<g transform="translate(
|
|
923
|
+
<g transform="translate(8303, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DataNavigationProps" data-compartment="1">
|
|
911
924
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="DataNavigationProps" data-compartment="1">
|
|
912
925
|
<text x="0.0" y="14.1" stroke="none" data-name="DataNavigationProps" data-compartment="1">+dataId: number</text>
|
|
913
926
|
<text x="0.0" y="30.3" stroke="none" data-name="DataNavigationProps" data-compartment="1">+setDataFocus: (id: number) => void</text>
|
|
@@ -919,7 +932,7 @@
|
|
|
919
932
|
|
|
920
933
|
</g>
|
|
921
934
|
</g>
|
|
922
|
-
<g transform="translate(
|
|
935
|
+
<g transform="translate(8303, 274.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DataNavigationProps" data-compartment="2">
|
|
923
936
|
<g transform="translate(8, 8)" fill="#33322E" data-name="DataNavigationProps" data-compartment="2">
|
|
924
937
|
|
|
925
938
|
</g>
|
|
@@ -927,17 +940,17 @@
|
|
|
927
940
|
</g>
|
|
928
941
|
<g data-name="DateInputItem">
|
|
929
942
|
<g fill="lightblue" stroke="#33322E" data-name="DateInputItem">
|
|
930
|
-
<rect x="
|
|
931
|
-
<path d="
|
|
932
|
-
<path d="
|
|
943
|
+
<rect x="8647.0" y="105.0" height="186.0" width="658.0" data-name="DateInputItem"></rect>
|
|
944
|
+
<path d="M8647.0 137.0 L9305.0 137.0" fill="none" data-name="DateInputItem"></path>
|
|
945
|
+
<path d="M8647.0 283.0 L9305.0 283.0" fill="none" data-name="DateInputItem"></path>
|
|
933
946
|
</g>
|
|
934
|
-
<g transform="translate(
|
|
947
|
+
<g transform="translate(8647, 105)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DateInputItem" data-compartment="0">
|
|
935
948
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="DateInputItem" data-compartment="0">
|
|
936
949
|
<a id="../src/components/DateInput/DateInput.types.ts.DateInputItem" xlink:href="../src/components/DateInput/DateInput.types.ts"><text x="321.0" y="14.1" stroke="none" text-anchor="middle" data-name="DateInputItem" data-compartment="0">DateInputItem</text></a>
|
|
937
950
|
|
|
938
951
|
</g>
|
|
939
952
|
</g>
|
|
940
|
-
<g transform="translate(
|
|
953
|
+
<g transform="translate(8647, 137)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DateInputItem" data-compartment="1">
|
|
941
954
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="DateInputItem" data-compartment="1">
|
|
942
955
|
<text x="0.0" y="14.1" stroke="none" data-name="DateInputItem" data-compartment="1">+name: string</text>
|
|
943
956
|
<text x="0.0" y="30.3" stroke="none" data-name="DateInputItem" data-compartment="1">+className?: string</text>
|
|
@@ -950,7 +963,7 @@
|
|
|
950
963
|
|
|
951
964
|
</g>
|
|
952
965
|
</g>
|
|
953
|
-
<g transform="translate(
|
|
966
|
+
<g transform="translate(8647, 283)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DateInputItem" data-compartment="2">
|
|
954
967
|
<g transform="translate(8, 8)" fill="#33322E" data-name="DateInputItem" data-compartment="2">
|
|
955
968
|
|
|
956
969
|
</g>
|
|
@@ -958,17 +971,17 @@
|
|
|
958
971
|
</g>
|
|
959
972
|
<g data-name="DateInputProps">
|
|
960
973
|
<g fill="lightblue" stroke="#33322E" data-name="DateInputProps">
|
|
961
|
-
<rect x="
|
|
962
|
-
<path d="
|
|
963
|
-
<path d="
|
|
974
|
+
<rect x="9345.0" y="81.0" height="234.0" width="598.0" data-name="DateInputProps"></rect>
|
|
975
|
+
<path d="M9345.0 113.0 L9943.0 113.0" fill="none" data-name="DateInputProps"></path>
|
|
976
|
+
<path d="M9345.0 307.0 L9943.0 307.0" fill="none" data-name="DateInputProps"></path>
|
|
964
977
|
</g>
|
|
965
|
-
<g transform="translate(
|
|
978
|
+
<g transform="translate(9345, 81)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DateInputProps" data-compartment="0">
|
|
966
979
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="DateInputProps" data-compartment="0">
|
|
967
|
-
<a id="../src/components/DateInput/DateInput.types.ts.DateInputProps" xlink:href="../src/components/DateInput/DateInput.types.ts"><text x="
|
|
980
|
+
<a id="../src/components/DateInput/DateInput.types.ts.DateInputProps" xlink:href="../src/components/DateInput/DateInput.types.ts"><text x="291.0" y="14.1" stroke="none" text-anchor="middle" data-name="DateInputProps" data-compartment="0">DateInputProps</text></a>
|
|
968
981
|
|
|
969
982
|
</g>
|
|
970
983
|
</g>
|
|
971
|
-
<g transform="translate(
|
|
984
|
+
<g transform="translate(9345, 113)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DateInputProps" data-compartment="1">
|
|
972
985
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="DateInputProps" data-compartment="1">
|
|
973
986
|
<text x="0.0" y="14.1" stroke="none" data-name="DateInputProps" data-compartment="1">+className?: string</text>
|
|
974
987
|
<text x="0.0" y="30.3" stroke="none" data-name="DateInputProps" data-compartment="1">+errorMessage?: ErrorMessageProps</text>
|
|
@@ -980,11 +993,11 @@
|
|
|
980
993
|
<text x="0.0" y="127.5" stroke="none" data-name="DateInputProps" data-compartment="1">+id?: string</text>
|
|
981
994
|
<text x="0.0" y="143.7" stroke="none" data-name="DateInputProps" data-compartment="1">+items?: DateInputItem[]</text>
|
|
982
995
|
<text x="0.0" y="159.9" stroke="none" data-name="DateInputProps" data-compartment="1">+namePrefix?: string</text>
|
|
983
|
-
<text x="0.0" y="176.1" stroke="none" data-name="DateInputProps" data-compartment="1">+onChange: (event: ChangeEvent<HTMLInputElement>) => void</text>
|
|
996
|
+
<text x="0.0" y="176.1" stroke="none" data-name="DateInputProps" data-compartment="1">+onChange: (event: ChangeEvent<HTMLInputElement, Element>) => void</text>
|
|
984
997
|
|
|
985
998
|
</g>
|
|
986
999
|
</g>
|
|
987
|
-
<g transform="translate(
|
|
1000
|
+
<g transform="translate(9345, 307)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DateInputProps" data-compartment="2">
|
|
988
1001
|
<g transform="translate(8, 8)" fill="#33322E" data-name="DateInputProps" data-compartment="2">
|
|
989
1002
|
|
|
990
1003
|
</g>
|
|
@@ -992,17 +1005,17 @@
|
|
|
992
1005
|
</g>
|
|
993
1006
|
<g data-name="DetailsProps">
|
|
994
1007
|
<g fill="lightblue" stroke="#33322E" data-name="DetailsProps">
|
|
995
|
-
<rect x="
|
|
996
|
-
<path d="
|
|
997
|
-
<path d="
|
|
1008
|
+
<rect x="9983.0" y="145.5" height="105.0" width="262.0" data-name="DetailsProps"></rect>
|
|
1009
|
+
<path d="M9983.0 177.5 L10245.0 177.5" fill="none" data-name="DetailsProps"></path>
|
|
1010
|
+
<path d="M9983.0 242.5 L10245.0 242.5" fill="none" data-name="DetailsProps"></path>
|
|
998
1011
|
</g>
|
|
999
|
-
<g transform="translate(
|
|
1012
|
+
<g transform="translate(9983, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DetailsProps" data-compartment="0">
|
|
1000
1013
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="DetailsProps" data-compartment="0">
|
|
1001
1014
|
<a id="../src/components/Details/Details.types.ts.DetailsProps" xlink:href="../src/components/Details/Details.types.ts"><text x="123.0" y="14.1" stroke="none" text-anchor="middle" data-name="DetailsProps" data-compartment="0">DetailsProps</text></a>
|
|
1002
1015
|
|
|
1003
1016
|
</g>
|
|
1004
1017
|
</g>
|
|
1005
|
-
<g transform="translate(
|
|
1018
|
+
<g transform="translate(9983, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DetailsProps" data-compartment="1">
|
|
1006
1019
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="DetailsProps" data-compartment="1">
|
|
1007
1020
|
<text x="0.0" y="14.1" stroke="none" data-name="DetailsProps" data-compartment="1">+className?: string</text>
|
|
1008
1021
|
<text x="0.0" y="30.3" stroke="none" data-name="DetailsProps" data-compartment="1">+children: ReactNode</text>
|
|
@@ -1010,7 +1023,7 @@
|
|
|
1010
1023
|
|
|
1011
1024
|
</g>
|
|
1012
1025
|
</g>
|
|
1013
|
-
<g transform="translate(
|
|
1026
|
+
<g transform="translate(9983, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DetailsProps" data-compartment="2">
|
|
1014
1027
|
<g transform="translate(8, 8)" fill="#33322E" data-name="DetailsProps" data-compartment="2">
|
|
1015
1028
|
|
|
1016
1029
|
</g>
|
|
@@ -1018,17 +1031,17 @@
|
|
|
1018
1031
|
</g>
|
|
1019
1032
|
<g data-name="DifferenceNavigationProps">
|
|
1020
1033
|
<g fill="lightblue" stroke="#33322E" data-name="DifferenceNavigationProps">
|
|
1021
|
-
<rect x="
|
|
1022
|
-
<path d="
|
|
1023
|
-
<path d="
|
|
1034
|
+
<rect x="10285.0" y="129.5" height="137.0" width="348.0" data-name="DifferenceNavigationProps"></rect>
|
|
1035
|
+
<path d="M10285.0 161.5 L10633.0 161.5" fill="none" data-name="DifferenceNavigationProps"></path>
|
|
1036
|
+
<path d="M10285.0 258.5 L10633.0 258.5" fill="none" data-name="DifferenceNavigationProps"></path>
|
|
1024
1037
|
</g>
|
|
1025
|
-
<g transform="translate(
|
|
1038
|
+
<g transform="translate(10285, 129.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DifferenceNavigationProps" data-compartment="0">
|
|
1026
1039
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="DifferenceNavigationProps" data-compartment="0">
|
|
1027
1040
|
<a id="../src/components/DifferenceNavigation/DifferenceNavigation.types.ts.DifferenceNavigationProps" xlink:href="../src/components/DifferenceNavigation/DifferenceNavigation.types.ts"><text x="166.0" y="14.1" stroke="none" text-anchor="middle" data-name="DifferenceNavigationProps" data-compartment="0">DifferenceNavigationProps</text></a>
|
|
1028
1041
|
|
|
1029
1042
|
</g>
|
|
1030
1043
|
</g>
|
|
1031
|
-
<g transform="translate(
|
|
1044
|
+
<g transform="translate(10285, 161.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DifferenceNavigationProps" data-compartment="1">
|
|
1032
1045
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="DifferenceNavigationProps" data-compartment="1">
|
|
1033
1046
|
<text x="0.0" y="14.1" stroke="none" data-name="DifferenceNavigationProps" data-compartment="1">+differenceId: number</text>
|
|
1034
1047
|
<text x="0.0" y="30.3" stroke="none" data-name="DifferenceNavigationProps" data-compartment="1">+setDifferenceFocus: (id: number) => void</text>
|
|
@@ -1038,7 +1051,7 @@
|
|
|
1038
1051
|
|
|
1039
1052
|
</g>
|
|
1040
1053
|
</g>
|
|
1041
|
-
<g transform="translate(
|
|
1054
|
+
<g transform="translate(10285, 258.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="DifferenceNavigationProps" data-compartment="2">
|
|
1042
1055
|
<g transform="translate(8, 8)" fill="#33322E" data-name="DifferenceNavigationProps" data-compartment="2">
|
|
1043
1056
|
|
|
1044
1057
|
</g>
|
|
@@ -1046,22 +1059,22 @@
|
|
|
1046
1059
|
</g>
|
|
1047
1060
|
<g data-name="ErrorBoundary">
|
|
1048
1061
|
<g fill="#eee8d5" stroke="#33322E" data-name="ErrorBoundary">
|
|
1049
|
-
<rect x="
|
|
1050
|
-
<path d="
|
|
1051
|
-
<path d="
|
|
1062
|
+
<rect x="10486.5" y="533.0" height="105.0" width="527.0" data-name="ErrorBoundary"></rect>
|
|
1063
|
+
<path d="M10486.5 565.0 L11013.5 565.0" fill="none" data-name="ErrorBoundary"></path>
|
|
1064
|
+
<path d="M10486.5 573.0 L11013.5 573.0" fill="none" data-name="ErrorBoundary"></path>
|
|
1052
1065
|
</g>
|
|
1053
|
-
<g transform="translate(
|
|
1066
|
+
<g transform="translate(10486.5, 533)" font-family="Helvetica" font-size="12pt" font-weight="bold" font-style="normal" data-name="ErrorBoundary" data-compartment="0">
|
|
1054
1067
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ErrorBoundary" data-compartment="0">
|
|
1055
1068
|
<a id="../src/components/ErrorBoundary/ErrorBoundary.ts.ErrorBoundary" xlink:href="../src/components/ErrorBoundary/ErrorBoundary.ts"><text x="255.5" y="14.1" stroke="none" text-anchor="middle" data-name="ErrorBoundary" data-compartment="0">ErrorBoundary</text></a>
|
|
1056
1069
|
|
|
1057
1070
|
</g>
|
|
1058
1071
|
</g>
|
|
1059
|
-
<g transform="translate(
|
|
1072
|
+
<g transform="translate(10486.5, 565)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorBoundary" data-compartment="1">
|
|
1060
1073
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ErrorBoundary" data-compartment="1">
|
|
1061
1074
|
|
|
1062
1075
|
</g>
|
|
1063
1076
|
</g>
|
|
1064
|
-
<g transform="translate(
|
|
1077
|
+
<g transform="translate(10486.5, 573)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorBoundary" data-compartment="2">
|
|
1065
1078
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ErrorBoundary" data-compartment="2">
|
|
1066
1079
|
<text x="0.0" y="14.1" stroke="none" data-name="ErrorBoundary" data-compartment="2">+static getDerivedStateFromError(): Partial<ErrorBoundaryState></text>
|
|
1067
1080
|
<text x="0.0" y="30.3" stroke="none" data-name="ErrorBoundary" data-compartment="2">+componentDidCatch(): void</text>
|
|
@@ -1072,9 +1085,9 @@
|
|
|
1072
1085
|
</g>
|
|
1073
1086
|
<g data-name="Component<P,S>">
|
|
1074
1087
|
<g fill="#eee8d5" stroke="#33322E" data-name="Component<P,S>">
|
|
1075
|
-
<rect x="
|
|
1088
|
+
<rect x="10673.0" y="182.0" height="32.0" width="154.0" data-name="Component<P,S>"></rect>
|
|
1076
1089
|
</g>
|
|
1077
|
-
<g transform="translate(
|
|
1090
|
+
<g transform="translate(10673, 182)" font-family="Helvetica" font-size="12pt" font-weight="bold" font-style="normal" data-name="Component<P,S>" data-compartment="0">
|
|
1078
1091
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="Component<P,S>" data-compartment="0">
|
|
1079
1092
|
<text x="69.0" y="14.1" stroke="none" text-anchor="middle" data-name="Component<P,S>" data-compartment="0">Component<P,S></text>
|
|
1080
1093
|
|
|
@@ -1083,17 +1096,17 @@
|
|
|
1083
1096
|
</g>
|
|
1084
1097
|
<g data-name="ErrorBoundaryProps">
|
|
1085
1098
|
<g fill="lightblue" stroke="#33322E" data-name="ErrorBoundaryProps">
|
|
1086
|
-
<rect x="
|
|
1087
|
-
<path d="
|
|
1088
|
-
<path d="
|
|
1099
|
+
<rect x="10867.0" y="137.5" height="121.0" width="222.0" data-name="ErrorBoundaryProps"></rect>
|
|
1100
|
+
<path d="M10867.0 169.5 L11089.0 169.5" fill="none" data-name="ErrorBoundaryProps"></path>
|
|
1101
|
+
<path d="M10867.0 250.5 L11089.0 250.5" fill="none" data-name="ErrorBoundaryProps"></path>
|
|
1089
1102
|
</g>
|
|
1090
|
-
<g transform="translate(
|
|
1103
|
+
<g transform="translate(10867, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorBoundaryProps" data-compartment="0">
|
|
1091
1104
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ErrorBoundaryProps" data-compartment="0">
|
|
1092
1105
|
<a id="../src/components/ErrorBoundary/ErrorBoundary.types.ts.ErrorBoundaryProps" xlink:href="../src/components/ErrorBoundary/ErrorBoundary.types.ts"><text x="103.0" y="14.1" stroke="none" text-anchor="middle" data-name="ErrorBoundaryProps" data-compartment="0">ErrorBoundaryProps</text></a>
|
|
1093
1106
|
|
|
1094
1107
|
</g>
|
|
1095
1108
|
</g>
|
|
1096
|
-
<g transform="translate(
|
|
1109
|
+
<g transform="translate(10867, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorBoundaryProps" data-compartment="1">
|
|
1097
1110
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ErrorBoundaryProps" data-compartment="1">
|
|
1098
1111
|
<text x="0.0" y="14.1" stroke="none" data-name="ErrorBoundaryProps" data-compartment="1">+children: ReactNode</text>
|
|
1099
1112
|
<text x="0.0" y="30.3" stroke="none" data-name="ErrorBoundaryProps" data-compartment="1">+message?: string</text>
|
|
@@ -1102,7 +1115,7 @@
|
|
|
1102
1115
|
|
|
1103
1116
|
</g>
|
|
1104
1117
|
</g>
|
|
1105
|
-
<g transform="translate(
|
|
1118
|
+
<g transform="translate(10867, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorBoundaryProps" data-compartment="2">
|
|
1106
1119
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ErrorBoundaryProps" data-compartment="2">
|
|
1107
1120
|
|
|
1108
1121
|
</g>
|
|
@@ -1110,17 +1123,17 @@
|
|
|
1110
1123
|
</g>
|
|
1111
1124
|
<g data-name="ErrorBoundaryState">
|
|
1112
1125
|
<g fill="lightblue" stroke="#33322E" data-name="ErrorBoundaryState">
|
|
1113
|
-
<rect x="
|
|
1114
|
-
<path d="
|
|
1115
|
-
<path d="
|
|
1126
|
+
<rect x="11129.0" y="145.5" height="105.0" width="212.0" data-name="ErrorBoundaryState"></rect>
|
|
1127
|
+
<path d="M11129.0 177.5 L11341.0 177.5" fill="none" data-name="ErrorBoundaryState"></path>
|
|
1128
|
+
<path d="M11129.0 242.5 L11341.0 242.5" fill="none" data-name="ErrorBoundaryState"></path>
|
|
1116
1129
|
</g>
|
|
1117
|
-
<g transform="translate(
|
|
1130
|
+
<g transform="translate(11129, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorBoundaryState" data-compartment="0">
|
|
1118
1131
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ErrorBoundaryState" data-compartment="0">
|
|
1119
1132
|
<a id="../src/components/ErrorBoundary/ErrorBoundary.types.ts.ErrorBoundaryState" xlink:href="../src/components/ErrorBoundary/ErrorBoundary.types.ts"><text x="98.0" y="14.1" stroke="none" text-anchor="middle" data-name="ErrorBoundaryState" data-compartment="0">ErrorBoundaryState</text></a>
|
|
1120
1133
|
|
|
1121
1134
|
</g>
|
|
1122
1135
|
</g>
|
|
1123
|
-
<g transform="translate(
|
|
1136
|
+
<g transform="translate(11129, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorBoundaryState" data-compartment="1">
|
|
1124
1137
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ErrorBoundaryState" data-compartment="1">
|
|
1125
1138
|
<text x="0.0" y="14.1" stroke="none" data-name="ErrorBoundaryState" data-compartment="1">+hasError: boolean</text>
|
|
1126
1139
|
<text x="0.0" y="30.3" stroke="none" data-name="ErrorBoundaryState" data-compartment="1">+message: string</text>
|
|
@@ -1128,7 +1141,7 @@
|
|
|
1128
1141
|
|
|
1129
1142
|
</g>
|
|
1130
1143
|
</g>
|
|
1131
|
-
<g transform="translate(
|
|
1144
|
+
<g transform="translate(11129, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorBoundaryState" data-compartment="2">
|
|
1132
1145
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ErrorBoundaryState" data-compartment="2">
|
|
1133
1146
|
|
|
1134
1147
|
</g>
|
|
@@ -1136,17 +1149,17 @@
|
|
|
1136
1149
|
</g>
|
|
1137
1150
|
<g data-name="ErrorMessageProps">
|
|
1138
1151
|
<g fill="lightblue" stroke="#33322E" data-name="ErrorMessageProps">
|
|
1139
|
-
<rect x="
|
|
1140
|
-
<path d="
|
|
1141
|
-
<path d="
|
|
1152
|
+
<rect x="1914.3" y="533.0" height="105.0" width="239.0" data-name="ErrorMessageProps"></rect>
|
|
1153
|
+
<path d="M1914.3 565.0 L2153.3 565.0" fill="none" data-name="ErrorMessageProps"></path>
|
|
1154
|
+
<path d="M1914.3 630.0 L2153.3 630.0" fill="none" data-name="ErrorMessageProps"></path>
|
|
1142
1155
|
</g>
|
|
1143
|
-
<g transform="translate(
|
|
1156
|
+
<g transform="translate(1914.25, 533)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorMessageProps" data-compartment="0">
|
|
1144
1157
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ErrorMessageProps" data-compartment="0">
|
|
1145
1158
|
<a id="../src/components/ErrorMessage/ErrorMessage.types.ts.ErrorMessageProps" xlink:href="../src/components/ErrorMessage/ErrorMessage.types.ts"><text x="111.5" y="14.1" stroke="none" text-anchor="middle" data-name="ErrorMessageProps" data-compartment="0">ErrorMessageProps</text></a>
|
|
1146
1159
|
|
|
1147
1160
|
</g>
|
|
1148
1161
|
</g>
|
|
1149
|
-
<g transform="translate(
|
|
1162
|
+
<g transform="translate(1914.25, 565)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorMessageProps" data-compartment="1">
|
|
1150
1163
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ErrorMessageProps" data-compartment="1">
|
|
1151
1164
|
<text x="0.0" y="14.1" stroke="none" data-name="ErrorMessageProps" data-compartment="1">+className?: string</text>
|
|
1152
1165
|
<text x="0.0" y="30.3" stroke="none" data-name="ErrorMessageProps" data-compartment="1">+children?: ReactNode</text>
|
|
@@ -1154,7 +1167,7 @@
|
|
|
1154
1167
|
|
|
1155
1168
|
</g>
|
|
1156
1169
|
</g>
|
|
1157
|
-
<g transform="translate(
|
|
1170
|
+
<g transform="translate(1914.25, 630)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorMessageProps" data-compartment="2">
|
|
1158
1171
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ErrorMessageProps" data-compartment="2">
|
|
1159
1172
|
|
|
1160
1173
|
</g>
|
|
@@ -1162,17 +1175,17 @@
|
|
|
1162
1175
|
</g>
|
|
1163
1176
|
<g data-name="ErrorSummaryProps">
|
|
1164
1177
|
<g fill="lightblue" stroke="#33322E" data-name="ErrorSummaryProps">
|
|
1165
|
-
<rect x="
|
|
1166
|
-
<path d="
|
|
1167
|
-
<path d="
|
|
1178
|
+
<rect x="2193.3" y="484.5" height="202.0" width="296.0" data-name="ErrorSummaryProps"></rect>
|
|
1179
|
+
<path d="M2193.3 516.5 L2489.3 516.5" fill="none" data-name="ErrorSummaryProps"></path>
|
|
1180
|
+
<path d="M2193.3 678.5 L2489.3 678.5" fill="none" data-name="ErrorSummaryProps"></path>
|
|
1168
1181
|
</g>
|
|
1169
|
-
<g transform="translate(
|
|
1182
|
+
<g transform="translate(2193.25, 484.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorSummaryProps" data-compartment="0">
|
|
1170
1183
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ErrorSummaryProps" data-compartment="0">
|
|
1171
1184
|
<a id="../src/components/ErrorSummary/ErrorSummary.types.ts.ErrorSummaryProps" xlink:href="../src/components/ErrorSummary/ErrorSummary.types.ts"><text x="140.0" y="14.1" stroke="none" text-anchor="middle" data-name="ErrorSummaryProps" data-compartment="0">ErrorSummaryProps</text></a>
|
|
1172
1185
|
|
|
1173
1186
|
</g>
|
|
1174
1187
|
</g>
|
|
1175
|
-
<g transform="translate(
|
|
1188
|
+
<g transform="translate(2193.25, 516.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorSummaryProps" data-compartment="1">
|
|
1176
1189
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ErrorSummaryProps" data-compartment="1">
|
|
1177
1190
|
<text x="0.0" y="14.1" stroke="none" data-name="ErrorSummaryProps" data-compartment="1">+className?: string</text>
|
|
1178
1191
|
<text x="0.0" y="30.3" stroke="none" data-name="ErrorSummaryProps" data-compartment="1">+descriptionChildren?: ReactNode</text>
|
|
@@ -1186,25 +1199,55 @@
|
|
|
1186
1199
|
|
|
1187
1200
|
</g>
|
|
1188
1201
|
</g>
|
|
1189
|
-
<g transform="translate(
|
|
1202
|
+
<g transform="translate(2193.25, 678.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ErrorSummaryProps" data-compartment="2">
|
|
1190
1203
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ErrorSummaryProps" data-compartment="2">
|
|
1191
1204
|
|
|
1205
|
+
</g>
|
|
1206
|
+
</g>
|
|
1207
|
+
</g>
|
|
1208
|
+
<g data-name="ExitThisPageProps">
|
|
1209
|
+
<g fill="lightblue" stroke="#33322E" data-name="ExitThisPageProps">
|
|
1210
|
+
<rect x="2529.3" y="501.0" height="169.0" width="287.0" data-name="ExitThisPageProps"></rect>
|
|
1211
|
+
<path d="M2529.3 533.0 L2816.3 533.0" fill="none" data-name="ExitThisPageProps"></path>
|
|
1212
|
+
<path d="M2529.3 662.0 L2816.3 662.0" fill="none" data-name="ExitThisPageProps"></path>
|
|
1213
|
+
</g>
|
|
1214
|
+
<g transform="translate(2529.25, 501)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ExitThisPageProps" data-compartment="0">
|
|
1215
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ExitThisPageProps" data-compartment="0">
|
|
1216
|
+
<a id="../src/components/ExitThisPage/ExitThisPage.types.ts.ExitThisPageProps" xlink:href="../src/components/ExitThisPage/ExitThisPage.types.ts"><text x="135.5" y="14.1" stroke="none" text-anchor="middle" data-name="ExitThisPageProps" data-compartment="0">ExitThisPageProps</text></a>
|
|
1217
|
+
|
|
1218
|
+
</g>
|
|
1219
|
+
</g>
|
|
1220
|
+
<g transform="translate(2529.25, 533)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ExitThisPageProps" data-compartment="1">
|
|
1221
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ExitThisPageProps" data-compartment="1">
|
|
1222
|
+
<text x="0.0" y="14.1" stroke="none" data-name="ExitThisPageProps" data-compartment="1">+children?: ReactNode</text>
|
|
1223
|
+
<text x="0.0" y="30.3" stroke="none" data-name="ExitThisPageProps" data-compartment="1">+className?: string</text>
|
|
1224
|
+
<text x="0.0" y="46.5" stroke="none" data-name="ExitThisPageProps" data-compartment="1">+redirectUrl?: string</text>
|
|
1225
|
+
<text x="0.0" y="62.7" stroke="none" data-name="ExitThisPageProps" data-compartment="1">+activatedText?: string</text>
|
|
1226
|
+
<text x="0.0" y="78.9" stroke="none" data-name="ExitThisPageProps" data-compartment="1">+timedOutText?: string</text>
|
|
1227
|
+
<text x="0.0" y="95.1" stroke="none" data-name="ExitThisPageProps" data-compartment="1">+pressTwoMoreTimesText?: string</text>
|
|
1228
|
+
<text x="0.0" y="111.3" stroke="none" data-name="ExitThisPageProps" data-compartment="1">+pressOneMoreTimeText?: string</text>
|
|
1229
|
+
|
|
1230
|
+
</g>
|
|
1231
|
+
</g>
|
|
1232
|
+
<g transform="translate(2529.25, 662)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ExitThisPageProps" data-compartment="2">
|
|
1233
|
+
<g transform="translate(8, 8)" fill="#33322E" data-name="ExitThisPageProps" data-compartment="2">
|
|
1234
|
+
|
|
1192
1235
|
</g>
|
|
1193
1236
|
</g>
|
|
1194
1237
|
</g>
|
|
1195
1238
|
<g data-name="LegendProps">
|
|
1196
1239
|
<g fill="lightblue" stroke="#33322E" data-name="LegendProps">
|
|
1197
|
-
<rect x="
|
|
1198
|
-
<path d="
|
|
1199
|
-
<path d="
|
|
1240
|
+
<rect x="11381.0" y="145.5" height="105.0" width="230.0" data-name="LegendProps"></rect>
|
|
1241
|
+
<path d="M11381.0 177.5 L11611.0 177.5" fill="none" data-name="LegendProps"></path>
|
|
1242
|
+
<path d="M11381.0 242.5 L11611.0 242.5" fill="none" data-name="LegendProps"></path>
|
|
1200
1243
|
</g>
|
|
1201
|
-
<g transform="translate(
|
|
1244
|
+
<g transform="translate(11381, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LegendProps" data-compartment="0">
|
|
1202
1245
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="LegendProps" data-compartment="0">
|
|
1203
1246
|
<a id="../src/components/Fieldset/Fieldset.types.ts.LegendProps" xlink:href="../src/components/Fieldset/Fieldset.types.ts"><text x="107.0" y="14.1" stroke="none" text-anchor="middle" data-name="LegendProps" data-compartment="0">LegendProps</text></a>
|
|
1204
1247
|
|
|
1205
1248
|
</g>
|
|
1206
1249
|
</g>
|
|
1207
|
-
<g transform="translate(
|
|
1250
|
+
<g transform="translate(11381, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LegendProps" data-compartment="1">
|
|
1208
1251
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="LegendProps" data-compartment="1">
|
|
1209
1252
|
<text x="0.0" y="14.1" stroke="none" data-name="LegendProps" data-compartment="1">+children: ReactNode</text>
|
|
1210
1253
|
<text x="0.0" y="30.3" stroke="none" data-name="LegendProps" data-compartment="1">+className?: string</text>
|
|
@@ -1212,7 +1255,7 @@
|
|
|
1212
1255
|
|
|
1213
1256
|
</g>
|
|
1214
1257
|
</g>
|
|
1215
|
-
<g transform="translate(
|
|
1258
|
+
<g transform="translate(11381, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LegendProps" data-compartment="2">
|
|
1216
1259
|
<g transform="translate(8, 8)" fill="#33322E" data-name="LegendProps" data-compartment="2">
|
|
1217
1260
|
|
|
1218
1261
|
</g>
|
|
@@ -1220,17 +1263,17 @@
|
|
|
1220
1263
|
</g>
|
|
1221
1264
|
<g data-name="FieldsetProps">
|
|
1222
1265
|
<g fill="lightblue" stroke="#33322E" data-name="FieldsetProps">
|
|
1223
|
-
<rect x="
|
|
1224
|
-
<path d="
|
|
1225
|
-
<path d="
|
|
1266
|
+
<rect x="11654.0" y="525.0" height="121.0" width="223.0" data-name="FieldsetProps"></rect>
|
|
1267
|
+
<path d="M11654.0 557.0 L11877.0 557.0" fill="none" data-name="FieldsetProps"></path>
|
|
1268
|
+
<path d="M11654.0 638.0 L11877.0 638.0" fill="none" data-name="FieldsetProps"></path>
|
|
1226
1269
|
</g>
|
|
1227
|
-
<g transform="translate(
|
|
1270
|
+
<g transform="translate(11654, 525)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FieldsetProps" data-compartment="0">
|
|
1228
1271
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="FieldsetProps" data-compartment="0">
|
|
1229
1272
|
<a id="../src/components/Fieldset/Fieldset.types.ts.FieldsetProps" xlink:href="../src/components/Fieldset/Fieldset.types.ts"><text x="103.5" y="14.1" stroke="none" text-anchor="middle" data-name="FieldsetProps" data-compartment="0">FieldsetProps</text></a>
|
|
1230
1273
|
|
|
1231
1274
|
</g>
|
|
1232
1275
|
</g>
|
|
1233
|
-
<g transform="translate(
|
|
1276
|
+
<g transform="translate(11654, 557)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FieldsetProps" data-compartment="1">
|
|
1234
1277
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="FieldsetProps" data-compartment="1">
|
|
1235
1278
|
<text x="0.0" y="14.1" stroke="none" data-name="FieldsetProps" data-compartment="1">+className?: string</text>
|
|
1236
1279
|
<text x="0.0" y="30.3" stroke="none" data-name="FieldsetProps" data-compartment="1">+legend?: LegendProps</text>
|
|
@@ -1239,7 +1282,7 @@
|
|
|
1239
1282
|
|
|
1240
1283
|
</g>
|
|
1241
1284
|
</g>
|
|
1242
|
-
<g transform="translate(
|
|
1285
|
+
<g transform="translate(11654, 638)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FieldsetProps" data-compartment="2">
|
|
1243
1286
|
<g transform="translate(8, 8)" fill="#33322E" data-name="FieldsetProps" data-compartment="2">
|
|
1244
1287
|
|
|
1245
1288
|
</g>
|
|
@@ -1247,9 +1290,9 @@
|
|
|
1247
1290
|
</g>
|
|
1248
1291
|
<g data-name="FieldsetHTMLAttributes<T>">
|
|
1249
1292
|
<g fill="#eee8d5" stroke="#33322E" data-name="FieldsetHTMLAttributes<T>">
|
|
1250
|
-
<rect x="
|
|
1293
|
+
<rect x="11651.0" y="182.0" height="32.0" width="229.0" data-name="FieldsetHTMLAttributes<T>"></rect>
|
|
1251
1294
|
</g>
|
|
1252
|
-
<g transform="translate(
|
|
1295
|
+
<g transform="translate(11651, 182)" font-family="Helvetica" font-size="12pt" font-weight="bold" font-style="normal" data-name="FieldsetHTMLAttributes<T>" data-compartment="0">
|
|
1253
1296
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="FieldsetHTMLAttributes<T>" data-compartment="0">
|
|
1254
1297
|
<text x="106.5" y="14.1" stroke="none" text-anchor="middle" data-name="FieldsetHTMLAttributes<T>" data-compartment="0">FieldsetHTMLAttributes<T></text>
|
|
1255
1298
|
|
|
@@ -1258,17 +1301,17 @@
|
|
|
1258
1301
|
</g>
|
|
1259
1302
|
<g data-name="FileUploadProps">
|
|
1260
1303
|
<g fill="lightblue" stroke="#33322E" data-name="FileUploadProps">
|
|
1261
|
-
<rect x="
|
|
1262
|
-
<path d="
|
|
1263
|
-
<path d="
|
|
1304
|
+
<rect x="11917.0" y="484.5" height="202.0" width="314.0" data-name="FileUploadProps"></rect>
|
|
1305
|
+
<path d="M11917.0 516.5 L12231.0 516.5" fill="none" data-name="FileUploadProps"></path>
|
|
1306
|
+
<path d="M11917.0 678.5 L12231.0 678.5" fill="none" data-name="FileUploadProps"></path>
|
|
1264
1307
|
</g>
|
|
1265
|
-
<g transform="translate(
|
|
1308
|
+
<g transform="translate(11917, 484.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FileUploadProps" data-compartment="0">
|
|
1266
1309
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="FileUploadProps" data-compartment="0">
|
|
1267
1310
|
<a id="../src/components/FileUpload/FileUpload.types.ts.FileUploadProps" xlink:href="../src/components/FileUpload/FileUpload.types.ts"><text x="149.0" y="14.1" stroke="none" text-anchor="middle" data-name="FileUploadProps" data-compartment="0">FileUploadProps</text></a>
|
|
1268
1311
|
|
|
1269
1312
|
</g>
|
|
1270
1313
|
</g>
|
|
1271
|
-
<g transform="translate(
|
|
1314
|
+
<g transform="translate(11917, 516.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FileUploadProps" data-compartment="1">
|
|
1272
1315
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="FileUploadProps" data-compartment="1">
|
|
1273
1316
|
<text x="0.0" y="14.1" stroke="none" data-name="FileUploadProps" data-compartment="1">+className?: string</text>
|
|
1274
1317
|
<text x="0.0" y="30.3" stroke="none" data-name="FileUploadProps" data-compartment="1">+errorMessage?: ErrorMessageProps</text>
|
|
@@ -1282,7 +1325,7 @@
|
|
|
1282
1325
|
|
|
1283
1326
|
</g>
|
|
1284
1327
|
</g>
|
|
1285
|
-
<g transform="translate(
|
|
1328
|
+
<g transform="translate(11917, 678.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FileUploadProps" data-compartment="2">
|
|
1286
1329
|
<g transform="translate(8, 8)" fill="#33322E" data-name="FileUploadProps" data-compartment="2">
|
|
1287
1330
|
|
|
1288
1331
|
</g>
|
|
@@ -1290,9 +1333,9 @@
|
|
|
1290
1333
|
</g>
|
|
1291
1334
|
<g data-name="InputHTMLAttributes<T>">
|
|
1292
1335
|
<g fill="#eee8d5" stroke="#33322E" data-name="InputHTMLAttributes<T>">
|
|
1293
|
-
<rect x="
|
|
1336
|
+
<rect x="11970.5" y="182.0" height="32.0" width="207.0" data-name="InputHTMLAttributes<T>"></rect>
|
|
1294
1337
|
</g>
|
|
1295
|
-
<g transform="translate(
|
|
1338
|
+
<g transform="translate(11970.5, 182)" font-family="Helvetica" font-size="12pt" font-weight="bold" font-style="normal" data-name="InputHTMLAttributes<T>" data-compartment="0">
|
|
1296
1339
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="InputHTMLAttributes<T>" data-compartment="0">
|
|
1297
1340
|
<text x="95.5" y="14.1" stroke="none" text-anchor="middle" data-name="InputHTMLAttributes<T>" data-compartment="0">InputHTMLAttributes<T></text>
|
|
1298
1341
|
|
|
@@ -1301,17 +1344,17 @@
|
|
|
1301
1344
|
</g>
|
|
1302
1345
|
<g data-name="NavigationItem">
|
|
1303
1346
|
<g fill="lightblue" stroke="#33322E" data-name="NavigationItem">
|
|
1304
|
-
<rect x="
|
|
1305
|
-
<path d="
|
|
1306
|
-
<path d="
|
|
1347
|
+
<rect x="12217.5" y="81.0" height="234.0" width="272.0" data-name="NavigationItem"></rect>
|
|
1348
|
+
<path d="M12217.5 113.0 L12489.5 113.0" fill="none" data-name="NavigationItem"></path>
|
|
1349
|
+
<path d="M12217.5 307.0 L12489.5 307.0" fill="none" data-name="NavigationItem"></path>
|
|
1307
1350
|
</g>
|
|
1308
|
-
<g transform="translate(
|
|
1351
|
+
<g transform="translate(12217.5, 81)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NavigationItem" data-compartment="0">
|
|
1309
1352
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="NavigationItem" data-compartment="0">
|
|
1310
1353
|
<a id="../src/components/ServiceNavigation/ServiceNavigation.types.ts.NavigationItem" xlink:href="../src/components/ServiceNavigation/ServiceNavigation.types.ts"><text x="128.0" y="14.1" stroke="none" text-anchor="middle" data-name="NavigationItem" data-compartment="0">NavigationItem</text></a>
|
|
1311
1354
|
|
|
1312
1355
|
</g>
|
|
1313
1356
|
</g>
|
|
1314
|
-
<g transform="translate(
|
|
1357
|
+
<g transform="translate(12217.5, 113)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NavigationItem" data-compartment="1">
|
|
1315
1358
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="NavigationItem" data-compartment="1">
|
|
1316
1359
|
<text x="0.0" y="14.1" stroke="none" data-name="NavigationItem" data-compartment="1">+columns: string | number</text>
|
|
1317
1360
|
<text x="0.0" y="30.3" stroke="none" data-name="NavigationItem" data-compartment="1">+title: string</text>
|
|
@@ -1327,7 +1370,7 @@
|
|
|
1327
1370
|
|
|
1328
1371
|
</g>
|
|
1329
1372
|
</g>
|
|
1330
|
-
<g transform="translate(
|
|
1373
|
+
<g transform="translate(12217.5, 307)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NavigationItem" data-compartment="2">
|
|
1331
1374
|
<g transform="translate(8, 8)" fill="#33322E" data-name="NavigationItem" data-compartment="2">
|
|
1332
1375
|
|
|
1333
1376
|
</g>
|
|
@@ -1335,17 +1378,17 @@
|
|
|
1335
1378
|
</g>
|
|
1336
1379
|
<g data-name="MetaItem">
|
|
1337
1380
|
<g fill="lightblue" stroke="#33322E" data-name="MetaItem">
|
|
1338
|
-
<rect x="
|
|
1339
|
-
<path d="
|
|
1340
|
-
<path d="
|
|
1381
|
+
<rect x="12529.5" y="145.5" height="105.0" width="263.0" data-name="MetaItem"></rect>
|
|
1382
|
+
<path d="M12529.5 177.5 L12792.5 177.5" fill="none" data-name="MetaItem"></path>
|
|
1383
|
+
<path d="M12529.5 242.5 L12792.5 242.5" fill="none" data-name="MetaItem"></path>
|
|
1341
1384
|
</g>
|
|
1342
|
-
<g transform="translate(
|
|
1385
|
+
<g transform="translate(12529.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MetaItem" data-compartment="0">
|
|
1343
1386
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="MetaItem" data-compartment="0">
|
|
1344
1387
|
<a id="../src/components/Footer/Footer.types.ts.MetaItem" xlink:href="../src/components/Footer/Footer.types.ts"><text x="123.5" y="14.1" stroke="none" text-anchor="middle" data-name="MetaItem" data-compartment="0">MetaItem</text></a>
|
|
1345
1388
|
|
|
1346
1389
|
</g>
|
|
1347
1390
|
</g>
|
|
1348
|
-
<g transform="translate(
|
|
1391
|
+
<g transform="translate(12529.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MetaItem" data-compartment="1">
|
|
1349
1392
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="MetaItem" data-compartment="1">
|
|
1350
1393
|
<text x="0.0" y="14.1" stroke="none" data-name="MetaItem" data-compartment="1">+className?: string</text>
|
|
1351
1394
|
<text x="0.0" y="30.3" stroke="none" data-name="MetaItem" data-compartment="1">+children: ReactNode</text>
|
|
@@ -1353,7 +1396,7 @@
|
|
|
1353
1396
|
|
|
1354
1397
|
</g>
|
|
1355
1398
|
</g>
|
|
1356
|
-
<g transform="translate(
|
|
1399
|
+
<g transform="translate(12529.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MetaItem" data-compartment="2">
|
|
1357
1400
|
<g transform="translate(8, 8)" fill="#33322E" data-name="MetaItem" data-compartment="2">
|
|
1358
1401
|
|
|
1359
1402
|
</g>
|
|
@@ -1361,17 +1404,17 @@
|
|
|
1361
1404
|
</g>
|
|
1362
1405
|
<g data-name="Meta">
|
|
1363
1406
|
<g fill="lightblue" stroke="#33322E" data-name="Meta">
|
|
1364
|
-
<rect x="
|
|
1365
|
-
<path d="
|
|
1366
|
-
<path d="
|
|
1407
|
+
<rect x="12832.5" y="145.5" height="105.0" width="238.0" data-name="Meta"></rect>
|
|
1408
|
+
<path d="M12832.5 177.5 L13070.5 177.5" fill="none" data-name="Meta"></path>
|
|
1409
|
+
<path d="M12832.5 242.5 L13070.5 242.5" fill="none" data-name="Meta"></path>
|
|
1367
1410
|
</g>
|
|
1368
|
-
<g transform="translate(
|
|
1411
|
+
<g transform="translate(12832.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Meta" data-compartment="0">
|
|
1369
1412
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="Meta" data-compartment="0">
|
|
1370
1413
|
<a id="../src/components/Footer/Footer.types.ts.Meta" xlink:href="../src/components/Footer/Footer.types.ts"><text x="111.0" y="14.1" stroke="none" text-anchor="middle" data-name="Meta" data-compartment="0">Meta</text></a>
|
|
1371
1414
|
|
|
1372
1415
|
</g>
|
|
1373
1416
|
</g>
|
|
1374
|
-
<g transform="translate(
|
|
1417
|
+
<g transform="translate(12832.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Meta" data-compartment="1">
|
|
1375
1418
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="Meta" data-compartment="1">
|
|
1376
1419
|
<text x="0.0" y="14.1" stroke="none" data-name="Meta" data-compartment="1">+visuallyHiddenTitle?: string</text>
|
|
1377
1420
|
<text x="0.0" y="30.3" stroke="none" data-name="Meta" data-compartment="1">+items?: MetaItem[]</text>
|
|
@@ -1379,7 +1422,7 @@
|
|
|
1379
1422
|
|
|
1380
1423
|
</g>
|
|
1381
1424
|
</g>
|
|
1382
|
-
<g transform="translate(
|
|
1425
|
+
<g transform="translate(12832.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Meta" data-compartment="2">
|
|
1383
1426
|
<g transform="translate(8, 8)" fill="#33322E" data-name="Meta" data-compartment="2">
|
|
1384
1427
|
|
|
1385
1428
|
</g>
|
|
@@ -1387,17 +1430,17 @@
|
|
|
1387
1430
|
</g>
|
|
1388
1431
|
<g data-name="FooterProps">
|
|
1389
1432
|
<g fill="lightblue" stroke="#33322E" data-name="FooterProps">
|
|
1390
|
-
<rect x="
|
|
1391
|
-
<path d="
|
|
1392
|
-
<path d="
|
|
1433
|
+
<rect x="6289.5" y="525.0" height="121.0" width="256.0" data-name="FooterProps"></rect>
|
|
1434
|
+
<path d="M6289.5 557.0 L6545.5 557.0" fill="none" data-name="FooterProps"></path>
|
|
1435
|
+
<path d="M6289.5 638.0 L6545.5 638.0" fill="none" data-name="FooterProps"></path>
|
|
1393
1436
|
</g>
|
|
1394
|
-
<g transform="translate(
|
|
1437
|
+
<g transform="translate(6289.5, 525)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FooterProps" data-compartment="0">
|
|
1395
1438
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="FooterProps" data-compartment="0">
|
|
1396
1439
|
<a id="../src/components/Footer/Footer.types.ts.FooterProps" xlink:href="../src/components/Footer/Footer.types.ts"><text x="120.0" y="14.1" stroke="none" text-anchor="middle" data-name="FooterProps" data-compartment="0">FooterProps</text></a>
|
|
1397
1440
|
|
|
1398
1441
|
</g>
|
|
1399
1442
|
</g>
|
|
1400
|
-
<g transform="translate(
|
|
1443
|
+
<g transform="translate(6289.5, 557)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FooterProps" data-compartment="1">
|
|
1401
1444
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="FooterProps" data-compartment="1">
|
|
1402
1445
|
<text x="0.0" y="14.1" stroke="none" data-name="FooterProps" data-compartment="1">+className?: string</text>
|
|
1403
1446
|
<text x="0.0" y="30.3" stroke="none" data-name="FooterProps" data-compartment="1">+containerClassName?: string</text>
|
|
@@ -1406,7 +1449,7 @@
|
|
|
1406
1449
|
|
|
1407
1450
|
</g>
|
|
1408
1451
|
</g>
|
|
1409
|
-
<g transform="translate(
|
|
1452
|
+
<g transform="translate(6289.5, 638)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="FooterProps" data-compartment="2">
|
|
1410
1453
|
<g transform="translate(8, 8)" fill="#33322E" data-name="FooterProps" data-compartment="2">
|
|
1411
1454
|
|
|
1412
1455
|
</g>
|
|
@@ -1414,17 +1457,17 @@
|
|
|
1414
1457
|
</g>
|
|
1415
1458
|
<g data-name="HeaderProps">
|
|
1416
1459
|
<g fill="lightblue" stroke="#33322E" data-name="HeaderProps">
|
|
1417
|
-
<rect x="
|
|
1418
|
-
<path d="
|
|
1419
|
-
<path d="
|
|
1460
|
+
<rect x="6585.5" y="436.0" height="299.0" width="289.0" data-name="HeaderProps"></rect>
|
|
1461
|
+
<path d="M6585.5 468.0 L6874.5 468.0" fill="none" data-name="HeaderProps"></path>
|
|
1462
|
+
<path d="M6585.5 727.0 L6874.5 727.0" fill="none" data-name="HeaderProps"></path>
|
|
1420
1463
|
</g>
|
|
1421
|
-
<g transform="translate(
|
|
1464
|
+
<g transform="translate(6585.5, 436)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="HeaderProps" data-compartment="0">
|
|
1422
1465
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="HeaderProps" data-compartment="0">
|
|
1423
1466
|
<a id="../src/components/Header/Header.types.ts.HeaderProps" xlink:href="../src/components/Header/Header.types.ts"><text x="136.5" y="14.1" stroke="none" text-anchor="middle" data-name="HeaderProps" data-compartment="0">HeaderProps</text></a>
|
|
1424
1467
|
|
|
1425
1468
|
</g>
|
|
1426
1469
|
</g>
|
|
1427
|
-
<g transform="translate(
|
|
1470
|
+
<g transform="translate(6585.5, 468)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="HeaderProps" data-compartment="1">
|
|
1428
1471
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="HeaderProps" data-compartment="1">
|
|
1429
1472
|
<text x="0.0" y="14.1" stroke="none" data-name="HeaderProps" data-compartment="1">+className?: string</text>
|
|
1430
1473
|
<text x="0.0" y="30.3" stroke="none" data-name="HeaderProps" data-compartment="1">+containerClassName?: string</text>
|
|
@@ -1444,7 +1487,7 @@
|
|
|
1444
1487
|
|
|
1445
1488
|
</g>
|
|
1446
1489
|
</g>
|
|
1447
|
-
<g transform="translate(
|
|
1490
|
+
<g transform="translate(6585.5, 727)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="HeaderProps" data-compartment="2">
|
|
1448
1491
|
<g transform="translate(8, 8)" fill="#33322E" data-name="HeaderProps" data-compartment="2">
|
|
1449
1492
|
|
|
1450
1493
|
</g>
|
|
@@ -1452,24 +1495,24 @@
|
|
|
1452
1495
|
</g>
|
|
1453
1496
|
<g data-name="HintProps">
|
|
1454
1497
|
<g fill="lightblue" stroke="#33322E" data-name="HintProps">
|
|
1455
|
-
<rect x="
|
|
1456
|
-
<path d="
|
|
1457
|
-
<path d="
|
|
1498
|
+
<rect x="13110.5" y="154.0" height="88.0" width="197.0" data-name="HintProps"></rect>
|
|
1499
|
+
<path d="M13110.5 186.0 L13307.5 186.0" fill="none" data-name="HintProps"></path>
|
|
1500
|
+
<path d="M13110.5 234.0 L13307.5 234.0" fill="none" data-name="HintProps"></path>
|
|
1458
1501
|
</g>
|
|
1459
|
-
<g transform="translate(
|
|
1502
|
+
<g transform="translate(13110.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="HintProps" data-compartment="0">
|
|
1460
1503
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="HintProps" data-compartment="0">
|
|
1461
1504
|
<a id="../src/components/Hint/Hint.types.ts.HintProps" xlink:href="../src/components/Hint/Hint.types.ts"><text x="90.5" y="14.1" stroke="none" text-anchor="middle" data-name="HintProps" data-compartment="0">HintProps</text></a>
|
|
1462
1505
|
|
|
1463
1506
|
</g>
|
|
1464
1507
|
</g>
|
|
1465
|
-
<g transform="translate(
|
|
1508
|
+
<g transform="translate(13110.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="HintProps" data-compartment="1">
|
|
1466
1509
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="HintProps" data-compartment="1">
|
|
1467
1510
|
<text x="0.0" y="14.1" stroke="none" data-name="HintProps" data-compartment="1">+className?: string</text>
|
|
1468
1511
|
<text x="0.0" y="30.3" stroke="none" data-name="HintProps" data-compartment="1">+children?: ReactNode</text>
|
|
1469
1512
|
|
|
1470
1513
|
</g>
|
|
1471
1514
|
</g>
|
|
1472
|
-
<g transform="translate(
|
|
1515
|
+
<g transform="translate(13110.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="HintProps" data-compartment="2">
|
|
1473
1516
|
<g transform="translate(8, 8)" fill="#33322E" data-name="HintProps" data-compartment="2">
|
|
1474
1517
|
|
|
1475
1518
|
</g>
|
|
@@ -1477,17 +1520,17 @@
|
|
|
1477
1520
|
</g>
|
|
1478
1521
|
<g data-name="InputProps">
|
|
1479
1522
|
<g fill="lightblue" stroke="#33322E" data-name="InputProps">
|
|
1480
|
-
<rect x="
|
|
1481
|
-
<path d="
|
|
1482
|
-
<path d="
|
|
1523
|
+
<rect x="13347.5" y="32.5" height="331.0" width="314.0" data-name="InputProps"></rect>
|
|
1524
|
+
<path d="M13347.5 64.5 L13661.5 64.5" fill="none" data-name="InputProps"></path>
|
|
1525
|
+
<path d="M13347.5 355.5 L13661.5 355.5" fill="none" data-name="InputProps"></path>
|
|
1483
1526
|
</g>
|
|
1484
|
-
<g transform="translate(
|
|
1527
|
+
<g transform="translate(13347.5, 32.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InputProps" data-compartment="0">
|
|
1485
1528
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="InputProps" data-compartment="0">
|
|
1486
1529
|
<a id="../src/components/Input/Input.types.ts.InputProps" xlink:href="../src/components/Input/Input.types.ts"><text x="149.0" y="14.1" stroke="none" text-anchor="middle" data-name="InputProps" data-compartment="0">InputProps</text></a>
|
|
1487
1530
|
|
|
1488
1531
|
</g>
|
|
1489
1532
|
</g>
|
|
1490
|
-
<g transform="translate(
|
|
1533
|
+
<g transform="translate(13347.5, 64.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InputProps" data-compartment="1">
|
|
1491
1534
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="InputProps" data-compartment="1">
|
|
1492
1535
|
<text x="0.0" y="14.1" stroke="none" data-name="InputProps" data-compartment="1">+className?: string</text>
|
|
1493
1536
|
<text x="0.0" y="30.3" stroke="none" data-name="InputProps" data-compartment="1">+aria-describedby?: string</text>
|
|
@@ -1509,7 +1552,7 @@
|
|
|
1509
1552
|
|
|
1510
1553
|
</g>
|
|
1511
1554
|
</g>
|
|
1512
|
-
<g transform="translate(
|
|
1555
|
+
<g transform="translate(13347.5, 355.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InputProps" data-compartment="2">
|
|
1513
1556
|
<g transform="translate(8, 8)" fill="#33322E" data-name="InputProps" data-compartment="2">
|
|
1514
1557
|
|
|
1515
1558
|
</g>
|
|
@@ -1517,24 +1560,24 @@
|
|
|
1517
1560
|
</g>
|
|
1518
1561
|
<g data-name="InsetTextProps">
|
|
1519
1562
|
<g fill="lightblue" stroke="#33322E" data-name="InsetTextProps">
|
|
1520
|
-
<rect x="
|
|
1521
|
-
<path d="
|
|
1522
|
-
<path d="
|
|
1563
|
+
<rect x="13701.5" y="154.0" height="88.0" width="187.0" data-name="InsetTextProps"></rect>
|
|
1564
|
+
<path d="M13701.5 186.0 L13888.5 186.0" fill="none" data-name="InsetTextProps"></path>
|
|
1565
|
+
<path d="M13701.5 234.0 L13888.5 234.0" fill="none" data-name="InsetTextProps"></path>
|
|
1523
1566
|
</g>
|
|
1524
|
-
<g transform="translate(
|
|
1567
|
+
<g transform="translate(13701.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InsetTextProps" data-compartment="0">
|
|
1525
1568
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="InsetTextProps" data-compartment="0">
|
|
1526
1569
|
<a id="../src/components/InsetText/InsetText.types.ts.InsetTextProps" xlink:href="../src/components/InsetText/InsetText.types.ts"><text x="85.5" y="14.1" stroke="none" text-anchor="middle" data-name="InsetTextProps" data-compartment="0">InsetTextProps</text></a>
|
|
1527
1570
|
|
|
1528
1571
|
</g>
|
|
1529
1572
|
</g>
|
|
1530
|
-
<g transform="translate(
|
|
1573
|
+
<g transform="translate(13701.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InsetTextProps" data-compartment="1">
|
|
1531
1574
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="InsetTextProps" data-compartment="1">
|
|
1532
1575
|
<text x="0.0" y="14.1" stroke="none" data-name="InsetTextProps" data-compartment="1">+className?: string</text>
|
|
1533
1576
|
<text x="0.0" y="30.3" stroke="none" data-name="InsetTextProps" data-compartment="1">+children: ReactNode</text>
|
|
1534
1577
|
|
|
1535
1578
|
</g>
|
|
1536
1579
|
</g>
|
|
1537
|
-
<g transform="translate(
|
|
1580
|
+
<g transform="translate(13701.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="InsetTextProps" data-compartment="2">
|
|
1538
1581
|
<g transform="translate(8, 8)" fill="#33322E" data-name="InsetTextProps" data-compartment="2">
|
|
1539
1582
|
|
|
1540
1583
|
</g>
|
|
@@ -1542,17 +1585,17 @@
|
|
|
1542
1585
|
</g>
|
|
1543
1586
|
<g data-name="LabelProps">
|
|
1544
1587
|
<g fill="lightblue" stroke="#33322E" data-name="LabelProps">
|
|
1545
|
-
<rect x="
|
|
1546
|
-
<path d="
|
|
1547
|
-
<path d="
|
|
1588
|
+
<rect x="13928.5" y="137.5" height="121.0" width="230.0" data-name="LabelProps"></rect>
|
|
1589
|
+
<path d="M13928.5 169.5 L14158.5 169.5" fill="none" data-name="LabelProps"></path>
|
|
1590
|
+
<path d="M13928.5 250.5 L14158.5 250.5" fill="none" data-name="LabelProps"></path>
|
|
1548
1591
|
</g>
|
|
1549
|
-
<g transform="translate(
|
|
1592
|
+
<g transform="translate(13928.5, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LabelProps" data-compartment="0">
|
|
1550
1593
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="LabelProps" data-compartment="0">
|
|
1551
1594
|
<a id="../src/components/Label/Label.types.ts.LabelProps" xlink:href="../src/components/Label/Label.types.ts"><text x="107.0" y="14.1" stroke="none" text-anchor="middle" data-name="LabelProps" data-compartment="0">LabelProps</text></a>
|
|
1552
1595
|
|
|
1553
1596
|
</g>
|
|
1554
1597
|
</g>
|
|
1555
|
-
<g transform="translate(
|
|
1598
|
+
<g transform="translate(13928.5, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LabelProps" data-compartment="1">
|
|
1556
1599
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="LabelProps" data-compartment="1">
|
|
1557
1600
|
<text x="0.0" y="14.1" stroke="none" data-name="LabelProps" data-compartment="1">+className?: string</text>
|
|
1558
1601
|
<text x="0.0" y="30.3" stroke="none" data-name="LabelProps" data-compartment="1">+htmlFor?: string</text>
|
|
@@ -1561,7 +1604,7 @@
|
|
|
1561
1604
|
|
|
1562
1605
|
</g>
|
|
1563
1606
|
</g>
|
|
1564
|
-
<g transform="translate(
|
|
1607
|
+
<g transform="translate(13928.5, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LabelProps" data-compartment="2">
|
|
1565
1608
|
<g transform="translate(8, 8)" fill="#33322E" data-name="LabelProps" data-compartment="2">
|
|
1566
1609
|
|
|
1567
1610
|
</g>
|
|
@@ -1569,23 +1612,23 @@
|
|
|
1569
1612
|
</g>
|
|
1570
1613
|
<g data-name="LandingProps">
|
|
1571
1614
|
<g fill="lightblue" stroke="#33322E" data-name="LandingProps">
|
|
1572
|
-
<rect x="
|
|
1573
|
-
<path d="
|
|
1574
|
-
<path d="
|
|
1615
|
+
<rect x="14198.5" y="162.0" height="72.0" width="126.0" data-name="LandingProps"></rect>
|
|
1616
|
+
<path d="M14198.5 194.0 L14324.5 194.0" fill="none" data-name="LandingProps"></path>
|
|
1617
|
+
<path d="M14198.5 226.0 L14324.5 226.0" fill="none" data-name="LandingProps"></path>
|
|
1575
1618
|
</g>
|
|
1576
|
-
<g transform="translate(
|
|
1619
|
+
<g transform="translate(14198.5, 162)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LandingProps" data-compartment="0">
|
|
1577
1620
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="LandingProps" data-compartment="0">
|
|
1578
1621
|
<a id="../src/components/Landing/Landing.types.ts.LandingProps" xlink:href="../src/components/Landing/Landing.types.ts"><text x="55.0" y="14.1" stroke="none" text-anchor="middle" data-name="LandingProps" data-compartment="0">LandingProps</text></a>
|
|
1579
1622
|
|
|
1580
1623
|
</g>
|
|
1581
1624
|
</g>
|
|
1582
|
-
<g transform="translate(
|
|
1625
|
+
<g transform="translate(14198.5, 194)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LandingProps" data-compartment="1">
|
|
1583
1626
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="LandingProps" data-compartment="1">
|
|
1584
1627
|
<text x="0.0" y="14.1" stroke="none" data-name="LandingProps" data-compartment="1">+to?: To</text>
|
|
1585
1628
|
|
|
1586
1629
|
</g>
|
|
1587
1630
|
</g>
|
|
1588
|
-
<g transform="translate(
|
|
1631
|
+
<g transform="translate(14198.5, 226)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LandingProps" data-compartment="2">
|
|
1589
1632
|
<g transform="translate(8, 8)" fill="#33322E" data-name="LandingProps" data-compartment="2">
|
|
1590
1633
|
|
|
1591
1634
|
</g>
|
|
@@ -1593,17 +1636,17 @@
|
|
|
1593
1636
|
</g>
|
|
1594
1637
|
<g data-name="LinkWithRefProps">
|
|
1595
1638
|
<g fill="lightblue" stroke="#33322E" data-name="LinkWithRefProps">
|
|
1596
|
-
<rect x="
|
|
1597
|
-
<path d="
|
|
1598
|
-
<path d="
|
|
1639
|
+
<rect x="14268.0" y="525.0" height="121.0" width="416.0" data-name="LinkWithRefProps"></rect>
|
|
1640
|
+
<path d="M14268.0 557.0 L14684.0 557.0" fill="none" data-name="LinkWithRefProps"></path>
|
|
1641
|
+
<path d="M14268.0 638.0 L14684.0 638.0" fill="none" data-name="LinkWithRefProps"></path>
|
|
1599
1642
|
</g>
|
|
1600
|
-
<g transform="translate(
|
|
1643
|
+
<g transform="translate(14268, 525)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LinkWithRefProps" data-compartment="0">
|
|
1601
1644
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="LinkWithRefProps" data-compartment="0">
|
|
1602
1645
|
<a id="../src/components/LinkWithRef/LinkWithRef.types.ts.LinkWithRefProps" xlink:href="../src/components/LinkWithRef/LinkWithRef.types.ts"><text x="200.0" y="14.1" stroke="none" text-anchor="middle" data-name="LinkWithRefProps" data-compartment="0">LinkWithRefProps</text></a>
|
|
1603
1646
|
|
|
1604
1647
|
</g>
|
|
1605
1648
|
</g>
|
|
1606
|
-
<g transform="translate(
|
|
1649
|
+
<g transform="translate(14268, 557)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LinkWithRefProps" data-compartment="1">
|
|
1607
1650
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="LinkWithRefProps" data-compartment="1">
|
|
1608
1651
|
<text x="0.0" y="14.1" stroke="none" data-name="LinkWithRefProps" data-compartment="1">+children: React.ReactNode</text>
|
|
1609
1652
|
<text x="0.0" y="30.3" stroke="none" data-name="LinkWithRefProps" data-compartment="1">+to?: To</text>
|
|
@@ -1612,7 +1655,7 @@
|
|
|
1612
1655
|
|
|
1613
1656
|
</g>
|
|
1614
1657
|
</g>
|
|
1615
|
-
<g transform="translate(
|
|
1658
|
+
<g transform="translate(14268, 638)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LinkWithRefProps" data-compartment="2">
|
|
1616
1659
|
<g transform="translate(8, 8)" fill="#33322E" data-name="LinkWithRefProps" data-compartment="2">
|
|
1617
1660
|
|
|
1618
1661
|
</g>
|
|
@@ -1620,9 +1663,9 @@
|
|
|
1620
1663
|
</g>
|
|
1621
1664
|
<g data-name="AnchorHTMLAttributes<T>">
|
|
1622
1665
|
<g fill="#eee8d5" stroke="#33322E" data-name="AnchorHTMLAttributes<T>">
|
|
1623
|
-
<rect x="
|
|
1666
|
+
<rect x="14364.5" y="182.0" height="32.0" width="223.0" data-name="AnchorHTMLAttributes<T>"></rect>
|
|
1624
1667
|
</g>
|
|
1625
|
-
<g transform="translate(
|
|
1668
|
+
<g transform="translate(14364.5, 182)" font-family="Helvetica" font-size="12pt" font-weight="bold" font-style="normal" data-name="AnchorHTMLAttributes<T>" data-compartment="0">
|
|
1626
1669
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="AnchorHTMLAttributes<T>" data-compartment="0">
|
|
1627
1670
|
<text x="103.5" y="14.1" stroke="none" text-anchor="middle" data-name="AnchorHTMLAttributes<T>" data-compartment="0">AnchorHTMLAttributes<T></text>
|
|
1628
1671
|
|
|
@@ -1631,24 +1674,24 @@
|
|
|
1631
1674
|
</g>
|
|
1632
1675
|
<g data-name="LoadingProps">
|
|
1633
1676
|
<g fill="lightblue" stroke="#33322E" data-name="LoadingProps">
|
|
1634
|
-
<rect x="
|
|
1635
|
-
<path d="
|
|
1636
|
-
<path d="
|
|
1677
|
+
<rect x="14627.5" y="154.0" height="88.0" width="167.0" data-name="LoadingProps"></rect>
|
|
1678
|
+
<path d="M14627.5 186.0 L14794.5 186.0" fill="none" data-name="LoadingProps"></path>
|
|
1679
|
+
<path d="M14627.5 234.0 L14794.5 234.0" fill="none" data-name="LoadingProps"></path>
|
|
1637
1680
|
</g>
|
|
1638
|
-
<g transform="translate(
|
|
1681
|
+
<g transform="translate(14627.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LoadingProps" data-compartment="0">
|
|
1639
1682
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="LoadingProps" data-compartment="0">
|
|
1640
1683
|
<a id="../src/components/Loading/Loading.types.ts.LoadingProps" xlink:href="../src/components/Loading/Loading.types.ts"><text x="75.5" y="14.1" stroke="none" text-anchor="middle" data-name="LoadingProps" data-compartment="0">LoadingProps</text></a>
|
|
1641
1684
|
|
|
1642
1685
|
</g>
|
|
1643
1686
|
</g>
|
|
1644
|
-
<g transform="translate(
|
|
1687
|
+
<g transform="translate(14627.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LoadingProps" data-compartment="1">
|
|
1645
1688
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="LoadingProps" data-compartment="1">
|
|
1646
1689
|
<text x="0.0" y="14.1" stroke="none" data-name="LoadingProps" data-compartment="1">+message?: string</text>
|
|
1647
1690
|
<text x="0.0" y="30.3" stroke="none" data-name="LoadingProps" data-compartment="1">+html?: ReactNode</text>
|
|
1648
1691
|
|
|
1649
1692
|
</g>
|
|
1650
1693
|
</g>
|
|
1651
|
-
<g transform="translate(
|
|
1694
|
+
<g transform="translate(14627.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="LoadingProps" data-compartment="2">
|
|
1652
1695
|
<g transform="translate(8, 8)" fill="#33322E" data-name="LoadingProps" data-compartment="2">
|
|
1653
1696
|
|
|
1654
1697
|
</g>
|
|
@@ -1656,17 +1699,17 @@
|
|
|
1656
1699
|
</g>
|
|
1657
1700
|
<g data-name="MainProps">
|
|
1658
1701
|
<g fill="lightblue" stroke="#33322E" data-name="MainProps">
|
|
1659
|
-
<rect x="
|
|
1660
|
-
<path d="
|
|
1661
|
-
<path d="
|
|
1702
|
+
<rect x="14834.5" y="145.5" height="105.0" width="206.0" data-name="MainProps"></rect>
|
|
1703
|
+
<path d="M14834.5 177.5 L15040.5 177.5" fill="none" data-name="MainProps"></path>
|
|
1704
|
+
<path d="M14834.5 242.5 L15040.5 242.5" fill="none" data-name="MainProps"></path>
|
|
1662
1705
|
</g>
|
|
1663
|
-
<g transform="translate(
|
|
1706
|
+
<g transform="translate(14834.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MainProps" data-compartment="0">
|
|
1664
1707
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="MainProps" data-compartment="0">
|
|
1665
1708
|
<a id="../src/components/Main/Main.types.ts.MainProps" xlink:href="../src/components/Main/Main.types.ts"><text x="95.0" y="14.1" stroke="none" text-anchor="middle" data-name="MainProps" data-compartment="0">MainProps</text></a>
|
|
1666
1709
|
|
|
1667
1710
|
</g>
|
|
1668
1711
|
</g>
|
|
1669
|
-
<g transform="translate(
|
|
1712
|
+
<g transform="translate(14834.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MainProps" data-compartment="1">
|
|
1670
1713
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="MainProps" data-compartment="1">
|
|
1671
1714
|
<text x="0.0" y="14.1" stroke="none" data-name="MainProps" data-compartment="1">+children?: ReactNode</text>
|
|
1672
1715
|
<text x="0.0" y="30.3" stroke="none" data-name="MainProps" data-compartment="1">+backLink?: string</text>
|
|
@@ -1674,7 +1717,7 @@
|
|
|
1674
1717
|
|
|
1675
1718
|
</g>
|
|
1676
1719
|
</g>
|
|
1677
|
-
<g transform="translate(
|
|
1720
|
+
<g transform="translate(14834.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="MainProps" data-compartment="2">
|
|
1678
1721
|
<g transform="translate(8, 8)" fill="#33322E" data-name="MainProps" data-compartment="2">
|
|
1679
1722
|
|
|
1680
1723
|
</g>
|
|
@@ -1682,17 +1725,17 @@
|
|
|
1682
1725
|
</g>
|
|
1683
1726
|
<g data-name="NotificationBannerProps">
|
|
1684
1727
|
<g fill="lightblue" stroke="#33322E" data-name="NotificationBannerProps">
|
|
1685
|
-
<rect x="
|
|
1686
|
-
<path d="
|
|
1687
|
-
<path d="
|
|
1728
|
+
<rect x="15080.5" y="105.0" height="186.0" width="357.0" data-name="NotificationBannerProps"></rect>
|
|
1729
|
+
<path d="M15080.5 137.0 L15437.5 137.0" fill="none" data-name="NotificationBannerProps"></path>
|
|
1730
|
+
<path d="M15080.5 283.0 L15437.5 283.0" fill="none" data-name="NotificationBannerProps"></path>
|
|
1688
1731
|
</g>
|
|
1689
|
-
<g transform="translate(
|
|
1732
|
+
<g transform="translate(15080.5, 105)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NotificationBannerProps" data-compartment="0">
|
|
1690
1733
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="NotificationBannerProps" data-compartment="0">
|
|
1691
1734
|
<a id="../src/components/NotificationBanner/NotificationBanner.types.ts.NotificationBannerProps" xlink:href="../src/components/NotificationBanner/NotificationBanner.types.ts"><text x="170.5" y="14.1" stroke="none" text-anchor="middle" data-name="NotificationBannerProps" data-compartment="0">NotificationBannerProps</text></a>
|
|
1692
1735
|
|
|
1693
1736
|
</g>
|
|
1694
1737
|
</g>
|
|
1695
|
-
<g transform="translate(
|
|
1738
|
+
<g transform="translate(15080.5, 137)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NotificationBannerProps" data-compartment="1">
|
|
1696
1739
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="NotificationBannerProps" data-compartment="1">
|
|
1697
1740
|
<text x="0.0" y="14.1" stroke="none" data-name="NotificationBannerProps" data-compartment="1">+type: "success" | "error" | "info" | "warning"</text>
|
|
1698
1741
|
<text x="0.0" y="30.3" stroke="none" data-name="NotificationBannerProps" data-compartment="1">+titleChildren?: string</text>
|
|
@@ -1705,40 +1748,87 @@
|
|
|
1705
1748
|
|
|
1706
1749
|
</g>
|
|
1707
1750
|
</g>
|
|
1708
|
-
<g transform="translate(
|
|
1751
|
+
<g transform="translate(15080.5, 283)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NotificationBannerProps" data-compartment="2">
|
|
1709
1752
|
<g transform="translate(8, 8)" fill="#33322E" data-name="NotificationBannerProps" data-compartment="2">
|
|
1710
1753
|
|
|
1754
|
+
</g>
|
|
1755
|
+
</g>
|
|
1756
|
+
</g>
|
|
1757
|
+
<g data-name="PaginationItemProps">
|
|
1758
|
+
<g fill="lightblue" stroke="#33322E" data-name="PaginationItemProps">
|
|
1759
|
+
<rect x="15477.5" y="137.5" height="121.0" width="225.0" data-name="PaginationItemProps"></rect>
|
|
1760
|
+
<path d="M15477.5 169.5 L15702.5 169.5" fill="none" data-name="PaginationItemProps"></path>
|
|
1761
|
+
<path d="M15477.5 250.5 L15702.5 250.5" fill="none" data-name="PaginationItemProps"></path>
|
|
1762
|
+
</g>
|
|
1763
|
+
<g transform="translate(15477.5, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationItemProps" data-compartment="0">
|
|
1764
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PaginationItemProps" data-compartment="0">
|
|
1765
|
+
<a id="../src/components/Pagination/Pagination.types.ts.PaginationItemProps" xlink:href="../src/components/Pagination/Pagination.types.ts"><text x="104.5" y="14.1" stroke="none" text-anchor="middle" data-name="PaginationItemProps" data-compartment="0">PaginationItemProps</text></a>
|
|
1766
|
+
|
|
1767
|
+
</g>
|
|
1768
|
+
</g>
|
|
1769
|
+
<g transform="translate(15477.5, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationItemProps" data-compartment="1">
|
|
1770
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PaginationItemProps" data-compartment="1">
|
|
1771
|
+
<text x="0.0" y="14.1" stroke="none" data-name="PaginationItemProps" data-compartment="1">+number?: string | number</text>
|
|
1772
|
+
<text x="0.0" y="30.3" stroke="none" data-name="PaginationItemProps" data-compartment="1">+href?: string</text>
|
|
1773
|
+
<text x="0.0" y="46.5" stroke="none" data-name="PaginationItemProps" data-compartment="1">+current?: boolean</text>
|
|
1774
|
+
<text x="0.0" y="62.7" stroke="none" data-name="PaginationItemProps" data-compartment="1">+ellipsis?: boolean</text>
|
|
1775
|
+
|
|
1776
|
+
</g>
|
|
1777
|
+
</g>
|
|
1778
|
+
<g transform="translate(15477.5, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationItemProps" data-compartment="2">
|
|
1779
|
+
<g transform="translate(8, 8)" fill="#33322E" data-name="PaginationItemProps" data-compartment="2">
|
|
1780
|
+
|
|
1781
|
+
</g>
|
|
1782
|
+
</g>
|
|
1783
|
+
</g>
|
|
1784
|
+
<g data-name="PaginationNavProps">
|
|
1785
|
+
<g fill="lightblue" stroke="#33322E" data-name="PaginationNavProps">
|
|
1786
|
+
<rect x="15742.5" y="145.5" height="105.0" width="197.0" data-name="PaginationNavProps"></rect>
|
|
1787
|
+
<path d="M15742.5 177.5 L15939.5 177.5" fill="none" data-name="PaginationNavProps"></path>
|
|
1788
|
+
<path d="M15742.5 242.5 L15939.5 242.5" fill="none" data-name="PaginationNavProps"></path>
|
|
1789
|
+
</g>
|
|
1790
|
+
<g transform="translate(15742.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationNavProps" data-compartment="0">
|
|
1791
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PaginationNavProps" data-compartment="0">
|
|
1792
|
+
<a id="../src/components/Pagination/Pagination.types.ts.PaginationNavProps" xlink:href="../src/components/Pagination/Pagination.types.ts"><text x="90.5" y="14.1" stroke="none" text-anchor="middle" data-name="PaginationNavProps" data-compartment="0">PaginationNavProps</text></a>
|
|
1793
|
+
|
|
1794
|
+
</g>
|
|
1795
|
+
</g>
|
|
1796
|
+
<g transform="translate(15742.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationNavProps" data-compartment="1">
|
|
1797
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PaginationNavProps" data-compartment="1">
|
|
1798
|
+
<text x="0.0" y="14.1" stroke="none" data-name="PaginationNavProps" data-compartment="1">+href: string</text>
|
|
1799
|
+
<text x="0.0" y="30.3" stroke="none" data-name="PaginationNavProps" data-compartment="1">+children?: ReactNode</text>
|
|
1800
|
+
<text x="0.0" y="46.5" stroke="none" data-name="PaginationNavProps" data-compartment="1">+labelText?: string</text>
|
|
1801
|
+
|
|
1802
|
+
</g>
|
|
1803
|
+
</g>
|
|
1804
|
+
<g transform="translate(15742.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationNavProps" data-compartment="2">
|
|
1805
|
+
<g transform="translate(8, 8)" fill="#33322E" data-name="PaginationNavProps" data-compartment="2">
|
|
1806
|
+
|
|
1711
1807
|
</g>
|
|
1712
1808
|
</g>
|
|
1713
1809
|
</g>
|
|
1714
1810
|
<g data-name="PaginationProps">
|
|
1715
1811
|
<g fill="lightblue" stroke="#33322E" data-name="PaginationProps">
|
|
1716
|
-
<rect x="
|
|
1717
|
-
<path d="
|
|
1718
|
-
<path d="
|
|
1812
|
+
<rect x="15979.5" y="137.5" height="121.0" width="275.0" data-name="PaginationProps"></rect>
|
|
1813
|
+
<path d="M15979.5 169.5 L16254.5 169.5" fill="none" data-name="PaginationProps"></path>
|
|
1814
|
+
<path d="M15979.5 250.5 L16254.5 250.5" fill="none" data-name="PaginationProps"></path>
|
|
1719
1815
|
</g>
|
|
1720
|
-
<g transform="translate(
|
|
1816
|
+
<g transform="translate(15979.5, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationProps" data-compartment="0">
|
|
1721
1817
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PaginationProps" data-compartment="0">
|
|
1722
|
-
<a id="../src/components/Pagination/Pagination.types.ts.PaginationProps" xlink:href="../src/components/Pagination/Pagination.types.ts"><text x="
|
|
1818
|
+
<a id="../src/components/Pagination/Pagination.types.ts.PaginationProps" xlink:href="../src/components/Pagination/Pagination.types.ts"><text x="129.5" y="14.1" stroke="none" text-anchor="middle" data-name="PaginationProps" data-compartment="0">PaginationProps</text></a>
|
|
1723
1819
|
|
|
1724
1820
|
</g>
|
|
1725
1821
|
</g>
|
|
1726
|
-
<g transform="translate(
|
|
1822
|
+
<g transform="translate(15979.5, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationProps" data-compartment="1">
|
|
1727
1823
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PaginationProps" data-compartment="1">
|
|
1728
|
-
<text x="0.0" y="14.1" stroke="none" data-name="PaginationProps" data-compartment="1">+
|
|
1729
|
-
<text x="0.0" y="30.3" stroke="none" data-name="PaginationProps" data-compartment="1">+
|
|
1730
|
-
<text x="0.0" y="46.5" stroke="none" data-name="PaginationProps" data-compartment="1">+
|
|
1731
|
-
<text x="0.0" y="62.7" stroke="none" data-name="PaginationProps" data-compartment="1">+
|
|
1732
|
-
<text x="0.0" y="78.9" stroke="none" data-name="PaginationProps" data-compartment="1">+pageSize: number</text>
|
|
1733
|
-
<text x="0.0" y="95.1" stroke="none" data-name="PaginationProps" data-compartment="1">+className?: string</text>
|
|
1734
|
-
<text x="0.0" y="111.3" stroke="none" data-name="PaginationProps" data-compartment="1">+previousName?: string</text>
|
|
1735
|
-
<text x="0.0" y="127.5" stroke="none" data-name="PaginationProps" data-compartment="1">+previousChildren?: ReactNode</text>
|
|
1736
|
-
<text x="0.0" y="143.7" stroke="none" data-name="PaginationProps" data-compartment="1">+nextName?: string</text>
|
|
1737
|
-
<text x="0.0" y="159.9" stroke="none" data-name="PaginationProps" data-compartment="1">+nextChildren?: ReactNode</text>
|
|
1824
|
+
<text x="0.0" y="14.1" stroke="none" data-name="PaginationProps" data-compartment="1">+previous?: PaginationNavProps</text>
|
|
1825
|
+
<text x="0.0" y="30.3" stroke="none" data-name="PaginationProps" data-compartment="1">+next?: PaginationNavProps</text>
|
|
1826
|
+
<text x="0.0" y="46.5" stroke="none" data-name="PaginationProps" data-compartment="1">+items?: PaginationItemProps[]</text>
|
|
1827
|
+
<text x="0.0" y="62.7" stroke="none" data-name="PaginationProps" data-compartment="1">+className?: string</text>
|
|
1738
1828
|
|
|
1739
1829
|
</g>
|
|
1740
1830
|
</g>
|
|
1741
|
-
<g transform="translate(
|
|
1831
|
+
<g transform="translate(15979.5, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PaginationProps" data-compartment="2">
|
|
1742
1832
|
<g transform="translate(8, 8)" fill="#33322E" data-name="PaginationProps" data-compartment="2">
|
|
1743
1833
|
|
|
1744
1834
|
</g>
|
|
@@ -1746,23 +1836,23 @@
|
|
|
1746
1836
|
</g>
|
|
1747
1837
|
<g data-name="SvgIconProps">
|
|
1748
1838
|
<g fill="lightblue" stroke="#33322E" data-name="SvgIconProps">
|
|
1749
|
-
<rect x="
|
|
1750
|
-
<path d="
|
|
1751
|
-
<path d="
|
|
1839
|
+
<rect x="16294.5" y="162.0" height="72.0" width="126.0" data-name="SvgIconProps"></rect>
|
|
1840
|
+
<path d="M16294.5 194.0 L16420.5 194.0" fill="none" data-name="SvgIconProps"></path>
|
|
1841
|
+
<path d="M16294.5 226.0 L16420.5 226.0" fill="none" data-name="SvgIconProps"></path>
|
|
1752
1842
|
</g>
|
|
1753
|
-
<g transform="translate(
|
|
1843
|
+
<g transform="translate(16294.5, 162)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SvgIconProps" data-compartment="0">
|
|
1754
1844
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="SvgIconProps" data-compartment="0">
|
|
1755
1845
|
<a id="../src/components/Pagination/Pagination.types.ts.SvgIconProps" xlink:href="../src/components/Pagination/Pagination.types.ts"><text x="55.0" y="14.1" stroke="none" text-anchor="middle" data-name="SvgIconProps" data-compartment="0">SvgIconProps</text></a>
|
|
1756
1846
|
|
|
1757
1847
|
</g>
|
|
1758
1848
|
</g>
|
|
1759
|
-
<g transform="translate(
|
|
1849
|
+
<g transform="translate(16294.5, 194)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SvgIconProps" data-compartment="1">
|
|
1760
1850
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="SvgIconProps" data-compartment="1">
|
|
1761
1851
|
<text x="0.0" y="14.1" stroke="none" data-name="SvgIconProps" data-compartment="1">+type: string</text>
|
|
1762
1852
|
|
|
1763
1853
|
</g>
|
|
1764
1854
|
</g>
|
|
1765
|
-
<g transform="translate(
|
|
1855
|
+
<g transform="translate(16294.5, 226)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SvgIconProps" data-compartment="2">
|
|
1766
1856
|
<g transform="translate(8, 8)" fill="#33322E" data-name="SvgIconProps" data-compartment="2">
|
|
1767
1857
|
|
|
1768
1858
|
</g>
|
|
@@ -1770,27 +1860,26 @@
|
|
|
1770
1860
|
</g>
|
|
1771
1861
|
<g data-name="NavigationButtonProps">
|
|
1772
1862
|
<g fill="lightblue" stroke="#33322E" data-name="NavigationButtonProps">
|
|
1773
|
-
<rect x="
|
|
1774
|
-
<path d="
|
|
1775
|
-
<path d="
|
|
1863
|
+
<rect x="16460.5" y="137.5" height="121.0" width="211.0" data-name="NavigationButtonProps"></rect>
|
|
1864
|
+
<path d="M16460.5 169.5 L16671.5 169.5" fill="none" data-name="NavigationButtonProps"></path>
|
|
1865
|
+
<path d="M16460.5 250.5 L16671.5 250.5" fill="none" data-name="NavigationButtonProps"></path>
|
|
1776
1866
|
</g>
|
|
1777
|
-
<g transform="translate(
|
|
1867
|
+
<g transform="translate(16460.5, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NavigationButtonProps" data-compartment="0">
|
|
1778
1868
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="NavigationButtonProps" data-compartment="0">
|
|
1779
1869
|
<a id="../src/components/Pagination/Pagination.types.ts.NavigationButtonProps" xlink:href="../src/components/Pagination/Pagination.types.ts"><text x="97.5" y="14.1" stroke="none" text-anchor="middle" data-name="NavigationButtonProps" data-compartment="0">NavigationButtonProps</text></a>
|
|
1780
1870
|
|
|
1781
1871
|
</g>
|
|
1782
1872
|
</g>
|
|
1783
|
-
<g transform="translate(
|
|
1873
|
+
<g transform="translate(16460.5, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NavigationButtonProps" data-compartment="1">
|
|
1784
1874
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="NavigationButtonProps" data-compartment="1">
|
|
1785
|
-
<text x="0.0" y="14.1" stroke="none" data-name="NavigationButtonProps" data-compartment="1">+
|
|
1786
|
-
<text x="0.0" y="30.3" stroke="none" data-name="NavigationButtonProps" data-compartment="1">+
|
|
1875
|
+
<text x="0.0" y="14.1" stroke="none" data-name="NavigationButtonProps" data-compartment="1">+href: string</text>
|
|
1876
|
+
<text x="0.0" y="30.3" stroke="none" data-name="NavigationButtonProps" data-compartment="1">+type: "next" | "previous"</text>
|
|
1787
1877
|
<text x="0.0" y="46.5" stroke="none" data-name="NavigationButtonProps" data-compartment="1">+children?: ReactNode</text>
|
|
1788
|
-
<text x="0.0" y="62.7" stroke="none" data-name="NavigationButtonProps" data-compartment="1">+
|
|
1789
|
-
<text x="0.0" y="78.9" stroke="none" data-name="NavigationButtonProps" data-compartment="1">+type: "next" | "previous"</text>
|
|
1878
|
+
<text x="0.0" y="62.7" stroke="none" data-name="NavigationButtonProps" data-compartment="1">+labelText?: string</text>
|
|
1790
1879
|
|
|
1791
1880
|
</g>
|
|
1792
1881
|
</g>
|
|
1793
|
-
<g transform="translate(
|
|
1882
|
+
<g transform="translate(16460.5, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="NavigationButtonProps" data-compartment="2">
|
|
1794
1883
|
<g transform="translate(8, 8)" fill="#33322E" data-name="NavigationButtonProps" data-compartment="2">
|
|
1795
1884
|
|
|
1796
1885
|
</g>
|
|
@@ -1798,17 +1887,17 @@
|
|
|
1798
1887
|
</g>
|
|
1799
1888
|
<g data-name="UsePaginationProps">
|
|
1800
1889
|
<g fill="lightblue" stroke="#33322E" data-name="UsePaginationProps">
|
|
1801
|
-
<rect x="
|
|
1802
|
-
<path d="
|
|
1803
|
-
<path d="
|
|
1890
|
+
<rect x="16711.5" y="137.5" height="121.0" width="204.0" data-name="UsePaginationProps"></rect>
|
|
1891
|
+
<path d="M16711.5 169.5 L16915.5 169.5" fill="none" data-name="UsePaginationProps"></path>
|
|
1892
|
+
<path d="M16711.5 250.5 L16915.5 250.5" fill="none" data-name="UsePaginationProps"></path>
|
|
1804
1893
|
</g>
|
|
1805
|
-
<g transform="translate(
|
|
1894
|
+
<g transform="translate(16711.5, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="UsePaginationProps" data-compartment="0">
|
|
1806
1895
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="UsePaginationProps" data-compartment="0">
|
|
1807
1896
|
<a id="../src/components/Pagination/UsePagination.ts.UsePaginationProps" xlink:href="../src/components/Pagination/UsePagination.ts"><text x="94.0" y="14.1" stroke="none" text-anchor="middle" data-name="UsePaginationProps" data-compartment="0">UsePaginationProps</text></a>
|
|
1808
1897
|
|
|
1809
1898
|
</g>
|
|
1810
1899
|
</g>
|
|
1811
|
-
<g transform="translate(
|
|
1900
|
+
<g transform="translate(16711.5, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="UsePaginationProps" data-compartment="1">
|
|
1812
1901
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="UsePaginationProps" data-compartment="1">
|
|
1813
1902
|
<text x="0.0" y="14.1" stroke="none" data-name="UsePaginationProps" data-compartment="1">+totalCount: number</text>
|
|
1814
1903
|
<text x="0.0" y="30.3" stroke="none" data-name="UsePaginationProps" data-compartment="1">+pageSize: number</text>
|
|
@@ -1817,7 +1906,7 @@
|
|
|
1817
1906
|
|
|
1818
1907
|
</g>
|
|
1819
1908
|
</g>
|
|
1820
|
-
<g transform="translate(
|
|
1909
|
+
<g transform="translate(16711.5, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="UsePaginationProps" data-compartment="2">
|
|
1821
1910
|
<g transform="translate(8, 8)" fill="#33322E" data-name="UsePaginationProps" data-compartment="2">
|
|
1822
1911
|
|
|
1823
1912
|
</g>
|
|
@@ -1825,17 +1914,17 @@
|
|
|
1825
1914
|
</g>
|
|
1826
1915
|
<g data-name="PanelProps">
|
|
1827
1916
|
<g fill="lightblue" stroke="#33322E" data-name="PanelProps">
|
|
1828
|
-
<rect x="
|
|
1829
|
-
<path d="
|
|
1830
|
-
<path d="
|
|
1917
|
+
<rect x="6914.5" y="525.0" height="121.0" width="256.0" data-name="PanelProps"></rect>
|
|
1918
|
+
<path d="M6914.5 557.0 L7170.5 557.0" fill="none" data-name="PanelProps"></path>
|
|
1919
|
+
<path d="M6914.5 638.0 L7170.5 638.0" fill="none" data-name="PanelProps"></path>
|
|
1831
1920
|
</g>
|
|
1832
|
-
<g transform="translate(
|
|
1921
|
+
<g transform="translate(6914.5, 525)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PanelProps" data-compartment="0">
|
|
1833
1922
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PanelProps" data-compartment="0">
|
|
1834
1923
|
<a id="../src/components/Panel/Panel.types.ts.PanelProps" xlink:href="../src/components/Panel/Panel.types.ts"><text x="120.0" y="14.1" stroke="none" text-anchor="middle" data-name="PanelProps" data-compartment="0">PanelProps</text></a>
|
|
1835
1924
|
|
|
1836
1925
|
</g>
|
|
1837
1926
|
</g>
|
|
1838
|
-
<g transform="translate(
|
|
1927
|
+
<g transform="translate(6914.5, 557)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PanelProps" data-compartment="1">
|
|
1839
1928
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PanelProps" data-compartment="1">
|
|
1840
1929
|
<text x="0.0" y="14.1" stroke="none" data-name="PanelProps" data-compartment="1">+headingLevel?: ElementType</text>
|
|
1841
1930
|
<text x="0.0" y="30.3" stroke="none" data-name="PanelProps" data-compartment="1">+className?: string</text>
|
|
@@ -1844,25 +1933,95 @@
|
|
|
1844
1933
|
|
|
1845
1934
|
</g>
|
|
1846
1935
|
</g>
|
|
1847
|
-
<g transform="translate(
|
|
1936
|
+
<g transform="translate(6914.5, 638)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PanelProps" data-compartment="2">
|
|
1848
1937
|
<g transform="translate(8, 8)" fill="#33322E" data-name="PanelProps" data-compartment="2">
|
|
1849
1938
|
|
|
1939
|
+
</g>
|
|
1940
|
+
</g>
|
|
1941
|
+
</g>
|
|
1942
|
+
<g data-name="PasswordInputLabelProps">
|
|
1943
|
+
<g fill="lightblue" stroke="#33322E" data-name="PasswordInputLabelProps">
|
|
1944
|
+
<rect x="16955.5" y="145.5" height="105.0" width="230.0" data-name="PasswordInputLabelProps"></rect>
|
|
1945
|
+
<path d="M16955.5 177.5 L17185.5 177.5" fill="none" data-name="PasswordInputLabelProps"></path>
|
|
1946
|
+
<path d="M16955.5 242.5 L17185.5 242.5" fill="none" data-name="PasswordInputLabelProps"></path>
|
|
1947
|
+
</g>
|
|
1948
|
+
<g transform="translate(16955.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PasswordInputLabelProps" data-compartment="0">
|
|
1949
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PasswordInputLabelProps" data-compartment="0">
|
|
1950
|
+
<a id="../src/components/PasswordInput/PasswordInput.types.ts.PasswordInputLabelProps" xlink:href="../src/components/PasswordInput/PasswordInput.types.ts"><text x="107.0" y="14.1" stroke="none" text-anchor="middle" data-name="PasswordInputLabelProps" data-compartment="0">PasswordInputLabelProps</text></a>
|
|
1951
|
+
|
|
1952
|
+
</g>
|
|
1953
|
+
</g>
|
|
1954
|
+
<g transform="translate(16955.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PasswordInputLabelProps" data-compartment="1">
|
|
1955
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PasswordInputLabelProps" data-compartment="1">
|
|
1956
|
+
<text x="0.0" y="14.1" stroke="none" data-name="PasswordInputLabelProps" data-compartment="1">+children?: ReactNode</text>
|
|
1957
|
+
<text x="0.0" y="30.3" stroke="none" data-name="PasswordInputLabelProps" data-compartment="1">+className?: string</text>
|
|
1958
|
+
<text x="0.0" y="46.5" stroke="none" data-name="PasswordInputLabelProps" data-compartment="1">+isPageHeading?: boolean</text>
|
|
1959
|
+
|
|
1960
|
+
</g>
|
|
1961
|
+
</g>
|
|
1962
|
+
<g transform="translate(16955.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PasswordInputLabelProps" data-compartment="2">
|
|
1963
|
+
<g transform="translate(8, 8)" fill="#33322E" data-name="PasswordInputLabelProps" data-compartment="2">
|
|
1964
|
+
|
|
1965
|
+
</g>
|
|
1966
|
+
</g>
|
|
1967
|
+
</g>
|
|
1968
|
+
<g data-name="PasswordInputProps">
|
|
1969
|
+
<g fill="lightblue" stroke="#33322E" data-name="PasswordInputProps">
|
|
1970
|
+
<rect x="17225.5" y="0.0" height="396.0" width="375.0" data-name="PasswordInputProps"></rect>
|
|
1971
|
+
<path d="M17225.5 32.0 L17600.5 32.0" fill="none" data-name="PasswordInputProps"></path>
|
|
1972
|
+
<path d="M17225.5 388.0 L17600.5 388.0" fill="none" data-name="PasswordInputProps"></path>
|
|
1973
|
+
</g>
|
|
1974
|
+
<g transform="translate(17225.5, 0)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PasswordInputProps" data-compartment="0">
|
|
1975
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PasswordInputProps" data-compartment="0">
|
|
1976
|
+
<a id="../src/components/PasswordInput/PasswordInput.types.ts.PasswordInputProps" xlink:href="../src/components/PasswordInput/PasswordInput.types.ts"><text x="179.5" y="14.1" stroke="none" text-anchor="middle" data-name="PasswordInputProps" data-compartment="0">PasswordInputProps</text></a>
|
|
1977
|
+
|
|
1978
|
+
</g>
|
|
1979
|
+
</g>
|
|
1980
|
+
<g transform="translate(17225.5, 32)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PasswordInputProps" data-compartment="1">
|
|
1981
|
+
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PasswordInputProps" data-compartment="1">
|
|
1982
|
+
<text x="0.0" y="14.1" stroke="none" data-name="PasswordInputProps" data-compartment="1">+className?: string</text>
|
|
1983
|
+
<text x="0.0" y="30.3" stroke="none" data-name="PasswordInputProps" data-compartment="1">+aria-describedby?: string</text>
|
|
1984
|
+
<text x="0.0" y="46.5" stroke="none" data-name="PasswordInputProps" data-compartment="1">+errorMessage?: { [key: string]: unknown</text>
|
|
1985
|
+
<text x="0.0" y="62.7" stroke="none" data-name="PasswordInputProps" data-compartment="1">children?: ReactNode</text>
|
|
1986
|
+
<text x="0.0" y="78.9" stroke="none" data-name="PasswordInputProps" data-compartment="1">}</text>
|
|
1987
|
+
<text x="0.0" y="95.1" stroke="none" data-name="PasswordInputProps" data-compartment="1">+formGroup?: { [key: string]: unknown</text>
|
|
1988
|
+
<text x="0.0" y="111.3" stroke="none" data-name="PasswordInputProps" data-compartment="1">className?: string</text>
|
|
1989
|
+
<text x="0.0" y="127.5" stroke="none" data-name="PasswordInputProps" data-compartment="1">}</text>
|
|
1990
|
+
<text x="0.0" y="143.7" stroke="none" data-name="PasswordInputProps" data-compartment="1">+hint?: { [key: string]: unknown</text>
|
|
1991
|
+
<text x="0.0" y="159.9" stroke="none" data-name="PasswordInputProps" data-compartment="1">children?: ReactNode</text>
|
|
1992
|
+
<text x="0.0" y="176.1" stroke="none" data-name="PasswordInputProps" data-compartment="1">}</text>
|
|
1993
|
+
<text x="0.0" y="192.3" stroke="none" data-name="PasswordInputProps" data-compartment="1">+label?: PasswordInputLabelProps</text>
|
|
1994
|
+
<text x="0.0" y="208.5" stroke="none" data-name="PasswordInputProps" data-compartment="1">+name?: string</text>
|
|
1995
|
+
<text x="0.0" y="224.7" stroke="none" data-name="PasswordInputProps" data-compartment="1">+id?: string</text>
|
|
1996
|
+
<text x="0.0" y="240.9" stroke="none" data-name="PasswordInputProps" data-compartment="1">+autoComplete?: string</text>
|
|
1997
|
+
<text x="0.0" y="257.1" stroke="none" data-name="PasswordInputProps" data-compartment="1">+showPasswordText?: string</text>
|
|
1998
|
+
<text x="0.0" y="273.3" stroke="none" data-name="PasswordInputProps" data-compartment="1">+hidePasswordText?: string</text>
|
|
1999
|
+
<text x="0.0" y="289.5" stroke="none" data-name="PasswordInputProps" data-compartment="1">+showPasswordAriaLabelText?: string</text>
|
|
2000
|
+
<text x="0.0" y="305.7" stroke="none" data-name="PasswordInputProps" data-compartment="1">+hidePasswordAriaLabelText?: string</text>
|
|
2001
|
+
<text x="0.0" y="321.9" stroke="none" data-name="PasswordInputProps" data-compartment="1">+passwordShownAnnouncementText?: string</text>
|
|
2002
|
+
<text x="0.0" y="338.1" stroke="none" data-name="PasswordInputProps" data-compartment="1">+passwordHiddenAnnouncementText?: string</text>
|
|
2003
|
+
|
|
2004
|
+
</g>
|
|
2005
|
+
</g>
|
|
2006
|
+
<g transform="translate(17225.5, 388)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PasswordInputProps" data-compartment="2">
|
|
2007
|
+
<g transform="translate(8, 8)" fill="#33322E" data-name="PasswordInputProps" data-compartment="2">
|
|
2008
|
+
|
|
1850
2009
|
</g>
|
|
1851
2010
|
</g>
|
|
1852
2011
|
</g>
|
|
1853
2012
|
<g data-name="PDFJsProps">
|
|
1854
2013
|
<g fill="lightblue" stroke="#33322E" data-name="PDFJsProps">
|
|
1855
|
-
<rect x="
|
|
1856
|
-
<path d="
|
|
1857
|
-
<path d="
|
|
2014
|
+
<rect x="17640.5" y="113.5" height="169.0" width="504.0" data-name="PDFJsProps"></rect>
|
|
2015
|
+
<path d="M17640.5 145.5 L18144.5 145.5" fill="none" data-name="PDFJsProps"></path>
|
|
2016
|
+
<path d="M17640.5 274.5 L18144.5 274.5" fill="none" data-name="PDFJsProps"></path>
|
|
1858
2017
|
</g>
|
|
1859
|
-
<g transform="translate(
|
|
2018
|
+
<g transform="translate(17640.5, 113.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFJsProps" data-compartment="0">
|
|
1860
2019
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PDFJsProps" data-compartment="0">
|
|
1861
2020
|
<a id="../src/components/PDFViewer/PDFViewer.types.ts.PDFJsProps" xlink:href="../src/components/PDFViewer/PDFViewer.types.ts"><text x="244.0" y="14.1" stroke="none" text-anchor="middle" data-name="PDFJsProps" data-compartment="0">PDFJsProps</text></a>
|
|
1862
2021
|
|
|
1863
2022
|
</g>
|
|
1864
2023
|
</g>
|
|
1865
|
-
<g transform="translate(
|
|
2024
|
+
<g transform="translate(17640.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFJsProps" data-compartment="1">
|
|
1866
2025
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PDFJsProps" data-compartment="1">
|
|
1867
2026
|
<text x="0.0" y="14.1" stroke="none" data-name="PDFJsProps" data-compartment="1">+iframeId: string</text>
|
|
1868
2027
|
<text x="0.0" y="30.3" stroke="none" data-name="PDFJsProps" data-compartment="1">+source: string</text>
|
|
@@ -1874,7 +2033,7 @@
|
|
|
1874
2033
|
|
|
1875
2034
|
</g>
|
|
1876
2035
|
</g>
|
|
1877
|
-
<g transform="translate(
|
|
2036
|
+
<g transform="translate(17640.5, 274.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFJsProps" data-compartment="2">
|
|
1878
2037
|
<g transform="translate(8, 8)" fill="#33322E" data-name="PDFJsProps" data-compartment="2">
|
|
1879
2038
|
|
|
1880
2039
|
</g>
|
|
@@ -1882,17 +2041,17 @@
|
|
|
1882
2041
|
</g>
|
|
1883
2042
|
<g data-name="PDFViewerProps">
|
|
1884
2043
|
<g fill="lightblue" stroke="#33322E" data-name="PDFViewerProps">
|
|
1885
|
-
<rect x="
|
|
1886
|
-
<path d="
|
|
1887
|
-
<path d="
|
|
2044
|
+
<rect x="18184.5" y="105.0" height="186.0" width="596.0" data-name="PDFViewerProps"></rect>
|
|
2045
|
+
<path d="M18184.5 137.0 L18780.5 137.0" fill="none" data-name="PDFViewerProps"></path>
|
|
2046
|
+
<path d="M18184.5 283.0 L18780.5 283.0" fill="none" data-name="PDFViewerProps"></path>
|
|
1888
2047
|
</g>
|
|
1889
|
-
<g transform="translate(
|
|
2048
|
+
<g transform="translate(18184.5, 105)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFViewerProps" data-compartment="0">
|
|
1890
2049
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PDFViewerProps" data-compartment="0">
|
|
1891
2050
|
<a id="../src/components/PDFViewer/PDFViewer.types.ts.PDFViewerProps" xlink:href="../src/components/PDFViewer/PDFViewer.types.ts"><text x="290.0" y="14.1" stroke="none" text-anchor="middle" data-name="PDFViewerProps" data-compartment="0">PDFViewerProps</text></a>
|
|
1892
2051
|
|
|
1893
2052
|
</g>
|
|
1894
2053
|
</g>
|
|
1895
|
-
<g transform="translate(
|
|
2054
|
+
<g transform="translate(18184.5, 137)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFViewerProps" data-compartment="1">
|
|
1896
2055
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PDFViewerProps" data-compartment="1">
|
|
1897
2056
|
<text x="0.0" y="14.1" stroke="none" data-name="PDFViewerProps" data-compartment="1">+iframeId: string</text>
|
|
1898
2057
|
<text x="0.0" y="30.3" stroke="none" data-name="PDFViewerProps" data-compartment="1">+src: string</text>
|
|
@@ -1905,7 +2064,7 @@
|
|
|
1905
2064
|
|
|
1906
2065
|
</g>
|
|
1907
2066
|
</g>
|
|
1908
|
-
<g transform="translate(
|
|
2067
|
+
<g transform="translate(18184.5, 283)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFViewerProps" data-compartment="2">
|
|
1909
2068
|
<g transform="translate(8, 8)" fill="#33322E" data-name="PDFViewerProps" data-compartment="2">
|
|
1910
2069
|
|
|
1911
2070
|
</g>
|
|
@@ -1913,24 +2072,24 @@
|
|
|
1913
2072
|
</g>
|
|
1914
2073
|
<g data-name="SourceDeterminer">
|
|
1915
2074
|
<g fill="lightblue" stroke="#33322E" data-name="SourceDeterminer">
|
|
1916
|
-
<rect x="
|
|
1917
|
-
<path d="
|
|
1918
|
-
<path d="
|
|
2075
|
+
<rect x="18820.5" y="154.0" height="88.0" width="229.0" data-name="SourceDeterminer"></rect>
|
|
2076
|
+
<path d="M18820.5 186.0 L19049.5 186.0" fill="none" data-name="SourceDeterminer"></path>
|
|
2077
|
+
<path d="M18820.5 234.0 L19049.5 234.0" fill="none" data-name="SourceDeterminer"></path>
|
|
1919
2078
|
</g>
|
|
1920
|
-
<g transform="translate(
|
|
2079
|
+
<g transform="translate(18820.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SourceDeterminer" data-compartment="0">
|
|
1921
2080
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="SourceDeterminer" data-compartment="0">
|
|
1922
2081
|
<a id="../src/components/PDFViewer/PDFViewer.types.ts.SourceDeterminer" xlink:href="../src/components/PDFViewer/PDFViewer.types.ts"><text x="106.5" y="14.1" stroke="none" text-anchor="middle" data-name="SourceDeterminer" data-compartment="0">SourceDeterminer</text></a>
|
|
1923
2082
|
|
|
1924
2083
|
</g>
|
|
1925
2084
|
</g>
|
|
1926
|
-
<g transform="translate(
|
|
2085
|
+
<g transform="translate(18820.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SourceDeterminer" data-compartment="1">
|
|
1927
2086
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="SourceDeterminer" data-compartment="1">
|
|
1928
2087
|
<text x="0.0" y="14.1" stroke="none" data-name="SourceDeterminer" data-compartment="1">+isBase64Source: boolean</text>
|
|
1929
2088
|
<text x="0.0" y="30.3" stroke="none" data-name="SourceDeterminer" data-compartment="1">+source: string</text>
|
|
1930
2089
|
|
|
1931
2090
|
</g>
|
|
1932
2091
|
</g>
|
|
1933
|
-
<g transform="translate(
|
|
2092
|
+
<g transform="translate(18820.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SourceDeterminer" data-compartment="2">
|
|
1934
2093
|
<g transform="translate(8, 8)" fill="#33322E" data-name="SourceDeterminer" data-compartment="2">
|
|
1935
2094
|
|
|
1936
2095
|
</g>
|
|
@@ -1938,17 +2097,17 @@
|
|
|
1938
2097
|
</g>
|
|
1939
2098
|
<g data-name="PDFViewerCanvasProps">
|
|
1940
2099
|
<g fill="lightblue" stroke="#33322E" data-name="PDFViewerCanvasProps">
|
|
1941
|
-
<rect x="
|
|
1942
|
-
<path d="
|
|
1943
|
-
<path d="
|
|
2100
|
+
<rect x="19089.5" y="129.5" height="137.0" width="235.0" data-name="PDFViewerCanvasProps"></rect>
|
|
2101
|
+
<path d="M19089.5 161.5 L19324.5 161.5" fill="none" data-name="PDFViewerCanvasProps"></path>
|
|
2102
|
+
<path d="M19089.5 258.5 L19324.5 258.5" fill="none" data-name="PDFViewerCanvasProps"></path>
|
|
1944
2103
|
</g>
|
|
1945
|
-
<g transform="translate(
|
|
2104
|
+
<g transform="translate(19089.5, 129.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFViewerCanvasProps" data-compartment="0">
|
|
1946
2105
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PDFViewerCanvasProps" data-compartment="0">
|
|
1947
2106
|
<a id="../src/components/PDFViewerCanvas/PDFViewerCanvas.types.ts.PDFViewerCanvasProps" xlink:href="../src/components/PDFViewerCanvas/PDFViewerCanvas.types.ts"><text x="109.5" y="14.1" stroke="none" text-anchor="middle" data-name="PDFViewerCanvasProps" data-compartment="0">PDFViewerCanvasProps</text></a>
|
|
1948
2107
|
|
|
1949
2108
|
</g>
|
|
1950
2109
|
</g>
|
|
1951
|
-
<g transform="translate(
|
|
2110
|
+
<g transform="translate(19089.5, 161.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFViewerCanvasProps" data-compartment="1">
|
|
1952
2111
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PDFViewerCanvasProps" data-compartment="1">
|
|
1953
2112
|
<text x="0.0" y="14.1" stroke="none" data-name="PDFViewerCanvasProps" data-compartment="1">+src: string</text>
|
|
1954
2113
|
<text x="0.0" y="30.3" stroke="none" data-name="PDFViewerCanvasProps" data-compartment="1">+className?: string</text>
|
|
@@ -1958,7 +2117,7 @@
|
|
|
1958
2117
|
|
|
1959
2118
|
</g>
|
|
1960
2119
|
</g>
|
|
1961
|
-
<g transform="translate(
|
|
2120
|
+
<g transform="translate(19089.5, 258.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PDFViewerCanvasProps" data-compartment="2">
|
|
1962
2121
|
<g transform="translate(8, 8)" fill="#33322E" data-name="PDFViewerCanvasProps" data-compartment="2">
|
|
1963
2122
|
|
|
1964
2123
|
</g>
|
|
@@ -1966,17 +2125,17 @@
|
|
|
1966
2125
|
</g>
|
|
1967
2126
|
<g data-name="PhaseBannerProps">
|
|
1968
2127
|
<g fill="lightblue" stroke="#33322E" data-name="PhaseBannerProps">
|
|
1969
|
-
<rect x="
|
|
1970
|
-
<path d="
|
|
1971
|
-
<path d="
|
|
2128
|
+
<rect x="19364.5" y="145.5" height="105.0" width="187.0" data-name="PhaseBannerProps"></rect>
|
|
2129
|
+
<path d="M19364.5 177.5 L19551.5 177.5" fill="none" data-name="PhaseBannerProps"></path>
|
|
2130
|
+
<path d="M19364.5 242.5 L19551.5 242.5" fill="none" data-name="PhaseBannerProps"></path>
|
|
1972
2131
|
</g>
|
|
1973
|
-
<g transform="translate(
|
|
2132
|
+
<g transform="translate(19364.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PhaseBannerProps" data-compartment="0">
|
|
1974
2133
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="PhaseBannerProps" data-compartment="0">
|
|
1975
2134
|
<a id="../src/components/PhaseBanner/PhaseBanner.types.ts.PhaseBannerProps" xlink:href="../src/components/PhaseBanner/PhaseBanner.types.ts"><text x="85.5" y="14.1" stroke="none" text-anchor="middle" data-name="PhaseBannerProps" data-compartment="0">PhaseBannerProps</text></a>
|
|
1976
2135
|
|
|
1977
2136
|
</g>
|
|
1978
2137
|
</g>
|
|
1979
|
-
<g transform="translate(
|
|
2138
|
+
<g transform="translate(19364.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PhaseBannerProps" data-compartment="1">
|
|
1980
2139
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="PhaseBannerProps" data-compartment="1">
|
|
1981
2140
|
<text x="0.0" y="14.1" stroke="none" data-name="PhaseBannerProps" data-compartment="1">+className?: string</text>
|
|
1982
2141
|
<text x="0.0" y="30.3" stroke="none" data-name="PhaseBannerProps" data-compartment="1">+tag?: TagProps</text>
|
|
@@ -1984,7 +2143,7 @@
|
|
|
1984
2143
|
|
|
1985
2144
|
</g>
|
|
1986
2145
|
</g>
|
|
1987
|
-
<g transform="translate(
|
|
2146
|
+
<g transform="translate(19364.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="PhaseBannerProps" data-compartment="2">
|
|
1988
2147
|
<g transform="translate(8, 8)" fill="#33322E" data-name="PhaseBannerProps" data-compartment="2">
|
|
1989
2148
|
|
|
1990
2149
|
</g>
|
|
@@ -1992,17 +2151,17 @@
|
|
|
1992
2151
|
</g>
|
|
1993
2152
|
<g data-name="ProblemWithServiceProps">
|
|
1994
2153
|
<g fill="lightblue" stroke="#33322E" data-name="ProblemWithServiceProps">
|
|
1995
|
-
<rect x="
|
|
1996
|
-
<path d="
|
|
1997
|
-
<path d="
|
|
2154
|
+
<rect x="19591.5" y="129.5" height="137.0" width="223.0" data-name="ProblemWithServiceProps"></rect>
|
|
2155
|
+
<path d="M19591.5 161.5 L19814.5 161.5" fill="none" data-name="ProblemWithServiceProps"></path>
|
|
2156
|
+
<path d="M19591.5 258.5 L19814.5 258.5" fill="none" data-name="ProblemWithServiceProps"></path>
|
|
1998
2157
|
</g>
|
|
1999
|
-
<g transform="translate(
|
|
2158
|
+
<g transform="translate(19591.5, 129.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ProblemWithServiceProps" data-compartment="0">
|
|
2000
2159
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ProblemWithServiceProps" data-compartment="0">
|
|
2001
2160
|
<a id="../src/components/ProblemWithService/ProblemWithService.types.ts.ProblemWithServiceProps" xlink:href="../src/components/ProblemWithService/ProblemWithService.types.ts"><text x="103.5" y="14.1" stroke="none" text-anchor="middle" data-name="ProblemWithServiceProps" data-compartment="0">ProblemWithServiceProps</text></a>
|
|
2002
2161
|
|
|
2003
2162
|
</g>
|
|
2004
2163
|
</g>
|
|
2005
|
-
<g transform="translate(
|
|
2164
|
+
<g transform="translate(19591.5, 161.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ProblemWithServiceProps" data-compartment="1">
|
|
2006
2165
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ProblemWithServiceProps" data-compartment="1">
|
|
2007
2166
|
<text x="0.0" y="14.1" stroke="none" data-name="ProblemWithServiceProps" data-compartment="1">+message?: string</text>
|
|
2008
2167
|
<text x="0.0" y="30.3" stroke="none" data-name="ProblemWithServiceProps" data-compartment="1">+applicationName?: string</text>
|
|
@@ -2012,7 +2171,7 @@
|
|
|
2012
2171
|
|
|
2013
2172
|
</g>
|
|
2014
2173
|
</g>
|
|
2015
|
-
<g transform="translate(
|
|
2174
|
+
<g transform="translate(19591.5, 258.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ProblemWithServiceProps" data-compartment="2">
|
|
2016
2175
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ProblemWithServiceProps" data-compartment="2">
|
|
2017
2176
|
|
|
2018
2177
|
</g>
|
|
@@ -2020,17 +2179,17 @@
|
|
|
2020
2179
|
</g>
|
|
2021
2180
|
<g data-name="RadiosProps">
|
|
2022
2181
|
<g fill="lightblue" stroke="#33322E" data-name="RadiosProps">
|
|
2023
|
-
<rect x="
|
|
2024
|
-
<path d="
|
|
2025
|
-
<path d="
|
|
2182
|
+
<rect x="19854.5" y="145.5" height="105.0" width="197.0" data-name="RadiosProps"></rect>
|
|
2183
|
+
<path d="M19854.5 177.5 L20051.5 177.5" fill="none" data-name="RadiosProps"></path>
|
|
2184
|
+
<path d="M19854.5 242.5 L20051.5 242.5" fill="none" data-name="RadiosProps"></path>
|
|
2026
2185
|
</g>
|
|
2027
|
-
<g transform="translate(
|
|
2186
|
+
<g transform="translate(19854.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="RadiosProps" data-compartment="0">
|
|
2028
2187
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="RadiosProps" data-compartment="0">
|
|
2029
2188
|
<a id="../src/components/Radios/Radios.types.ts.RadiosProps" xlink:href="../src/components/Radios/Radios.types.ts"><text x="90.5" y="14.1" stroke="none" text-anchor="middle" data-name="RadiosProps" data-compartment="0">RadiosProps</text></a>
|
|
2030
2189
|
|
|
2031
2190
|
</g>
|
|
2032
2191
|
</g>
|
|
2033
|
-
<g transform="translate(
|
|
2192
|
+
<g transform="translate(19854.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="RadiosProps" data-compartment="1">
|
|
2034
2193
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="RadiosProps" data-compartment="1">
|
|
2035
2194
|
<text x="0.0" y="14.1" stroke="none" data-name="RadiosProps" data-compartment="1">+value?: string</text>
|
|
2036
2195
|
<text x="0.0" y="30.3" stroke="none" data-name="RadiosProps" data-compartment="1">+defaultValue?: string</text>
|
|
@@ -2038,7 +2197,7 @@
|
|
|
2038
2197
|
|
|
2039
2198
|
</g>
|
|
2040
2199
|
</g>
|
|
2041
|
-
<g transform="translate(
|
|
2200
|
+
<g transform="translate(19854.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="RadiosProps" data-compartment="2">
|
|
2042
2201
|
<g transform="translate(8, 8)" fill="#33322E" data-name="RadiosProps" data-compartment="2">
|
|
2043
2202
|
|
|
2044
2203
|
</g>
|
|
@@ -2046,24 +2205,24 @@
|
|
|
2046
2205
|
</g>
|
|
2047
2206
|
<g data-name="Option">
|
|
2048
2207
|
<g fill="lightblue" stroke="#33322E" data-name="Option">
|
|
2049
|
-
<rect x="
|
|
2050
|
-
<path d="
|
|
2051
|
-
<path d="
|
|
2208
|
+
<rect x="20091.5" y="154.0" height="88.0" width="263.0" data-name="Option"></rect>
|
|
2209
|
+
<path d="M20091.5 186.0 L20354.5 186.0" fill="none" data-name="Option"></path>
|
|
2210
|
+
<path d="M20091.5 234.0 L20354.5 234.0" fill="none" data-name="Option"></path>
|
|
2052
2211
|
</g>
|
|
2053
|
-
<g transform="translate(
|
|
2212
|
+
<g transform="translate(20091.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Option" data-compartment="0">
|
|
2054
2213
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="Option" data-compartment="0">
|
|
2055
2214
|
<a id="../src/components/Select/Select.types.ts.Option" xlink:href="../src/components/Select/Select.types.ts"><text x="123.5" y="14.1" stroke="none" text-anchor="middle" data-name="Option" data-compartment="0">Option</text></a>
|
|
2056
2215
|
|
|
2057
2216
|
</g>
|
|
2058
2217
|
</g>
|
|
2059
|
-
<g transform="translate(
|
|
2218
|
+
<g transform="translate(20091.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Option" data-compartment="1">
|
|
2060
2219
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="Option" data-compartment="1">
|
|
2061
2220
|
<text x="0.0" y="14.1" stroke="none" data-name="Option" data-compartment="1">+reactListKey?: string | number</text>
|
|
2062
2221
|
<text x="0.0" y="30.3" stroke="none" data-name="Option" data-compartment="1">+children: ReactNode</text>
|
|
2063
2222
|
|
|
2064
2223
|
</g>
|
|
2065
2224
|
</g>
|
|
2066
|
-
<g transform="translate(
|
|
2225
|
+
<g transform="translate(20091.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Option" data-compartment="2">
|
|
2067
2226
|
<g transform="translate(8, 8)" fill="#33322E" data-name="Option" data-compartment="2">
|
|
2068
2227
|
|
|
2069
2228
|
</g>
|
|
@@ -2071,17 +2230,17 @@
|
|
|
2071
2230
|
</g>
|
|
2072
2231
|
<g data-name="SelectProps">
|
|
2073
2232
|
<g fill="lightblue" stroke="#33322E" data-name="SelectProps">
|
|
2074
|
-
<rect x="
|
|
2075
|
-
<path d="
|
|
2076
|
-
<path d="
|
|
2233
|
+
<rect x="20394.5" y="89.0" height="218.0" width="314.0" data-name="SelectProps"></rect>
|
|
2234
|
+
<path d="M20394.5 121.0 L20708.5 121.0" fill="none" data-name="SelectProps"></path>
|
|
2235
|
+
<path d="M20394.5 299.0 L20708.5 299.0" fill="none" data-name="SelectProps"></path>
|
|
2077
2236
|
</g>
|
|
2078
|
-
<g transform="translate(
|
|
2237
|
+
<g transform="translate(20394.5, 89)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SelectProps" data-compartment="0">
|
|
2079
2238
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="SelectProps" data-compartment="0">
|
|
2080
2239
|
<a id="../src/components/Select/Select.types.ts.SelectProps" xlink:href="../src/components/Select/Select.types.ts"><text x="149.0" y="14.1" stroke="none" text-anchor="middle" data-name="SelectProps" data-compartment="0">SelectProps</text></a>
|
|
2081
2240
|
|
|
2082
2241
|
</g>
|
|
2083
2242
|
</g>
|
|
2084
|
-
<g transform="translate(
|
|
2243
|
+
<g transform="translate(20394.5, 121)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SelectProps" data-compartment="1">
|
|
2085
2244
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="SelectProps" data-compartment="1">
|
|
2086
2245
|
<text x="0.0" y="14.1" stroke="none" data-name="SelectProps" data-compartment="1">+className?: string</text>
|
|
2087
2246
|
<text x="0.0" y="30.3" stroke="none" data-name="SelectProps" data-compartment="1">+aria-describedby?: string</text>
|
|
@@ -2096,7 +2255,7 @@
|
|
|
2096
2255
|
|
|
2097
2256
|
</g>
|
|
2098
2257
|
</g>
|
|
2099
|
-
<g transform="translate(
|
|
2258
|
+
<g transform="translate(20394.5, 299)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SelectProps" data-compartment="2">
|
|
2100
2259
|
<g transform="translate(8, 8)" fill="#33322E" data-name="SelectProps" data-compartment="2">
|
|
2101
2260
|
|
|
2102
2261
|
</g>
|
|
@@ -2104,17 +2263,17 @@
|
|
|
2104
2263
|
</g>
|
|
2105
2264
|
<g data-name="ServiceNavigationProps">
|
|
2106
2265
|
<g fill="lightblue" stroke="#33322E" data-name="ServiceNavigationProps">
|
|
2107
|
-
<rect x="
|
|
2108
|
-
<path d="
|
|
2109
|
-
<path d="
|
|
2266
|
+
<rect x="20748.5" y="97.0" height="202.0" width="262.0" data-name="ServiceNavigationProps"></rect>
|
|
2267
|
+
<path d="M20748.5 129.0 L21010.5 129.0" fill="none" data-name="ServiceNavigationProps"></path>
|
|
2268
|
+
<path d="M20748.5 291.0 L21010.5 291.0" fill="none" data-name="ServiceNavigationProps"></path>
|
|
2110
2269
|
</g>
|
|
2111
|
-
<g transform="translate(
|
|
2270
|
+
<g transform="translate(20748.5, 97)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ServiceNavigationProps" data-compartment="0">
|
|
2112
2271
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="ServiceNavigationProps" data-compartment="0">
|
|
2113
2272
|
<a id="../src/components/ServiceNavigation/ServiceNavigation.types.ts.ServiceNavigationProps" xlink:href="../src/components/ServiceNavigation/ServiceNavigation.types.ts"><text x="123.0" y="14.1" stroke="none" text-anchor="middle" data-name="ServiceNavigationProps" data-compartment="0">ServiceNavigationProps</text></a>
|
|
2114
2273
|
|
|
2115
2274
|
</g>
|
|
2116
2275
|
</g>
|
|
2117
|
-
<g transform="translate(
|
|
2276
|
+
<g transform="translate(20748.5, 129)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ServiceNavigationProps" data-compartment="1">
|
|
2118
2277
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="ServiceNavigationProps" data-compartment="1">
|
|
2119
2278
|
<text x="0.0" y="14.1" stroke="none" data-name="ServiceNavigationProps" data-compartment="1">+className?: string</text>
|
|
2120
2279
|
<text x="0.0" y="30.3" stroke="none" data-name="ServiceNavigationProps" data-compartment="1">+containerClassName?: string</text>
|
|
@@ -2128,7 +2287,7 @@
|
|
|
2128
2287
|
|
|
2129
2288
|
</g>
|
|
2130
2289
|
</g>
|
|
2131
|
-
<g transform="translate(
|
|
2290
|
+
<g transform="translate(20748.5, 291)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="ServiceNavigationProps" data-compartment="2">
|
|
2132
2291
|
<g transform="translate(8, 8)" fill="#33322E" data-name="ServiceNavigationProps" data-compartment="2">
|
|
2133
2292
|
|
|
2134
2293
|
</g>
|
|
@@ -2136,17 +2295,17 @@
|
|
|
2136
2295
|
</g>
|
|
2137
2296
|
<g data-name="SkipLinkProps">
|
|
2138
2297
|
<g fill="lightblue" stroke="#33322E" data-name="SkipLinkProps">
|
|
2139
|
-
<rect x="
|
|
2140
|
-
<path d="
|
|
2141
|
-
<path d="
|
|
2298
|
+
<rect x="21050.5" y="145.5" height="105.0" width="197.0" data-name="SkipLinkProps"></rect>
|
|
2299
|
+
<path d="M21050.5 177.5 L21247.5 177.5" fill="none" data-name="SkipLinkProps"></path>
|
|
2300
|
+
<path d="M21050.5 242.5 L21247.5 242.5" fill="none" data-name="SkipLinkProps"></path>
|
|
2142
2301
|
</g>
|
|
2143
|
-
<g transform="translate(
|
|
2302
|
+
<g transform="translate(21050.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SkipLinkProps" data-compartment="0">
|
|
2144
2303
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="SkipLinkProps" data-compartment="0">
|
|
2145
2304
|
<a id="../src/components/SkipLink/SkipLink.types.ts.SkipLinkProps" xlink:href="../src/components/SkipLink/SkipLink.types.ts"><text x="90.5" y="14.1" stroke="none" text-anchor="middle" data-name="SkipLinkProps" data-compartment="0">SkipLinkProps</text></a>
|
|
2146
2305
|
|
|
2147
2306
|
</g>
|
|
2148
2307
|
</g>
|
|
2149
|
-
<g transform="translate(
|
|
2308
|
+
<g transform="translate(21050.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SkipLinkProps" data-compartment="1">
|
|
2150
2309
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="SkipLinkProps" data-compartment="1">
|
|
2151
2310
|
<text x="0.0" y="14.1" stroke="none" data-name="SkipLinkProps" data-compartment="1">+href: string</text>
|
|
2152
2311
|
<text x="0.0" y="30.3" stroke="none" data-name="SkipLinkProps" data-compartment="1">+className: string</text>
|
|
@@ -2154,7 +2313,7 @@
|
|
|
2154
2313
|
|
|
2155
2314
|
</g>
|
|
2156
2315
|
</g>
|
|
2157
|
-
<g transform="translate(
|
|
2316
|
+
<g transform="translate(21050.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SkipLinkProps" data-compartment="2">
|
|
2158
2317
|
<g transform="translate(8, 8)" fill="#33322E" data-name="SkipLinkProps" data-compartment="2">
|
|
2159
2318
|
|
|
2160
2319
|
</g>
|
|
@@ -2162,17 +2321,17 @@
|
|
|
2162
2321
|
</g>
|
|
2163
2322
|
<g data-name="Row">
|
|
2164
2323
|
<g fill="lightblue" stroke="#33322E" data-name="Row">
|
|
2165
|
-
<rect x="
|
|
2166
|
-
<path d="
|
|
2167
|
-
<path d="
|
|
2324
|
+
<rect x="21287.5" y="81.0" height="234.0" width="251.0" data-name="Row"></rect>
|
|
2325
|
+
<path d="M21287.5 113.0 L21538.5 113.0" fill="none" data-name="Row"></path>
|
|
2326
|
+
<path d="M21287.5 307.0 L21538.5 307.0" fill="none" data-name="Row"></path>
|
|
2168
2327
|
</g>
|
|
2169
|
-
<g transform="translate(
|
|
2328
|
+
<g transform="translate(21287.5, 81)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Row" data-compartment="0">
|
|
2170
2329
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="Row" data-compartment="0">
|
|
2171
2330
|
<a id="../src/components/SummaryList/SummaryList.types.ts.Row" xlink:href="../src/components/SummaryList/SummaryList.types.ts"><text x="117.5" y="14.1" stroke="none" text-anchor="middle" data-name="Row" data-compartment="0">Row</text></a>
|
|
2172
2331
|
|
|
2173
2332
|
</g>
|
|
2174
2333
|
</g>
|
|
2175
|
-
<g transform="translate(
|
|
2334
|
+
<g transform="translate(21287.5, 113)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Row" data-compartment="1">
|
|
2176
2335
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="Row" data-compartment="1">
|
|
2177
2336
|
<text x="0.0" y="14.1" stroke="none" data-name="Row" data-compartment="1">+reactListKey?: string</text>
|
|
2178
2337
|
<text x="0.0" y="30.3" stroke="none" data-name="Row" data-compartment="1">+key?: { className?: string</text>
|
|
@@ -2188,7 +2347,7 @@
|
|
|
2188
2347
|
|
|
2189
2348
|
</g>
|
|
2190
2349
|
</g>
|
|
2191
|
-
<g transform="translate(
|
|
2350
|
+
<g transform="translate(21287.5, 307)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="Row" data-compartment="2">
|
|
2192
2351
|
<g transform="translate(8, 8)" fill="#33322E" data-name="Row" data-compartment="2">
|
|
2193
2352
|
|
|
2194
2353
|
</g>
|
|
@@ -2196,24 +2355,24 @@
|
|
|
2196
2355
|
</g>
|
|
2197
2356
|
<g data-name="SummaryListProps">
|
|
2198
2357
|
<g fill="lightblue" stroke="#33322E" data-name="SummaryListProps">
|
|
2199
|
-
<rect x="
|
|
2200
|
-
<path d="
|
|
2201
|
-
<path d="
|
|
2358
|
+
<rect x="21578.5" y="154.0" height="88.0" width="177.0" data-name="SummaryListProps"></rect>
|
|
2359
|
+
<path d="M21578.5 186.0 L21755.5 186.0" fill="none" data-name="SummaryListProps"></path>
|
|
2360
|
+
<path d="M21578.5 234.0 L21755.5 234.0" fill="none" data-name="SummaryListProps"></path>
|
|
2202
2361
|
</g>
|
|
2203
|
-
<g transform="translate(
|
|
2362
|
+
<g transform="translate(21578.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SummaryListProps" data-compartment="0">
|
|
2204
2363
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="SummaryListProps" data-compartment="0">
|
|
2205
2364
|
<a id="../src/components/SummaryList/SummaryList.types.ts.SummaryListProps" xlink:href="../src/components/SummaryList/SummaryList.types.ts"><text x="80.5" y="14.1" stroke="none" text-anchor="middle" data-name="SummaryListProps" data-compartment="0">SummaryListProps</text></a>
|
|
2206
2365
|
|
|
2207
2366
|
</g>
|
|
2208
2367
|
</g>
|
|
2209
|
-
<g transform="translate(
|
|
2368
|
+
<g transform="translate(21578.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SummaryListProps" data-compartment="1">
|
|
2210
2369
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="SummaryListProps" data-compartment="1">
|
|
2211
2370
|
<text x="0.0" y="14.1" stroke="none" data-name="SummaryListProps" data-compartment="1">+className?: string</text>
|
|
2212
2371
|
<text x="0.0" y="30.3" stroke="none" data-name="SummaryListProps" data-compartment="1">+rows?: Row[]</text>
|
|
2213
2372
|
|
|
2214
2373
|
</g>
|
|
2215
2374
|
</g>
|
|
2216
|
-
<g transform="translate(
|
|
2375
|
+
<g transform="translate(21578.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="SummaryListProps" data-compartment="2">
|
|
2217
2376
|
<g transform="translate(8, 8)" fill="#33322E" data-name="SummaryListProps" data-compartment="2">
|
|
2218
2377
|
|
|
2219
2378
|
</g>
|
|
@@ -2221,17 +2380,17 @@
|
|
|
2221
2380
|
</g>
|
|
2222
2381
|
<g data-name="TableItem">
|
|
2223
2382
|
<g fill="lightblue" stroke="#33322E" data-name="TableItem">
|
|
2224
|
-
<rect x="
|
|
2225
|
-
<path d="
|
|
2226
|
-
<path d="
|
|
2383
|
+
<rect x="21795.5" y="137.5" height="121.0" width="263.0" data-name="TableItem"></rect>
|
|
2384
|
+
<path d="M21795.5 169.5 L22058.5 169.5" fill="none" data-name="TableItem"></path>
|
|
2385
|
+
<path d="M21795.5 250.5 L22058.5 250.5" fill="none" data-name="TableItem"></path>
|
|
2227
2386
|
</g>
|
|
2228
|
-
<g transform="translate(
|
|
2387
|
+
<g transform="translate(21795.5, 137.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableItem" data-compartment="0">
|
|
2229
2388
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TableItem" data-compartment="0">
|
|
2230
2389
|
<a id="../src/components/Table/Table.types.ts.TableItem" xlink:href="../src/components/Table/Table.types.ts"><text x="123.5" y="14.1" stroke="none" text-anchor="middle" data-name="TableItem" data-compartment="0">TableItem</text></a>
|
|
2231
2390
|
|
|
2232
2391
|
</g>
|
|
2233
2392
|
</g>
|
|
2234
|
-
<g transform="translate(
|
|
2393
|
+
<g transform="translate(21795.5, 169.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableItem" data-compartment="1">
|
|
2235
2394
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TableItem" data-compartment="1">
|
|
2236
2395
|
<text x="0.0" y="14.1" stroke="none" data-name="TableItem" data-compartment="1">+className?: string</text>
|
|
2237
2396
|
<text x="0.0" y="30.3" stroke="none" data-name="TableItem" data-compartment="1">+format?: string</text>
|
|
@@ -2240,7 +2399,7 @@
|
|
|
2240
2399
|
|
|
2241
2400
|
</g>
|
|
2242
2401
|
</g>
|
|
2243
|
-
<g transform="translate(
|
|
2402
|
+
<g transform="translate(21795.5, 250.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableItem" data-compartment="2">
|
|
2244
2403
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TableItem" data-compartment="2">
|
|
2245
2404
|
|
|
2246
2405
|
</g>
|
|
@@ -2248,24 +2407,24 @@
|
|
|
2248
2407
|
</g>
|
|
2249
2408
|
<g data-name="TableRow">
|
|
2250
2409
|
<g fill="lightblue" stroke="#33322E" data-name="TableRow">
|
|
2251
|
-
<rect x="
|
|
2252
|
-
<path d="
|
|
2253
|
-
<path d="
|
|
2410
|
+
<rect x="22098.5" y="154.0" height="88.0" width="263.0" data-name="TableRow"></rect>
|
|
2411
|
+
<path d="M22098.5 186.0 L22361.5 186.0" fill="none" data-name="TableRow"></path>
|
|
2412
|
+
<path d="M22098.5 234.0 L22361.5 234.0" fill="none" data-name="TableRow"></path>
|
|
2254
2413
|
</g>
|
|
2255
|
-
<g transform="translate(
|
|
2414
|
+
<g transform="translate(22098.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableRow" data-compartment="0">
|
|
2256
2415
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TableRow" data-compartment="0">
|
|
2257
2416
|
<a id="../src/components/Table/Table.types.ts.TableRow" xlink:href="../src/components/Table/Table.types.ts"><text x="123.5" y="14.1" stroke="none" text-anchor="middle" data-name="TableRow" data-compartment="0">TableRow</text></a>
|
|
2258
2417
|
|
|
2259
2418
|
</g>
|
|
2260
2419
|
</g>
|
|
2261
|
-
<g transform="translate(
|
|
2420
|
+
<g transform="translate(22098.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableRow" data-compartment="1">
|
|
2262
2421
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TableRow" data-compartment="1">
|
|
2263
2422
|
<text x="0.0" y="14.1" stroke="none" data-name="TableRow" data-compartment="1">+cells: TableItem[]</text>
|
|
2264
2423
|
<text x="0.0" y="30.3" stroke="none" data-name="TableRow" data-compartment="1">+reactListKey?: string | number</text>
|
|
2265
2424
|
|
|
2266
2425
|
</g>
|
|
2267
2426
|
</g>
|
|
2268
|
-
<g transform="translate(
|
|
2427
|
+
<g transform="translate(22098.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableRow" data-compartment="2">
|
|
2269
2428
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TableRow" data-compartment="2">
|
|
2270
2429
|
|
|
2271
2430
|
</g>
|
|
@@ -2273,17 +2432,17 @@
|
|
|
2273
2432
|
</g>
|
|
2274
2433
|
<g data-name="TableProps">
|
|
2275
2434
|
<g fill="lightblue" stroke="#33322E" data-name="TableProps">
|
|
2276
|
-
<rect x="
|
|
2277
|
-
<path d="
|
|
2278
|
-
<path d="
|
|
2435
|
+
<rect x="7210.5" y="501.0" height="169.0" width="241.0" data-name="TableProps"></rect>
|
|
2436
|
+
<path d="M7210.5 533.0 L7451.5 533.0" fill="none" data-name="TableProps"></path>
|
|
2437
|
+
<path d="M7210.5 662.0 L7451.5 662.0" fill="none" data-name="TableProps"></path>
|
|
2279
2438
|
</g>
|
|
2280
|
-
<g transform="translate(
|
|
2439
|
+
<g transform="translate(7210.5, 501)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableProps" data-compartment="0">
|
|
2281
2440
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TableProps" data-compartment="0">
|
|
2282
2441
|
<a id="../src/components/Table/Table.types.ts.TableProps" xlink:href="../src/components/Table/Table.types.ts"><text x="112.5" y="14.1" stroke="none" text-anchor="middle" data-name="TableProps" data-compartment="0">TableProps</text></a>
|
|
2283
2442
|
|
|
2284
2443
|
</g>
|
|
2285
2444
|
</g>
|
|
2286
|
-
<g transform="translate(
|
|
2445
|
+
<g transform="translate(7210.5, 533)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableProps" data-compartment="1">
|
|
2287
2446
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TableProps" data-compartment="1">
|
|
2288
2447
|
<text x="0.0" y="14.1" stroke="none" data-name="TableProps" data-compartment="1">+caption?: string</text>
|
|
2289
2448
|
<text x="0.0" y="30.3" stroke="none" data-name="TableProps" data-compartment="1">+captionClassName?: string</text>
|
|
@@ -2295,7 +2454,7 @@
|
|
|
2295
2454
|
|
|
2296
2455
|
</g>
|
|
2297
2456
|
</g>
|
|
2298
|
-
<g transform="translate(
|
|
2457
|
+
<g transform="translate(7210.5, 662)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TableProps" data-compartment="2">
|
|
2299
2458
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TableProps" data-compartment="2">
|
|
2300
2459
|
|
|
2301
2460
|
</g>
|
|
@@ -2303,17 +2462,17 @@
|
|
|
2303
2462
|
</g>
|
|
2304
2463
|
<g data-name="TabItem">
|
|
2305
2464
|
<g fill="lightblue" stroke="#33322E" data-name="TabItem">
|
|
2306
|
-
<rect x="
|
|
2307
|
-
<path d="
|
|
2308
|
-
<path d="
|
|
2465
|
+
<rect x="22401.5" y="145.5" height="105.0" width="356.0" data-name="TabItem"></rect>
|
|
2466
|
+
<path d="M22401.5 177.5 L22757.5 177.5" fill="none" data-name="TabItem"></path>
|
|
2467
|
+
<path d="M22401.5 242.5 L22757.5 242.5" fill="none" data-name="TabItem"></path>
|
|
2309
2468
|
</g>
|
|
2310
|
-
<g transform="translate(
|
|
2469
|
+
<g transform="translate(22401.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TabItem" data-compartment="0">
|
|
2311
2470
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TabItem" data-compartment="0">
|
|
2312
2471
|
<a id="../src/components/Tabs/Tabs.types.ts.TabItem" xlink:href="../src/components/Tabs/Tabs.types.ts"><text x="170.0" y="14.1" stroke="none" text-anchor="middle" data-name="TabItem" data-compartment="0">TabItem</text></a>
|
|
2313
2472
|
|
|
2314
2473
|
</g>
|
|
2315
2474
|
</g>
|
|
2316
|
-
<g transform="translate(
|
|
2475
|
+
<g transform="translate(22401.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TabItem" data-compartment="1">
|
|
2317
2476
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TabItem" data-compartment="1">
|
|
2318
2477
|
<text x="0.0" y="14.1" stroke="none" data-name="TabItem" data-compartment="1">+id?: string</text>
|
|
2319
2478
|
<text x="0.0" y="30.3" stroke="none" data-name="TabItem" data-compartment="1">+label: string</text>
|
|
@@ -2321,7 +2480,7 @@
|
|
|
2321
2480
|
|
|
2322
2481
|
</g>
|
|
2323
2482
|
</g>
|
|
2324
|
-
<g transform="translate(
|
|
2483
|
+
<g transform="translate(22401.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TabItem" data-compartment="2">
|
|
2325
2484
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TabItem" data-compartment="2">
|
|
2326
2485
|
|
|
2327
2486
|
</g>
|
|
@@ -2329,17 +2488,17 @@
|
|
|
2329
2488
|
</g>
|
|
2330
2489
|
<g data-name="TabsProps">
|
|
2331
2490
|
<g fill="lightblue" stroke="#33322E" data-name="TabsProps">
|
|
2332
|
-
<rect x="
|
|
2333
|
-
<path d="
|
|
2334
|
-
<path d="
|
|
2491
|
+
<rect x="7491.5" y="517.0" height="137.0" width="177.0" data-name="TabsProps"></rect>
|
|
2492
|
+
<path d="M7491.5 549.0 L7668.5 549.0" fill="none" data-name="TabsProps"></path>
|
|
2493
|
+
<path d="M7491.5 646.0 L7668.5 646.0" fill="none" data-name="TabsProps"></path>
|
|
2335
2494
|
</g>
|
|
2336
|
-
<g transform="translate(
|
|
2495
|
+
<g transform="translate(7491.5, 517)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TabsProps" data-compartment="0">
|
|
2337
2496
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TabsProps" data-compartment="0">
|
|
2338
2497
|
<a id="../src/components/Tabs/Tabs.types.ts.TabsProps" xlink:href="../src/components/Tabs/Tabs.types.ts"><text x="80.5" y="14.1" stroke="none" text-anchor="middle" data-name="TabsProps" data-compartment="0">TabsProps</text></a>
|
|
2339
2498
|
|
|
2340
2499
|
</g>
|
|
2341
2500
|
</g>
|
|
2342
|
-
<g transform="translate(
|
|
2501
|
+
<g transform="translate(7491.5, 549)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TabsProps" data-compartment="1">
|
|
2343
2502
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TabsProps" data-compartment="1">
|
|
2344
2503
|
<text x="0.0" y="14.1" stroke="none" data-name="TabsProps" data-compartment="1">+className?: string</text>
|
|
2345
2504
|
<text x="0.0" y="30.3" stroke="none" data-name="TabsProps" data-compartment="1">+id: string</text>
|
|
@@ -2349,7 +2508,7 @@
|
|
|
2349
2508
|
|
|
2350
2509
|
</g>
|
|
2351
2510
|
</g>
|
|
2352
|
-
<g transform="translate(
|
|
2511
|
+
<g transform="translate(7491.5, 646)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TabsProps" data-compartment="2">
|
|
2353
2512
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TabsProps" data-compartment="2">
|
|
2354
2513
|
|
|
2355
2514
|
</g>
|
|
@@ -2357,24 +2516,24 @@
|
|
|
2357
2516
|
</g>
|
|
2358
2517
|
<g data-name="TagProps">
|
|
2359
2518
|
<g fill="lightblue" stroke="#33322E" data-name="TagProps">
|
|
2360
|
-
<rect x="
|
|
2361
|
-
<path d="
|
|
2362
|
-
<path d="
|
|
2519
|
+
<rect x="22797.5" y="154.0" height="88.0" width="197.0" data-name="TagProps"></rect>
|
|
2520
|
+
<path d="M22797.5 186.0 L22994.5 186.0" fill="none" data-name="TagProps"></path>
|
|
2521
|
+
<path d="M22797.5 234.0 L22994.5 234.0" fill="none" data-name="TagProps"></path>
|
|
2363
2522
|
</g>
|
|
2364
|
-
<g transform="translate(
|
|
2523
|
+
<g transform="translate(22797.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TagProps" data-compartment="0">
|
|
2365
2524
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TagProps" data-compartment="0">
|
|
2366
2525
|
<a id="../src/components/Tag/Tag.types.ts.TagProps" xlink:href="../src/components/Tag/Tag.types.ts"><text x="90.5" y="14.1" stroke="none" text-anchor="middle" data-name="TagProps" data-compartment="0">TagProps</text></a>
|
|
2367
2526
|
|
|
2368
2527
|
</g>
|
|
2369
2528
|
</g>
|
|
2370
|
-
<g transform="translate(
|
|
2529
|
+
<g transform="translate(22797.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TagProps" data-compartment="1">
|
|
2371
2530
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TagProps" data-compartment="1">
|
|
2372
2531
|
<text x="0.0" y="14.1" stroke="none" data-name="TagProps" data-compartment="1">+className?: string</text>
|
|
2373
2532
|
<text x="0.0" y="30.3" stroke="none" data-name="TagProps" data-compartment="1">+children?: ReactNode</text>
|
|
2374
2533
|
|
|
2375
2534
|
</g>
|
|
2376
2535
|
</g>
|
|
2377
|
-
<g transform="translate(
|
|
2536
|
+
<g transform="translate(22797.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TagProps" data-compartment="2">
|
|
2378
2537
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TagProps" data-compartment="2">
|
|
2379
2538
|
|
|
2380
2539
|
</g>
|
|
@@ -2382,17 +2541,17 @@
|
|
|
2382
2541
|
</g>
|
|
2383
2542
|
<g data-name="TaskListItemProps">
|
|
2384
2543
|
<g fill="lightblue" stroke="#33322E" data-name="TaskListItemProps">
|
|
2385
|
-
<rect x="
|
|
2386
|
-
<path d="
|
|
2387
|
-
<path d="
|
|
2544
|
+
<rect x="23034.5" y="105.0" height="186.0" width="317.0" data-name="TaskListItemProps"></rect>
|
|
2545
|
+
<path d="M23034.5 137.0 L23351.5 137.0" fill="none" data-name="TaskListItemProps"></path>
|
|
2546
|
+
<path d="M23034.5 283.0 L23351.5 283.0" fill="none" data-name="TaskListItemProps"></path>
|
|
2388
2547
|
</g>
|
|
2389
|
-
<g transform="translate(
|
|
2548
|
+
<g transform="translate(23034.5, 105)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TaskListItemProps" data-compartment="0">
|
|
2390
2549
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TaskListItemProps" data-compartment="0">
|
|
2391
2550
|
<a id="../src/components/TaskList/TaskList.types.ts.TaskListItemProps" xlink:href="../src/components/TaskList/TaskList.types.ts"><text x="150.5" y="14.1" stroke="none" text-anchor="middle" data-name="TaskListItemProps" data-compartment="0">TaskListItemProps</text></a>
|
|
2392
2551
|
|
|
2393
2552
|
</g>
|
|
2394
2553
|
</g>
|
|
2395
|
-
<g transform="translate(
|
|
2554
|
+
<g transform="translate(23034.5, 137)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TaskListItemProps" data-compartment="1">
|
|
2396
2555
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TaskListItemProps" data-compartment="1">
|
|
2397
2556
|
<text x="0.0" y="14.1" stroke="none" data-name="TaskListItemProps" data-compartment="1">+title: { children: React.ReactNode</text>
|
|
2398
2557
|
<text x="0.0" y="30.3" stroke="none" data-name="TaskListItemProps" data-compartment="1">}</text>
|
|
@@ -2405,7 +2564,7 @@
|
|
|
2405
2564
|
|
|
2406
2565
|
</g>
|
|
2407
2566
|
</g>
|
|
2408
|
-
<g transform="translate(
|
|
2567
|
+
<g transform="translate(23034.5, 283)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TaskListItemProps" data-compartment="2">
|
|
2409
2568
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TaskListItemProps" data-compartment="2">
|
|
2410
2569
|
|
|
2411
2570
|
</g>
|
|
@@ -2413,17 +2572,17 @@
|
|
|
2413
2572
|
</g>
|
|
2414
2573
|
<g data-name="TaskListProps">
|
|
2415
2574
|
<g fill="lightblue" stroke="#33322E" data-name="TaskListProps">
|
|
2416
|
-
<rect x="
|
|
2417
|
-
<path d="
|
|
2418
|
-
<path d="
|
|
2575
|
+
<rect x="23391.5" y="145.5" height="105.0" width="234.0" data-name="TaskListProps"></rect>
|
|
2576
|
+
<path d="M23391.5 177.5 L23625.5 177.5" fill="none" data-name="TaskListProps"></path>
|
|
2577
|
+
<path d="M23391.5 242.5 L23625.5 242.5" fill="none" data-name="TaskListProps"></path>
|
|
2419
2578
|
</g>
|
|
2420
|
-
<g transform="translate(
|
|
2579
|
+
<g transform="translate(23391.5, 145.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TaskListProps" data-compartment="0">
|
|
2421
2580
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TaskListProps" data-compartment="0">
|
|
2422
2581
|
<a id="../src/components/TaskList/TaskList.types.ts.TaskListProps" xlink:href="../src/components/TaskList/TaskList.types.ts"><text x="109.0" y="14.1" stroke="none" text-anchor="middle" data-name="TaskListProps" data-compartment="0">TaskListProps</text></a>
|
|
2423
2582
|
|
|
2424
2583
|
</g>
|
|
2425
2584
|
</g>
|
|
2426
|
-
<g transform="translate(
|
|
2585
|
+
<g transform="translate(23391.5, 177.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TaskListProps" data-compartment="1">
|
|
2427
2586
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TaskListProps" data-compartment="1">
|
|
2428
2587
|
<text x="0.0" y="14.1" stroke="none" data-name="TaskListProps" data-compartment="1">+className?: string</text>
|
|
2429
2588
|
<text x="0.0" y="30.3" stroke="none" data-name="TaskListProps" data-compartment="1">+idPrefix?: string</text>
|
|
@@ -2431,7 +2590,7 @@
|
|
|
2431
2590
|
|
|
2432
2591
|
</g>
|
|
2433
2592
|
</g>
|
|
2434
|
-
<g transform="translate(
|
|
2593
|
+
<g transform="translate(23391.5, 242.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TaskListProps" data-compartment="2">
|
|
2435
2594
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TaskListProps" data-compartment="2">
|
|
2436
2595
|
|
|
2437
2596
|
</g>
|
|
@@ -2439,17 +2598,17 @@
|
|
|
2439
2598
|
</g>
|
|
2440
2599
|
<g data-name="TextareaProps">
|
|
2441
2600
|
<g fill="lightblue" stroke="#33322E" data-name="TextareaProps">
|
|
2442
|
-
<rect x="
|
|
2443
|
-
<path d="
|
|
2444
|
-
<path d="
|
|
2601
|
+
<rect x="23627.0" y="484.5" height="202.0" width="314.0" data-name="TextareaProps"></rect>
|
|
2602
|
+
<path d="M23627.0 516.5 L23941.0 516.5" fill="none" data-name="TextareaProps"></path>
|
|
2603
|
+
<path d="M23627.0 678.5 L23941.0 678.5" fill="none" data-name="TextareaProps"></path>
|
|
2445
2604
|
</g>
|
|
2446
|
-
<g transform="translate(
|
|
2605
|
+
<g transform="translate(23627, 484.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TextareaProps" data-compartment="0">
|
|
2447
2606
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TextareaProps" data-compartment="0">
|
|
2448
2607
|
<a id="../src/components/Textarea/Textarea.types.ts.TextareaProps" xlink:href="../src/components/Textarea/Textarea.types.ts"><text x="149.0" y="14.1" stroke="none" text-anchor="middle" data-name="TextareaProps" data-compartment="0">TextareaProps</text></a>
|
|
2449
2608
|
|
|
2450
2609
|
</g>
|
|
2451
2610
|
</g>
|
|
2452
|
-
<g transform="translate(
|
|
2611
|
+
<g transform="translate(23627, 516.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TextareaProps" data-compartment="1">
|
|
2453
2612
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="TextareaProps" data-compartment="1">
|
|
2454
2613
|
<text x="0.0" y="14.1" stroke="none" data-name="TextareaProps" data-compartment="1">+className?: string</text>
|
|
2455
2614
|
<text x="0.0" y="30.3" stroke="none" data-name="TextareaProps" data-compartment="1">+aria-describedby?: string</text>
|
|
@@ -2463,7 +2622,7 @@
|
|
|
2463
2622
|
|
|
2464
2623
|
</g>
|
|
2465
2624
|
</g>
|
|
2466
|
-
<g transform="translate(
|
|
2625
|
+
<g transform="translate(23627, 678.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="TextareaProps" data-compartment="2">
|
|
2467
2626
|
<g transform="translate(8, 8)" fill="#33322E" data-name="TextareaProps" data-compartment="2">
|
|
2468
2627
|
|
|
2469
2628
|
</g>
|
|
@@ -2471,9 +2630,9 @@
|
|
|
2471
2630
|
</g>
|
|
2472
2631
|
<g data-name="TextareaHTMLAttributes<T>">
|
|
2473
2632
|
<g fill="#eee8d5" stroke="#33322E" data-name="TextareaHTMLAttributes<T>">
|
|
2474
|
-
<rect x="
|
|
2633
|
+
<rect x="23665.5" y="182.0" height="32.0" width="237.0" data-name="TextareaHTMLAttributes<T>"></rect>
|
|
2475
2634
|
</g>
|
|
2476
|
-
<g transform="translate(
|
|
2635
|
+
<g transform="translate(23665.5, 182)" font-family="Helvetica" font-size="12pt" font-weight="bold" font-style="normal" data-name="TextareaHTMLAttributes<T>" data-compartment="0">
|
|
2477
2636
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="TextareaHTMLAttributes<T>" data-compartment="0">
|
|
2478
2637
|
<text x="110.5" y="14.1" stroke="none" text-anchor="middle" data-name="TextareaHTMLAttributes<T>" data-compartment="0">TextareaHTMLAttributes<T></text>
|
|
2479
2638
|
|
|
@@ -2482,17 +2641,17 @@
|
|
|
2482
2641
|
</g>
|
|
2483
2642
|
<g data-name="WarningInfoProps">
|
|
2484
2643
|
<g fill="lightblue" stroke="#33322E" data-name="WarningInfoProps">
|
|
2485
|
-
<rect x="
|
|
2486
|
-
<path d="
|
|
2487
|
-
<path d="
|
|
2644
|
+
<rect x="23942.5" y="121.5" height="153.0" width="228.0" data-name="WarningInfoProps"></rect>
|
|
2645
|
+
<path d="M23942.5 153.5 L24170.5 153.5" fill="none" data-name="WarningInfoProps"></path>
|
|
2646
|
+
<path d="M23942.5 266.5 L24170.5 266.5" fill="none" data-name="WarningInfoProps"></path>
|
|
2488
2647
|
</g>
|
|
2489
|
-
<g transform="translate(
|
|
2648
|
+
<g transform="translate(23942.5, 121.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WarningInfoProps" data-compartment="0">
|
|
2490
2649
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="WarningInfoProps" data-compartment="0">
|
|
2491
2650
|
<a id="../src/components/WarningInfo/WarningInfo.types.ts.WarningInfoProps" xlink:href="../src/components/WarningInfo/WarningInfo.types.ts"><text x="106.0" y="14.1" stroke="none" text-anchor="middle" data-name="WarningInfoProps" data-compartment="0">WarningInfoProps</text></a>
|
|
2492
2651
|
|
|
2493
2652
|
</g>
|
|
2494
2653
|
</g>
|
|
2495
|
-
<g transform="translate(
|
|
2654
|
+
<g transform="translate(23942.5, 153.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WarningInfoProps" data-compartment="1">
|
|
2496
2655
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="WarningInfoProps" data-compartment="1">
|
|
2497
2656
|
<text x="0.0" y="14.1" stroke="none" data-name="WarningInfoProps" data-compartment="1">+messageHeading?: string</text>
|
|
2498
2657
|
<text x="0.0" y="30.3" stroke="none" data-name="WarningInfoProps" data-compartment="1">+message?: string</text>
|
|
@@ -2503,7 +2662,7 @@
|
|
|
2503
2662
|
|
|
2504
2663
|
</g>
|
|
2505
2664
|
</g>
|
|
2506
|
-
<g transform="translate(
|
|
2665
|
+
<g transform="translate(23942.5, 266.5)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WarningInfoProps" data-compartment="2">
|
|
2507
2666
|
<g transform="translate(8, 8)" fill="#33322E" data-name="WarningInfoProps" data-compartment="2">
|
|
2508
2667
|
|
|
2509
2668
|
</g>
|
|
@@ -2511,24 +2670,24 @@
|
|
|
2511
2670
|
</g>
|
|
2512
2671
|
<g data-name="WarningTextProps">
|
|
2513
2672
|
<g fill="lightblue" stroke="#33322E" data-name="WarningTextProps">
|
|
2514
|
-
<rect x="
|
|
2515
|
-
<path d="
|
|
2516
|
-
<path d="
|
|
2673
|
+
<rect x="24210.5" y="154.0" height="88.0" width="197.0" data-name="WarningTextProps"></rect>
|
|
2674
|
+
<path d="M24210.5 186.0 L24407.5 186.0" fill="none" data-name="WarningTextProps"></path>
|
|
2675
|
+
<path d="M24210.5 234.0 L24407.5 234.0" fill="none" data-name="WarningTextProps"></path>
|
|
2517
2676
|
</g>
|
|
2518
|
-
<g transform="translate(
|
|
2677
|
+
<g transform="translate(24210.5, 154)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WarningTextProps" data-compartment="0">
|
|
2519
2678
|
<g transform="translate(8, 8)" fill="#33322E" text-align="center" data-name="WarningTextProps" data-compartment="0">
|
|
2520
2679
|
<a id="../src/components/WarningText/WarningText.types.ts.WarningTextProps" xlink:href="../src/components/WarningText/WarningText.types.ts"><text x="90.5" y="14.1" stroke="none" text-anchor="middle" data-name="WarningTextProps" data-compartment="0">WarningTextProps</text></a>
|
|
2521
2680
|
|
|
2522
2681
|
</g>
|
|
2523
2682
|
</g>
|
|
2524
|
-
<g transform="translate(
|
|
2683
|
+
<g transform="translate(24210.5, 186)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WarningTextProps" data-compartment="1">
|
|
2525
2684
|
<g transform="translate(8, 8)" fill="#33322E" text-align="left" data-name="WarningTextProps" data-compartment="1">
|
|
2526
2685
|
<text x="0.0" y="14.1" stroke="none" data-name="WarningTextProps" data-compartment="1">+children?: ReactNode</text>
|
|
2527
2686
|
<text x="0.0" y="30.3" stroke="none" data-name="WarningTextProps" data-compartment="1">+className?: string</text>
|
|
2528
2687
|
|
|
2529
2688
|
</g>
|
|
2530
2689
|
</g>
|
|
2531
|
-
<g transform="translate(
|
|
2690
|
+
<g transform="translate(24210.5, 234)" font-family="Helvetica" font-size="12pt" font-weight="normal" font-style="normal" data-name="WarningTextProps" data-compartment="2">
|
|
2532
2691
|
<g transform="translate(8, 8)" fill="#33322E" data-name="WarningTextProps" data-compartment="2">
|
|
2533
2692
|
|
|
2534
2693
|
</g>
|