@abgov/web-components 1.24.0 → 1.27.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/components/form/Fieldset.svelte.d.ts +1 -0
- package/components/form/Form.svelte.d.ts +1 -0
- package/components/form/FormSummary.svelte.d.ts +1 -0
- package/components/form/Task.svelte.d.ts +1 -0
- package/components/form/TaskList.svelte.d.ts +1 -0
- package/components/link/Link.svelte.d.ts +1 -0
- package/components/link-button/LinkButton.svelte.d.ts +1 -0
- package/components/text/Text.svelte.d.ts +1 -0
- package/html.html-data.json +1 -1
- package/index.css +401 -1
- package/index.js +30273 -14391
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.css
CHANGED
|
@@ -1 +1,401 @@
|
|
|
1
|
-
@import"https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap"
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");body,
|
|
2
|
+
input,
|
|
3
|
+
textarea,
|
|
4
|
+
button,
|
|
5
|
+
textarea {
|
|
6
|
+
background: #fff;
|
|
7
|
+
font-family: var(--goa-font-family-sans);
|
|
8
|
+
font-weight: 400;
|
|
9
|
+
font-size: var(--goa-font-size-4);
|
|
10
|
+
color: var(--goa-color-text-default);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
body {
|
|
14
|
+
margin: 0;
|
|
15
|
+
scroll-behavior: smooth;
|
|
16
|
+
line-height: var(--goa-line-height-3);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
*,
|
|
20
|
+
*:before,
|
|
21
|
+
*:after {
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
p {
|
|
26
|
+
margin: 0;
|
|
27
|
+
margin-bottom: 1rem;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
hr {
|
|
31
|
+
border-width: 0;
|
|
32
|
+
border-top: 1px solid #ccc;
|
|
33
|
+
height: 0;
|
|
34
|
+
padding: 0;
|
|
35
|
+
margin: 2rem 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
ul,
|
|
39
|
+
ol {
|
|
40
|
+
padding-left: 0;
|
|
41
|
+
padding-left: 1rem;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
li > ul,
|
|
45
|
+
li > ol,
|
|
46
|
+
li > ul,
|
|
47
|
+
li > ol {
|
|
48
|
+
padding-left: 0;
|
|
49
|
+
margin-top: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
dl {
|
|
53
|
+
margin-top: 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
dd {
|
|
57
|
+
margin-left: 0.5rem;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
a,
|
|
61
|
+
a:visited {
|
|
62
|
+
color: var(--goa-color-interactive-default);
|
|
63
|
+
cursor: pointer;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
a:hover {
|
|
67
|
+
color: var(--goa-color-interactive-hover);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
::-moz-placeholder {
|
|
71
|
+
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
72
|
+
color: #999;
|
|
73
|
+
opacity: 1;
|
|
74
|
+
/* Firefox */
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
::placeholder {
|
|
78
|
+
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
79
|
+
color: #999;
|
|
80
|
+
opacity: 1;
|
|
81
|
+
/* Firefox */
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
:-ms-input-placeholder {
|
|
85
|
+
/* Internet Explorer 10-11 */
|
|
86
|
+
color: #999;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
::-ms-input-placeholder {
|
|
90
|
+
/* Microsoft Edge */
|
|
91
|
+
color: #999;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
h1 {
|
|
95
|
+
font: var(--goa-typography-heading-xl);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
h2 {
|
|
99
|
+
font: var(--goa-typography-heading-l);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
h3 {
|
|
103
|
+
font: var(--goa-typography-heading-m);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
h4 {
|
|
107
|
+
font: var(--goa-typography-heading-s);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
h5,
|
|
111
|
+
h6 {
|
|
112
|
+
font: var(--goa-typography-heading-xs);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
h3 + h1 {
|
|
116
|
+
margin-top: -1rem;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
p {
|
|
120
|
+
margin-bottom: 1rem;
|
|
121
|
+
font-size: var(--goa-font-size-4);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
em {
|
|
125
|
+
font-size: var(--goa-font-size-1);
|
|
126
|
+
line-height: var(--goa-line-height-1);
|
|
127
|
+
color: var(--goa-color-greyscale-200);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
small {
|
|
131
|
+
font-size: var(--goa-font-size-1);
|
|
132
|
+
font-style: normal;
|
|
133
|
+
color: var(--goa-color-greyscale-200);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/* TODO: move these styles into the component using either the ::slotted or :global */
|
|
137
|
+
/* Components */
|
|
138
|
+
goa-two-column-layout h1:first-of-type,
|
|
139
|
+
goa-two-column-layout h2:first-of-type,
|
|
140
|
+
goa-two-column-layout h3:first-of-type,
|
|
141
|
+
goa-three-column-layout h1:first-of-type,
|
|
142
|
+
goa-three-column-layout h2:first-of-type,
|
|
143
|
+
goa-three-column-layout h3:first-of-type,
|
|
144
|
+
goa-container h1:first-of-type,
|
|
145
|
+
goa-container h2:first-of-type,
|
|
146
|
+
goa-container h3:first-of-type {
|
|
147
|
+
margin-top: 0;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
@font-face {
|
|
152
|
+
font-family: "acumin-pro-semi-condensed";
|
|
153
|
+
src: url("https://use.typekit.net/af/3f7b4d/00000000000000003b9acb2d/27/l?subset_id=1&fvd=n4&v=3") format("woff2"),
|
|
154
|
+
url("https://use.typekit.net/af/3f7b4d/00000000000000003b9acb2d/27/d?subset_id=1&fvd=n4&v=3") format("woff"),
|
|
155
|
+
url("https://use.typekit.net/af/3f7b4d/00000000000000003b9acb2d/27/a?subset_id=1&fvd=n4&v=3") format("opentype");
|
|
156
|
+
font-style: normal;
|
|
157
|
+
font-weight: 400;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
@font-face {
|
|
161
|
+
font-family: "acumin-pro-semi-condensed";
|
|
162
|
+
src: url("https://use.typekit.net/af/761912/00000000000000003b9acb2e/27/l?subset_id=1&fvd=i4&v=3") format("woff2"),
|
|
163
|
+
url("https://use.typekit.net/af/761912/00000000000000003b9acb2e/27/d?subset_id=1&fvd=i4&v=3") format("woff"),
|
|
164
|
+
url("https://use.typekit.net/af/761912/00000000000000003b9acb2e/27/a?subset_id=1&fvd=i4&v=3") format("opentype");
|
|
165
|
+
font-style: italic;
|
|
166
|
+
font-weight: 400;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
@font-face {
|
|
170
|
+
font-family: "acumin-pro-semi-condensed";
|
|
171
|
+
src: url("https://use.typekit.net/af/ee7f3d/00000000000000003b9acb33/27/l?subset_id=1&fvd=n7&v=3") format("woff2"),
|
|
172
|
+
url("https://use.typekit.net/af/ee7f3d/00000000000000003b9acb33/27/d?subset_id=1&fvd=n7&v=3") format("woff"),
|
|
173
|
+
url("https://use.typekit.net/af/ee7f3d/00000000000000003b9acb33/27/a?subset_id=1&fvd=n7&v=3") format("opentype");
|
|
174
|
+
font-style: normal;
|
|
175
|
+
font-weight: 700;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
@font-face {
|
|
179
|
+
font-family: "acumin-pro-semi-condensed";
|
|
180
|
+
src: url("https://use.typekit.net/af/503f80/00000000000000003b9acb34/27/l?subset_id=1&fvd=i7&v=3") format("woff2"),
|
|
181
|
+
url("https://use.typekit.net/af/503f80/00000000000000003b9acb34/27/d?subset_id=1&fvd=i7&v=3") format("woff"),
|
|
182
|
+
url("https://use.typekit.net/af/503f80/00000000000000003b9acb34/27/a?subset_id=1&fvd=i7&v=3") format("opentype");
|
|
183
|
+
font-style: italic;
|
|
184
|
+
font-weight: 700;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
@font-face {
|
|
188
|
+
font-family: "acumin-pro-semi-condensed";
|
|
189
|
+
src: url("https://use.typekit.net/af/e60e87/00000000000000003b9acb31/27/l?subset_id=1&fvd=n6&v=3") format("woff2"),
|
|
190
|
+
url("https://use.typekit.net/af/e60e87/00000000000000003b9acb31/27/d?subset_id=1&fvd=n6&v=3") format("woff"),
|
|
191
|
+
url("https://use.typekit.net/af/e60e87/00000000000000003b9acb31/27/a?subset_id=1&fvd=n6&v=3") format("opentype");
|
|
192
|
+
font-style: normal;
|
|
193
|
+
font-weight: 600;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
@font-face {
|
|
197
|
+
font-family: "roboto-mono";
|
|
198
|
+
src: url("https://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_ROW4.woff2") format("woff2");
|
|
199
|
+
font-style: normal;
|
|
200
|
+
font-weight: 400;
|
|
201
|
+
}
|
|
202
|
+
:root {
|
|
203
|
+
/* acumin font requires this to allow for vertical alignment */
|
|
204
|
+
--font-valign-fix: 0.1rem;
|
|
205
|
+
|
|
206
|
+
--shadow-0: 0 0 rgba(0, 0, 0, 0);
|
|
207
|
+
--shadow-1: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.24);
|
|
208
|
+
--shadow-2: 0 3px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
|
|
209
|
+
--shadow-3: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
|
|
210
|
+
--shadow-4: 0 15px 25px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);
|
|
211
|
+
--shadow-5: 0 20px 40px rgba(0, 0, 0, 0.2);
|
|
212
|
+
}ol.goa-ordered-list li,
|
|
213
|
+
ul.goa-unordered-list li {
|
|
214
|
+
padding: var(--goa-space-xs);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
ol.goa-ordered-list ol,
|
|
218
|
+
ol.goa-ordered-list ul,
|
|
219
|
+
ul.goa-unordered-list ol,
|
|
220
|
+
ul.goa-unordered-list ul {
|
|
221
|
+
margin-left: var(--goa-space-l);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
ul.goa-unordered-list li::marker {
|
|
225
|
+
color: var(--goa-color-brand-default);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/* GoAAppHeader */
|
|
229
|
+
/** needed to override a,
|
|
230
|
+
a:visited at reset.css */
|
|
231
|
+
goa-app-header a,
|
|
232
|
+
goa-app-header a:visited {
|
|
233
|
+
color: var(--goa-color-text-default);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
goa-app-header a.current.inside-collapse-menu,
|
|
237
|
+
goa-app-header a.current.inside-collapse-menu:hover,
|
|
238
|
+
goa-app-header-menu a.current,
|
|
239
|
+
goa-app-header-menu a.current:hover {
|
|
240
|
+
color: var(--goa-color-text-light);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
goa-app-header-menu a:first-of-type {
|
|
244
|
+
box-shadow: none;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/* Table */
|
|
248
|
+
|
|
249
|
+
goa-table table {
|
|
250
|
+
border-collapse: collapse;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
goa-table.sticky thead {
|
|
254
|
+
position: sticky;
|
|
255
|
+
top: 0;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
goa-table td {
|
|
259
|
+
font: var(--goa-typography-body-m);
|
|
260
|
+
padding: 0.75rem 1rem;
|
|
261
|
+
border-bottom: 1px solid var(--goa-color-greyscale-200);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
goa-table[variant="relaxed"] td {
|
|
265
|
+
padding: 1.25rem 1rem 1rem 1rem;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
goa-table thead th {
|
|
269
|
+
background-color: var(--goa-color-greyscale-white);
|
|
270
|
+
color: var(--goa-color-text-secondary);
|
|
271
|
+
padding: var(--goa-space-s) var(--goa-table-header-padding, var(--goa-space-m)) var(--goa-space-xs) var(--goa-table-header-padding, var(--goa-space-m));
|
|
272
|
+
text-align: left;
|
|
273
|
+
border-bottom: 2px solid var(--goa-color-greyscale-600);
|
|
274
|
+
vertical-align: bottom;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.goa-table-number-column {
|
|
278
|
+
font: var(--goa-typography-number-m);
|
|
279
|
+
text-align: right;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.goa-table-number-header {
|
|
283
|
+
text-align: right;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.goa-table-number-header:not(:has(goa-table-sort-header)) {
|
|
287
|
+
padding-bottom: 0.5rem;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
goa-table tfoot td {
|
|
291
|
+
background-color: var(--goa-color-greyscale-100);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
goa-table tfoot tr:first-child td {
|
|
295
|
+
border-top: 2px solid var(--goa-color-greyscale-200);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
goa-table tfoot tr:last-child td {
|
|
299
|
+
border-bottom: none;
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* Do not edit directly
|
|
303
|
+
* Generated on Tue, 11 Jun 2024 15:00:35 GMT
|
|
304
|
+
*/
|
|
305
|
+
|
|
306
|
+
:root {
|
|
307
|
+
--goa-color-brand-default: #0081a2;
|
|
308
|
+
--goa-color-brand-dark: #005072;
|
|
309
|
+
--goa-color-brand-light: #c8eefa;
|
|
310
|
+
--goa-color-interactive-default: #0070c4;
|
|
311
|
+
--goa-color-interactive-hover: #004f84;
|
|
312
|
+
--goa-color-interactive-error: #ec040b;
|
|
313
|
+
--goa-color-interactive-focus: #feba35;
|
|
314
|
+
--goa-color-interactive-disabled: #80b7e1;
|
|
315
|
+
--goa-color-text-default: #333333;
|
|
316
|
+
--goa-color-text-secondary: #666666;
|
|
317
|
+
--goa-color-text-light: #ffffff;
|
|
318
|
+
--goa-color-text-disabled: #666666;
|
|
319
|
+
--goa-color-info-default: #004a8f;
|
|
320
|
+
--goa-color-info-light: #aac9e7;
|
|
321
|
+
--goa-color-info-dark: #003b70;
|
|
322
|
+
--goa-color-info-background: #eff8ff;
|
|
323
|
+
--goa-color-warning-default: #f9ce2d;
|
|
324
|
+
--goa-color-warning-light: #ffeab6;
|
|
325
|
+
--goa-color-warning-dark: #bf8d23;
|
|
326
|
+
--goa-color-warning-background: #fff6e5;
|
|
327
|
+
--goa-color-emergency-default: #da291c;
|
|
328
|
+
--goa-color-emergency-light: #fbd1ce;
|
|
329
|
+
--goa-color-emergency-dark: #a91a10;
|
|
330
|
+
--goa-color-emergency-background: #fff1f2;
|
|
331
|
+
--goa-color-success-default: #006f4c;
|
|
332
|
+
--goa-color-success-light: #cce4dc;
|
|
333
|
+
--goa-color-success-dark: #00563a;
|
|
334
|
+
--goa-color-success-background: #eef9f3;
|
|
335
|
+
--goa-color-greyscale-50: #f8f8f8;
|
|
336
|
+
--goa-color-greyscale-100: #f1f1f1;
|
|
337
|
+
--goa-color-greyscale-200: #dcdcdc;
|
|
338
|
+
--goa-color-greyscale-400: #adadad;
|
|
339
|
+
--goa-color-greyscale-500: #949494;
|
|
340
|
+
--goa-color-greyscale-600: #858585;
|
|
341
|
+
--goa-color-greyscale-700: #666666;
|
|
342
|
+
--goa-color-greyscale-black: #333333;
|
|
343
|
+
--goa-color-greyscale-white: #ffffff;
|
|
344
|
+
--goa-font-weight-regular: 400;
|
|
345
|
+
--goa-font-weight-medium: 500;
|
|
346
|
+
--goa-font-weight-bold: 700;
|
|
347
|
+
--goa-font-size-1: 0.75rem;
|
|
348
|
+
--goa-font-size-2: 0.875rem;
|
|
349
|
+
--goa-font-size-3: 1rem;
|
|
350
|
+
--goa-font-size-4: 1.125rem;
|
|
351
|
+
--goa-font-size-5: 1.25rem;
|
|
352
|
+
--goa-font-size-6: 1.375rem;
|
|
353
|
+
--goa-font-size-7: 1.5rem;
|
|
354
|
+
--goa-font-size-8: 2rem;
|
|
355
|
+
--goa-font-size-9: 2.25rem;
|
|
356
|
+
--goa-font-size-10: 3rem;
|
|
357
|
+
--goa-space-none: 0rem;
|
|
358
|
+
--goa-space-3xs: 0.125rem;
|
|
359
|
+
--goa-space-2xs: 0.25rem;
|
|
360
|
+
--goa-space-xs: 0.5rem;
|
|
361
|
+
--goa-space-s: 0.75rem;
|
|
362
|
+
--goa-space-m: 1rem;
|
|
363
|
+
--goa-space-l: 1.5rem;
|
|
364
|
+
--goa-space-xl: 2rem;
|
|
365
|
+
--goa-space-2xl: 3rem;
|
|
366
|
+
--goa-space-3xl: 4rem;
|
|
367
|
+
--goa-space-4xl: 8rem;
|
|
368
|
+
--goa-border-radius-none: 0rem;
|
|
369
|
+
--goa-border-radius-m: 0.25rem;
|
|
370
|
+
--goa-opacity-background-modal: 50%;
|
|
371
|
+
--goa-opacity-background-loading: 90%;
|
|
372
|
+
--goa-line-height-1: 1.25rem;
|
|
373
|
+
--goa-line-height-2: 1.5rem;
|
|
374
|
+
--goa-line-height-3: 1.75rem;
|
|
375
|
+
--goa-line-height-4: 2rem;
|
|
376
|
+
--goa-line-height-5: 2.5rem;
|
|
377
|
+
--goa-line-height-6: 2.75rem;
|
|
378
|
+
--goa-line-height-7: 3.5rem;
|
|
379
|
+
--goa-line-height-05: 1.125rem;
|
|
380
|
+
--goa-font-family-sans: acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
381
|
+
--goa-font-family-number: roboto-mono, monospace;
|
|
382
|
+
--goa-typography-heading-xs: 700 1rem/1.5rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
383
|
+
--goa-typography-heading-s: 700 1.125rem/1.75rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
384
|
+
--goa-typography-heading-m: 400 1.5rem/2rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
385
|
+
--goa-typography-heading-l: 400 2.25rem/2.75rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
386
|
+
--goa-typography-heading-xl: 700 3rem/3.5rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
387
|
+
--goa-typography-body-xs: 400 0.875rem/1.25rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
388
|
+
--goa-typography-body-s: 400 1rem/1.5rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
389
|
+
--goa-typography-body-m: 400 1.125rem/1.75rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
390
|
+
--goa-typography-body-l: 400 1.5rem/2rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
391
|
+
--goa-typography-button-default: 400 1.125rem/1.25rem acumin-pro-semi-condensed, helvetica-neue, arial, sans-serif;
|
|
392
|
+
--goa-typography-number-m: 500 1.125rem/1.75rem roboto-mono, monospace;
|
|
393
|
+
--goa-border-width-s: 1px;
|
|
394
|
+
--goa-border-width-m: 2px;
|
|
395
|
+
--goa-border-width-l: 3px;
|
|
396
|
+
--goa-letter-spacing-button: 0.0125rem;
|
|
397
|
+
--goa-icon-size-s: 1rem;
|
|
398
|
+
--goa-icon-size-m: 1.25rem;
|
|
399
|
+
--goa-icon-size-l: 1.5rem;
|
|
400
|
+
--goa-shadow-modal: 6px 6px 6px 0px rgba(0,0,0,0.16);
|
|
401
|
+
}
|