@entur/typography 1.9.12 → 1.9.13-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,22 +1,426 @@
1
- import './index.scss';
2
- export * from './Blockquote';
3
- export * from './CodeText';
4
- export * from './EmphasizedText';
5
- export * from './Heading1';
6
- export * from './Heading2';
7
- export * from './Heading3';
8
- export * from './Heading4';
9
- export * from './Heading5';
10
- export * from './Heading6';
11
- export * from './Label';
12
- export * from './LeadParagraph';
13
- export * from './Link';
14
- export * from './ListItem';
15
- export * from './NumberedList';
16
- export * from './Paragraph';
17
- export * from './PreformattedText';
18
- export * from './SmallText';
19
- export * from './StrongText';
20
- export * from './SubLabel';
21
- export * from './SubParagraph';
22
- export * from './UnorderedList';
1
+ import { default as default_2 } from 'react';
2
+
3
+ declare type AsProp<C extends default_2.ElementType> = {
4
+ /**
5
+ * An override of the default HTML tag.
6
+ * Can also be another React component.
7
+ */
8
+ as?: C;
9
+ };
10
+
11
+ export declare const Blockquote: ({ className, ref, ...rest }: BlockquoteProps) => default_2.JSX.Element;
12
+
13
+ export declare const BlockquoteFooter: default_2.FunctionComponent<BlockquoteFooterProps>;
14
+
15
+ declare type BlockquoteFooterProps = {
16
+ /** Ekstra klassenavn */
17
+ className?: string;
18
+ } & default_2.DetailedHTMLProps<default_2.HTMLAttributes<HTMLElement>, HTMLElement>;
19
+
20
+ declare type BlockquoteProps = {
21
+ /** Ekstra klassenavn */
22
+ className?: string;
23
+ } & default_2.DetailedHTMLProps<default_2.BlockquoteHTMLAttributes<HTMLElement>, HTMLQuoteElement>;
24
+
25
+ export declare const CodeText: <E extends default_2.ElementType = "code">({ className, as, ...rest }: CodeTextProps<E>) => JSX.Element;
26
+
27
+ export declare type CodeTextOwnProps = {
28
+ /** HTML-elementet eller React-komponenten som rendres
29
+ * @default "code"
30
+ */
31
+ as?: string | default_2.ElementType;
32
+ /** Ekstra klassenavn */
33
+ className?: string;
34
+ /** Innholdet */
35
+ children: default_2.ReactNode;
36
+ };
37
+
38
+ export declare type CodeTextProps<T extends default_2.ElementType = typeof defaultElement> = PolymorphicComponentProps<T, CodeTextOwnProps>;
39
+
40
+ declare const defaultElement = "code";
41
+
42
+ declare const defaultElement_10 = "p";
43
+
44
+ declare const defaultElement_11 = "a";
45
+
46
+ declare const defaultElement_12 = "p";
47
+
48
+ declare const defaultElement_13 = "span";
49
+
50
+ declare const defaultElement_14 = "strong";
51
+
52
+ declare const defaultElement_15 = "span";
53
+
54
+ declare const defaultElement_16 = "p";
55
+
56
+ declare const defaultElement_2 = "em";
57
+
58
+ declare const defaultElement_3 = "h1";
59
+
60
+ declare const defaultElement_4 = "h2";
61
+
62
+ declare const defaultElement_5 = "h3";
63
+
64
+ declare const defaultElement_6 = "h4";
65
+
66
+ declare const defaultElement_7 = "h5";
67
+
68
+ declare const defaultElement_8 = "h6";
69
+
70
+ declare const defaultElement_9 = "label";
71
+
72
+ export declare const EmphasizedText: <E extends default_2.ElementType = "em">({ className, margin, as, ...rest }: EmphasizedTextProps<E>) => JSX.Element;
73
+
74
+ export declare type EmphasizedTextOwnProps = {
75
+ /** HTML-elementet eller React-komponenten som rendres
76
+ * @default "em"
77
+ */
78
+ as?: string | default_2.ElementType;
79
+ /** Ekstra klassenavn */
80
+ className?: string;
81
+ /** Innholdet */
82
+ children: default_2.ReactNode;
83
+ /** Hvor du vil ha marginer
84
+ * @default "both"
85
+ */
86
+ margin?: 'top' | 'bottom' | 'both' | 'none';
87
+ };
88
+
89
+ export declare type EmphasizedTextProps<T extends default_2.ElementType = typeof defaultElement_2> = PolymorphicComponentProps<T, EmphasizedTextOwnProps>;
90
+
91
+ /**
92
+ * Allows for extending a set of props (`ExtendedProps`) by an overriding set of props
93
+ * (`OverrideProps`), ensuring that any duplicates are overridden by the overriding
94
+ * set of props.
95
+ */
96
+ declare type ExtendableProps<ExtendedProps = Record<string, unknown>, OverrideProps = Record<string, unknown>> = OverrideProps & Omit<ExtendedProps, keyof OverrideProps>;
97
+
98
+ export declare const Heading1: <E extends default_2.ElementType = "h1">({ margin, children, as, ...rest }: Heading1Props<E>) => JSX.Element;
99
+
100
+ export declare type Heading1OwnProps = {
101
+ /** HTML-elementet eller React-komponenten som rendres
102
+ * @default "h1"
103
+ */
104
+ as?: string | default_2.ElementType;
105
+ /** Ekstra klassenavn */
106
+ className?: string;
107
+ /** Innholdet */
108
+ children: default_2.ReactNode;
109
+ /** Hvor du vil ha marginer
110
+ * @default "both"
111
+ */
112
+ margin?: 'top' | 'bottom' | 'both' | 'none';
113
+ };
114
+
115
+ export declare type Heading1Props<T extends default_2.ElementType = typeof defaultElement_3> = PolymorphicComponentProps<T, Heading1OwnProps>;
116
+
117
+ export declare const Heading2: <E extends default_2.ElementType = "h2">({ margin, children, as, ...rest }: Heading2Props<E>) => JSX.Element;
118
+
119
+ export declare type Heading2OwnProps = {
120
+ /** HTML-elementet eller React-komponenten som rendres
121
+ * @default "h2"
122
+ */
123
+ as?: string | default_2.ElementType;
124
+ /** Ekstra klassenavn */
125
+ className?: string;
126
+ /** Innholdet */
127
+ children: default_2.ReactNode;
128
+ /** Hvor du vil ha marginer
129
+ * @default "both"
130
+ */
131
+ margin?: 'top' | 'bottom' | 'both' | 'none';
132
+ };
133
+
134
+ export declare type Heading2Props<T extends default_2.ElementType = typeof defaultElement_4> = PolymorphicComponentProps<T, Heading2OwnProps>;
135
+
136
+ export declare const Heading3: <E extends default_2.ElementType = "h3">({ margin, children, as, ...rest }: Heading3Props<E>) => JSX.Element;
137
+
138
+ export declare type Heading3OwnProps = {
139
+ /** HTML-elementet eller React-komponenten som rendres
140
+ * @default "h3"
141
+ */
142
+ as?: string | default_2.ElementType;
143
+ /** Ekstra klassenavn */
144
+ className?: string;
145
+ /** Innholdet */
146
+ children: default_2.ReactNode;
147
+ /** Hvor du vil ha marginer
148
+ * @default "both"
149
+ */
150
+ margin?: 'top' | 'bottom' | 'both' | 'none';
151
+ };
152
+
153
+ export declare type Heading3Props<T extends default_2.ElementType = typeof defaultElement_5> = PolymorphicComponentProps<T, Heading3OwnProps>;
154
+
155
+ export declare const Heading4: <E extends default_2.ElementType = "h4">({ margin, children, as, ...rest }: Heading4Props<E>) => JSX.Element;
156
+
157
+ export declare type Heading4OwnProps = {
158
+ /** HTML-elementet eller React-komponenten som rendres
159
+ * @default "h4"
160
+ */
161
+ as?: string | default_2.ElementType;
162
+ /** Ekstra klassenavn */
163
+ className?: string;
164
+ /** Innholdet */
165
+ children: default_2.ReactNode;
166
+ /** Hvor du vil ha marginer
167
+ * @default "both"
168
+ */
169
+ margin?: 'top' | 'bottom' | 'both' | 'none';
170
+ };
171
+
172
+ export declare type Heading4Props<T extends default_2.ElementType = typeof defaultElement_6> = PolymorphicComponentProps<T, Heading4OwnProps>;
173
+
174
+ export declare const Heading5: <E extends default_2.ElementType = "h5">({ margin, children, as, ...rest }: Heading5Props<E>) => JSX.Element;
175
+
176
+ export declare type Heading5OwnProps = {
177
+ /** HTML-elementet eller React-komponenten som rendres
178
+ * @default "h5"
179
+ */
180
+ as?: string | default_2.ElementType;
181
+ /** Ekstra klassenavn */
182
+ className?: string;
183
+ /** Innholdet */
184
+ children: default_2.ReactNode;
185
+ /** Hvor du vil ha marginer
186
+ * @default "both"
187
+ */
188
+ margin?: 'top' | 'bottom' | 'both' | 'none';
189
+ };
190
+
191
+ export declare type Heading5Props<T extends default_2.ElementType = typeof defaultElement_7> = PolymorphicComponentProps<T, Heading5OwnProps>;
192
+
193
+ export declare const Heading6: <E extends default_2.ElementType = "h6">({ margin, children, as, ...rest }: Heading6Props<E>) => JSX.Element;
194
+
195
+ export declare type Heading6OwnProps = {
196
+ /** HTML-elementet eller React-komponenten som rendres
197
+ * @default "h6"
198
+ */
199
+ as?: string | default_2.ElementType;
200
+ /** Ekstra klassenavn */
201
+ className?: string;
202
+ /** Innholdet */
203
+ children: default_2.ReactNode;
204
+ /** Hvor du vil ha marginer
205
+ * @default "both"
206
+ */
207
+ margin?: 'top' | 'bottom' | 'both' | 'none';
208
+ };
209
+
210
+ export declare type Heading6Props<T extends default_2.ElementType = typeof defaultElement_8> = PolymorphicComponentProps<T, Heading6OwnProps>;
211
+
212
+ /**
213
+ * Allows for inheriting the props from the specified element type so that
214
+ * props like children, className & style work, as well as element-specific
215
+ * attributes like aria roles. The component (`C`) must be passed in.
216
+ */
217
+ declare type InheritableElementProps<C extends default_2.ElementType, Props = Record<string, unknown>> = ExtendableProps<PropsOf<C>, Props>;
218
+
219
+ export declare const Label: <E extends default_2.ElementType = "label">({ className, margin, as, ...rest }: LabelProps<E>) => JSX.Element;
220
+
221
+ export declare type LabelOwnProps = {
222
+ /** HTML-elementet eller React-komponenten som rendres
223
+ * @default "label"
224
+ */
225
+ as?: string | default_2.ElementType;
226
+ /** Ekstra klassenavn */
227
+ className?: string;
228
+ /** Innholdet */
229
+ children: default_2.ReactNode;
230
+ /** Hvor du vil ha marginer
231
+ * @default "both"
232
+ */
233
+ margin?: 'top' | 'bottom' | 'both' | 'none';
234
+ };
235
+
236
+ export declare type LabelProps<T extends default_2.ElementType = typeof defaultElement_9> = PolymorphicComponentProps<T, LabelOwnProps>;
237
+
238
+ export declare const LeadParagraph: <E extends default_2.ElementType = "p">({ className, margin, as, ...rest }: LeadParagraphProps<E>) => JSX.Element;
239
+
240
+ export declare type LeadParagraphOwnProps = {
241
+ /** HTML-elementet eller React-komponenten som rendres
242
+ * @default "p"
243
+ */
244
+ as?: string | default_2.ElementType;
245
+ /** Ekstra klassenavn */
246
+ className?: string;
247
+ /** Innholdet */
248
+ children: default_2.ReactNode;
249
+ /** Hvor du vil ha marginer
250
+ * @default "both"
251
+ */
252
+ margin?: 'top' | 'bottom' | 'both' | 'none';
253
+ };
254
+
255
+ export declare type LeadParagraphProps<T extends default_2.ElementType = typeof defaultElement_10> = PolymorphicComponentProps<T, LeadParagraphOwnProps>;
256
+
257
+ export declare const Link: <E extends default_2.ElementType = "a">({ external, ariaLabelExternalIcon, className, margin, children, as, ...rest }: LinkProps<E>) => JSX.Element;
258
+
259
+ export declare type LinkOwnProps = {
260
+ external?: boolean;
261
+ /** HTML-elementet eller React-komponenten som rendres
262
+ * @default "a"
263
+ */
264
+ as?: string | default_2.ElementType;
265
+ /** Ekstra klassenavn */
266
+ className?: string;
267
+ /** Innholdet */
268
+ children: default_2.ReactNode;
269
+ /** Hvor du vil ha marginer
270
+ * @default "both"
271
+ */
272
+ margin?: 'top' | 'bottom' | 'both' | 'none';
273
+ ariaLabelExternalIcon?: string;
274
+ };
275
+
276
+ export declare type LinkProps<T extends default_2.ElementType = typeof defaultElement_11> = PolymorphicComponentProps<T, LinkOwnProps>;
277
+
278
+ export declare const ListItem: default_2.FC<ListItemProps>;
279
+
280
+ export declare type ListItemProps = {
281
+ /** Ekstra klassenavn */
282
+ className?: string;
283
+ /** Innholdet */
284
+ children: default_2.ReactNode;
285
+ /** Tittel */
286
+ title?: default_2.ReactNode;
287
+ [key: string]: any;
288
+ };
289
+
290
+ export declare const NumberedList: default_2.FC<NumberedListProps>;
291
+
292
+ export declare type NumberedListProps = {
293
+ /** Ekstra klassenavn */
294
+ className?: string;
295
+ /** Innholdet */
296
+ children: default_2.ReactNode;
297
+ } & default_2.OlHTMLAttributes<HTMLOListElement>;
298
+
299
+ export declare const Paragraph: <E extends default_2.ElementType = "p">({ margin, className, as, ...rest }: ParagraphProps<E>) => JSX.Element;
300
+
301
+ export declare type ParagraphOwnProps = {
302
+ /** HTML-elementet eller React-komponenten som rendres
303
+ * @default "p"
304
+ */
305
+ as?: string | default_2.ElementType;
306
+ /** Ekstra klassenavn */
307
+ className?: string;
308
+ /** Innholdet */
309
+ children: default_2.ReactNode;
310
+ /** Hvor du vil ha marginer
311
+ * @default "bottom"
312
+ */
313
+ margin?: 'bottom' | 'none';
314
+ };
315
+
316
+ export declare type ParagraphProps<T extends default_2.ElementType = typeof defaultElement_12> = PolymorphicComponentProps<T, ParagraphOwnProps>;
317
+
318
+ /**
319
+ * A more sophisticated version of `InheritableElementProps` where
320
+ * the passed in `as` prop will determine which props can be included
321
+ */
322
+ declare type PolymorphicComponentProps<C extends default_2.ElementType, Props = Record<string, unknown>> = InheritableElementProps<C, Props & AsProp<C>>;
323
+
324
+ export declare const PreformattedText: <E extends default_2.ElementType = "pre">({ className, as, ...rest }: PreformattedTextProps<E>) => JSX.Element;
325
+
326
+ export declare type PreformattedTextOwnProps = {
327
+ /** HTML-elementet eller React-komponenten som rendres
328
+ * @default "pre"
329
+ */
330
+ as?: string | default_2.ElementType;
331
+ /** Ekstra klassenavn */
332
+ className?: string;
333
+ /** Innholdet */
334
+ children: default_2.ReactNode;
335
+ };
336
+
337
+ export declare type PreformattedTextProps<T extends default_2.ElementType> = PolymorphicComponentProps<T, PreformattedTextOwnProps>;
338
+
339
+ declare type PropsOf<C extends keyof JSX.IntrinsicElements | default_2.JSXElementConstructor<any>> = JSX.LibraryManagedAttributes<C, default_2.ComponentPropsWithoutRef<C>>;
340
+
341
+ export declare const SmallText: <E extends default_2.ElementType = "span">({ className, margin, as, ...rest }: SmallTextProps<E>) => JSX.Element;
342
+
343
+ export declare type SmallTextOwnProps = {
344
+ /** HTML-elementet eller React-komponenten som rendres
345
+ * @default "span"
346
+ */
347
+ as?: string | default_2.ElementType;
348
+ /** Ekstra klassenavn */
349
+ className?: string;
350
+ /** Innholdet */
351
+ children: default_2.ReactNode;
352
+ /** Hvor du vil ha marginer
353
+ * @default "both"
354
+ */
355
+ margin?: 'top' | 'bottom' | 'both' | 'none';
356
+ };
357
+
358
+ export declare type SmallTextProps<T extends default_2.ElementType = typeof defaultElement_13> = PolymorphicComponentProps<T, SmallTextOwnProps>;
359
+
360
+ export declare const StrongText: <E extends default_2.ElementType = "strong">({ className, margin, as, ...rest }: StrongTextProps<E>) => JSX.Element;
361
+
362
+ export declare type StrongTextOwnProps = {
363
+ /** HTML-elementet eller React-komponenten som rendres
364
+ * @default "strong"
365
+ */
366
+ as?: string | default_2.ElementType;
367
+ /** Ekstra klassenavn */
368
+ className?: string;
369
+ /** Innholdet */
370
+ children: default_2.ReactNode;
371
+ /** Hvor du vil ha marginer
372
+ * @default "both"
373
+ */
374
+ margin?: 'top' | 'bottom' | 'both' | 'none';
375
+ };
376
+
377
+ export declare type StrongTextProps<T extends default_2.ElementType = typeof defaultElement_14> = PolymorphicComponentProps<T, StrongTextOwnProps>;
378
+
379
+ export declare const SubLabel: <E extends default_2.ElementType = "span">({ className, margin, as, ...rest }: SubLabelProps<E>) => JSX.Element;
380
+
381
+ export declare type SubLabelOwnProps = {
382
+ /** HTML-elementet eller React-komponenten som rendres
383
+ * @default "span"
384
+ */
385
+ as?: string | default_2.ElementType;
386
+ /** Ekstra klassenavn */
387
+ className?: string;
388
+ /** Innholdet */
389
+ children: default_2.ReactNode;
390
+ /** Hvor du vil ha marginer
391
+ * @default "both"
392
+ */
393
+ margin?: 'top' | 'bottom' | 'both' | 'none';
394
+ };
395
+
396
+ export declare type SubLabelProps<T extends default_2.ElementType = typeof defaultElement_15> = PolymorphicComponentProps<T, SubLabelOwnProps>;
397
+
398
+ export declare const SubParagraph: <E extends default_2.ElementType = "p">({ className, margin, as, ...rest }: SubParagraphProps<E>) => JSX.Element;
399
+
400
+ export declare type SubParagraphOwnProps = {
401
+ /** HTML-elementet eller React-komponenten som rendres
402
+ * @default "p"
403
+ */
404
+ as?: string | default_2.ElementType;
405
+ /** Ekstra klassenavn */
406
+ className?: string;
407
+ /** Innholdet */
408
+ children: default_2.ReactNode;
409
+ /** Hvor du vil ha marginer
410
+ * @default "both"
411
+ */
412
+ margin?: 'top' | 'bottom' | 'both' | 'none';
413
+ };
414
+
415
+ export declare type SubParagraphProps<T extends default_2.ElementType = typeof defaultElement_16> = PolymorphicComponentProps<T, SubParagraphOwnProps>;
416
+
417
+ export declare const UnorderedList: default_2.FC<UnorderedListProps>;
418
+
419
+ export declare type UnorderedListProps = {
420
+ /** Ekstra klassenavn */
421
+ className?: string;
422
+ /** Innholdet */
423
+ children: default_2.ReactNode;
424
+ } & default_2.DetailedHTMLProps<default_2.HTMLAttributes<HTMLUListElement>, HTMLUListElement>;
425
+
426
+ export { }
package/dist/styles.css CHANGED
@@ -268,9 +268,7 @@
268
268
  --eds-font-family: "Nationale", Arial, "Gotham Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
269
269
  "Helvetica Neue", sans-serif;
270
270
  box-sizing: border-box;
271
- color: #181c56;
272
271
  color: var(--primary-text-color);
273
- background-color: #ffffff;
274
272
  background-color: var(--primary-background-color);
275
273
  font-family: "Nationale", Arial, "Gotham Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
276
274
  font-weight: 500;
@@ -283,9 +281,7 @@
283
281
  --primary-background-color: var(--basecolors-frame-contrast);
284
282
  --primary-text-color: var(--components-typography-basetext-contrast-text-accent);
285
283
  --primary-label-color: var(--components-typography-label-contrast-text-accent);
286
- color: #ffffff;
287
284
  color: var(--primary-text-color);
288
- background-color: #181c56;
289
285
  background-color: var(--primary-background-color);
290
286
  }
291
287
  @media screen and (min-width: 50rem) {
@@ -310,7 +306,6 @@
310
306
  .eds-h4,
311
307
  .eds-h5,
312
308
  .eds-h6 {
313
- color: #181c56;
314
309
  color: var(--primary-text-color);
315
310
  font-weight: 600;
316
311
  -webkit-font-smoothing: antialiased;
@@ -389,7 +384,6 @@
389
384
  }
390
385
 
391
386
  .eds-paragraph {
392
- color: #181c56;
393
387
  color: var(--primary-text-color);
394
388
  font-size: 1rem;
395
389
  line-height: 1.5rem;
@@ -403,7 +397,6 @@
403
397
  }
404
398
 
405
399
  .eds-lead-paragraph {
406
- color: #181c56;
407
400
  color: var(--primary-text-color);
408
401
  font-size: 1.25rem;
409
402
  line-height: 1.875rem;
@@ -417,7 +410,6 @@
417
410
  }
418
411
 
419
412
  .eds-sub-paragraph {
420
- color: #181c56;
421
413
  color: var(--primary-text-color);
422
414
  font-size: 0.875rem;
423
415
  line-height: 1.25rem;
@@ -429,7 +421,6 @@
429
421
  }
430
422
 
431
423
  .eds-small-text {
432
- color: #181c56;
433
424
  color: var(--primary-text-color);
434
425
  font-size: 0.625rem;
435
426
  line-height: 1rem;
@@ -442,15 +433,12 @@
442
433
  }
443
434
 
444
435
  .eds-link {
445
- color: #181c56;
446
436
  color: var(--primary-text-color);
447
437
  }
448
438
  .eds-link, .eds-link:link, .eds-link:visited {
449
439
  font-size: inherit;
450
- -webkit-text-decoration: none;
451
440
  text-decoration: none;
452
441
  position: relative;
453
- background-image: linear-gradient(120deg, #181c56 0%, #181c56 100%);
454
442
  background-image: linear-gradient(120deg, var(--primary-text-color) 0%, var(--primary-text-color) 100%);
455
443
  background-repeat: no-repeat;
456
444
  background-size: 100% 0.125rem;
@@ -470,12 +458,10 @@
470
458
  }
471
459
  .eds-link:focus-visible {
472
460
  outline: 2px solid #181c56;
473
- outline-color: #181c56;
474
461
  outline-color: var(--basecolors-stroke-focus-standard);
475
462
  outline-offset: 0.125rem;
476
463
  }
477
464
  .eds-contrast .eds-link:focus-visible {
478
- outline-color: #aeb7e2;
479
465
  outline-color: var(--basecolors-stroke-focus-contrast);
480
466
  }
481
467
  @media screen and (min-width: 50rem) {
@@ -493,7 +479,6 @@ p .eds-link--ext-icon {
493
479
 
494
480
  .eds-label,
495
481
  .eds-sub-label {
496
- color: #626493;
497
482
  color: var(--primary-label-color);
498
483
  }
499
484
 
@@ -527,12 +512,9 @@ p .eds-link--ext-icon {
527
512
 
528
513
  .eds-preformatted-text,
529
514
  .eds-code-text {
530
- background-color: #f6f6f9;
531
515
  background-color: var(--components-typography-codetext-standard-fill);
532
- border: 0.0625rem solid rgba(84, 86, 140, 0.4);
533
516
  border: 0.0625rem solid var(--components-typography-codetext-standard-border);
534
517
  border-radius: 0.25rem;
535
- color: #181c56;
536
518
  color: var(--components-typography-codetext-standard-text);
537
519
  font-family: "Monaco", monospace;
538
520
  font-size: 0.875rem;
@@ -547,7 +529,7 @@ p .eds-link--ext-icon {
547
529
  .eds-code-text {
548
530
  display: inline-block;
549
531
  word-wrap: break-word;
550
- word-wrap: anywhere;
532
+ overflow-wrap: anywhere;
551
533
  padding: 0.125rem 0.25rem;
552
534
  }
553
535
 
@@ -561,7 +543,6 @@ p .eds-link--ext-icon {
561
543
  }
562
544
  .eds-unordered-list .eds-list-item::before {
563
545
  content: "";
564
- background: #aeb7e2;
565
546
  background: var(--components-typography-list-standard-border);
566
547
  display: block;
567
548
  height: 0.125rem;
@@ -601,12 +582,10 @@ p .eds-link--ext-icon {
601
582
  position: relative;
602
583
  }
603
584
  .eds-numbered-list > .eds-list-item::before {
604
- color: #181c56;
605
585
  color: var(--primary-text-color);
606
586
  position: absolute;
607
587
  font-weight: 600;
608
588
  left: -2.5rem;
609
- border: 0.125rem solid #aeb7e2;
610
589
  border: 0.125rem solid var(--components-typography-list-standard-border);
611
590
  border-radius: 50%;
612
591
  height: 2rem;
@@ -627,7 +606,6 @@ p .eds-link--ext-icon {
627
606
  }
628
607
 
629
608
  .eds-blockquote {
630
- border-left: 0.25rem solid #8284ab;
631
609
  border-left: 0.25rem solid var(--components-typography-blockquote-standard-stroke);
632
610
  font-family: inherit;
633
611
  font-size: 1.25rem;
@@ -704,4 +682,4 @@ p .eds-link--ext-icon {
704
682
  100% {
705
683
  width: 100%;
706
684
  }
707
- }
685
+ }