@sentropic/design-system-svelte 0.10.0 → 0.10.2
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/Accordion.svelte +11 -3
- package/dist/Alert.svelte +46 -7
- package/dist/Badge.svelte +16 -7
- package/dist/Breadcrumb.svelte +11 -1
- package/dist/Button.svelte +22 -2
- package/dist/Card.svelte +7 -0
- package/dist/Checkbox.svelte +32 -8
- package/dist/Checkbox.svelte.d.ts.map +1 -1
- package/dist/ForceGraph.svelte +422 -0
- package/dist/ForceGraph.svelte.d.ts +54 -0
- package/dist/ForceGraph.svelte.d.ts.map +1 -0
- package/dist/Header.svelte +241 -2
- package/dist/Header.svelte.d.ts +37 -0
- package/dist/Header.svelte.d.ts.map +1 -1
- package/dist/Input.svelte +20 -4
- package/dist/Link.svelte +6 -0
- package/dist/Pagination.svelte +24 -6
- package/dist/Radio.svelte +38 -6
- package/dist/Search.svelte +13 -1
- package/dist/Select.svelte +40 -5
- package/dist/Switch.svelte +11 -9
- package/dist/Tabs.svelte +24 -6
- package/dist/Tag.svelte +18 -10
- package/dist/Textarea.svelte +14 -3
- package/dist/Toggle.svelte +17 -6
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/package.json +4 -4
package/dist/Header.svelte
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
<script lang="ts" module>
|
|
2
|
+
/**
|
|
3
|
+
* Identité de l'utilisateur connecté à afficher dans la zone compte du Header.
|
|
4
|
+
*
|
|
5
|
+
* Le composant garantit qu'une identité connectée ne se réduit JAMAIS à une
|
|
6
|
+
* icône carrée nue : le nom est toujours rendu, et l'email l'accompagne quand
|
|
7
|
+
* il est fourni. L'avatar utilise la photo si `avatarUrl` est présente, sinon
|
|
8
|
+
* il retombe sur les `initials` (calculées depuis le nom si non fournies).
|
|
9
|
+
*/
|
|
10
|
+
export type HeaderAccount = {
|
|
11
|
+
/** Nom affiché de la personne connectée. Obligatoire : pas de carré sans nom. */
|
|
12
|
+
name: string;
|
|
13
|
+
/** Email optionnel, affiché sous le nom et dans le menu compte. */
|
|
14
|
+
email?: string;
|
|
15
|
+
/** URL de la photo de profil. Si absente, on rend les initiales. */
|
|
16
|
+
avatarUrl?: string | null;
|
|
17
|
+
/** Initiales explicites. Si absentes, dérivées du `name`. */
|
|
18
|
+
initials?: string;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
/** Dérive des initiales lisibles (max 2 lettres) à partir d'un nom complet. */
|
|
22
|
+
export function deriveInitials(name: string): string {
|
|
23
|
+
const parts = name
|
|
24
|
+
.trim()
|
|
25
|
+
.split(/\s+/)
|
|
26
|
+
.filter(Boolean);
|
|
27
|
+
if (parts.length === 0) return "?";
|
|
28
|
+
if (parts.length === 1) return parts[0].slice(0, 2).toUpperCase();
|
|
29
|
+
return (parts[0][0] + parts[parts.length - 1][0]).toUpperCase();
|
|
30
|
+
}
|
|
31
|
+
</script>
|
|
32
|
+
|
|
1
33
|
<script lang="ts">
|
|
2
34
|
import type { Snippet } from "svelte";
|
|
3
35
|
import type { HTMLAttributes } from "svelte/elements";
|
|
@@ -11,6 +43,23 @@
|
|
|
11
43
|
navigation?: Snippet;
|
|
12
44
|
actions?: Snippet;
|
|
13
45
|
children?: Snippet;
|
|
46
|
+
/**
|
|
47
|
+
* Identité connectée (additif). Quand fourni, le Header rend une zone compte
|
|
48
|
+
* complète (avatar OU initiales + nom + email + déclencheur de menu). Sans
|
|
49
|
+
* cet objet, l'état « anonyme » s'affiche via le snippet `actions` du parent
|
|
50
|
+
* (typiquement un CTA « Se connecter »).
|
|
51
|
+
*/
|
|
52
|
+
account?: HeaderAccount;
|
|
53
|
+
/** Texte du déclencheur de connexion rendu quand `account` est absent. */
|
|
54
|
+
signInLabel?: string;
|
|
55
|
+
/** Snippet du menu compte (contenu du panneau ouvert sous l'avatar). */
|
|
56
|
+
accountMenu?: Snippet;
|
|
57
|
+
/** Indique si le menu compte est ouvert (état contrôlé par le parent). */
|
|
58
|
+
accountMenuOpen?: boolean;
|
|
59
|
+
/** Callback déclenché au clic sur le bouton compte. */
|
|
60
|
+
onAccountTriggerClick?: () => void;
|
|
61
|
+
/** Callback déclenché au clic sur le CTA de connexion (état anonyme). */
|
|
62
|
+
onSignIn?: () => void;
|
|
14
63
|
};
|
|
15
64
|
|
|
16
65
|
let {
|
|
@@ -22,11 +71,22 @@
|
|
|
22
71
|
navigation,
|
|
23
72
|
actions,
|
|
24
73
|
children,
|
|
74
|
+
account,
|
|
75
|
+
signInLabel = "Se connecter",
|
|
76
|
+
accountMenu,
|
|
77
|
+
accountMenuOpen = false,
|
|
78
|
+
onAccountTriggerClick,
|
|
79
|
+
onSignIn,
|
|
25
80
|
...rest
|
|
26
81
|
}: HeaderProps = $props();
|
|
27
82
|
|
|
28
83
|
const classes = () =>
|
|
29
84
|
["st-header", sticky ? "st-header--sticky" : null, className].filter(Boolean).join(" ");
|
|
85
|
+
|
|
86
|
+
const resolvedInitials = $derived(
|
|
87
|
+
account ? (account.initials?.trim() || deriveInitials(account.name)) : ""
|
|
88
|
+
);
|
|
89
|
+
const hasPhoto = $derived(Boolean(account?.avatarUrl));
|
|
30
90
|
</script>
|
|
31
91
|
|
|
32
92
|
<header {...rest} class={classes()} aria-label={label}>
|
|
@@ -43,9 +103,68 @@
|
|
|
43
103
|
{@render navigation()}
|
|
44
104
|
</nav>
|
|
45
105
|
{/if}
|
|
46
|
-
{#if actions}
|
|
106
|
+
{#if actions || account || onSignIn}
|
|
47
107
|
<div class="st-header__actions">
|
|
48
|
-
{
|
|
108
|
+
{#if actions}
|
|
109
|
+
{@render actions()}
|
|
110
|
+
{/if}
|
|
111
|
+
{#if account}
|
|
112
|
+
<!-- État connecté : identité arbitrée. Le nom est TOUJOURS visible. -->
|
|
113
|
+
<div class="st-header__account">
|
|
114
|
+
<button
|
|
115
|
+
type="button"
|
|
116
|
+
class="st-header__account-trigger"
|
|
117
|
+
aria-haspopup="menu"
|
|
118
|
+
aria-expanded={accountMenuOpen}
|
|
119
|
+
aria-label={`Compte de ${account.name}`}
|
|
120
|
+
onclick={onAccountTriggerClick}
|
|
121
|
+
>
|
|
122
|
+
{#if hasPhoto}
|
|
123
|
+
<span class="st-header__avatar st-header__avatar--photo" aria-hidden="true">
|
|
124
|
+
<img
|
|
125
|
+
class="st-header__avatar-image"
|
|
126
|
+
src={account.avatarUrl}
|
|
127
|
+
alt=""
|
|
128
|
+
/>
|
|
129
|
+
</span>
|
|
130
|
+
{:else}
|
|
131
|
+
<span class="st-header__avatar st-header__avatar--initials" aria-hidden="true">
|
|
132
|
+
{resolvedInitials}
|
|
133
|
+
</span>
|
|
134
|
+
{/if}
|
|
135
|
+
<span class="st-header__account-meta">
|
|
136
|
+
<span class="st-header__account-name">{account.name}</span>
|
|
137
|
+
{#if account.email}
|
|
138
|
+
<span class="st-header__account-email">{account.email}</span>
|
|
139
|
+
{/if}
|
|
140
|
+
</span>
|
|
141
|
+
<svg
|
|
142
|
+
class="st-header__account-caret"
|
|
143
|
+
width="12"
|
|
144
|
+
height="12"
|
|
145
|
+
viewBox="0 0 24 24"
|
|
146
|
+
fill="none"
|
|
147
|
+
stroke="currentColor"
|
|
148
|
+
stroke-width="2.4"
|
|
149
|
+
stroke-linecap="round"
|
|
150
|
+
stroke-linejoin="round"
|
|
151
|
+
aria-hidden="true"
|
|
152
|
+
>
|
|
153
|
+
<polyline points="6 9 12 15 18 9" />
|
|
154
|
+
</svg>
|
|
155
|
+
</button>
|
|
156
|
+
{#if accountMenu && accountMenuOpen}
|
|
157
|
+
<div class="st-header__account-menu" role="menu" aria-label={`Menu de ${account.name}`}>
|
|
158
|
+
{@render accountMenu()}
|
|
159
|
+
</div>
|
|
160
|
+
{/if}
|
|
161
|
+
</div>
|
|
162
|
+
{:else if onSignIn}
|
|
163
|
+
<!-- État anonyme : CTA de connexion explicite. -->
|
|
164
|
+
<button type="button" class="st-header__signin" onclick={onSignIn}>
|
|
165
|
+
{signInLabel}
|
|
166
|
+
</button>
|
|
167
|
+
{/if}
|
|
49
168
|
</div>
|
|
50
169
|
{/if}
|
|
51
170
|
{#if children}
|
|
@@ -114,4 +233,124 @@
|
|
|
114
233
|
* When no navigation snippet is provided, the actions area still flushes
|
|
115
234
|
* to the right because flex:1 leading + auto margin keep the layout balanced.
|
|
116
235
|
*/
|
|
236
|
+
|
|
237
|
+
/* --- Zone compte (G8) : identité connectée, jamais un carré nu --- */
|
|
238
|
+
.st-header__account {
|
|
239
|
+
position: relative;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.st-header__account-trigger {
|
|
243
|
+
align-items: center;
|
|
244
|
+
background: transparent;
|
|
245
|
+
border: 1px solid var(--st-component-header-border, var(--st-semantic-border-subtle));
|
|
246
|
+
border-radius: var(--st-radius-sm, 0.375rem);
|
|
247
|
+
color: inherit;
|
|
248
|
+
cursor: pointer;
|
|
249
|
+
display: inline-flex;
|
|
250
|
+
font: inherit;
|
|
251
|
+
gap: var(--st-spacing-2, 0.5rem);
|
|
252
|
+
max-width: 18rem;
|
|
253
|
+
min-height: 2.25rem;
|
|
254
|
+
padding: 0.25rem 0.5rem;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.st-header__account-trigger:hover,
|
|
258
|
+
.st-header__account-trigger:focus-visible {
|
|
259
|
+
border-color: var(--st-semantic-border-interactive, var(--st-semantic-action-primary));
|
|
260
|
+
outline: none;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.st-header__avatar {
|
|
264
|
+
aspect-ratio: 1;
|
|
265
|
+
border-radius: var(--st-radius-sm, 0.375rem);
|
|
266
|
+
flex: 0 0 auto;
|
|
267
|
+
height: 2rem;
|
|
268
|
+
overflow: hidden;
|
|
269
|
+
width: 2rem;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.st-header__avatar--initials {
|
|
273
|
+
align-items: center;
|
|
274
|
+
background: var(--st-semantic-surface-subtle, #eef2f7);
|
|
275
|
+
color: var(--st-semantic-text-primary, #0f172a);
|
|
276
|
+
display: inline-flex;
|
|
277
|
+
font-size: 0.8125rem;
|
|
278
|
+
font-weight: 700;
|
|
279
|
+
justify-content: center;
|
|
280
|
+
letter-spacing: 0.01em;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.st-header__avatar-image {
|
|
284
|
+
background: var(--st-semantic-surface-subtle, #eef2f7);
|
|
285
|
+
display: block;
|
|
286
|
+
height: 100%;
|
|
287
|
+
object-fit: cover;
|
|
288
|
+
object-position: center;
|
|
289
|
+
width: 100%;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.st-header__account-meta {
|
|
293
|
+
display: grid;
|
|
294
|
+
gap: 0.05rem;
|
|
295
|
+
min-width: 0;
|
|
296
|
+
text-align: left;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.st-header__account-name {
|
|
300
|
+
color: var(--st-semantic-text-primary, #0f172a);
|
|
301
|
+
font-size: 0.82rem;
|
|
302
|
+
font-weight: 650;
|
|
303
|
+
line-height: 1.2;
|
|
304
|
+
overflow: hidden;
|
|
305
|
+
text-overflow: ellipsis;
|
|
306
|
+
white-space: nowrap;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.st-header__account-email {
|
|
310
|
+
color: var(--st-semantic-text-secondary, #64748b);
|
|
311
|
+
font-size: 0.72rem;
|
|
312
|
+
line-height: 1.2;
|
|
313
|
+
overflow: hidden;
|
|
314
|
+
text-overflow: ellipsis;
|
|
315
|
+
white-space: nowrap;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.st-header__account-caret {
|
|
319
|
+
color: var(--st-semantic-text-secondary, #64748b);
|
|
320
|
+
flex: 0 0 auto;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.st-header__account-menu {
|
|
324
|
+
background: var(--st-component-popover-background, var(--st-semantic-surface-raised, #ffffff));
|
|
325
|
+
border: 1px solid var(--st-component-popover-border, var(--st-semantic-border-subtle, #e2e8f0));
|
|
326
|
+
border-radius: var(--st-component-popover-radius, 0.5rem);
|
|
327
|
+
box-shadow: var(--st-component-popover-shadow, 0 18px 45px rgb(15 23 42 / 0.18));
|
|
328
|
+
color: var(--st-semantic-text-primary, #0f172a);
|
|
329
|
+
display: grid;
|
|
330
|
+
gap: 0.35rem;
|
|
331
|
+
min-width: 14rem;
|
|
332
|
+
padding: var(--st-spacing-3, 0.75rem);
|
|
333
|
+
position: absolute;
|
|
334
|
+
right: 0;
|
|
335
|
+
top: calc(100% + var(--st-spacing-2, 0.5rem));
|
|
336
|
+
z-index: var(--st-component-popover-zIndex, 80);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.st-header__signin {
|
|
340
|
+
background: transparent;
|
|
341
|
+
border: 1px solid transparent;
|
|
342
|
+
border-radius: var(--st-radius-sm, 0.375rem);
|
|
343
|
+
color: var(--st-semantic-text-link, var(--st-semantic-action-primary));
|
|
344
|
+
cursor: pointer;
|
|
345
|
+
font: inherit;
|
|
346
|
+
font-weight: 600;
|
|
347
|
+
min-height: 2.25rem;
|
|
348
|
+
padding: 0 0.875rem;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.st-header__signin:hover,
|
|
352
|
+
.st-header__signin:focus-visible {
|
|
353
|
+
background: var(--st-semantic-surface-subtle, #f1f5f9);
|
|
354
|
+
outline: none;
|
|
355
|
+
}
|
|
117
356
|
</style>
|
package/dist/Header.svelte.d.ts
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Identité de l'utilisateur connecté à afficher dans la zone compte du Header.
|
|
3
|
+
*
|
|
4
|
+
* Le composant garantit qu'une identité connectée ne se réduit JAMAIS à une
|
|
5
|
+
* icône carrée nue : le nom est toujours rendu, et l'email l'accompagne quand
|
|
6
|
+
* il est fourni. L'avatar utilise la photo si `avatarUrl` est présente, sinon
|
|
7
|
+
* il retombe sur les `initials` (calculées depuis le nom si non fournies).
|
|
8
|
+
*/
|
|
9
|
+
export type HeaderAccount = {
|
|
10
|
+
/** Nom affiché de la personne connectée. Obligatoire : pas de carré sans nom. */
|
|
11
|
+
name: string;
|
|
12
|
+
/** Email optionnel, affiché sous le nom et dans le menu compte. */
|
|
13
|
+
email?: string;
|
|
14
|
+
/** URL de la photo de profil. Si absente, on rend les initiales. */
|
|
15
|
+
avatarUrl?: string | null;
|
|
16
|
+
/** Initiales explicites. Si absentes, dérivées du `name`. */
|
|
17
|
+
initials?: string;
|
|
18
|
+
};
|
|
19
|
+
/** Dérive des initiales lisibles (max 2 lettres) à partir d'un nom complet. */
|
|
20
|
+
export declare function deriveInitials(name: string): string;
|
|
1
21
|
import type { Snippet } from "svelte";
|
|
2
22
|
import type { HTMLAttributes } from "svelte/elements";
|
|
3
23
|
type HeaderProps = Omit<HTMLAttributes<HTMLElement>, "class"> & {
|
|
@@ -9,6 +29,23 @@ type HeaderProps = Omit<HTMLAttributes<HTMLElement>, "class"> & {
|
|
|
9
29
|
navigation?: Snippet;
|
|
10
30
|
actions?: Snippet;
|
|
11
31
|
children?: Snippet;
|
|
32
|
+
/**
|
|
33
|
+
* Identité connectée (additif). Quand fourni, le Header rend une zone compte
|
|
34
|
+
* complète (avatar OU initiales + nom + email + déclencheur de menu). Sans
|
|
35
|
+
* cet objet, l'état « anonyme » s'affiche via le snippet `actions` du parent
|
|
36
|
+
* (typiquement un CTA « Se connecter »).
|
|
37
|
+
*/
|
|
38
|
+
account?: HeaderAccount;
|
|
39
|
+
/** Texte du déclencheur de connexion rendu quand `account` est absent. */
|
|
40
|
+
signInLabel?: string;
|
|
41
|
+
/** Snippet du menu compte (contenu du panneau ouvert sous l'avatar). */
|
|
42
|
+
accountMenu?: Snippet;
|
|
43
|
+
/** Indique si le menu compte est ouvert (état contrôlé par le parent). */
|
|
44
|
+
accountMenuOpen?: boolean;
|
|
45
|
+
/** Callback déclenché au clic sur le bouton compte. */
|
|
46
|
+
onAccountTriggerClick?: () => void;
|
|
47
|
+
/** Callback déclenché au clic sur le CTA de connexion (état anonyme). */
|
|
48
|
+
onSignIn?: () => void;
|
|
12
49
|
};
|
|
13
50
|
declare const Header: import("svelte").Component<HeaderProps, {}, "">;
|
|
14
51
|
type Header = ReturnType<typeof Header>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Header.svelte.d.ts","sourceRoot":"","sources":["../src/lib/Header.svelte.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Header.svelte.d.ts","sourceRoot":"","sources":["../src/lib/Header.svelte.ts"],"names":[],"mappings":"AAGE;;;;;;;GAOG;AACH,MAAM,MAAM,aAAa,GAAG;IAC1B,iFAAiF;IACjF,IAAI,EAAE,MAAM,CAAC;IACb,mEAAmE;IACnE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oEAAoE;IACpE,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,6DAA6D;IAC7D,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,+EAA+E;AAC/E,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAQnD;AAGH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AACtC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAGpD,KAAK,WAAW,GAAG,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC,GAAG;IAC9D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,0EAA0E;IAC1E,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,wEAAwE;IACxE,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,0EAA0E;IAC1E,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,uDAAuD;IACvD,qBAAqB,CAAC,EAAE,MAAM,IAAI,CAAC;IACnC,yEAAyE;IACzE,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;CACvB,CAAC;AAoGJ,QAAA,MAAM,MAAM,iDAAwC,CAAC;AACrD,KAAK,MAAM,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAC;AACxC,eAAe,MAAM,CAAC"}
|
package/dist/Input.svelte
CHANGED
|
@@ -90,12 +90,24 @@
|
|
|
90
90
|
border-right: var(--st-component-control-anatomy-field-borderRight, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
91
91
|
border-bottom: var(--st-component-control-anatomy-field-borderBottom, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
92
92
|
border-left: var(--st-component-control-anatomy-field-borderLeft, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
93
|
-
|
|
93
|
+
/* Per-corner radius (anatomy v1.3.0): the TOP corners read the field's
|
|
94
|
+
`radiusTop` (DSFR « Champ de saisie » = 4px top, square bottom); the
|
|
95
|
+
BOTTOM corners keep `shape.radius`. Fallback = shape.radius on all four
|
|
96
|
+
corners → the base Sent Tech field stays a uniform rounded box. */
|
|
97
|
+
border-top-left-radius: var(--st-component-control-anatomy-field-radiusTop, var(--st-component-control-anatomy-shape-radius, 0.375rem));
|
|
98
|
+
border-top-right-radius: var(--st-component-control-anatomy-field-radiusTop, var(--st-component-control-anatomy-shape-radius, 0.375rem));
|
|
99
|
+
border-bottom-right-radius: var(--st-component-control-anatomy-shape-radius, 0.375rem);
|
|
100
|
+
border-bottom-left-radius: var(--st-component-control-anatomy-shape-radius, 0.375rem);
|
|
101
|
+
/* Bottom rule as a box-shadow inset (anatomy v1.3.0, real DSFR/Carbon
|
|
102
|
+
technique) instead of a border-bottom — keeps the box height honest.
|
|
103
|
+
Fallback = none → the base boxed field draws its rule via the 4 borders. */
|
|
104
|
+
box-shadow: var(--st-component-control-anatomy-field-underline, none);
|
|
94
105
|
color: var(--st-component-control-text, var(--st-semantic-text-primary));
|
|
95
106
|
font-family: var(--st-component-control-anatomy-typography-family, inherit);
|
|
96
107
|
font-size: var(--st-component-control-anatomy-typography-size, inherit);
|
|
97
108
|
font-weight: var(--st-component-control-anatomy-typography-weight, 400);
|
|
98
109
|
line-height: var(--st-component-control-anatomy-typography-lineHeight, 1.5);
|
|
110
|
+
letter-spacing: var(--st-component-control-anatomy-typography-letterSpacing, normal);
|
|
99
111
|
min-width: 0;
|
|
100
112
|
/* Inputs use the SM inline padding (denser than buttons) — base = 0.75rem. */
|
|
101
113
|
padding: var(--st-component-control-anatomy-density-md-paddingBlock, 0)
|
|
@@ -128,13 +140,17 @@
|
|
|
128
140
|
}
|
|
129
141
|
|
|
130
142
|
/* Focus = shared mixin. Base/DSFR use outline; Carbon uses inset box-shadow.
|
|
131
|
-
The border-color change is the field's own affordance and stays.
|
|
143
|
+
The border-color change is the field's own affordance and stays. The field
|
|
144
|
+
focus box-shadow (anatomy v1.3.0) is COMPOSED so the resting underline is
|
|
145
|
+
not dropped: DSFR (outline) keeps the underline, Carbon stacks ring +
|
|
146
|
+
underline. Fallback = the plain focus ring (base boxed field). */
|
|
132
147
|
.st-control:focus-visible {
|
|
133
148
|
border-color: var(--st-component-control-focusRing, var(--st-semantic-border-interactive));
|
|
134
149
|
outline: var(--st-component-control-anatomy-focus-outline, none);
|
|
135
150
|
outline-offset: var(--st-component-control-anatomy-focus-offset, 0);
|
|
136
|
-
box-shadow: var(--st-component-control-anatomy-
|
|
137
|
-
|
|
151
|
+
box-shadow: var(--st-component-control-anatomy-field-focusShadow,
|
|
152
|
+
var(--st-component-control-anatomy-focus-boxShadow,
|
|
153
|
+
0 0 0 2px var(--st-component-control-focusRing, var(--st-semantic-border-interactive))));
|
|
138
154
|
}
|
|
139
155
|
|
|
140
156
|
.st-control[aria-invalid="true"] {
|
package/dist/Link.svelte
CHANGED
|
@@ -58,6 +58,12 @@
|
|
|
58
58
|
.st-link {
|
|
59
59
|
color: var(--st-component-link-text, var(--st-semantic-text-link));
|
|
60
60
|
cursor: var(--st-cursor-interactive, pointer);
|
|
61
|
+
/* Anatomy typography (additive): size/line-height/letter-spacing follow the
|
|
62
|
+
link role per theme. Base/DSFR use `inherit`/`normal` fallbacks → no visible
|
|
63
|
+
change; Carbon poses 14px / 18px / 0.16px to match the real .bx--link. */
|
|
64
|
+
font-size: var(--st-component-link-anatomy-typography-size, inherit);
|
|
65
|
+
line-height: var(--st-component-link-anatomy-typography-lineHeight, normal);
|
|
66
|
+
letter-spacing: var(--st-component-link-anatomy-typography-letterSpacing, normal);
|
|
61
67
|
text-decoration: var(--st-component-link-anatomy-typography-textDecoration, underline);
|
|
62
68
|
text-decoration-thickness: var(--st-component-link-anatomy-typography-decorationThickness, auto);
|
|
63
69
|
text-underline-offset: var(--st-component-link-anatomy-typography-decorationOffset, 0.18em);
|
package/dist/Pagination.svelte
CHANGED
|
@@ -52,19 +52,37 @@
|
|
|
52
52
|
|
|
53
53
|
.st-pagination button {
|
|
54
54
|
background: var(--st-component-pagination-background, var(--st-semantic-surface-default));
|
|
55
|
-
border:
|
|
55
|
+
border: var(--st-component-pagination-borderWidth, 1px) solid
|
|
56
|
+
var(--st-component-pagination-border, var(--st-semantic-border-subtle));
|
|
56
57
|
border-radius: var(--st-component-pagination-radius, 0.375rem);
|
|
57
58
|
color: var(--st-component-pagination-text, var(--st-semantic-text-primary));
|
|
58
59
|
cursor: pointer;
|
|
59
|
-
font: inherit;
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
font-family: inherit;
|
|
61
|
+
font-size: var(--st-component-pagination-fontSize, inherit);
|
|
62
|
+
line-height: var(--st-component-pagination-lineHeight, normal);
|
|
63
|
+
letter-spacing: var(--st-component-pagination-letterSpacing, normal);
|
|
64
|
+
min-height: var(--st-component-pagination-minSize, 2.25rem);
|
|
65
|
+
min-width: var(--st-component-pagination-minSize, 2.25rem);
|
|
66
|
+
padding: var(--st-component-pagination-paddingBlock, 0)
|
|
67
|
+
var(--st-component-pagination-paddingInline, 0.75rem);
|
|
63
68
|
}
|
|
64
69
|
|
|
65
|
-
|
|
70
|
+
/* Active page — scoped under `.st-pagination button` so it outweighs the base
|
|
71
|
+
button rule. The prior single-class selector (specificity 0,1,0) LOST to the
|
|
72
|
+
element+class base rule (0,1,1), so the active fill/colour never applied
|
|
73
|
+
(the report measured the active page on white, not the action fill). */
|
|
74
|
+
.st-pagination button.st-pagination__page--active {
|
|
66
75
|
background: var(--st-component-pagination-activeBackground, var(--st-semantic-action-primary));
|
|
76
|
+
border-color: var(
|
|
77
|
+
--st-component-pagination-activeBorder,
|
|
78
|
+
var(--st-component-pagination-border, var(--st-semantic-border-subtle))
|
|
79
|
+
);
|
|
80
|
+
border-width: var(
|
|
81
|
+
--st-component-pagination-activeBorderWidth,
|
|
82
|
+
var(--st-component-pagination-borderWidth, 1px)
|
|
83
|
+
);
|
|
67
84
|
color: var(--st-component-pagination-activeText, var(--st-semantic-action-primaryText));
|
|
85
|
+
font-weight: var(--st-component-pagination-activeWeight, inherit);
|
|
68
86
|
}
|
|
69
87
|
|
|
70
88
|
.st-pagination button:disabled {
|
package/dist/Radio.svelte
CHANGED
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
};
|
|
10
10
|
|
|
11
11
|
let { label, helperText, invalid = false, class: className, ...rest }: RadioProps = $props();
|
|
12
|
-
const classes = () => ["st-choice", className].filter(Boolean).join(" ");
|
|
12
|
+
const classes = () => ["st-choice", "st-choice--radio", className].filter(Boolean).join(" ");
|
|
13
13
|
</script>
|
|
14
14
|
|
|
15
15
|
<label class={classes()}>
|
|
16
|
-
<input {...rest} class="st-choice__input" type="radio"
|
|
16
|
+
<input {...rest} class="st-choice__input" type="radio" aria-invalid={invalid ? "true" : undefined} />
|
|
17
17
|
<span class="st-choice__content">
|
|
18
18
|
<span class="st-choice__label">{label}</span>
|
|
19
19
|
{#if helperText}<span class="st-choice__help">{helperText}</span>{/if}
|
|
@@ -24,28 +24,60 @@
|
|
|
24
24
|
.st-choice {
|
|
25
25
|
align-items: start;
|
|
26
26
|
color: var(--st-component-field-labelText, var(--st-semantic-text-primary));
|
|
27
|
+
cursor: var(--st-cursor-interactive, pointer);
|
|
27
28
|
display: inline-grid;
|
|
28
29
|
gap: 0.625rem;
|
|
29
30
|
grid-template-columns: auto 1fr;
|
|
30
31
|
}
|
|
31
32
|
|
|
32
33
|
.st-choice__input {
|
|
33
|
-
/*
|
|
34
|
-
|
|
35
|
-
un item dédié (cf. backlog). */
|
|
34
|
+
/* Natif stylé : couleur de sélection thémée + taille + focus par stratégie
|
|
35
|
+
d'anatomie + états. Aucun widget custom, a11y native préservée. */
|
|
36
36
|
accent-color: var(--st-component-selection-checkedBackground, var(--st-semantic-action-primary));
|
|
37
|
+
cursor: inherit;
|
|
37
38
|
height: 1rem;
|
|
38
39
|
margin: 0.125rem 0 0;
|
|
39
40
|
width: 1rem;
|
|
40
41
|
}
|
|
41
42
|
|
|
43
|
+
/* Focus = stratégie d'anatomie partagée (outline DSFR / inset Carbon / ring base). */
|
|
44
|
+
.st-choice__input:focus-visible {
|
|
45
|
+
outline: var(--st-component-control-anatomy-focus-outline, none);
|
|
46
|
+
outline-offset: var(--st-component-control-anatomy-focus-offset, 0);
|
|
47
|
+
box-shadow: var(--st-component-control-anatomy-focus-boxShadow,
|
|
48
|
+
0 0 0 2px var(--st-component-control-focusRing, var(--st-semantic-border-interactive)));
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.st-choice__input[aria-invalid="true"] {
|
|
52
|
+
accent-color: var(--st-component-control-invalidBorder, var(--st-semantic-feedback-error));
|
|
53
|
+
outline-color: var(--st-component-control-invalidBorder, var(--st-semantic-feedback-error));
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.st-choice__input:disabled {
|
|
57
|
+
cursor: var(--st-cursor-disabled, not-allowed);
|
|
58
|
+
opacity: 0.55;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.st-choice:has(.st-choice__input:disabled) {
|
|
62
|
+
color: var(--st-component-control-disabledText, var(--st-semantic-text-muted));
|
|
63
|
+
cursor: var(--st-cursor-disabled, not-allowed);
|
|
64
|
+
}
|
|
65
|
+
|
|
42
66
|
.st-choice__content {
|
|
43
67
|
display: grid;
|
|
44
68
|
gap: 0.25rem;
|
|
45
69
|
}
|
|
46
70
|
|
|
47
71
|
.st-choice__label {
|
|
48
|
-
|
|
72
|
+
/* P-D: label typography per theme (base = 15px / normal / inherited colour).
|
|
73
|
+
Radio carries its own line-height (Carbon $body-01 = 20px, vs the checkbox
|
|
74
|
+
$body-compact-01 = 18px); the var defaults to the shared choice line-height
|
|
75
|
+
so a theme that does not split them stays consistent. */
|
|
76
|
+
color: var(--st-component-selection-choiceLabelColor, inherit);
|
|
77
|
+
font-size: var(--st-component-selection-choiceLabelFontSize, 0.9375rem);
|
|
78
|
+
line-height: var(--st-component-selection-choiceRadioLineHeight,
|
|
79
|
+
var(--st-component-selection-choiceLabelLineHeight, normal));
|
|
80
|
+
letter-spacing: var(--st-component-selection-choiceLabelLetterSpacing, normal);
|
|
49
81
|
}
|
|
50
82
|
|
|
51
83
|
.st-choice__help {
|
package/dist/Search.svelte
CHANGED
|
@@ -117,9 +117,21 @@
|
|
|
117
117
|
border-right: var(--st-component-control-anatomy-field-borderRight, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
118
118
|
border-bottom: var(--st-component-control-anatomy-field-borderBottom, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
119
119
|
border-left: var(--st-component-control-anatomy-field-borderLeft, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
120
|
-
|
|
120
|
+
/* Top corners ride the shared field `radiusTop` (DSFR rounds top 4px, like
|
|
121
|
+
the Input field box); bottom corners keep the field shape radius. */
|
|
122
|
+
border-top-left-radius: var(--st-component-control-anatomy-field-radiusTop, var(--st-component-control-anatomy-shape-radius, 0.375rem));
|
|
123
|
+
border-top-right-radius: var(--st-component-control-anatomy-field-radiusTop, var(--st-component-control-anatomy-shape-radius, 0.375rem));
|
|
124
|
+
border-bottom-right-radius: var(--st-component-control-anatomy-shape-radius, 0.375rem);
|
|
125
|
+
border-bottom-left-radius: var(--st-component-control-anatomy-shape-radius, 0.375rem);
|
|
121
126
|
color: var(--st-component-control-text, var(--st-semantic-text-primary));
|
|
122
127
|
display: inline-flex;
|
|
128
|
+
/* P-D: field-box padding + input typography per theme. Default = the prior
|
|
129
|
+
render (0 padding on the wrapper, inherited 16px / `normal` typography);
|
|
130
|
+
DSFR pads 8/16px, Carbon 0/40px to match the measured reference input. */
|
|
131
|
+
padding: var(--st-component-search-paddingBlock, 0) var(--st-component-search-paddingInline, 0);
|
|
132
|
+
font-size: var(--st-component-search-fontSize, 1rem);
|
|
133
|
+
line-height: var(--st-component-search-lineHeight, normal);
|
|
134
|
+
letter-spacing: var(--st-component-search-letterSpacing, normal);
|
|
123
135
|
transition:
|
|
124
136
|
border-color var(--st-motion-fast, 120ms) var(--st-motion-easing, ease),
|
|
125
137
|
box-shadow var(--st-motion-fast, 120ms) var(--st-motion-easing, ease);
|
package/dist/Select.svelte
CHANGED
|
@@ -87,19 +87,52 @@
|
|
|
87
87
|
|
|
88
88
|
/* Field box = resolved field anatomy (v1.2.0), same as Input. */
|
|
89
89
|
.st-select {
|
|
90
|
-
|
|
90
|
+
/* Native <select> rendering (anatomy v1.4.0, F5/F9). A native <select> with
|
|
91
|
+
`appearance: auto` has its `line-height` FORCED to `normal` by the browser
|
|
92
|
+
(the anatomy line-height below never lands); `appearance: none` lets it
|
|
93
|
+
take effect — the real DSFR/Carbon selects use `appearance: none` + a
|
|
94
|
+
drawn chevron, which is why they render 24px / 18px. Base = `auto` so the
|
|
95
|
+
Sent Tech select keeps its NATIVE arrow + render (unchanged). When a theme
|
|
96
|
+
opts into `none`, `selectChevron` redraws the arrow the UA dropped. */
|
|
97
|
+
appearance: var(--st-component-control-anatomy-field-selectAppearance, auto);
|
|
98
|
+
-webkit-appearance: var(--st-component-control-anatomy-field-selectAppearance, auto);
|
|
99
|
+
background:
|
|
100
|
+
var(--st-component-control-anatomy-field-selectChevron, none),
|
|
101
|
+
var(--st-component-control-anatomy-field-fillBg, var(--st-component-control-background, var(--st-semantic-surface-default)));
|
|
91
102
|
border-top: var(--st-component-control-anatomy-field-borderTop, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
92
103
|
border-right: var(--st-component-control-anatomy-field-borderRight, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
93
104
|
border-bottom: var(--st-component-control-anatomy-field-borderBottom, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
94
105
|
border-left: var(--st-component-control-anatomy-field-borderLeft, var(--st-component-control-anatomy-shape-borderWidth, 1px) var(--st-component-control-anatomy-shape-borderStyle, solid) var(--st-component-control-border, var(--st-semantic-border-subtle)));
|
|
95
|
-
|
|
106
|
+
/* Per-corner radius + box-shadow underline (anatomy v1.3.0) — same field
|
|
107
|
+
anatomy as Input. TOP corners = radiusTop (DSFR 4px), bottom = shape.radius;
|
|
108
|
+
bottom rule via inset box-shadow. Fallbacks reproduce the prior uniform
|
|
109
|
+
rounded box with no underline shadow → base Sent Tech unchanged. */
|
|
110
|
+
border-top-left-radius: var(--st-component-control-anatomy-field-radiusTop, var(--st-component-control-anatomy-shape-radius, 0.375rem));
|
|
111
|
+
border-top-right-radius: var(--st-component-control-anatomy-field-radiusTop, var(--st-component-control-anatomy-shape-radius, 0.375rem));
|
|
112
|
+
border-bottom-right-radius: var(--st-component-control-anatomy-shape-radius, 0.375rem);
|
|
113
|
+
border-bottom-left-radius: var(--st-component-control-anatomy-shape-radius, 0.375rem);
|
|
114
|
+
box-shadow: var(--st-component-control-anatomy-field-underline, none);
|
|
96
115
|
color: var(--st-component-control-text, var(--st-semantic-text-primary));
|
|
97
116
|
font-family: var(--st-component-control-anatomy-typography-family, inherit);
|
|
98
117
|
font-size: var(--st-component-control-anatomy-typography-size, inherit);
|
|
99
118
|
font-weight: var(--st-component-control-anatomy-typography-weight, 400);
|
|
119
|
+
/* Native <select> renders `line-height: normal` unless one is set explicitly;
|
|
120
|
+
pose the anatomy line-height so DSFR/Carbon select matches the field roles
|
|
121
|
+
(cluster 4). letter-spacing likewise (Carbon 0.16px). Additive — base keeps
|
|
122
|
+
its 1.5 fallback so the Sent Tech select is unchanged. */
|
|
100
123
|
line-height: var(--st-component-control-anatomy-typography-lineHeight, 1.5);
|
|
124
|
+
letter-spacing: var(--st-component-control-anatomy-typography-letterSpacing, normal);
|
|
101
125
|
min-width: 0;
|
|
102
|
-
|
|
126
|
+
/* Padding follows the field density (additive; fallbacks reproduce the prior
|
|
127
|
+
`0 2rem 0 0.75rem` literal so the base Sent Tech select is unchanged):
|
|
128
|
+
vertical = md paddingBlock (base 0 → DSFR 8px), left = sm paddingInline
|
|
129
|
+
(base 0.75rem → DSFR/Carbon 16px). The right side reserves the chevron
|
|
130
|
+
gutter via selectPaddingRight (F9: base 2rem → DSFR 40px / Carbon 48px). */
|
|
131
|
+
padding:
|
|
132
|
+
var(--st-component-control-anatomy-density-md-paddingBlock, 0)
|
|
133
|
+
var(--st-component-control-anatomy-field-selectPaddingRight, 2rem)
|
|
134
|
+
var(--st-component-control-anatomy-density-md-paddingBlock, 0)
|
|
135
|
+
var(--st-component-control-anatomy-density-sm-paddingInline, 0.75rem);
|
|
103
136
|
width: 100%;
|
|
104
137
|
}
|
|
105
138
|
|
|
@@ -119,8 +152,10 @@
|
|
|
119
152
|
border-color: var(--st-component-control-focusRing, var(--st-semantic-border-interactive));
|
|
120
153
|
outline: var(--st-component-control-anatomy-focus-outline, none);
|
|
121
154
|
outline-offset: var(--st-component-control-anatomy-focus-offset, 0);
|
|
122
|
-
box-shadow:
|
|
123
|
-
|
|
155
|
+
/* Composed field focus box-shadow (v1.3.0): keeps the resting underline. */
|
|
156
|
+
box-shadow: var(--st-component-control-anatomy-field-focusShadow,
|
|
157
|
+
var(--st-component-control-anatomy-focus-boxShadow,
|
|
158
|
+
0 0 0 2px var(--st-component-control-focusRing, var(--st-semantic-border-interactive))));
|
|
124
159
|
}
|
|
125
160
|
|
|
126
161
|
.st-select[aria-invalid="true"] {
|
package/dist/Switch.svelte
CHANGED
|
@@ -33,31 +33,33 @@
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.st-switch__input {
|
|
36
|
-
height: 1.25rem;
|
|
36
|
+
height: var(--st-component-selection-toggleTrackHeight, 1.25rem);
|
|
37
37
|
margin: 0;
|
|
38
38
|
opacity: 0;
|
|
39
39
|
position: absolute;
|
|
40
|
-
width: 2.25rem;
|
|
40
|
+
width: var(--st-component-selection-toggleTrackWidth, 2.25rem);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.st-switch__track {
|
|
44
44
|
align-items: center;
|
|
45
45
|
background: var(--st-component-selection-switchTrack, var(--st-semantic-border-strong));
|
|
46
|
-
|
|
46
|
+
/* P-D: dims/radius/padding ride the per-theme toggle anatomy (default = the
|
|
47
|
+
prior 36×20 pill → base unchanged), so Switch stays coherent with Toggle. */
|
|
48
|
+
border-radius: var(--st-component-selection-toggleTrackRadius, var(--st-radius-pill, 999px));
|
|
47
49
|
display: inline-flex;
|
|
48
|
-
height: 1.25rem;
|
|
49
|
-
padding: 0.125rem;
|
|
50
|
+
height: var(--st-component-selection-toggleTrackHeight, 1.25rem);
|
|
51
|
+
padding: var(--st-component-selection-toggleTrackPadding, 0.125rem);
|
|
50
52
|
transition: background var(--st-motion-fast, 120ms) var(--st-motion-easing, ease);
|
|
51
|
-
width: 2.25rem;
|
|
53
|
+
width: var(--st-component-selection-toggleTrackWidth, 2.25rem);
|
|
52
54
|
}
|
|
53
55
|
|
|
54
56
|
.st-switch__thumb {
|
|
55
57
|
background: var(--st-component-selection-switchThumb, var(--st-semantic-surface-default));
|
|
56
58
|
border-radius: var(--st-radius-pill, 999px);
|
|
57
|
-
height: 1rem;
|
|
59
|
+
height: var(--st-component-selection-toggleThumbSize, 1rem);
|
|
58
60
|
transform: translateX(0);
|
|
59
61
|
transition: transform var(--st-motion-fast, 120ms) var(--st-motion-easing, ease);
|
|
60
|
-
width: 1rem;
|
|
62
|
+
width: var(--st-component-selection-toggleThumbSize, 1rem);
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
.st-switch__input:checked + .st-switch__track {
|
|
@@ -65,7 +67,7 @@
|
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.st-switch__input:checked + .st-switch__track .st-switch__thumb {
|
|
68
|
-
transform: translateX(1rem);
|
|
70
|
+
transform: translateX(calc(var(--st-component-selection-toggleTrackWidth, 2.25rem) - var(--st-component-selection-toggleThumbSize, 1rem) - 2 * var(--st-component-selection-toggleTrackPadding, 0.125rem)));
|
|
69
71
|
}
|
|
70
72
|
|
|
71
73
|
/* Focus = stratégie d'anatomie partagée (outline DSFR / inset Carbon / ring base). */
|