@digitalservicebund/ris-ui 4.0.0 → 4.1.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/primevue/index.d.ts
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
1
|
export declare const RisUiTheme: {
|
|
2
|
+
autocomplete: import("primevue").AutoCompletePassThroughOptions;
|
|
3
|
+
breadcrumb: import("primevue").BreadcrumbPassThroughOptions;
|
|
2
4
|
button: import("primevue").ButtonPassThroughOptions<any>;
|
|
3
5
|
checkbox: import("primevue").CheckboxPassThroughOptions;
|
|
4
6
|
chip: import("primevue").ChipPassThroughOptions<any>;
|
|
5
7
|
confirmDialog: import("primevue").ConfirmDialogPassThroughOptions;
|
|
8
|
+
dataTable: import("primevue").DataTablePassThroughOptions;
|
|
6
9
|
dialog: import("primevue").DialogPassThroughOptions<any>;
|
|
10
|
+
drawer: import("primevue").DrawerPassThroughOptions;
|
|
7
11
|
fileUpload: import("primevue").FileUploadPassThroughOptions;
|
|
8
12
|
inputGroup: import("primevue").InputGroupPassThroughOptions;
|
|
13
|
+
inputMask: import("primevue").InputMaskPassThroughOptions;
|
|
9
14
|
inputText: import("primevue").InputTextPassThroughOptions<any>;
|
|
10
15
|
menu: import("primevue").MenuPassThroughOptions;
|
|
11
16
|
message: import("primevue").MessagePassThroughOptions<any>;
|
|
17
|
+
multiselect: import("primevue").MultiSelectPassThroughOptions;
|
|
18
|
+
panelmenu: import("primevue").PanelMenuPassThroughOptions;
|
|
12
19
|
password: import("primevue").PasswordPassThroughOptions;
|
|
13
20
|
progressSpinner: import("primevue").ProgressSpinnerPassThroughOptions;
|
|
14
21
|
radioButton: import("primevue").RadioButtonPassThroughOptions;
|
|
15
|
-
textarea: import("primevue").TextareaPassThroughOptions;
|
|
16
|
-
toast: import("primevue").ToastPassThroughOptions;
|
|
17
|
-
autocomplete: import("primevue").AutoCompletePassThroughOptions;
|
|
18
22
|
select: import("primevue").SelectPassThroughOptions<any>;
|
|
19
|
-
multiselect: import("primevue").MultiSelectPassThroughOptions;
|
|
20
|
-
inputMask: import("primevue").InputMaskPassThroughOptions;
|
|
21
|
-
breadcrumb: import("primevue").BreadcrumbPassThroughOptions;
|
|
22
|
-
tree: import("primevue").TreePassThroughOptions<any>;
|
|
23
|
-
panelmenu: import("primevue").PanelMenuPassThroughOptions;
|
|
24
23
|
splitter: import("primevue").SplitterPassThroughOptions;
|
|
25
|
-
dataTable: import("primevue").DataTablePassThroughOptions;
|
|
26
24
|
tab: import("primevue").TabPassThroughOptions;
|
|
27
|
-
tabPanel: import("primevue").TabPanelPassThroughOptions;
|
|
28
25
|
tabList: import("primevue").TabListPassThroughOptions;
|
|
26
|
+
tabPanel: import("primevue").TabPanelPassThroughOptions;
|
|
27
|
+
textarea: import("primevue").TextareaPassThroughOptions;
|
|
28
|
+
toast: import("primevue").ToastPassThroughOptions;
|
|
29
|
+
tree: import("primevue").TreePassThroughOptions<any>;
|
|
29
30
|
directives: {
|
|
30
31
|
tooltip: import("primevue").TooltipDirectivePassThroughOptions;
|
|
31
32
|
};
|
package/dist/primevue/index.js
CHANGED
|
@@ -283,25 +283,45 @@ var e = {
|
|
|
283
283
|
footer: { class: t`mt-40 flex items-center justify-end gap-12` },
|
|
284
284
|
mask: { class: t`bg-black/40` }
|
|
285
285
|
}, d = {
|
|
286
|
+
root: { class: t`drawer-root shadow-gray-1000/15 relative max-h-[85dvh] w-full overflow-auto bg-white shadow-[0_0_0.5rem]` },
|
|
287
|
+
header: { class: t`drawer-header sticky top-0 z-10 flex min-h-64 items-center justify-between gap-8 bg-white px-16 py-8 transition-shadow duration-100` },
|
|
288
|
+
pcCloseButton: {
|
|
289
|
+
root: { class: t`ris-label2-regular flex cursor-pointer items-center gap-6 py-12 text-blue-800 outline-offset-4 outline-blue-800 focus-visible:outline-4` },
|
|
290
|
+
icon: {
|
|
291
|
+
width: "1.25rem",
|
|
292
|
+
height: "1.25rem"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
title: { class: t`ris-subhead-bold` },
|
|
296
|
+
content: { class: t`px-16 py-8` },
|
|
297
|
+
footer: { class: t`drawer-footer sticky bottom-0 bg-white px-16 pt-16 pb-24 transition-shadow duration-100` },
|
|
298
|
+
mask: { class: t`bg-gray-900/30 transition duration-300 has-[.enter-from]:bg-gray-900/0 has-[.leave-to]:bg-gray-900/0` },
|
|
299
|
+
transition: {
|
|
300
|
+
enterFromClass: t`enter-from translate-y-full`,
|
|
301
|
+
enterActiveClass: t`enter-active transition duration-300`,
|
|
302
|
+
leaveActiveClass: t`leave-active transition duration-150`,
|
|
303
|
+
leaveToClass: t`leave-to translate-y-full`
|
|
304
|
+
}
|
|
305
|
+
}, f = {
|
|
286
306
|
basicContent: { class: t`flex flex-col items-center gap-10` },
|
|
287
307
|
input: { class: t`hidden` }
|
|
288
|
-
},
|
|
308
|
+
}, p = { root: { class: t`flex` } }, m = t`[&+small]:ris-label3-regular border-2 border-blue-800 bg-white placeholder:text-gray-800 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus-visible:outline-4 focus-visible:-outline-offset-4 focus-visible:outline-blue-800 disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-hidden aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-hidden [&+small]:mt-4 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid="true"]+small]:text-red-900`, h = t`ris-body2-regular h-48 px-16 py-4`, g = t`ris-body1-regular h-64 px-24 py-4`, _ = { root: ({ props: e }) => {
|
|
289
309
|
let n = t`[[type=password]]:w-full [&[type=password]:not(:placeholder-shown)]:text-[1.75rem] [&[type=password]:not(:placeholder-shown)]:tracking-[0.25rem]`, r = t`w-full`;
|
|
290
310
|
return {
|
|
291
311
|
class: {
|
|
292
|
-
[
|
|
312
|
+
[m]: !0,
|
|
293
313
|
[r]: !!e.fluid,
|
|
294
314
|
[n]: !0,
|
|
295
|
-
[
|
|
296
|
-
[
|
|
315
|
+
[h]: !e.size || e.size === "small",
|
|
316
|
+
[g]: e.size === "large"
|
|
297
317
|
},
|
|
298
318
|
"data-size": e.size ?? "small"
|
|
299
319
|
};
|
|
300
|
-
} },
|
|
301
|
-
[p]: !0,
|
|
320
|
+
} }, v = { pcInputText: { root: ({ props: e }) => ({ class: {
|
|
302
321
|
[m]: !0,
|
|
322
|
+
[h]: !0,
|
|
303
323
|
"w-full": !!e.fluid
|
|
304
|
-
} }) } },
|
|
324
|
+
} }) } }, y = {
|
|
305
325
|
root: { class: t`ris-body2-regular border border-gray-600 bg-white shadow` },
|
|
306
326
|
list: { class: t`focus-visible:outline-none` },
|
|
307
327
|
item: ({ context: e }) => {
|
|
@@ -313,7 +333,7 @@ var e = {
|
|
|
313
333
|
},
|
|
314
334
|
itemContent: { class: t`flex h-full items-center py-4` },
|
|
315
335
|
itemLink: { class: t`flex items-center gap-8` }
|
|
316
|
-
},
|
|
336
|
+
}, b = {
|
|
317
337
|
root: ({ props: e, instance: n }) => {
|
|
318
338
|
let r = t`ris-body1-regular border-l-4 px-20 py-14`, i = e.severity ?? "info", a = t`border-l-green-800 bg-green-200`, o = t`border-l-blue-800 bg-blue-200`, s = t`border-l-yellow-800 bg-yellow-200`, c = t`border-l-red-800 bg-red-200`, l = !!n.$slots.icon, u = {
|
|
319
339
|
success: "var(--ris-icon-success)",
|
|
@@ -345,7 +365,7 @@ var e = {
|
|
|
345
365
|
[s]: r === "error"
|
|
346
366
|
} };
|
|
347
367
|
}
|
|
348
|
-
},
|
|
368
|
+
}, x = {
|
|
349
369
|
root: ({ props: e, state: n }) => {
|
|
350
370
|
let r = t`ris-body2-regular [&+small]:ris-label3-regular relative inline-flex min-h-48 items-center justify-start border-2 bg-white py-2 pr-12 pl-12 [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid="true"]+small]:text-red-900`, i = t`cursor-pointer border-blue-800`, a = t`has-focus-visible:outline-4 has-focus-visible:-outline-offset-4 has-focus-visible:outline-blue-800`, o = t`hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800`, s = t`cursor-not-allowed border-blue-500 text-blue-500 disabled:outline-hidden`, c = t`border-red-800 bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-hidden aria-[invalid]:disabled:outline-hidden`, l = t`w-full`;
|
|
351
371
|
return {
|
|
@@ -376,32 +396,32 @@ var e = {
|
|
|
376
396
|
[r]: e.focused
|
|
377
397
|
} };
|
|
378
398
|
}
|
|
379
|
-
},
|
|
399
|
+
}, S = t`cursor-pointer`, C = t`ris-label1-bold border-l-blue-800 bg-blue-200 text-blue-900 hover:bg-blue-300`, w = t`ris-label1-regular hover:border-l-blue-600 hover:bg-blue-200`, T = t`-outline-offset-4 outline-blue-800 focus-visible:outline-4`, E = {
|
|
380
400
|
root: { class: t`text-blue-800` },
|
|
381
401
|
header: ({ context: e }) => ({ class: {
|
|
382
402
|
[t`group flex h-64 items-center border-l-4 border-transparent py-8 pr-20 pl-10`]: !0,
|
|
383
|
-
[
|
|
384
|
-
[
|
|
385
|
-
[
|
|
386
|
-
[
|
|
403
|
+
[T]: !0,
|
|
404
|
+
[S]: !0,
|
|
405
|
+
[C]: e.active,
|
|
406
|
+
[w]: !e.active
|
|
387
407
|
} }),
|
|
388
408
|
content: { class: t`mt-8 ml-28` },
|
|
389
409
|
rootList: { class: t`focus-visible:outline-none` },
|
|
390
410
|
panel: { class: t`focus-visible:outline-none` },
|
|
391
411
|
itemContent: ({ context: e }) => {
|
|
392
|
-
let n = t`group flex h-48 items-center border-l-4 border-transparent py-8 pr-20 pl-10`, r = t`${
|
|
412
|
+
let n = t`group flex h-48 items-center border-l-4 border-transparent py-8 pr-20 pl-10`, r = t`${T} not-[:hover]:outline-4`;
|
|
393
413
|
return { class: {
|
|
394
414
|
[n]: !0,
|
|
395
415
|
[r]: e.focused,
|
|
396
|
-
[
|
|
397
|
-
[
|
|
398
|
-
[
|
|
416
|
+
[S]: !0,
|
|
417
|
+
[C]: e.active,
|
|
418
|
+
[w]: !e.active
|
|
399
419
|
} };
|
|
400
420
|
}
|
|
401
|
-
},
|
|
421
|
+
}, D = {}, O = {
|
|
402
422
|
root: { class: t`mx-auto inline-block h-28 w-28 animate-spin` },
|
|
403
423
|
circle: { class: t`fill-transparent stroke-current stroke-[4px] text-blue-800 [stroke-dasharray:200] [stroke-dashoffset:100]` }
|
|
404
|
-
},
|
|
424
|
+
}, k = {
|
|
405
425
|
root: ({ props: e }) => {
|
|
406
426
|
let n = e.size === "small";
|
|
407
427
|
return { class: [t`[&+label]:ris-label1-regular relative inline-block [&+label]:ml-8`, n ? t`h-24 w-24` : t`h-32 w-32`] };
|
|
@@ -412,7 +432,7 @@ var e = {
|
|
|
412
432
|
let n = e.size === "small";
|
|
413
433
|
return { class: [t`rounded-full bg-current`, n ? t`h-12 w-12` : t`h-16 w-16`] };
|
|
414
434
|
}
|
|
415
|
-
},
|
|
435
|
+
}, A = {
|
|
416
436
|
root: ({ props: e, state: n }) => {
|
|
417
437
|
let r = t`group ris-body2-regular [&+small]:ris-label3-regular relative inline-flex h-48 items-center justify-between border-2 bg-white py-4 pr-6 pl-16 [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid="true"]+small]:text-red-900`, i = t`cursor-pointer border-blue-800`, a = t`outline-4 -outline-offset-4 outline-blue-800`, o = t`hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800`, s = t`cursor-not-allowed border-blue-500 text-blue-500 disabled:outline-hidden`, c = t`border-red-800 bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-hidden aria-[invalid]:disabled:outline-hidden`, l = t`w-full`;
|
|
418
438
|
return {
|
|
@@ -450,7 +470,7 @@ var e = {
|
|
|
450
470
|
},
|
|
451
471
|
optionCheckIcon: { class: t`order-1 text-blue-800` },
|
|
452
472
|
optionBlankIcon: { class: t`order-1` }
|
|
453
|
-
},
|
|
473
|
+
}, j = {
|
|
454
474
|
root: ({ props: e }) => ({ class: {
|
|
455
475
|
[t`flex flex-nowrap rounded-none border-0 bg-transparent`]: !0,
|
|
456
476
|
[t`flex-col`]: e.layout === "vertical"
|
|
@@ -465,20 +485,20 @@ var e = {
|
|
|
465
485
|
[t`h-11/12 w-[0.1875rem] cursor-col-resize`]: e.layout === "horizontal",
|
|
466
486
|
[t`h-[0.1875rem] w-11/12 cursor-row-resize`]: e.layout === "vertical"
|
|
467
487
|
} })
|
|
468
|
-
},
|
|
488
|
+
}, M = { root: ({ context: e }) => {
|
|
469
489
|
let n = t`ris-body2-bold h-64 border-b-4 border-b-transparent py-4 pr-24 pl-20 outline-0 -outline-offset-4 outline-blue-800 focus-visible:outline-4`, r = t`z-10 bg-[var(--p-tabs-tab-active-background)] text-black shadow-[-1px_-1px_0_0_var(--p-tabs-tab-border-color),1px_-1px_0_0_var(--p-tabs-tab-border-color)]`, i = t`cursor-pointer text-blue-800 hover:border-b-blue-800`;
|
|
470
490
|
return { class: {
|
|
471
491
|
[n]: !0,
|
|
472
492
|
[r]: e.active,
|
|
473
493
|
[i]: !e.active
|
|
474
494
|
} };
|
|
475
|
-
} },
|
|
495
|
+
} }, N = { root: { class: t`min-h-96 bg-[var(--p-tabs-tabpanel-background)] py-24 outline-blue-800 focus-visible:outline-solid` } }, P = { tabList: { class: t`relative flex before:absolute before:bottom-0 before:left-[50%] before:h-px before:w-[var(--tab-list-separator-width,100%)] before:-translate-x-1/2 before:bg-[var(--p-tabs-tablist-border-color)]` } }, F = { root: ({ props: e }) => {
|
|
476
496
|
let n = t`ris-body1-regular [&+small]:ris-label3-regular min-h-56 border-2 border-blue-800 bg-white px-14 pt-8 pb-12 placeholder:text-gray-900 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus-visible:outline focus-visible:outline-4 focus-visible:-outline-offset-4 focus-visible:outline-blue-800 disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-hidden aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-hidden [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid="true"]+small]:text-red-900`, r = t`w-full`;
|
|
477
497
|
return { class: {
|
|
478
498
|
[n]: !0,
|
|
479
499
|
[r]: !!e.fluid
|
|
480
500
|
} };
|
|
481
|
-
} },
|
|
501
|
+
} }, I = {
|
|
482
502
|
root: { class: t`max-w-lg` },
|
|
483
503
|
message: ({ props: e }) => {
|
|
484
504
|
let n = t`mb-8 flex w-full flex-row items-center gap-8 border-l-4 p-16`, r = e.message?.severity, i = t`border-l-green-900 bg-green-200`, a = t`border-l-red-900 bg-red-200`, o = t`border-l-yellow-900 bg-yellow-200`, s = t`border-l-blue-900 bg-blue-200`;
|
|
@@ -515,7 +535,7 @@ var e = {
|
|
|
515
535
|
} };
|
|
516
536
|
},
|
|
517
537
|
closeIcon: { class: t`text-black` }
|
|
518
|
-
},
|
|
538
|
+
}, L = {
|
|
519
539
|
arrow: ({ context: e }) => {
|
|
520
540
|
let n = t`absolute h-0 w-0 border-[7px] border-solid`, r = t`-mr-[7px] border-b-0 border-t-gray-900 border-r-transparent border-l-transparent`, i = t`-mt-[7px] border-l-0 border-t-transparent border-r-gray-900 border-b-transparent`, a = t`-ml-[7px] border-t-0 border-r-transparent border-b-gray-900 border-l-transparent`, o = t`-mt-[7px] border-r-0 border-t-transparent border-b-transparent border-l-gray-900`, s = !e.top && !e.right && !e.bottom && !e.left;
|
|
521
541
|
return { class: {
|
|
@@ -528,27 +548,34 @@ var e = {
|
|
|
528
548
|
},
|
|
529
549
|
text: { class: t`ris-label3-regular m-[7px] rounded-sm bg-gray-900 px-8 py-4 text-center whitespace-pre-line text-white` },
|
|
530
550
|
root: { class: t`absolute` }
|
|
531
|
-
},
|
|
551
|
+
}, R = {
|
|
552
|
+
autocomplete: i,
|
|
553
|
+
breadcrumb: n,
|
|
532
554
|
button: a,
|
|
533
555
|
checkbox: o,
|
|
534
556
|
chip: s,
|
|
535
557
|
confirmDialog: c,
|
|
558
|
+
dataTable: l,
|
|
536
559
|
dialog: u,
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
560
|
+
drawer: d,
|
|
561
|
+
fileUpload: f,
|
|
562
|
+
inputGroup: p,
|
|
563
|
+
inputMask: v,
|
|
564
|
+
inputText: _,
|
|
565
|
+
menu: y,
|
|
566
|
+
message: b,
|
|
567
|
+
multiselect: x,
|
|
568
|
+
panelmenu: E,
|
|
569
|
+
password: D,
|
|
570
|
+
progressSpinner: O,
|
|
571
|
+
radioButton: k,
|
|
572
|
+
select: A,
|
|
573
|
+
splitter: j,
|
|
574
|
+
tab: M,
|
|
575
|
+
tabList: P,
|
|
576
|
+
tabPanel: N,
|
|
577
|
+
textarea: F,
|
|
578
|
+
toast: I,
|
|
552
579
|
tree: {
|
|
553
580
|
node: { class: t`mb-24 last:mb-0 focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 [&>ul:first-of-type]:border-l-0` },
|
|
554
581
|
nodeContent: ({ context: e }) => {
|
|
@@ -585,15 +612,9 @@ var e = {
|
|
|
585
612
|
} };
|
|
586
613
|
}
|
|
587
614
|
},
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
dataTable: l,
|
|
591
|
-
tab: j,
|
|
592
|
-
tabPanel: M,
|
|
593
|
-
tabList: N,
|
|
594
|
-
directives: { tooltip: I }
|
|
595
|
-
}, R = { deDE: e };
|
|
615
|
+
directives: { tooltip: L }
|
|
616
|
+
}, z = { deDE: e };
|
|
596
617
|
//#endregion
|
|
597
|
-
export {
|
|
618
|
+
export { z as RisUiLocale, R as RisUiTheme };
|
|
598
619
|
|
|
599
620
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../../src/config/locale.ts","../../src/lib/tags.ts","../../src/primevue/breadcrumb/breadcrumb.ts","../../src/primevue/autocomplete/autocomplete.ts","../../src/primevue/button/button.ts","../../src/primevue/checkbox/checkbox.ts","../../src/primevue/chip/chip.ts","../../src/primevue/confirmDialog/confirmDialog.ts","../../src/primevue/dataTable/dataTable.ts","../../src/primevue/dialog/dialog.ts","../../src/primevue/fileUpload/fileUpload.ts","../../src/primevue/inputGroup/inputGroup.ts","../../src/primevue/inputText/inputText.ts","../../src/primevue/inputMask/inputMask.ts","../../src/primevue/menu/menu.ts","../../src/primevue/message/message.ts","../../src/primevue/multiSelect/multiSelect.ts","../../src/primevue/panelMenu/panelMenu.ts","../../src/primevue/password/password.ts","../../src/primevue/progressSpinner/progressSpinner.ts","../../src/primevue/radioButton/radioButton.ts","../../src/primevue/select/select.ts","../../src/primevue/splitter/splitter.ts","../../src/primevue/tabs/tabs.ts","../../src/primevue/textarea/textarea.ts","../../src/primevue/toast/toast.ts","../../src/primevue/tooltip/tooltip.ts","../../src/primevue/tree/tree.ts","../../src/primevue/index.ts"],"sourcesContent":["import type { PrimeVueLocaleOptions } from \"primevue/config\";\n\nexport const deDE: PrimeVueLocaleOptions = {\n startsWith: \"Beginnt mit\",\n contains: \"Enthält\",\n notContains: \"Enthält nicht\",\n endsWith: \"Endet mit\",\n equals: \"Gleich\",\n notEquals: \"Ungleich\",\n noFilter: \"Kein Filter\",\n lt: \"Weniger als\",\n lte: \"Weniger oder gleich\",\n gt: \"Größer als\",\n gte: \"Größer oder gleich\",\n dateIs: \"Datum ist\",\n dateIsNot: \"Datum ist nicht\",\n dateBefore: \"Datum ist vor\",\n dateAfter: \"Datum ist nach\",\n clear: \"Löschen\",\n apply: \"Anwenden\",\n matchAll: \"Alle erfüllen\",\n matchAny: \"Beliebige erfüllen\",\n addRule: \"Regel hinzufügen\",\n removeRule: \"Regel entfernen\",\n accept: \"Ja\",\n reject: \"Nein\",\n choose: \"Auswählen\",\n upload: \"Hochladen\",\n cancel: \"Abbrechen\",\n completed: \"Abgeschlossen\",\n pending: \"Ausstehend\",\n fileSizeTypes: [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\", \"EB\", \"ZB\", \"YB\"],\n dayNames: [\"Sonntag\", \"Montag\", \"Dienstag\", \"Mittwoch\", \"Donnerstag\", \"Freitag\", \"Samstag\"],\n dayNamesShort: [\"So\", \"Mo\", \"Di\", \"Mi\", \"Do\", \"Fr\", \"Sa\"],\n dayNamesMin: [\"So\", \"Mo\", \"Di\", \"Mi\", \"Do\", \"Fr\", \"Sa\"],\n monthNames: [\n \"Januar\",\n \"Februar\",\n \"März\",\n \"April\",\n \"Mai\",\n \"Juni\",\n \"Juli\",\n \"August\",\n \"September\",\n \"Oktober\",\n \"November\",\n \"Dezember\",\n ],\n monthNamesShort: [\n \"Jan\",\n \"Feb\",\n \"Mär\",\n \"Apr\",\n \"Mai\",\n \"Jun\",\n \"Jul\",\n \"Aug\",\n \"Sep\",\n \"Okt\",\n \"Nov\",\n \"Dez\",\n ],\n chooseYear: \"Jahr wählen\",\n chooseMonth: \"Monat wählen\",\n chooseDate: \"Datum wählen\",\n prevDecade: \"Vorheriges Jahrzehnt\",\n nextDecade: \"Nächstes Jahrzehnt\",\n prevYear: \"Vorheriges Jahr\",\n nextYear: \"Nächstes Jahr\",\n prevMonth: \"Vorheriger Monat\",\n nextMonth: \"Nächster Monat\",\n prevHour: \"Vorherige Stunde\",\n nextHour: \"Nächste Stunde\",\n prevMinute: \"Vorherige Minute\",\n nextMinute: \"Nächste Minute\",\n prevSecond: \"Vorherige Sekunde\",\n nextSecond: \"Nächste Sekunde\",\n am: \"vorm.\",\n pm: \"nachm.\",\n today: \"Heute\",\n weekHeader: \"KW\",\n firstDayOfWeek: 1,\n showMonthAfterYear: false,\n dateFormat: \"dd.mm.yy\",\n weak: \"Schwach\",\n medium: \"Mittel\",\n strong: \"Stark\",\n passwordPrompt: \"Passwort eingeben\",\n emptyFilterMessage: \"Keine Ergebnisse gefunden\",\n searchMessage: \"{0} Ergebnisse verfügbar\",\n selectionMessage: \"{0} Elemente ausgewählt\",\n emptySelectionMessage: \"Kein Element ausgewählt\",\n emptySearchMessage: \"Keine Ergebnisse gefunden\",\n fileChosenMessage: \"{0} Dateien\",\n noFileChosenMessage: \"Keine Datei ausgewählt\",\n emptyMessage: \"Keine Optionen verfügbar\",\n aria: {\n trueLabel: \"Wahr\",\n falseLabel: \"Falsch\",\n nullLabel: \"Nicht ausgewählt\",\n star: \"1 Stern\",\n stars: \"{star} Sterne\",\n selectAll: \"Alle Elemente ausgewählt\",\n unselectAll: \"Alle Elemente abgewählt\",\n close: \"Schließen\",\n previous: \"Vorherige\",\n next: \"Nächste\",\n navigation: \"Navigation\",\n scrollTop: \"Nach oben scrollen\",\n moveTop: \"Nach oben bewegen\",\n moveUp: \"Nach oben bewegen\",\n moveDown: \"Nach unten bewegen\",\n moveBottom: \"Nach unten bewegen\",\n moveToTarget: \"Zum Ziel verschieben\",\n moveToSource: \"Zur Quelle verschieben\",\n moveAllToTarget: \"Alle zum Ziel verschieben\",\n moveAllToSource: \"Alle zur Quelle verschieben\",\n pageLabel: \"Seite {page}\",\n firstPageLabel: \"Erste Seite\",\n lastPageLabel: \"Letzte Seite\",\n nextPageLabel: \"Nächste Seite\",\n prevPageLabel: \"Vorherige Seite\",\n rowsPerPageLabel: \"Zeilen pro Seite\",\n jumpToPageDropdownLabel: \"Zu Seite springen (Dropdown)\",\n jumpToPageInputLabel: \"Zu Seite springen (Eingabe)\",\n selectRow: \"Zeile ausgewählt\",\n unselectRow: \"Zeile abgewählt\",\n expandRow: \"Zeile erweitert\",\n collapseRow: \"Zeile reduziert\",\n showFilterMenu: \"Filtermenü anzeigen\",\n hideFilterMenu: \"Filtermenü ausblenden\",\n filterOperator: \"Filteroperator\",\n filterConstraint: \"Filterbedingung\",\n editRow: \"Zeile bearbeiten\",\n saveEdit: \"Bearbeitung speichern\",\n cancelEdit: \"Bearbeitung abbrechen\",\n listView: \"Listenansicht\",\n gridView: \"Gitteransicht\",\n slide: \"Folie\",\n slideNumber: \"Folie {slideNumber}\",\n zoomImage: \"Bild vergrößern\",\n zoomIn: \"Vergrößern\",\n zoomOut: \"Verkleinern\",\n rotateRight: \"Rechts drehen\",\n rotateLeft: \"Links drehen\",\n listLabel: \"Optionsliste\",\n },\n};\n","const tag = (strings: TemplateStringsArray, ...values: unknown[]) =>\n String.raw({ raw: strings }, ...values);\n\n/**\n * Tagged template string for HTML. The tag itself doesn't do anything, but\n * using it will allow your editor to provide HTML-features for template\n * strings in scripts, e.g. stories:\n *\n * ```ts\n * const template = html`<div>Hello world</div>`\n * ```\n */\nexport const html = tag;\n\n/**\n * Tagged template string for Tailwind classes. The tag itself doesn't do\n * anything, but using it will allow your editor to provide Tailwind\n * Intellisense for template strings in scripts, as well as automatic class\n * sorting.\n *\n * ```ts\n * const classes = tw`px-16 bg-blue-200`\n * ```\n */\nexport const tw = tag;\n","import type { BreadcrumbPassThroughOptions } from \"primevue/breadcrumb\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst breadcrumb: BreadcrumbPassThroughOptions = {\n list: {\n class: tw`m-0 flex list-none flex-wrap items-center p-0 leading-none`,\n },\n item: {\n class: tw`flex-no-wrap ris-label1-regular my-2 flex items-center break-all`,\n },\n itemLink: {\n class: tw`inline-flex cursor-pointer items-center text-blue-800 underline-offset-[3px] hover:underline focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`,\n },\n separator: {\n class: tw`mx-6 flex items-center text-gray-600`,\n },\n};\n\nexport default breadcrumb;\n","import type { AutoCompletePassThroughOptions } from \"primevue/autocomplete\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst fluid = tw`w-full`;\n\nconst autocomplete: AutoCompletePassThroughOptions = {\n root: ({ props, state }) => {\n const base = tw`ris-body2-regular flex min-h-48 border-2 bg-white py-4 pr-4 pl-16 -outline-offset-4 outline-blue-800 placeholder:text-gray-800 has-focus-visible:outline-4`;\n\n const normal = tw`cursor-pointer border-blue-800`;\n\n const focused = tw`outline-4`;\n\n const hover = tw`hover:outline-4`;\n\n const invalid = tw`aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-hidden`;\n\n const disabled = tw`cursor-not-allowed border-blue-500 text-blue-500 disabled:outline-hidden`;\n\n return {\n class: {\n [base]: true,\n [normal]: !props.disabled,\n [focused]: state.focused && !props.disabled,\n [hover]: !props.disabled,\n [fluid]: !!props.fluid,\n [invalid]: props.invalid,\n [disabled]: props.disabled,\n },\n\n \"aria-invalid\": props.invalid ? \"true\" : null,\n };\n },\n\n pcInputText: {\n root: ({ props }) => {\n const focus = tw`focus-visible:outline-hidden`;\n\n return {\n class: {\n [focus]: true,\n [fluid]: !!props.fluid,\n },\n };\n },\n },\n\n inputMultiple: {\n class: tw`flex w-full flex-wrap items-center gap-4`,\n },\n\n inputChip: {\n class: tw`flex items-center`,\n },\n\n input: {\n class: tw`w-full focus-visible:outline-hidden`,\n },\n\n dropdown: {\n class: tw`absolute inset-y-0 right-16`,\n },\n\n option: {\n class: tw`cursor-pointer border-l-4 border-transparent hover:border-blue-600 hover:bg-blue-200 data-[p-focused=true]:border-blue-600 data-[p-focused=true]:bg-blue-200`,\n },\n\n optionGroup: {\n class: tw`hover:bg-blue-100 data-[p-focused=true]:bg-blue-200`,\n },\n\n overlay: {\n class: tw`mt-12 w-full overflow-auto bg-white px-8 py-12 shadow-md`,\n },\n};\n\nexport default autocomplete;\n","import type { ButtonPassThroughOptions } from \"primevue/button\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst button: ButtonPassThroughOptions = {\n root: ({ props, instance }) => {\n // Base\n const base = tw`relative inline-flex max-w-full cursor-pointer items-center justify-center gap-8 text-center focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 focus-visible:not-focus-visible:outline-none active:outline-none disabled:cursor-not-allowed disabled:outline-hidden`;\n\n // Rounded\n const rounded = tw`rounded-full`;\n\n // Severity\n const severity = props.severity ?? \"primary\";\n\n const primary = tw`bg-blue-800 text-white hover:bg-blue-700 active:bg-blue-500 active:text-blue-800 disabled:bg-gray-400 disabled:text-gray-600`;\n\n const secondary = tw`border-2 border-blue-800 bg-white text-blue-800 hover:bg-blue-200 focus-visible:bg-blue-200 active:bg-blue-400 disabled:border-blue-500 disabled:text-blue-500 disabled:hover:bg-white`;\n\n const danger = tw`border-2 border-red-800 bg-white text-red-800 hover:bg-red-100 focus-visible:bg-red-100 active:border-red-800 active:bg-red-300 disabled:border-red-500 disabled:text-red-500 disabled:hover:bg-white`;\n\n const info = tw`border border-blue-500 bg-white font-normal text-blue-800 hover:bg-gray-200 focus-visible:bg-gray-200 active:border-white active:bg-white disabled:border-blue-500 disabled:text-blue-500 disabled:hover:bg-white`;\n\n // Text\n // This is the \"Ghost\" variant of the button\n const primaryText = tw`border-2 border-transparent bg-transparent text-blue-800 underline hover:border-gray-500 hover:bg-white focus-visible:border-gray-500 active:border-blue-600 active:bg-blue-400 disabled:bg-transparent disabled:text-gray-500`;\n\n // Sizes\n const size = props.size ?? \"normal\";\n let small = tw`ris-body2-bold h-40 py-4`;\n let normal = tw`ris-body2-bold h-48 py-4`;\n let large = tw`ris-body1-bold h-64 py-4`;\n\n // Icon only\n if (instance.hasIcon && !props.label) {\n small = tw`${small} w-40 px-4`;\n normal = tw`${normal} w-48 px-4`;\n large = tw`${large} w-64 px-4`;\n }\n\n // Label only or label + icon\n else {\n small = tw`${small} px-12`;\n normal = tw`${normal} px-16`;\n large = tw`${large} px-24`;\n }\n\n return {\n class: {\n [base]: true,\n [rounded]: props.rounded,\n [small]: size === \"small\",\n [normal]: size === \"normal\",\n [large]: size === \"large\",\n [primary]: !props.text && severity === \"primary\",\n [secondary]: !props.text && severity === \"secondary\",\n [danger]: !props.text && severity === \"danger\",\n [info]: !props.text && severity === \"info\",\n [primaryText]: props.text && severity === \"primary\",\n },\n };\n },\n\n label: ({ props }) => ({\n class: {\n hidden: !props.label,\n },\n }),\n\n icon: ({ props }) => ({\n class: {\n \"order-last\": props.iconPos == \"right\",\n },\n }),\n\n loadingIcon: ({ props }) => {\n // Size\n const size = props.size ?? \"normal\";\n const normal = tw`h-[1.34em] w-[1.34em]`;\n const large = tw`h-24 w-24`;\n\n return {\n class: {\n [tw`animate-spin`]: true,\n [normal]: size === \"normal\",\n [large]: size === \"large\",\n },\n };\n },\n};\n\nexport default button;\n","import type { CheckboxPassThroughOptions } from \"primevue/checkbox\";\nimport { tw } from \"@/lib/tags\";\n\nconst checkbox: CheckboxPassThroughOptions = {\n root: ({ props }) => {\n const isLarge = props.size === \"large\";\n const base = tw`[&+label]:ris-label1-regular relative inline-block h-24 min-h-24 w-24 min-w-24 [&+label]:ml-8`;\n\n return {\n class: [\n base,\n {\n [tw`h-32 min-h-32 w-32 min-w-32`]: isLarge,\n },\n ],\n };\n },\n\n input: {\n class: tw`peer h-full w-full cursor-pointer appearance-none border-2 border-blue-800 bg-white checked:bg-blue-800 hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 checked:hover:bg-blue-700 checked:hover:outline-blue-700 focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 active:outline-hidden disabled:cursor-not-allowed disabled:border-gray-600 disabled:outline-hidden disabled:checked:bg-gray-600 aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 aria-[invalid]:checked:bg-red-800 aria-[invalid]:checked:outline-red-700 aria-[invalid]:checked:hover:bg-red-700 aria-[invalid]:active:outline-none aria-[invalid]:disabled:outline-none`,\n },\n\n box: {\n class: tw`pointer-events-none absolute inset-0 flex items-center justify-center text-blue-800 peer-checked:text-white`,\n },\n\n icon: {\n class: tw`h-12 w-12`,\n },\n};\n\nexport default checkbox;\n","import type { ChipPassThroughOptions } from \"primevue\";\nimport { tw } from \"@/lib/tags\";\n\nconst chip: ChipPassThroughOptions = {\n root: {\n class: tw`mr-6 inline-flex items-center rounded-full bg-blue-300 px-12 py-4`,\n },\n\n removeIcon: {\n class: tw`ml-4`,\n },\n};\n\nexport default chip;\n","import type { ConfirmDialogPassThroughOptions } from \"primevue/confirmdialog\";\n\nconst confirmDialog: ConfirmDialogPassThroughOptions = {\n // All styling implemented in primevue/dialog\n};\n\nexport default confirmDialog;\n","import type { DataTablePassThroughOptions, DataTableContext } from \"primevue/datatable\";\nimport { tw } from \"@/lib/tags\";\nimport checkbox from \"../checkbox/checkbox\";\n\nconst dataTable: DataTablePassThroughOptions = {\n root: {\n class: tw`relative`,\n },\n\n tableContainer: {\n class: tw`overflow-visible`,\n },\n table: {\n class: tw`w-full border-none text-left`,\n },\n\n thead: {\n class: tw`sticky top-0 bg-white shadow-[0_1px_0_var(--color-blue-300)]`,\n },\n\n tbody: {\n class: tw`divide-y divide-blue-300 border-b border-blue-300`,\n },\n\n bodyRow: ({ context }: { context: DataTableContext }) => ({\n class: [\n tw`-outline-offset-4 outline-blue-800 focus-visible:outline-4`,\n {\n \"bg-blue-300\": context.selected,\n \"hover:bg-blue-100\": !context.selected,\n },\n ],\n }),\n\n // height for td works like min-height: Table cells will grow when the content does not fit.\n column: {\n headerCell: {\n class: tw`ris-label2-bold h-56 px-16 py-12`,\n },\n\n bodyCell: {\n class: tw`ris-body1-regular h-56 px-16 py-12`,\n },\n\n pcHeaderCheckbox: {\n ...checkbox,\n root: {\n class: tw`relative block h-24 w-24`,\n },\n },\n\n pcRowCheckbox: {\n ...checkbox,\n root: {\n class: tw`relative block h-24 w-24`,\n },\n },\n },\n\n mask: {\n class: tw`text-primary-500 justify-content absolute inset-0 z-10 mt-56 flex justify-center py-96`,\n },\n\n loadingIcon: {\n class: tw`inline-block h-24 w-24 animate-spin border-solid border-r-transparent text-blue-900 motion-reduce:animate-[spin_1.5s_linear_infinite]`,\n },\n\n emptyMessageCell: {\n class: tw`py-96 text-center text-gray-900`,\n },\n};\n\nexport default dataTable;\n","import type { DialogPassThroughOptions } from \"primevue/dialog\";\nimport { tw } from \"@/lib/tags\";\n\nconst dialog: DialogPassThroughOptions = {\n root: () => {\n // Base\n const base = tw`ris-label2-regular max-h-[90dvh] w-[95dvw] max-w-[25rem] border-2 border-blue-800 bg-white px-56 py-44 shadow-lg`;\n\n return {\n class: base,\n };\n },\n\n header: {\n class: tw`mb-16 flex`,\n },\n\n title: {\n class: tw`ris-label1-bold flex-1`,\n },\n\n headerActions: {\n class: tw`flex-none`,\n },\n\n pcCloseButton: {\n root: {\n class: tw`ris-label1-regular flex h-24 w-24 items-center justify-center p-4 text-blue-800 outline-hidden hover:outline-2 hover:outline-gray-500 focus-visible:outline-4 focus-visible:outline-blue-800 active:outline-none`,\n },\n },\n\n content: {\n // When an SVG is the first child of the content, we're applying a flex\n // styling. This is a heuristic for an icon in the dialog content, used\n // (for example) by the confirm dialog. If the svg is not the first child,\n // we assume that it is used in the context of some other layout and don't\n // apply extra styling.\n class: tw`ris-dialog-content overflow-auto has-[svg:first-child]:flex has-[svg:first-child]:gap-8 [&>svg:first-child]:flex-none`,\n },\n\n footer: {\n class: tw`mt-40 flex items-center justify-end gap-12`,\n },\n\n mask: {\n class: tw`bg-black/40`,\n },\n};\n\nexport default dialog;\n","import type { FileUploadPassThroughOptions } from \"primevue/fileupload\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst fileUpload: FileUploadPassThroughOptions = {\n basicContent: {\n // @ts-expect-error types appear to be wrong here\n class: tw`flex flex-col items-center gap-10`,\n },\n\n input: {\n class: tw`hidden`,\n },\n};\n\nexport default fileUpload;\n","import type { InputGroupPassThroughOptions } from \"primevue/inputgroup\";\nimport { tw } from \"@/lib/tags\";\n\nconst inputGroup: InputGroupPassThroughOptions = {\n root: {\n class: tw`flex`,\n },\n};\n\nexport default inputGroup;\n","import type { InputTextPassThroughOptions } from \"primevue/inputtext\";\nimport { tw } from \"@/lib/tags\";\n\n// Base\nexport const base = tw`[&+small]:ris-label3-regular border-2 border-blue-800 bg-white placeholder:text-gray-800 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus-visible:outline-4 focus-visible:-outline-offset-4 focus-visible:outline-blue-800 disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-hidden aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-hidden [&+small]:mt-4 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid=\"true\"]+small]:text-red-900`;\n\n// Sizes\nexport const small = tw`ris-body2-regular h-48 px-16 py-4`;\nexport const large = tw`ris-body1-regular h-64 px-24 py-4`;\n\nconst inputText: InputTextPassThroughOptions = {\n root: ({ props }) => {\n // Integration for primevue/password\n // This is styled here rather than in the password component because it\n // makes accessing the placeholder easier\n const password = tw`[[type=password]]:w-full [&[type=password]:not(:placeholder-shown)]:text-[1.75rem] [&[type=password]:not(:placeholder-shown)]:tracking-[0.25rem]`;\n\n // Integration for primevue/fluid\n const fluid = tw`w-full`;\n\n return {\n class: {\n [base]: true,\n [fluid]: !!props.fluid,\n [password]: true,\n [small]: !props.size || props.size === \"small\",\n [large]: props.size === \"large\",\n },\n \"data-size\": props.size ?? \"small\",\n };\n },\n};\n\nexport default inputText;\n","import type { InputMaskPassThroughOptions } from \"primevue/inputmask\";\nimport { base, small } from \"../inputText/inputText\";\n\nconst inputMask: InputMaskPassThroughOptions = {\n pcInputText: {\n root: ({ props }) => {\n return {\n class: {\n [base]: true,\n [small]: true,\n \"w-full\": !!props.fluid,\n },\n };\n },\n },\n};\n\nexport default inputMask;\n","import type { MenuPassThroughOptions } from \"primevue/menu\";\nimport { tw } from \"@/lib/tags\";\n\nconst menu: MenuPassThroughOptions = {\n root: {\n class: tw`ris-body2-regular border border-gray-600 bg-white shadow`,\n },\n\n list: {\n class: tw`focus-visible:outline-none`,\n },\n\n item: ({ context }) => {\n const base = tw`relative h-48 border-l-4 border-l-transparent pr-12 pl-16 after:absolute after:right-16 after:-bottom-1 after:left-12 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:border-l-blue-400 hover:bg-blue-100 active:border-l-blue-800 active:bg-blue-300`;\n\n const focused = tw`bg-blue-200 -outline-offset-4 outline-blue-800 not-hover:outline-4 hover:bg-blue-200`;\n\n return {\n class: {\n [base]: true,\n [focused]: context.focused,\n },\n };\n },\n itemContent: {\n class: tw`flex h-full items-center py-4`,\n },\n itemLink: {\n class: tw`flex items-center gap-8`,\n },\n};\n\nexport default menu;\n","import type { MessagePassThroughOptions } from \"primevue/message\";\nimport { tw } from \"@/lib/tags\";\n\nconst message: MessagePassThroughOptions = {\n root: ({ props, instance }) => {\n // Base\n const base = tw`ris-body1-regular border-l-4 px-20 py-14`;\n\n // Severity\n const severity = props.severity ?? \"info\";\n\n const success = tw`border-l-green-800 bg-green-200`;\n\n const info = tw`border-l-blue-800 bg-blue-200`;\n\n const warn = tw`border-l-yellow-800 bg-yellow-200`;\n\n const error = tw`border-l-red-800 bg-red-200`;\n\n // Default icon for severities\n const hasDefaultIcon = !!instance.$slots.icon;\n\n const iconNames: Record<string, string> = {\n success: \"var(--ris-icon-success)\",\n info: \"var(--ris-icon-info)\",\n warn: \"var(--ris-icon-warn)\",\n error: \"var(--ris-icon-error)\",\n };\n\n const iconName = iconNames[severity];\n\n const iconBg = tw`bg-size-[1.5rem] bg-position-[1rem_1rem] bg-no-repeat pl-48`;\n\n return {\n class: {\n [base]: true,\n [success]: severity === \"success\",\n [info]: severity === \"info\",\n [warn]: severity === \"warn\",\n [error]: severity === \"error\",\n [iconBg]: !hasDefaultIcon,\n },\n style: {\n backgroundImage: !hasDefaultIcon ? iconName : undefined,\n },\n };\n },\n\n content: {\n class: tw`flex items-start gap-8`,\n },\n\n text: {\n class: tw`flex-1`,\n },\n\n closeButton: ({ props }) => {\n // Base\n const base = tw`mt-4 inline-flex h-20 w-20 flex-none items-center justify-center p-2 leading-none outline-offset-4 outline-blue-800 focus-visible:outline-4`;\n\n // Severity\n const severity = props.severity ?? \"info\";\n\n const success = tw`text-green-800 hover:bg-green-400 active:bg-green-500`;\n\n const info = tw`text-blue-800 hover:bg-blue-400 active:bg-blue-500`;\n\n const warn = tw`text-black hover:bg-yellow-400 active:bg-yellow-500`;\n\n const error = tw`text-red-800 hover:bg-red-400 active:bg-red-500`;\n\n return {\n class: {\n [base]: true,\n [success]: severity === \"success\",\n [info]: severity === \"info\",\n [warn]: severity === \"warn\",\n [error]: severity === \"error\",\n },\n };\n },\n};\n\nexport default message;\n","import type { MultiSelectPassThroughOptions } from \"primevue/multiselect\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst multiSelect: MultiSelectPassThroughOptions = {\n root: ({ props, state }) => {\n // Base\n const base = tw`ris-body2-regular [&+small]:ris-label3-regular relative inline-flex min-h-48 items-center justify-start border-2 bg-white py-2 pr-12 pl-12 [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid=\"true\"]+small]:text-red-900`;\n\n // States\n const normal = tw`cursor-pointer border-blue-800`;\n\n const focused = tw`has-focus-visible:outline-4 has-focus-visible:-outline-offset-4 has-focus-visible:outline-blue-800`;\n\n const hover = tw`hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800`;\n\n const disabled = tw`cursor-not-allowed border-blue-500 text-blue-500 disabled:outline-hidden`;\n\n const invalid = tw`border-red-800 bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-hidden aria-[invalid]:disabled:outline-hidden`;\n\n // Integration for primevue/fluid\n const fluid = tw`w-full`;\n\n return {\n class: {\n [base]: true,\n [normal]: !props.disabled,\n [focused]: state.focused && !props.disabled,\n [hover]: !props.disabled,\n [fluid]: !!props.fluid,\n [disabled]: props.disabled,\n [invalid]: props.invalid,\n },\n\n \"aria-invalid\": props.invalid ? \"true\" : null,\n };\n },\n\n dropdown: {\n class: tw`pl-12`,\n },\n\n dropdownIcon: {\n class: tw`absolute top-16 right-8`,\n },\n\n listContainer: {\n class: tw`overflow-auto shadow-md`,\n },\n\n labelContainer: {\n class: tw`flex flex-row`,\n },\n\n label: {\n class: tw`flex flex-row flex-wrap gap-y-8 py-4`,\n },\n\n overlay: {\n class: tw`bg-white`,\n },\n\n optionLabel: {\n class: tw`pl-12`,\n },\n\n header: {\n class: tw`hidden`,\n },\n\n option: ({ context }) => {\n // Base\n const base = tw`ris-body2-regular relative flex h-full min-h-48 w-full cursor-pointer border-l-4 border-transparent py-16 pr-24 pl-20 after:absolute after:right-8 after:-bottom-1 after:left-8 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:bg-gray-100`;\n\n // States\n const focused = tw`border-l-4 border-solid border-l-blue-800 bg-gray-100`;\n\n return {\n class: {\n [base]: true,\n [focused]: context.focused,\n },\n };\n },\n};\n\nexport default multiSelect;\n","import type { PanelMenuPassThroughOptions } from \"primevue/panelmenu\";\nimport { tw } from \"@/lib/tags\";\n\nconst pointer = tw`cursor-pointer`;\n\nconst selected = tw`ris-label1-bold border-l-blue-800 bg-blue-200 text-blue-900 hover:bg-blue-300`;\n\nconst notSelected = tw`ris-label1-regular hover:border-l-blue-600 hover:bg-blue-200`;\n\nconst focused = tw`-outline-offset-4 outline-blue-800 focus-visible:outline-4`;\n\nconst panelMenu: PanelMenuPassThroughOptions = {\n root: {\n class: tw`text-blue-800`,\n },\n\n header: ({ context }) => {\n const base = tw`group flex h-64 items-center border-l-4 border-transparent py-8 pr-20 pl-10`;\n\n return {\n class: {\n [base]: true,\n [focused]: true,\n [pointer]: true,\n [selected]: context.active,\n [notSelected]: !context.active,\n },\n };\n },\n\n content: {\n class: tw`mt-8 ml-28`,\n },\n\n rootList: {\n class: tw`focus-visible:outline-none`,\n },\n\n panel: {\n class: tw`focus-visible:outline-none`,\n },\n\n itemContent: ({ context }) => {\n const base = tw`group flex h-48 items-center border-l-4 border-transparent py-8 pr-20 pl-10`;\n\n // Unlike header, itemContent does not get a focus-visible pseudo-class. Instead, the focused context property must be used.\n // See https://github.com/primefaces/primevue/issues/6836\n const itemFocused = tw`${focused} not-[:hover]:outline-4`;\n\n return {\n class: {\n [base]: true,\n [itemFocused]: context.focused,\n [pointer]: true,\n [selected]: context.active,\n [notSelected]: !context.active,\n },\n };\n },\n};\n\nexport default panelMenu;\n","import type { PasswordPassThroughOptions } from \"primevue/password\";\n\nconst password: PasswordPassThroughOptions = {\n // All styling moved to inputText.ts\n};\n\nexport default password;\n","import type { ProgressSpinnerPassThroughOptions } from \"primevue/progressspinner\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst progressSpinner: ProgressSpinnerPassThroughOptions = {\n root: {\n class: tw`mx-auto inline-block h-28 w-28 animate-spin`,\n },\n\n circle: {\n class: tw`fill-transparent stroke-current stroke-[4px] text-blue-800 [stroke-dasharray:200] [stroke-dashoffset:100]`,\n },\n};\n\nexport default progressSpinner;\n","import type { RadioButtonPassThroughOptions } from \"primevue/radiobutton\";\nimport { tw } from \"@/lib/tags\";\n\nconst radioButton: RadioButtonPassThroughOptions = {\n root: ({ props }) => {\n const isSmall = props.size === \"small\";\n\n return {\n class: [\n tw`[&+label]:ris-label1-regular relative inline-block [&+label]:ml-8`,\n isSmall ? tw`h-24 w-24` : tw`h-32 w-32`,\n ],\n };\n },\n\n input: {\n class: tw`peer h-full w-full cursor-pointer appearance-none rounded-full border-2 border-blue-800 bg-white hover:outline hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus-visible:outline focus-visible:outline-4 focus-visible:-outline-offset-4 focus-visible:outline-blue-800 active:outline-hidden disabled:cursor-not-allowed disabled:border-gray-600 aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-hidden aria-[invalid]:disabled:outline-hidden`,\n },\n\n box: {\n class: tw`pointer-events-none absolute inset-0 flex items-center justify-center text-transparent peer-checked:text-blue-800 peer-disabled:text-gray-600 peer-aria-[invalid]:text-red-800`,\n },\n\n icon: ({ props }) => {\n const isSmall = props.size === \"small\";\n\n return {\n class: [tw`rounded-full bg-current`, isSmall ? tw`h-12 w-12` : tw`h-16 w-16`],\n };\n },\n};\n\nexport default radioButton;\n","import type { SelectPassThroughOptions } from \"primevue/select\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst select: SelectPassThroughOptions = {\n root: ({ props, state }) => {\n // Base\n const base = tw`group ris-body2-regular [&+small]:ris-label3-regular relative inline-flex h-48 items-center justify-between border-2 bg-white py-4 pr-6 pl-16 [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid=\"true\"]+small]:text-red-900`;\n\n // States\n const normal = tw`cursor-pointer border-blue-800`;\n\n const focused = tw`outline-4 -outline-offset-4 outline-blue-800`;\n\n const hover = tw`hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800`;\n\n const disabled = tw`cursor-not-allowed border-blue-500 text-blue-500 disabled:outline-hidden`;\n\n const invalid = tw`border-red-800 bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-hidden aria-[invalid]:disabled:outline-hidden`;\n\n // Integration for primevue/fluid\n const fluid = tw`w-full`;\n\n return {\n class: {\n [base]: true,\n [normal]: !props.disabled,\n [focused]: (state.focused || state.overlayVisible) && !props.disabled,\n [hover]: !props.disabled,\n [fluid]: !!props.fluid,\n [disabled]: props.disabled,\n [invalid]: props.invalid,\n },\n\n \"aria-invalid\": props.invalid ? \"true\" : null,\n };\n },\n\n dropdown: ({ state, props }) => {\n const base = tw`ml-8 p-10`;\n\n const normal = tw`text-blue-800 group-hover:bg-blue-200`;\n\n const focused = tw`bg-blue-800 text-white`;\n\n const disabled = tw`text-blue-500`;\n\n return {\n class: {\n [base]: true,\n [normal]: !(state.focused || state.overlayVisible || props.disabled),\n [focused]: (state.focused || state.overlayVisible) && !props.disabled,\n [disabled]: props.disabled,\n },\n };\n },\n\n listContainer: {\n class: tw`overflow-auto shadow-md`,\n },\n\n label: {\n class: tw`line-clamp-1 grow outline-none`,\n },\n\n overlay: {\n class: tw`bg-white`,\n },\n\n option: ({ context, props }) => {\n // Base\n const base = tw`ris-body2-regular relative h-full min-h-48 w-full cursor-pointer px-16 py-12 after:absolute after:right-8 after:-bottom-1 after:left-8 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:bg-gray-100`;\n\n // States\n const focused = tw`bg-gray-100`;\n\n // Checkmark\n const withCheckmark = tw`flex items-center gap-16`;\n\n return {\n class: {\n [base]: true,\n [focused]: context.focused,\n [withCheckmark]: props.checkmark,\n },\n };\n },\n\n optionCheckIcon: {\n class: tw`order-1 text-blue-800`,\n },\n\n optionBlankIcon: {\n class: tw`order-1`,\n },\n};\n\nexport default select;\n","import type { SplitterPassThroughOptions } from \"primevue/splitter\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst splitter: SplitterPassThroughOptions = {\n root: ({ props }) => ({\n class: {\n [tw`flex flex-nowrap rounded-none border-0 bg-transparent`]: true,\n [tw`flex-col`]: props.layout === \"vertical\",\n },\n }),\n\n gutter: ({ props }) => ({\n class: {\n [tw`flex shrink-0 items-center justify-center bg-gray-400 hover:bg-blue-700`]: true,\n [tw`h-full w-[0.1875rem] cursor-col-resize`]: props.layout === \"horizontal\",\n [tw`h-[0.1875rem] w-full cursor-row-resize`]: props.layout === \"vertical\",\n },\n }),\n\n gutterHandle: ({ props }) => ({\n class: {\n [tw`z-20 rounded bg-transparent outline-offset-4 outline-blue-800 focus-visible:outline-4`]: true,\n [tw`h-11/12 w-[0.1875rem] cursor-col-resize`]: props.layout === \"horizontal\",\n [tw`h-[0.1875rem] w-11/12 cursor-row-resize`]: props.layout === \"vertical\",\n },\n }),\n};\n\nexport default splitter;\n","import type { TabPassThroughOptions } from \"primevue/tab\";\nimport type { TabListPassThroughOptions } from \"primevue/tablist\";\nimport type { TabPanelPassThroughOptions } from \"primevue/tabpanel\";\nimport { tw } from \"@/lib/tags\";\n\nexport const tab: TabPassThroughOptions = {\n root: ({ context }) => {\n const base = tw`ris-body2-bold h-64 border-b-4 border-b-transparent py-4 pr-24 pl-20 outline-0 -outline-offset-4 outline-blue-800 focus-visible:outline-4`;\n const active = tw`z-10 bg-[var(--p-tabs-tab-active-background)] text-black shadow-[-1px_-1px_0_0_var(--p-tabs-tab-border-color),1px_-1px_0_0_var(--p-tabs-tab-border-color)]`;\n const inactive = tw`cursor-pointer text-blue-800 hover:border-b-blue-800`;\n return {\n class: {\n [base]: true,\n [active]: context.active,\n [inactive]: !context.active,\n },\n };\n },\n};\nexport const tabPanel: TabPanelPassThroughOptions = {\n root: {\n class: tw`min-h-96 bg-[var(--p-tabs-tabpanel-background)] py-24 outline-blue-800 focus-visible:outline-solid`,\n },\n};\nexport const tabList: TabListPassThroughOptions = {\n tabList: {\n class: tw`relative flex before:absolute before:bottom-0 before:left-[50%] before:h-px before:w-[var(--tab-list-separator-width,100%)] before:-translate-x-1/2 before:bg-[var(--p-tabs-tablist-border-color)]`,\n },\n};\n","import type { TextareaPassThroughOptions } from \"primevue/textarea\";\nimport { tw } from \"@/lib/tags\";\n\nconst textarea: TextareaPassThroughOptions = {\n root: ({ props }) => {\n // Base\n const base = tw`ris-body1-regular [&+small]:ris-label3-regular min-h-56 border-2 border-blue-800 bg-white px-14 pt-8 pb-12 placeholder:text-gray-900 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus-visible:outline focus-visible:outline-4 focus-visible:-outline-offset-4 focus-visible:outline-blue-800 disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-hidden aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-hidden [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid=\"true\"]+small]:text-red-900`;\n\n // Integration for primevue/fluid\n const fluid = tw`w-full`;\n\n return {\n class: {\n [base]: true,\n [fluid]: !!props.fluid,\n },\n };\n },\n};\n\nexport default textarea;\n","import type { ToastPassThroughOptions } from \"primevue/toast\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst toast: ToastPassThroughOptions = {\n root: {\n class: tw`max-w-lg`,\n },\n message: ({ props }) => {\n // Base\n const base = tw`mb-8 flex w-full flex-row items-center gap-8 border-l-4 p-16`;\n\n // Severity\n const severity = props.message?.severity;\n\n const success = tw`border-l-green-900 bg-green-200`;\n const error = tw`border-l-red-900 bg-red-200`;\n const warn = tw`border-l-yellow-900 bg-yellow-200`;\n const info = tw`border-l-blue-900 bg-blue-200`;\n\n return {\n class: {\n [base]: true,\n [success]: severity === \"success\",\n [error]: severity === \"error\",\n [warn]: severity === \"warn\",\n [info]: severity === \"info\",\n },\n };\n },\n\n messageContent: {\n class: tw`flex w-full flex-row items-start justify-between gap-10`,\n },\n\n messageIcon: ({ props }) => {\n // Base\n const base = tw`mt-2 h-20 w-20 flex-none shrink-0`;\n\n // Severity\n const severity = props.message?.severity ?? \"info\";\n\n const successIcon = tw`text-green-800`;\n const errorIcon = tw`text-red-800`;\n const warnIcon = tw`text-black`;\n const infoIcon = tw`text-blue-800`;\n\n return {\n class: {\n [base]: true,\n [successIcon]: severity === \"success\",\n [errorIcon]: severity === \"error\",\n [warnIcon]: severity === \"warn\",\n [infoIcon]: severity === \"info\",\n },\n };\n },\n\n messageText: {\n class: tw`grow text-black`,\n },\n\n summary: {\n class: tw`ris-label2-bold`,\n },\n\n detail: {\n class: tw`ris-label2-regular`,\n },\n\n closeButton: ({ props }) => {\n // Base\n const base = tw`p-2 outline-offset-4 outline-blue-800 focus-visible:outline-4`;\n\n // Severity\n const severity = props.message?.severity ?? \"info\";\n\n const successHover = tw`hover:bg-green-400`;\n const errorHover = tw`hover:bg-red-400`;\n const warnHover = tw`hover:bg-yellow-400`;\n const infoHover = tw`hover:bg-blue-400`;\n\n return {\n class: {\n [base]: true,\n [successHover]: severity === \"success\",\n [errorHover]: severity === \"error\",\n [warnHover]: severity === \"warn\",\n [infoHover]: severity === \"info\",\n },\n };\n },\n\n closeIcon: {\n class: tw`text-black`,\n },\n};\n\nexport default toast;\n","import type { TooltipDirectivePassThroughOptions } from \"primevue/tooltip\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst tooltip: TooltipDirectivePassThroughOptions = {\n arrow: ({ context }) => {\n // build a triangle by defining a zero-pixel element with two transparent\n // borders on the sides and one solid border in the middle\n const base = tw`absolute h-0 w-0 border-[7px] border-solid`;\n const top = tw`-mr-[7px] border-b-0 border-t-gray-900 border-r-transparent border-l-transparent`;\n const right = tw`-mt-[7px] border-l-0 border-t-transparent border-r-gray-900 border-b-transparent`;\n const bottom = tw`-ml-[7px] border-t-0 border-r-transparent border-b-gray-900 border-l-transparent`;\n const left = tw`-mt-[7px] border-r-0 border-t-transparent border-b-transparent border-l-gray-900`;\n\n const noPlacementDefined = !context.top && !context.right && !context.bottom && !context.left;\n\n return {\n class: {\n [base]: true,\n [top]: context.top,\n [right]: context.right || noPlacementDefined,\n [bottom]: context.bottom,\n [left]: context.left,\n },\n };\n },\n text: {\n class: tw`ris-label3-regular m-[7px] rounded-sm bg-gray-900 px-8 py-4 text-center whitespace-pre-line text-white`,\n },\n root: {\n class: tw`absolute`,\n },\n};\n\nexport default tooltip;\n","import type { TreePassThroughOptions } from \"primevue/tree\";\nimport { tw } from \"@/lib/tags.ts\";\nimport \"./tree.css\";\n\nconst tree: TreePassThroughOptions = {\n node: {\n class: tw`mb-24 last:mb-0 focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 [&>ul:first-of-type]:border-l-0`,\n },\n nodeContent: ({ context }) => {\n const base = tw`group ris-label2-bold flex w-full border-l-4 border-transparent py-10 pr-20 pl-10 text-blue-800`;\n const pointer = tw`cursor-pointer select-none`;\n const focusVisible = tw`focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`;\n const selected = tw`border-l-blue-800 bg-blue-200 text-black`;\n const hover = tw`hover:bg-blue-200`;\n const hoverSelected = tw`hover:bg-blue-300`;\n\n return {\n class: {\n [base]: true,\n [pointer]: true,\n [selected]: context.selected,\n [hover]: !context.selected,\n [hoverSelected]: context.selected,\n [focusVisible]: true,\n },\n };\n },\n nodeToggleButton: ({ context }) => {\n const base = tw`h-20 w-20 justify-center border-0 bg-transparent text-gray-900 group-hover:text-black hover:text-black`;\n const visibility = context.leaf ? tw`hidden` : tw`inline-flex`;\n\n return {\n class: {\n [base]: true,\n [visibility]: context.leaf,\n },\n };\n },\n nodeChildren: () => {\n const base = tw`m-0 list-none border-l border-gray-600 p-0 pl-36 [&:not(ul)]:pl-0 [&>ul:first-of-type]:border-0`;\n const focusVisible = tw`focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`;\n return {\n class: {\n [base]: true,\n [focusVisible]: true,\n },\n };\n },\n nodeLabel: ({ context }) => {\n const base = tw`group flex w-full flex-col items-start outline-none *:w-full *:outline-none group-hover:text-black [&>*:first-child]:group-hover:underline [&>*:last-child]:group-hover:no-underline`;\n const selected = tw`text-black [&>*:last-child:is(span)]:text-gray-900`;\n const hoverSelected = tw`[&>*:last-child]:group-hover:text-black`;\n\n return {\n class: {\n [base]: true,\n [selected]: context.selected,\n [hoverSelected]: context.selected,\n },\n };\n },\n};\n\nexport default tree;\n","import { deDE } from \"@/config/locale\";\nimport breadcrumb from \"@/primevue/breadcrumb/breadcrumb\";\nimport autocomplete from \"./autocomplete/autocomplete\";\nimport button from \"./button/button\";\nimport checkbox from \"./checkbox/checkbox\";\nimport chip from \"./chip/chip\";\nimport confirmDialog from \"./confirmDialog/confirmDialog\";\nimport dataTable from \"./dataTable/dataTable\";\nimport dialog from \"./dialog/dialog\";\nimport fileUpload from \"./fileUpload/fileUpload\";\nimport inputGroup from \"./inputGroup/inputGroup\";\nimport inputMask from \"./inputMask/inputMask\";\nimport inputText from \"./inputText/inputText\";\nimport menu from \"./menu/menu\";\nimport message from \"./message/message\";\nimport multiselect from \"./multiSelect/multiSelect\";\nimport panelmenu from \"./panelMenu/panelMenu\";\nimport password from \"./password/password\";\nimport progressSpinner from \"./progressSpinner/progressSpinner\";\nimport radioButton from \"./radioButton/radioButton\";\nimport select from \"./select/select\";\nimport splitter from \"./splitter/splitter\";\nimport { tab, tabPanel, tabList } from \"./tabs/tabs\";\nimport textarea from \"./textarea/textarea\";\nimport toast from \"./toast/toast\";\nimport tooltip from \"./tooltip/tooltip\";\nimport tree from \"./tree/tree\";\n\nexport const RisUiTheme = {\n button,\n checkbox,\n chip,\n confirmDialog,\n dialog,\n fileUpload,\n inputGroup,\n inputText,\n menu,\n message,\n password,\n progressSpinner,\n radioButton,\n textarea,\n toast,\n autocomplete,\n select,\n multiselect,\n inputMask,\n breadcrumb,\n tree,\n panelmenu,\n splitter,\n dataTable,\n tab,\n tabPanel,\n tabList,\n directives: {\n tooltip,\n },\n};\n\nexport const RisUiLocale = {\n deDE,\n};\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../../src/config/locale.ts","../../src/lib/tags.ts","../../src/primevue/breadcrumb/breadcrumb.ts","../../src/primevue/autocomplete/autocomplete.ts","../../src/primevue/button/button.ts","../../src/primevue/checkbox/checkbox.ts","../../src/primevue/chip/chip.ts","../../src/primevue/confirmDialog/confirmDialog.ts","../../src/primevue/dataTable/dataTable.ts","../../src/primevue/dialog/dialog.ts","../../src/primevue/drawer/drawer.ts","../../src/primevue/fileUpload/fileUpload.ts","../../src/primevue/inputGroup/inputGroup.ts","../../src/primevue/inputText/inputText.ts","../../src/primevue/inputMask/inputMask.ts","../../src/primevue/menu/menu.ts","../../src/primevue/message/message.ts","../../src/primevue/multiSelect/multiSelect.ts","../../src/primevue/panelMenu/panelMenu.ts","../../src/primevue/password/password.ts","../../src/primevue/progressSpinner/progressSpinner.ts","../../src/primevue/radioButton/radioButton.ts","../../src/primevue/select/select.ts","../../src/primevue/splitter/splitter.ts","../../src/primevue/tabs/tabs.ts","../../src/primevue/textarea/textarea.ts","../../src/primevue/toast/toast.ts","../../src/primevue/tooltip/tooltip.ts","../../src/primevue/tree/tree.ts","../../src/primevue/index.ts"],"sourcesContent":["import type { PrimeVueLocaleOptions } from \"primevue/config\";\n\nexport const deDE: PrimeVueLocaleOptions = {\n startsWith: \"Beginnt mit\",\n contains: \"Enthält\",\n notContains: \"Enthält nicht\",\n endsWith: \"Endet mit\",\n equals: \"Gleich\",\n notEquals: \"Ungleich\",\n noFilter: \"Kein Filter\",\n lt: \"Weniger als\",\n lte: \"Weniger oder gleich\",\n gt: \"Größer als\",\n gte: \"Größer oder gleich\",\n dateIs: \"Datum ist\",\n dateIsNot: \"Datum ist nicht\",\n dateBefore: \"Datum ist vor\",\n dateAfter: \"Datum ist nach\",\n clear: \"Löschen\",\n apply: \"Anwenden\",\n matchAll: \"Alle erfüllen\",\n matchAny: \"Beliebige erfüllen\",\n addRule: \"Regel hinzufügen\",\n removeRule: \"Regel entfernen\",\n accept: \"Ja\",\n reject: \"Nein\",\n choose: \"Auswählen\",\n upload: \"Hochladen\",\n cancel: \"Abbrechen\",\n completed: \"Abgeschlossen\",\n pending: \"Ausstehend\",\n fileSizeTypes: [\"B\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\", \"EB\", \"ZB\", \"YB\"],\n dayNames: [\"Sonntag\", \"Montag\", \"Dienstag\", \"Mittwoch\", \"Donnerstag\", \"Freitag\", \"Samstag\"],\n dayNamesShort: [\"So\", \"Mo\", \"Di\", \"Mi\", \"Do\", \"Fr\", \"Sa\"],\n dayNamesMin: [\"So\", \"Mo\", \"Di\", \"Mi\", \"Do\", \"Fr\", \"Sa\"],\n monthNames: [\n \"Januar\",\n \"Februar\",\n \"März\",\n \"April\",\n \"Mai\",\n \"Juni\",\n \"Juli\",\n \"August\",\n \"September\",\n \"Oktober\",\n \"November\",\n \"Dezember\",\n ],\n monthNamesShort: [\n \"Jan\",\n \"Feb\",\n \"Mär\",\n \"Apr\",\n \"Mai\",\n \"Jun\",\n \"Jul\",\n \"Aug\",\n \"Sep\",\n \"Okt\",\n \"Nov\",\n \"Dez\",\n ],\n chooseYear: \"Jahr wählen\",\n chooseMonth: \"Monat wählen\",\n chooseDate: \"Datum wählen\",\n prevDecade: \"Vorheriges Jahrzehnt\",\n nextDecade: \"Nächstes Jahrzehnt\",\n prevYear: \"Vorheriges Jahr\",\n nextYear: \"Nächstes Jahr\",\n prevMonth: \"Vorheriger Monat\",\n nextMonth: \"Nächster Monat\",\n prevHour: \"Vorherige Stunde\",\n nextHour: \"Nächste Stunde\",\n prevMinute: \"Vorherige Minute\",\n nextMinute: \"Nächste Minute\",\n prevSecond: \"Vorherige Sekunde\",\n nextSecond: \"Nächste Sekunde\",\n am: \"vorm.\",\n pm: \"nachm.\",\n today: \"Heute\",\n weekHeader: \"KW\",\n firstDayOfWeek: 1,\n showMonthAfterYear: false,\n dateFormat: \"dd.mm.yy\",\n weak: \"Schwach\",\n medium: \"Mittel\",\n strong: \"Stark\",\n passwordPrompt: \"Passwort eingeben\",\n emptyFilterMessage: \"Keine Ergebnisse gefunden\",\n searchMessage: \"{0} Ergebnisse verfügbar\",\n selectionMessage: \"{0} Elemente ausgewählt\",\n emptySelectionMessage: \"Kein Element ausgewählt\",\n emptySearchMessage: \"Keine Ergebnisse gefunden\",\n fileChosenMessage: \"{0} Dateien\",\n noFileChosenMessage: \"Keine Datei ausgewählt\",\n emptyMessage: \"Keine Optionen verfügbar\",\n aria: {\n trueLabel: \"Wahr\",\n falseLabel: \"Falsch\",\n nullLabel: \"Nicht ausgewählt\",\n star: \"1 Stern\",\n stars: \"{star} Sterne\",\n selectAll: \"Alle Elemente ausgewählt\",\n unselectAll: \"Alle Elemente abgewählt\",\n close: \"Schließen\",\n previous: \"Vorherige\",\n next: \"Nächste\",\n navigation: \"Navigation\",\n scrollTop: \"Nach oben scrollen\",\n moveTop: \"Nach oben bewegen\",\n moveUp: \"Nach oben bewegen\",\n moveDown: \"Nach unten bewegen\",\n moveBottom: \"Nach unten bewegen\",\n moveToTarget: \"Zum Ziel verschieben\",\n moveToSource: \"Zur Quelle verschieben\",\n moveAllToTarget: \"Alle zum Ziel verschieben\",\n moveAllToSource: \"Alle zur Quelle verschieben\",\n pageLabel: \"Seite {page}\",\n firstPageLabel: \"Erste Seite\",\n lastPageLabel: \"Letzte Seite\",\n nextPageLabel: \"Nächste Seite\",\n prevPageLabel: \"Vorherige Seite\",\n rowsPerPageLabel: \"Zeilen pro Seite\",\n jumpToPageDropdownLabel: \"Zu Seite springen (Dropdown)\",\n jumpToPageInputLabel: \"Zu Seite springen (Eingabe)\",\n selectRow: \"Zeile ausgewählt\",\n unselectRow: \"Zeile abgewählt\",\n expandRow: \"Zeile erweitert\",\n collapseRow: \"Zeile reduziert\",\n showFilterMenu: \"Filtermenü anzeigen\",\n hideFilterMenu: \"Filtermenü ausblenden\",\n filterOperator: \"Filteroperator\",\n filterConstraint: \"Filterbedingung\",\n editRow: \"Zeile bearbeiten\",\n saveEdit: \"Bearbeitung speichern\",\n cancelEdit: \"Bearbeitung abbrechen\",\n listView: \"Listenansicht\",\n gridView: \"Gitteransicht\",\n slide: \"Folie\",\n slideNumber: \"Folie {slideNumber}\",\n zoomImage: \"Bild vergrößern\",\n zoomIn: \"Vergrößern\",\n zoomOut: \"Verkleinern\",\n rotateRight: \"Rechts drehen\",\n rotateLeft: \"Links drehen\",\n listLabel: \"Optionsliste\",\n },\n};\n","const tag = (strings: TemplateStringsArray, ...values: unknown[]) =>\n String.raw({ raw: strings }, ...values);\n\n/**\n * Tagged template string for HTML. The tag itself doesn't do anything, but\n * using it will allow your editor to provide HTML-features for template\n * strings in scripts, e.g. stories:\n *\n * ```ts\n * const template = html`<div>Hello world</div>`\n * ```\n */\nexport const html = tag;\n\n/**\n * Tagged template string for Tailwind classes. The tag itself doesn't do\n * anything, but using it will allow your editor to provide Tailwind\n * Intellisense for template strings in scripts, as well as automatic class\n * sorting.\n *\n * ```ts\n * const classes = tw`px-16 bg-blue-200`\n * ```\n */\nexport const tw = tag;\n","import type { BreadcrumbPassThroughOptions } from \"primevue/breadcrumb\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst breadcrumb: BreadcrumbPassThroughOptions = {\n list: {\n class: tw`m-0 flex list-none flex-wrap items-center p-0 leading-none`,\n },\n item: {\n class: tw`flex-no-wrap ris-label1-regular my-2 flex items-center break-all`,\n },\n itemLink: {\n class: tw`inline-flex cursor-pointer items-center text-blue-800 underline-offset-[3px] hover:underline focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`,\n },\n separator: {\n class: tw`mx-6 flex items-center text-gray-600`,\n },\n};\n\nexport default breadcrumb;\n","import type { AutoCompletePassThroughOptions } from \"primevue/autocomplete\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst fluid = tw`w-full`;\n\nconst autocomplete: AutoCompletePassThroughOptions = {\n root: ({ props, state }) => {\n const base = tw`ris-body2-regular flex min-h-48 border-2 bg-white py-4 pr-4 pl-16 -outline-offset-4 outline-blue-800 placeholder:text-gray-800 has-focus-visible:outline-4`;\n\n const normal = tw`cursor-pointer border-blue-800`;\n\n const focused = tw`outline-4`;\n\n const hover = tw`hover:outline-4`;\n\n const invalid = tw`aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-hidden`;\n\n const disabled = tw`cursor-not-allowed border-blue-500 text-blue-500 disabled:outline-hidden`;\n\n return {\n class: {\n [base]: true,\n [normal]: !props.disabled,\n [focused]: state.focused && !props.disabled,\n [hover]: !props.disabled,\n [fluid]: !!props.fluid,\n [invalid]: props.invalid,\n [disabled]: props.disabled,\n },\n\n \"aria-invalid\": props.invalid ? \"true\" : null,\n };\n },\n\n pcInputText: {\n root: ({ props }) => {\n const focus = tw`focus-visible:outline-hidden`;\n\n return {\n class: {\n [focus]: true,\n [fluid]: !!props.fluid,\n },\n };\n },\n },\n\n inputMultiple: {\n class: tw`flex w-full flex-wrap items-center gap-4`,\n },\n\n inputChip: {\n class: tw`flex items-center`,\n },\n\n input: {\n class: tw`w-full focus-visible:outline-hidden`,\n },\n\n dropdown: {\n class: tw`absolute inset-y-0 right-16`,\n },\n\n option: {\n class: tw`cursor-pointer border-l-4 border-transparent hover:border-blue-600 hover:bg-blue-200 data-[p-focused=true]:border-blue-600 data-[p-focused=true]:bg-blue-200`,\n },\n\n optionGroup: {\n class: tw`hover:bg-blue-100 data-[p-focused=true]:bg-blue-200`,\n },\n\n overlay: {\n class: tw`mt-12 w-full overflow-auto bg-white px-8 py-12 shadow-md`,\n },\n};\n\nexport default autocomplete;\n","import type { ButtonPassThroughOptions } from \"primevue/button\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst button: ButtonPassThroughOptions = {\n root: ({ props, instance }) => {\n // Base\n const base = tw`relative inline-flex max-w-full cursor-pointer items-center justify-center gap-8 text-center focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 focus-visible:not-focus-visible:outline-none active:outline-none disabled:cursor-not-allowed disabled:outline-hidden`;\n\n // Rounded\n const rounded = tw`rounded-full`;\n\n // Severity\n const severity = props.severity ?? \"primary\";\n\n const primary = tw`bg-blue-800 text-white hover:bg-blue-700 active:bg-blue-500 active:text-blue-800 disabled:bg-gray-400 disabled:text-gray-600`;\n\n const secondary = tw`border-2 border-blue-800 bg-white text-blue-800 hover:bg-blue-200 focus-visible:bg-blue-200 active:bg-blue-400 disabled:border-blue-500 disabled:text-blue-500 disabled:hover:bg-white`;\n\n const danger = tw`border-2 border-red-800 bg-white text-red-800 hover:bg-red-100 focus-visible:bg-red-100 active:border-red-800 active:bg-red-300 disabled:border-red-500 disabled:text-red-500 disabled:hover:bg-white`;\n\n const info = tw`border border-blue-500 bg-white font-normal text-blue-800 hover:bg-gray-200 focus-visible:bg-gray-200 active:border-white active:bg-white disabled:border-blue-500 disabled:text-blue-500 disabled:hover:bg-white`;\n\n // Text\n // This is the \"Ghost\" variant of the button\n const primaryText = tw`border-2 border-transparent bg-transparent text-blue-800 underline hover:border-gray-500 hover:bg-white focus-visible:border-gray-500 active:border-blue-600 active:bg-blue-400 disabled:bg-transparent disabled:text-gray-500`;\n\n // Sizes\n const size = props.size ?? \"normal\";\n let small = tw`ris-body2-bold h-40 py-4`;\n let normal = tw`ris-body2-bold h-48 py-4`;\n let large = tw`ris-body1-bold h-64 py-4`;\n\n // Icon only\n if (instance.hasIcon && !props.label) {\n small = tw`${small} w-40 px-4`;\n normal = tw`${normal} w-48 px-4`;\n large = tw`${large} w-64 px-4`;\n }\n\n // Label only or label + icon\n else {\n small = tw`${small} px-12`;\n normal = tw`${normal} px-16`;\n large = tw`${large} px-24`;\n }\n\n return {\n class: {\n [base]: true,\n [rounded]: props.rounded,\n [small]: size === \"small\",\n [normal]: size === \"normal\",\n [large]: size === \"large\",\n [primary]: !props.text && severity === \"primary\",\n [secondary]: !props.text && severity === \"secondary\",\n [danger]: !props.text && severity === \"danger\",\n [info]: !props.text && severity === \"info\",\n [primaryText]: props.text && severity === \"primary\",\n },\n };\n },\n\n label: ({ props }) => ({\n class: {\n hidden: !props.label,\n },\n }),\n\n icon: ({ props }) => ({\n class: {\n \"order-last\": props.iconPos == \"right\",\n },\n }),\n\n loadingIcon: ({ props }) => {\n // Size\n const size = props.size ?? \"normal\";\n const normal = tw`h-[1.34em] w-[1.34em]`;\n const large = tw`h-24 w-24`;\n\n return {\n class: {\n [tw`animate-spin`]: true,\n [normal]: size === \"normal\",\n [large]: size === \"large\",\n },\n };\n },\n};\n\nexport default button;\n","import type { CheckboxPassThroughOptions } from \"primevue/checkbox\";\nimport { tw } from \"@/lib/tags\";\n\nconst checkbox: CheckboxPassThroughOptions = {\n root: ({ props }) => {\n const isLarge = props.size === \"large\";\n const base = tw`[&+label]:ris-label1-regular relative inline-block h-24 min-h-24 w-24 min-w-24 [&+label]:ml-8`;\n\n return {\n class: [\n base,\n {\n [tw`h-32 min-h-32 w-32 min-w-32`]: isLarge,\n },\n ],\n };\n },\n\n input: {\n class: tw`peer h-full w-full cursor-pointer appearance-none border-2 border-blue-800 bg-white checked:bg-blue-800 hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 checked:hover:bg-blue-700 checked:hover:outline-blue-700 focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 active:outline-hidden disabled:cursor-not-allowed disabled:border-gray-600 disabled:outline-hidden disabled:checked:bg-gray-600 aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 aria-[invalid]:checked:bg-red-800 aria-[invalid]:checked:outline-red-700 aria-[invalid]:checked:hover:bg-red-700 aria-[invalid]:active:outline-none aria-[invalid]:disabled:outline-none`,\n },\n\n box: {\n class: tw`pointer-events-none absolute inset-0 flex items-center justify-center text-blue-800 peer-checked:text-white`,\n },\n\n icon: {\n class: tw`h-12 w-12`,\n },\n};\n\nexport default checkbox;\n","import type { ChipPassThroughOptions } from \"primevue\";\nimport { tw } from \"@/lib/tags\";\n\nconst chip: ChipPassThroughOptions = {\n root: {\n class: tw`mr-6 inline-flex items-center rounded-full bg-blue-300 px-12 py-4`,\n },\n\n removeIcon: {\n class: tw`ml-4`,\n },\n};\n\nexport default chip;\n","import type { ConfirmDialogPassThroughOptions } from \"primevue/confirmdialog\";\n\nconst confirmDialog: ConfirmDialogPassThroughOptions = {\n // All styling implemented in primevue/dialog\n};\n\nexport default confirmDialog;\n","import type { DataTablePassThroughOptions, DataTableContext } from \"primevue/datatable\";\nimport { tw } from \"@/lib/tags\";\nimport checkbox from \"../checkbox/checkbox\";\n\nconst dataTable: DataTablePassThroughOptions = {\n root: {\n class: tw`relative`,\n },\n\n tableContainer: {\n class: tw`overflow-visible`,\n },\n table: {\n class: tw`w-full border-none text-left`,\n },\n\n thead: {\n class: tw`sticky top-0 bg-white shadow-[0_1px_0_var(--color-blue-300)]`,\n },\n\n tbody: {\n class: tw`divide-y divide-blue-300 border-b border-blue-300`,\n },\n\n bodyRow: ({ context }: { context: DataTableContext }) => ({\n class: [\n tw`-outline-offset-4 outline-blue-800 focus-visible:outline-4`,\n {\n \"bg-blue-300\": context.selected,\n \"hover:bg-blue-100\": !context.selected,\n },\n ],\n }),\n\n // height for td works like min-height: Table cells will grow when the content does not fit.\n column: {\n headerCell: {\n class: tw`ris-label2-bold h-56 px-16 py-12`,\n },\n\n bodyCell: {\n class: tw`ris-body1-regular h-56 px-16 py-12`,\n },\n\n pcHeaderCheckbox: {\n ...checkbox,\n root: {\n class: tw`relative block h-24 w-24`,\n },\n },\n\n pcRowCheckbox: {\n ...checkbox,\n root: {\n class: tw`relative block h-24 w-24`,\n },\n },\n },\n\n mask: {\n class: tw`text-primary-500 justify-content absolute inset-0 z-10 mt-56 flex justify-center py-96`,\n },\n\n loadingIcon: {\n class: tw`inline-block h-24 w-24 animate-spin border-solid border-r-transparent text-blue-900 motion-reduce:animate-[spin_1.5s_linear_infinite]`,\n },\n\n emptyMessageCell: {\n class: tw`py-96 text-center text-gray-900`,\n },\n};\n\nexport default dataTable;\n","import type { DialogPassThroughOptions } from \"primevue/dialog\";\nimport { tw } from \"@/lib/tags\";\n\nconst dialog: DialogPassThroughOptions = {\n root: () => {\n // Base\n const base = tw`ris-label2-regular max-h-[90dvh] w-[95dvw] max-w-[25rem] border-2 border-blue-800 bg-white px-56 py-44 shadow-lg`;\n\n return {\n class: base,\n };\n },\n\n header: {\n class: tw`mb-16 flex`,\n },\n\n title: {\n class: tw`ris-label1-bold flex-1`,\n },\n\n headerActions: {\n class: tw`flex-none`,\n },\n\n pcCloseButton: {\n root: {\n class: tw`ris-label1-regular flex h-24 w-24 items-center justify-center p-4 text-blue-800 outline-hidden hover:outline-2 hover:outline-gray-500 focus-visible:outline-4 focus-visible:outline-blue-800 active:outline-none`,\n },\n },\n\n content: {\n // When an SVG is the first child of the content, we're applying a flex\n // styling. This is a heuristic for an icon in the dialog content, used\n // (for example) by the confirm dialog. If the svg is not the first child,\n // we assume that it is used in the context of some other layout and don't\n // apply extra styling.\n class: tw`ris-dialog-content overflow-auto has-[svg:first-child]:flex has-[svg:first-child]:gap-8 [&>svg:first-child]:flex-none`,\n },\n\n footer: {\n class: tw`mt-40 flex items-center justify-end gap-12`,\n },\n\n mask: {\n class: tw`bg-black/40`,\n },\n};\n\nexport default dialog;\n","import type { DrawerPassThroughOptions } from \"primevue\";\nimport { tw } from \"@/lib/tags\";\n\n// Classes prefixed with `drawer-` are required by `components-extra/drawer.css`\n// for features not supported by Tailwind.\n\nconst drawer: DrawerPassThroughOptions = {\n root: {\n class: tw`drawer-root shadow-gray-1000/15 relative max-h-[85dvh] w-full overflow-auto bg-white shadow-[0_0_0.5rem]`,\n },\n\n header: {\n class: tw`drawer-header sticky top-0 z-10 flex min-h-64 items-center justify-between gap-8 bg-white px-16 py-8 transition-shadow duration-100`,\n },\n\n pcCloseButton: {\n root: {\n class: tw`ris-label2-regular flex cursor-pointer items-center gap-6 py-12 text-blue-800 outline-offset-4 outline-blue-800 focus-visible:outline-4`,\n },\n\n icon: {\n width: \"1.25rem\",\n height: \"1.25rem\",\n },\n },\n\n title: {\n class: tw`ris-subhead-bold`,\n },\n\n content: {\n class: tw`px-16 py-8`,\n },\n\n footer: {\n class: tw`drawer-footer sticky bottom-0 bg-white px-16 pt-16 pb-24 transition-shadow duration-100`,\n },\n\n mask: {\n class: tw`bg-gray-900/30 transition duration-300 has-[.enter-from]:bg-gray-900/0 has-[.leave-to]:bg-gray-900/0`,\n },\n\n transition: {\n enterFromClass: tw`enter-from translate-y-full`,\n enterActiveClass: tw`enter-active transition duration-300`,\n leaveActiveClass: tw`leave-active transition duration-150`,\n leaveToClass: tw`leave-to translate-y-full`,\n },\n};\n\nexport default drawer;\n","import type { FileUploadPassThroughOptions } from \"primevue/fileupload\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst fileUpload: FileUploadPassThroughOptions = {\n basicContent: {\n // @ts-expect-error types appear to be wrong here\n class: tw`flex flex-col items-center gap-10`,\n },\n\n input: {\n class: tw`hidden`,\n },\n};\n\nexport default fileUpload;\n","import type { InputGroupPassThroughOptions } from \"primevue/inputgroup\";\nimport { tw } from \"@/lib/tags\";\n\nconst inputGroup: InputGroupPassThroughOptions = {\n root: {\n class: tw`flex`,\n },\n};\n\nexport default inputGroup;\n","import type { InputTextPassThroughOptions } from \"primevue/inputtext\";\nimport { tw } from \"@/lib/tags\";\n\n// Base\nexport const base = tw`[&+small]:ris-label3-regular border-2 border-blue-800 bg-white placeholder:text-gray-800 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus-visible:outline-4 focus-visible:-outline-offset-4 focus-visible:outline-blue-800 disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-hidden aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-hidden [&+small]:mt-4 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid=\"true\"]+small]:text-red-900`;\n\n// Sizes\nexport const small = tw`ris-body2-regular h-48 px-16 py-4`;\nexport const large = tw`ris-body1-regular h-64 px-24 py-4`;\n\nconst inputText: InputTextPassThroughOptions = {\n root: ({ props }) => {\n // Integration for primevue/password\n // This is styled here rather than in the password component because it\n // makes accessing the placeholder easier\n const password = tw`[[type=password]]:w-full [&[type=password]:not(:placeholder-shown)]:text-[1.75rem] [&[type=password]:not(:placeholder-shown)]:tracking-[0.25rem]`;\n\n // Integration for primevue/fluid\n const fluid = tw`w-full`;\n\n return {\n class: {\n [base]: true,\n [fluid]: !!props.fluid,\n [password]: true,\n [small]: !props.size || props.size === \"small\",\n [large]: props.size === \"large\",\n },\n \"data-size\": props.size ?? \"small\",\n };\n },\n};\n\nexport default inputText;\n","import type { InputMaskPassThroughOptions } from \"primevue/inputmask\";\nimport { base, small } from \"../inputText/inputText\";\n\nconst inputMask: InputMaskPassThroughOptions = {\n pcInputText: {\n root: ({ props }) => {\n return {\n class: {\n [base]: true,\n [small]: true,\n \"w-full\": !!props.fluid,\n },\n };\n },\n },\n};\n\nexport default inputMask;\n","import type { MenuPassThroughOptions } from \"primevue/menu\";\nimport { tw } from \"@/lib/tags\";\n\nconst menu: MenuPassThroughOptions = {\n root: {\n class: tw`ris-body2-regular border border-gray-600 bg-white shadow`,\n },\n\n list: {\n class: tw`focus-visible:outline-none`,\n },\n\n item: ({ context }) => {\n const base = tw`relative h-48 border-l-4 border-l-transparent pr-12 pl-16 after:absolute after:right-16 after:-bottom-1 after:left-12 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:border-l-blue-400 hover:bg-blue-100 active:border-l-blue-800 active:bg-blue-300`;\n\n const focused = tw`bg-blue-200 -outline-offset-4 outline-blue-800 not-hover:outline-4 hover:bg-blue-200`;\n\n return {\n class: {\n [base]: true,\n [focused]: context.focused,\n },\n };\n },\n itemContent: {\n class: tw`flex h-full items-center py-4`,\n },\n itemLink: {\n class: tw`flex items-center gap-8`,\n },\n};\n\nexport default menu;\n","import type { MessagePassThroughOptions } from \"primevue/message\";\nimport { tw } from \"@/lib/tags\";\n\nconst message: MessagePassThroughOptions = {\n root: ({ props, instance }) => {\n // Base\n const base = tw`ris-body1-regular border-l-4 px-20 py-14`;\n\n // Severity\n const severity = props.severity ?? \"info\";\n\n const success = tw`border-l-green-800 bg-green-200`;\n\n const info = tw`border-l-blue-800 bg-blue-200`;\n\n const warn = tw`border-l-yellow-800 bg-yellow-200`;\n\n const error = tw`border-l-red-800 bg-red-200`;\n\n // Default icon for severities\n const hasDefaultIcon = !!instance.$slots.icon;\n\n const iconNames: Record<string, string> = {\n success: \"var(--ris-icon-success)\",\n info: \"var(--ris-icon-info)\",\n warn: \"var(--ris-icon-warn)\",\n error: \"var(--ris-icon-error)\",\n };\n\n const iconName = iconNames[severity];\n\n const iconBg = tw`bg-size-[1.5rem] bg-position-[1rem_1rem] bg-no-repeat pl-48`;\n\n return {\n class: {\n [base]: true,\n [success]: severity === \"success\",\n [info]: severity === \"info\",\n [warn]: severity === \"warn\",\n [error]: severity === \"error\",\n [iconBg]: !hasDefaultIcon,\n },\n style: {\n backgroundImage: !hasDefaultIcon ? iconName : undefined,\n },\n };\n },\n\n content: {\n class: tw`flex items-start gap-8`,\n },\n\n text: {\n class: tw`flex-1`,\n },\n\n closeButton: ({ props }) => {\n // Base\n const base = tw`mt-4 inline-flex h-20 w-20 flex-none items-center justify-center p-2 leading-none outline-offset-4 outline-blue-800 focus-visible:outline-4`;\n\n // Severity\n const severity = props.severity ?? \"info\";\n\n const success = tw`text-green-800 hover:bg-green-400 active:bg-green-500`;\n\n const info = tw`text-blue-800 hover:bg-blue-400 active:bg-blue-500`;\n\n const warn = tw`text-black hover:bg-yellow-400 active:bg-yellow-500`;\n\n const error = tw`text-red-800 hover:bg-red-400 active:bg-red-500`;\n\n return {\n class: {\n [base]: true,\n [success]: severity === \"success\",\n [info]: severity === \"info\",\n [warn]: severity === \"warn\",\n [error]: severity === \"error\",\n },\n };\n },\n};\n\nexport default message;\n","import type { MultiSelectPassThroughOptions } from \"primevue/multiselect\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst multiSelect: MultiSelectPassThroughOptions = {\n root: ({ props, state }) => {\n // Base\n const base = tw`ris-body2-regular [&+small]:ris-label3-regular relative inline-flex min-h-48 items-center justify-start border-2 bg-white py-2 pr-12 pl-12 [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid=\"true\"]+small]:text-red-900`;\n\n // States\n const normal = tw`cursor-pointer border-blue-800`;\n\n const focused = tw`has-focus-visible:outline-4 has-focus-visible:-outline-offset-4 has-focus-visible:outline-blue-800`;\n\n const hover = tw`hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800`;\n\n const disabled = tw`cursor-not-allowed border-blue-500 text-blue-500 disabled:outline-hidden`;\n\n const invalid = tw`border-red-800 bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-hidden aria-[invalid]:disabled:outline-hidden`;\n\n // Integration for primevue/fluid\n const fluid = tw`w-full`;\n\n return {\n class: {\n [base]: true,\n [normal]: !props.disabled,\n [focused]: state.focused && !props.disabled,\n [hover]: !props.disabled,\n [fluid]: !!props.fluid,\n [disabled]: props.disabled,\n [invalid]: props.invalid,\n },\n\n \"aria-invalid\": props.invalid ? \"true\" : null,\n };\n },\n\n dropdown: {\n class: tw`pl-12`,\n },\n\n dropdownIcon: {\n class: tw`absolute top-16 right-8`,\n },\n\n listContainer: {\n class: tw`overflow-auto shadow-md`,\n },\n\n labelContainer: {\n class: tw`flex flex-row`,\n },\n\n label: {\n class: tw`flex flex-row flex-wrap gap-y-8 py-4`,\n },\n\n overlay: {\n class: tw`bg-white`,\n },\n\n optionLabel: {\n class: tw`pl-12`,\n },\n\n header: {\n class: tw`hidden`,\n },\n\n option: ({ context }) => {\n // Base\n const base = tw`ris-body2-regular relative flex h-full min-h-48 w-full cursor-pointer border-l-4 border-transparent py-16 pr-24 pl-20 after:absolute after:right-8 after:-bottom-1 after:left-8 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:bg-gray-100`;\n\n // States\n const focused = tw`border-l-4 border-solid border-l-blue-800 bg-gray-100`;\n\n return {\n class: {\n [base]: true,\n [focused]: context.focused,\n },\n };\n },\n};\n\nexport default multiSelect;\n","import type { PanelMenuPassThroughOptions } from \"primevue/panelmenu\";\nimport { tw } from \"@/lib/tags\";\n\nconst pointer = tw`cursor-pointer`;\n\nconst selected = tw`ris-label1-bold border-l-blue-800 bg-blue-200 text-blue-900 hover:bg-blue-300`;\n\nconst notSelected = tw`ris-label1-regular hover:border-l-blue-600 hover:bg-blue-200`;\n\nconst focused = tw`-outline-offset-4 outline-blue-800 focus-visible:outline-4`;\n\nconst panelMenu: PanelMenuPassThroughOptions = {\n root: {\n class: tw`text-blue-800`,\n },\n\n header: ({ context }) => {\n const base = tw`group flex h-64 items-center border-l-4 border-transparent py-8 pr-20 pl-10`;\n\n return {\n class: {\n [base]: true,\n [focused]: true,\n [pointer]: true,\n [selected]: context.active,\n [notSelected]: !context.active,\n },\n };\n },\n\n content: {\n class: tw`mt-8 ml-28`,\n },\n\n rootList: {\n class: tw`focus-visible:outline-none`,\n },\n\n panel: {\n class: tw`focus-visible:outline-none`,\n },\n\n itemContent: ({ context }) => {\n const base = tw`group flex h-48 items-center border-l-4 border-transparent py-8 pr-20 pl-10`;\n\n // Unlike header, itemContent does not get a focus-visible pseudo-class. Instead, the focused context property must be used.\n // See https://github.com/primefaces/primevue/issues/6836\n const itemFocused = tw`${focused} not-[:hover]:outline-4`;\n\n return {\n class: {\n [base]: true,\n [itemFocused]: context.focused,\n [pointer]: true,\n [selected]: context.active,\n [notSelected]: !context.active,\n },\n };\n },\n};\n\nexport default panelMenu;\n","import type { PasswordPassThroughOptions } from \"primevue/password\";\n\nconst password: PasswordPassThroughOptions = {\n // All styling moved to inputText.ts\n};\n\nexport default password;\n","import type { ProgressSpinnerPassThroughOptions } from \"primevue/progressspinner\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst progressSpinner: ProgressSpinnerPassThroughOptions = {\n root: {\n class: tw`mx-auto inline-block h-28 w-28 animate-spin`,\n },\n\n circle: {\n class: tw`fill-transparent stroke-current stroke-[4px] text-blue-800 [stroke-dasharray:200] [stroke-dashoffset:100]`,\n },\n};\n\nexport default progressSpinner;\n","import type { RadioButtonPassThroughOptions } from \"primevue/radiobutton\";\nimport { tw } from \"@/lib/tags\";\n\nconst radioButton: RadioButtonPassThroughOptions = {\n root: ({ props }) => {\n const isSmall = props.size === \"small\";\n\n return {\n class: [\n tw`[&+label]:ris-label1-regular relative inline-block [&+label]:ml-8`,\n isSmall ? tw`h-24 w-24` : tw`h-32 w-32`,\n ],\n };\n },\n\n input: {\n class: tw`peer h-full w-full cursor-pointer appearance-none rounded-full border-2 border-blue-800 bg-white hover:outline hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus-visible:outline focus-visible:outline-4 focus-visible:-outline-offset-4 focus-visible:outline-blue-800 active:outline-hidden disabled:cursor-not-allowed disabled:border-gray-600 aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-hidden aria-[invalid]:disabled:outline-hidden`,\n },\n\n box: {\n class: tw`pointer-events-none absolute inset-0 flex items-center justify-center text-transparent peer-checked:text-blue-800 peer-disabled:text-gray-600 peer-aria-[invalid]:text-red-800`,\n },\n\n icon: ({ props }) => {\n const isSmall = props.size === \"small\";\n\n return {\n class: [tw`rounded-full bg-current`, isSmall ? tw`h-12 w-12` : tw`h-16 w-16`],\n };\n },\n};\n\nexport default radioButton;\n","import type { SelectPassThroughOptions } from \"primevue/select\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst select: SelectPassThroughOptions = {\n root: ({ props, state }) => {\n // Base\n const base = tw`group ris-body2-regular [&+small]:ris-label3-regular relative inline-flex h-48 items-center justify-between border-2 bg-white py-4 pr-6 pl-16 [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid=\"true\"]+small]:text-red-900`;\n\n // States\n const normal = tw`cursor-pointer border-blue-800`;\n\n const focused = tw`outline-4 -outline-offset-4 outline-blue-800`;\n\n const hover = tw`hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800`;\n\n const disabled = tw`cursor-not-allowed border-blue-500 text-blue-500 disabled:outline-hidden`;\n\n const invalid = tw`border-red-800 bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-hidden aria-[invalid]:disabled:outline-hidden`;\n\n // Integration for primevue/fluid\n const fluid = tw`w-full`;\n\n return {\n class: {\n [base]: true,\n [normal]: !props.disabled,\n [focused]: (state.focused || state.overlayVisible) && !props.disabled,\n [hover]: !props.disabled,\n [fluid]: !!props.fluid,\n [disabled]: props.disabled,\n [invalid]: props.invalid,\n },\n\n \"aria-invalid\": props.invalid ? \"true\" : null,\n };\n },\n\n dropdown: ({ state, props }) => {\n const base = tw`ml-8 p-10`;\n\n const normal = tw`text-blue-800 group-hover:bg-blue-200`;\n\n const focused = tw`bg-blue-800 text-white`;\n\n const disabled = tw`text-blue-500`;\n\n return {\n class: {\n [base]: true,\n [normal]: !(state.focused || state.overlayVisible || props.disabled),\n [focused]: (state.focused || state.overlayVisible) && !props.disabled,\n [disabled]: props.disabled,\n },\n };\n },\n\n listContainer: {\n class: tw`overflow-auto shadow-md`,\n },\n\n label: {\n class: tw`line-clamp-1 grow outline-none`,\n },\n\n overlay: {\n class: tw`bg-white`,\n },\n\n option: ({ context, props }) => {\n // Base\n const base = tw`ris-body2-regular relative h-full min-h-48 w-full cursor-pointer px-16 py-12 after:absolute after:right-8 after:-bottom-1 after:left-8 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:bg-gray-100`;\n\n // States\n const focused = tw`bg-gray-100`;\n\n // Checkmark\n const withCheckmark = tw`flex items-center gap-16`;\n\n return {\n class: {\n [base]: true,\n [focused]: context.focused,\n [withCheckmark]: props.checkmark,\n },\n };\n },\n\n optionCheckIcon: {\n class: tw`order-1 text-blue-800`,\n },\n\n optionBlankIcon: {\n class: tw`order-1`,\n },\n};\n\nexport default select;\n","import type { SplitterPassThroughOptions } from \"primevue/splitter\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst splitter: SplitterPassThroughOptions = {\n root: ({ props }) => ({\n class: {\n [tw`flex flex-nowrap rounded-none border-0 bg-transparent`]: true,\n [tw`flex-col`]: props.layout === \"vertical\",\n },\n }),\n\n gutter: ({ props }) => ({\n class: {\n [tw`flex shrink-0 items-center justify-center bg-gray-400 hover:bg-blue-700`]: true,\n [tw`h-full w-[0.1875rem] cursor-col-resize`]: props.layout === \"horizontal\",\n [tw`h-[0.1875rem] w-full cursor-row-resize`]: props.layout === \"vertical\",\n },\n }),\n\n gutterHandle: ({ props }) => ({\n class: {\n [tw`z-20 rounded bg-transparent outline-offset-4 outline-blue-800 focus-visible:outline-4`]: true,\n [tw`h-11/12 w-[0.1875rem] cursor-col-resize`]: props.layout === \"horizontal\",\n [tw`h-[0.1875rem] w-11/12 cursor-row-resize`]: props.layout === \"vertical\",\n },\n }),\n};\n\nexport default splitter;\n","import type { TabPassThroughOptions } from \"primevue/tab\";\nimport type { TabListPassThroughOptions } from \"primevue/tablist\";\nimport type { TabPanelPassThroughOptions } from \"primevue/tabpanel\";\nimport { tw } from \"@/lib/tags\";\n\nexport const tab: TabPassThroughOptions = {\n root: ({ context }) => {\n const base = tw`ris-body2-bold h-64 border-b-4 border-b-transparent py-4 pr-24 pl-20 outline-0 -outline-offset-4 outline-blue-800 focus-visible:outline-4`;\n const active = tw`z-10 bg-[var(--p-tabs-tab-active-background)] text-black shadow-[-1px_-1px_0_0_var(--p-tabs-tab-border-color),1px_-1px_0_0_var(--p-tabs-tab-border-color)]`;\n const inactive = tw`cursor-pointer text-blue-800 hover:border-b-blue-800`;\n return {\n class: {\n [base]: true,\n [active]: context.active,\n [inactive]: !context.active,\n },\n };\n },\n};\nexport const tabPanel: TabPanelPassThroughOptions = {\n root: {\n class: tw`min-h-96 bg-[var(--p-tabs-tabpanel-background)] py-24 outline-blue-800 focus-visible:outline-solid`,\n },\n};\nexport const tabList: TabListPassThroughOptions = {\n tabList: {\n class: tw`relative flex before:absolute before:bottom-0 before:left-[50%] before:h-px before:w-[var(--tab-list-separator-width,100%)] before:-translate-x-1/2 before:bg-[var(--p-tabs-tablist-border-color)]`,\n },\n};\n","import type { TextareaPassThroughOptions } from \"primevue/textarea\";\nimport { tw } from \"@/lib/tags\";\n\nconst textarea: TextareaPassThroughOptions = {\n root: ({ props }) => {\n // Base\n const base = tw`ris-body1-regular [&+small]:ris-label3-regular min-h-56 border-2 border-blue-800 bg-white px-14 pt-8 pb-12 placeholder:text-gray-900 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus-visible:outline focus-visible:outline-4 focus-visible:-outline-offset-4 focus-visible:outline-blue-800 disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-hidden aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-hidden [&+small]:mt-2 [&+small]:flex [&+small]:items-center [&+small]:gap-4 [&+small]:text-gray-900 [&[aria-invalid=\"true\"]+small]:text-red-900`;\n\n // Integration for primevue/fluid\n const fluid = tw`w-full`;\n\n return {\n class: {\n [base]: true,\n [fluid]: !!props.fluid,\n },\n };\n },\n};\n\nexport default textarea;\n","import type { ToastPassThroughOptions } from \"primevue/toast\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst toast: ToastPassThroughOptions = {\n root: {\n class: tw`max-w-lg`,\n },\n message: ({ props }) => {\n // Base\n const base = tw`mb-8 flex w-full flex-row items-center gap-8 border-l-4 p-16`;\n\n // Severity\n const severity = props.message?.severity;\n\n const success = tw`border-l-green-900 bg-green-200`;\n const error = tw`border-l-red-900 bg-red-200`;\n const warn = tw`border-l-yellow-900 bg-yellow-200`;\n const info = tw`border-l-blue-900 bg-blue-200`;\n\n return {\n class: {\n [base]: true,\n [success]: severity === \"success\",\n [error]: severity === \"error\",\n [warn]: severity === \"warn\",\n [info]: severity === \"info\",\n },\n };\n },\n\n messageContent: {\n class: tw`flex w-full flex-row items-start justify-between gap-10`,\n },\n\n messageIcon: ({ props }) => {\n // Base\n const base = tw`mt-2 h-20 w-20 flex-none shrink-0`;\n\n // Severity\n const severity = props.message?.severity ?? \"info\";\n\n const successIcon = tw`text-green-800`;\n const errorIcon = tw`text-red-800`;\n const warnIcon = tw`text-black`;\n const infoIcon = tw`text-blue-800`;\n\n return {\n class: {\n [base]: true,\n [successIcon]: severity === \"success\",\n [errorIcon]: severity === \"error\",\n [warnIcon]: severity === \"warn\",\n [infoIcon]: severity === \"info\",\n },\n };\n },\n\n messageText: {\n class: tw`grow text-black`,\n },\n\n summary: {\n class: tw`ris-label2-bold`,\n },\n\n detail: {\n class: tw`ris-label2-regular`,\n },\n\n closeButton: ({ props }) => {\n // Base\n const base = tw`p-2 outline-offset-4 outline-blue-800 focus-visible:outline-4`;\n\n // Severity\n const severity = props.message?.severity ?? \"info\";\n\n const successHover = tw`hover:bg-green-400`;\n const errorHover = tw`hover:bg-red-400`;\n const warnHover = tw`hover:bg-yellow-400`;\n const infoHover = tw`hover:bg-blue-400`;\n\n return {\n class: {\n [base]: true,\n [successHover]: severity === \"success\",\n [errorHover]: severity === \"error\",\n [warnHover]: severity === \"warn\",\n [infoHover]: severity === \"info\",\n },\n };\n },\n\n closeIcon: {\n class: tw`text-black`,\n },\n};\n\nexport default toast;\n","import type { TooltipDirectivePassThroughOptions } from \"primevue/tooltip\";\nimport { tw } from \"@/lib/tags.ts\";\n\nconst tooltip: TooltipDirectivePassThroughOptions = {\n arrow: ({ context }) => {\n // build a triangle by defining a zero-pixel element with two transparent\n // borders on the sides and one solid border in the middle\n const base = tw`absolute h-0 w-0 border-[7px] border-solid`;\n const top = tw`-mr-[7px] border-b-0 border-t-gray-900 border-r-transparent border-l-transparent`;\n const right = tw`-mt-[7px] border-l-0 border-t-transparent border-r-gray-900 border-b-transparent`;\n const bottom = tw`-ml-[7px] border-t-0 border-r-transparent border-b-gray-900 border-l-transparent`;\n const left = tw`-mt-[7px] border-r-0 border-t-transparent border-b-transparent border-l-gray-900`;\n\n const noPlacementDefined = !context.top && !context.right && !context.bottom && !context.left;\n\n return {\n class: {\n [base]: true,\n [top]: context.top,\n [right]: context.right || noPlacementDefined,\n [bottom]: context.bottom,\n [left]: context.left,\n },\n };\n },\n text: {\n class: tw`ris-label3-regular m-[7px] rounded-sm bg-gray-900 px-8 py-4 text-center whitespace-pre-line text-white`,\n },\n root: {\n class: tw`absolute`,\n },\n};\n\nexport default tooltip;\n","import type { TreePassThroughOptions } from \"primevue/tree\";\nimport { tw } from \"@/lib/tags.ts\";\nimport \"./tree.css\";\n\nconst tree: TreePassThroughOptions = {\n node: {\n class: tw`mb-24 last:mb-0 focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 [&>ul:first-of-type]:border-l-0`,\n },\n nodeContent: ({ context }) => {\n const base = tw`group ris-label2-bold flex w-full border-l-4 border-transparent py-10 pr-20 pl-10 text-blue-800`;\n const pointer = tw`cursor-pointer select-none`;\n const focusVisible = tw`focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`;\n const selected = tw`border-l-blue-800 bg-blue-200 text-black`;\n const hover = tw`hover:bg-blue-200`;\n const hoverSelected = tw`hover:bg-blue-300`;\n\n return {\n class: {\n [base]: true,\n [pointer]: true,\n [selected]: context.selected,\n [hover]: !context.selected,\n [hoverSelected]: context.selected,\n [focusVisible]: true,\n },\n };\n },\n nodeToggleButton: ({ context }) => {\n const base = tw`h-20 w-20 justify-center border-0 bg-transparent text-gray-900 group-hover:text-black hover:text-black`;\n const visibility = context.leaf ? tw`hidden` : tw`inline-flex`;\n\n return {\n class: {\n [base]: true,\n [visibility]: context.leaf,\n },\n };\n },\n nodeChildren: () => {\n const base = tw`m-0 list-none border-l border-gray-600 p-0 pl-36 [&:not(ul)]:pl-0 [&>ul:first-of-type]:border-0`;\n const focusVisible = tw`focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`;\n return {\n class: {\n [base]: true,\n [focusVisible]: true,\n },\n };\n },\n nodeLabel: ({ context }) => {\n const base = tw`group flex w-full flex-col items-start outline-none *:w-full *:outline-none group-hover:text-black [&>*:first-child]:group-hover:underline [&>*:last-child]:group-hover:no-underline`;\n const selected = tw`text-black [&>*:last-child:is(span)]:text-gray-900`;\n const hoverSelected = tw`[&>*:last-child]:group-hover:text-black`;\n\n return {\n class: {\n [base]: true,\n [selected]: context.selected,\n [hoverSelected]: context.selected,\n },\n };\n },\n};\n\nexport default tree;\n","import { deDE } from \"@/config/locale\";\nimport breadcrumb from \"@/primevue/breadcrumb/breadcrumb\";\nimport autocomplete from \"./autocomplete/autocomplete\";\nimport button from \"./button/button\";\nimport checkbox from \"./checkbox/checkbox\";\nimport chip from \"./chip/chip\";\nimport confirmDialog from \"./confirmDialog/confirmDialog\";\nimport dataTable from \"./dataTable/dataTable\";\nimport dialog from \"./dialog/dialog\";\nimport drawer from \"./drawer/drawer\";\nimport fileUpload from \"./fileUpload/fileUpload\";\nimport inputGroup from \"./inputGroup/inputGroup\";\nimport inputMask from \"./inputMask/inputMask\";\nimport inputText from \"./inputText/inputText\";\nimport menu from \"./menu/menu\";\nimport message from \"./message/message\";\nimport multiselect from \"./multiSelect/multiSelect\";\nimport panelmenu from \"./panelMenu/panelMenu\";\nimport password from \"./password/password\";\nimport progressSpinner from \"./progressSpinner/progressSpinner\";\nimport radioButton from \"./radioButton/radioButton\";\nimport select from \"./select/select\";\nimport splitter from \"./splitter/splitter\";\nimport { tab, tabList, tabPanel } from \"./tabs/tabs\";\nimport textarea from \"./textarea/textarea\";\nimport toast from \"./toast/toast\";\nimport tooltip from \"./tooltip/tooltip\";\nimport tree from \"./tree/tree\";\n\nexport const RisUiTheme = {\n autocomplete,\n breadcrumb,\n button,\n checkbox,\n chip,\n confirmDialog,\n dataTable,\n dialog,\n drawer,\n fileUpload,\n inputGroup,\n inputMask,\n inputText,\n menu,\n message,\n multiselect,\n panelmenu,\n password,\n progressSpinner,\n radioButton,\n select,\n splitter,\n tab,\n tabList,\n tabPanel,\n textarea,\n toast,\n tree,\n\n directives: {\n tooltip,\n },\n};\n\nexport const RisUiLocale = {\n deDE,\n};\n"],"mappings":";AAEA,IAAa,IAA8B;CACzC,YAAY;CACZ,UAAU;CACV,aAAa;CACb,UAAU;CACV,QAAQ;CACR,WAAW;CACX,UAAU;CACV,IAAI;CACJ,KAAK;CACL,IAAI;CACJ,KAAK;CACL,QAAQ;CACR,WAAW;CACX,YAAY;CACZ,WAAW;CACX,OAAO;CACP,OAAO;CACP,UAAU;CACV,UAAU;CACV,SAAS;CACT,YAAY;CACZ,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,QAAQ;CACR,WAAW;CACX,SAAS;CACT,eAAe;EAAC;EAAK;EAAM;EAAM;EAAM;EAAM;EAAM;EAAM;EAAM;EAAK;CACpE,UAAU;EAAC;EAAW;EAAU;EAAY;EAAY;EAAc;EAAW;EAAU;CAC3F,eAAe;EAAC;EAAM;EAAM;EAAM;EAAM;EAAM;EAAM;EAAK;CACzD,aAAa;EAAC;EAAM;EAAM;EAAM;EAAM;EAAM;EAAM;EAAK;CACvD,YAAY;EACV;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACD;CACD,iBAAiB;EACf;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACD;CACD,YAAY;CACZ,aAAa;CACb,YAAY;CACZ,YAAY;CACZ,YAAY;CACZ,UAAU;CACV,UAAU;CACV,WAAW;CACX,WAAW;CACX,UAAU;CACV,UAAU;CACV,YAAY;CACZ,YAAY;CACZ,YAAY;CACZ,YAAY;CACZ,IAAI;CACJ,IAAI;CACJ,OAAO;CACP,YAAY;CACZ,gBAAgB;CAChB,oBAAoB;CACpB,YAAY;CACZ,MAAM;CACN,QAAQ;CACR,QAAQ;CACR,gBAAgB;CAChB,oBAAoB;CACpB,eAAe;CACf,kBAAkB;CAClB,uBAAuB;CACvB,oBAAoB;CACpB,mBAAmB;CACnB,qBAAqB;CACrB,cAAc;CACd,MAAM;EACJ,WAAW;EACX,YAAY;EACZ,WAAW;EACX,MAAM;EACN,OAAO;EACP,WAAW;EACX,aAAa;EACb,OAAO;EACP,UAAU;EACV,MAAM;EACN,YAAY;EACZ,WAAW;EACX,SAAS;EACT,QAAQ;EACR,UAAU;EACV,YAAY;EACZ,cAAc;EACd,cAAc;EACd,iBAAiB;EACjB,iBAAiB;EACjB,WAAW;EACX,gBAAgB;EAChB,eAAe;EACf,eAAe;EACf,eAAe;EACf,kBAAkB;EAClB,yBAAyB;EACzB,sBAAsB;EACtB,WAAW;EACX,aAAa;EACb,WAAW;EACX,aAAa;EACb,gBAAgB;EAChB,gBAAgB;EAChB,gBAAgB;EAChB,kBAAkB;EAClB,SAAS;EACT,UAAU;EACV,YAAY;EACZ,UAAU;EACV,UAAU;EACV,OAAO;EACP,aAAa;EACb,WAAW;EACX,QAAQ;EACR,SAAS;EACT,aAAa;EACb,YAAY;EACZ,WAAW;EACZ;CACF,EC5HY,KAxBA,GAA+B,GAAG,MAC7C,OAAO,IAAI,EAAE,KAAK,GAAS,EAAE,GAAG,EAAO,ECEnC,IAA2C;CAC/C,MAAM,EACJ,OAAO,CAAE,8DACV;CACD,MAAM,EACJ,OAAO,CAAE,oEACV;CACD,UAAU,EACR,OAAO,CAAE,sLACV;CACD,WAAW,EACT,OAAO,CAAE,wCACV;CACF,ECbK,IAAQ,CAAE,UAEV,IAA+C;CACnD,OAAO,EAAE,UAAO,eAAY;EAC1B,IAAM,IAAO,CAAE,8JAET,IAAS,CAAE,kCAEX,IAAU,CAAE,aAEZ,IAAQ,CAAE,mBAEV,IAAU,CAAE,iIAEZ,IAAW,CAAE;AAEnB,SAAO;GACL,OAAO;KACJ,IAAO;KACP,IAAS,CAAC,EAAM;KAChB,IAAU,EAAM,WAAW,CAAC,EAAM;KAClC,IAAQ,CAAC,EAAM;KACf,IAAQ,CAAC,CAAC,EAAM;KAChB,IAAU,EAAM;KAChB,IAAW,EAAM;IACnB;GAED,gBAAgB,EAAM,UAAU,SAAS;GAC1C;;CAGH,aAAa,EACX,OAAO,EAAE,gBAGA,EACL,OAAO;GAHK,CAAE,iCAIH;GACR,IAAQ,CAAC,CAAC,EAAM;EAClB,EACF,GAEJ;CAED,eAAe,EACb,OAAO,CAAE,4CACV;CAED,WAAW,EACT,OAAO,CAAE,qBACV;CAED,OAAO,EACL,OAAO,CAAE,uCACV;CAED,UAAU,EACR,OAAO,CAAE,+BACV;CAED,QAAQ,EACN,OAAO,CAAE,gKACV;CAED,aAAa,EACX,OAAO,CAAE,uDACV;CAED,SAAS,EACP,OAAO,CAAE,4DACV;CACF,ECvEK,IAAmC;CACvC,OAAO,EAAE,UAAO,kBAAe;EAE7B,IAAM,IAAO,CAAE,2SAGT,IAAU,CAAE,gBAGZ,IAAW,EAAM,YAAY,WAE7B,IAAU,CAAE,gIAEZ,IAAY,CAAE,0LAEd,IAAS,CAAE,yMAEX,IAAO,CAAE,qNAIT,IAAc,CAAE,kOAGhB,IAAO,EAAM,QAAQ,UACvB,IAAQ,CAAE,4BACV,IAAS,CAAE,4BACX,IAAQ,CAAE;AAgBd,SAbI,EAAS,WAAW,CAAC,EAAM,SAC7B,IAAQ,CAAE,GAAG,EAAM,aACnB,IAAS,CAAE,GAAG,EAAO,aACrB,IAAQ,CAAE,GAAG,EAAM,gBAKnB,IAAQ,CAAE,GAAG,EAAM,SACnB,IAAS,CAAE,GAAG,EAAO,SACrB,IAAQ,CAAE,GAAG,EAAM,UAGd,EACL,OAAO;IACJ,IAAO;IACP,IAAU,EAAM;IAChB,IAAQ,MAAS;IACjB,IAAS,MAAS;IAClB,IAAQ,MAAS;IACjB,IAAU,CAAC,EAAM,QAAQ,MAAa;IACtC,IAAY,CAAC,EAAM,QAAQ,MAAa;IACxC,IAAS,CAAC,EAAM,QAAQ,MAAa;IACrC,IAAO,CAAC,EAAM,QAAQ,MAAa;IACnC,IAAc,EAAM,QAAQ,MAAa;GAC3C,EACF;;CAGH,QAAQ,EAAE,gBAAa,EACrB,OAAO,EACL,QAAQ,CAAC,EAAM,OAChB,EACF;CAED,OAAO,EAAE,gBAAa,EACpB,OAAO,EACL,cAAc,EAAM,WAAW,SAChC,EACF;CAED,cAAc,EAAE,eAAY;EAE1B,IAAM,IAAO,EAAM,QAAQ,UACrB,IAAS,CAAE,yBACX,IAAQ,CAAE;AAEhB,SAAO,EACL,OAAO;IACJ,CAAE,iBAAiB;IACnB,IAAS,MAAS;IAClB,IAAQ,MAAS;GACnB,EACF;;CAEJ,ECrFK,IAAuC;CAC3C,OAAO,EAAE,eAAY;EACnB,IAAM,IAAU,EAAM,SAAS;AAG/B,SAAO,EACL,OAAO,CAHI,CAAE,iGAKX,GACG,CAAE,gCAAgC,GACpC,CACF,EACF;;CAGH,OAAO,EACL,OAAO,CAAE,+qBACV;CAED,KAAK,EACH,OAAO,CAAE,+GACV;CAED,MAAM,EACJ,OAAO,CAAE,aACV;CACF,EC1BK,IAA+B;CACnC,MAAM,EACJ,OAAO,CAAE,qEACV;CAED,YAAY,EACV,OAAO,CAAE,QACV;CACF,ECTK,IAAiD,EAEtD,ECAK,IAAyC;CAC7C,MAAM,EACJ,OAAO,CAAE,YACV;CAED,gBAAgB,EACd,OAAO,CAAE,oBACV;CACD,OAAO,EACL,OAAO,CAAE,gCACV;CAED,OAAO,EACL,OAAO,CAAE,gEACV;CAED,OAAO,EACL,OAAO,CAAE,qDACV;CAED,UAAU,EAAE,kBAA8C,EACxD,OAAO,CACL,CAAE,8DACF;EACE,eAAe,EAAQ;EACvB,qBAAqB,CAAC,EAAQ;EAC/B,CACF,EACF;CAGD,QAAQ;EACN,YAAY,EACV,OAAO,CAAE,oCACV;EAED,UAAU,EACR,OAAO,CAAE,sCACV;EAED,kBAAkB;GAChB,GAAG;GACH,MAAM,EACJ,OAAO,CAAE,4BACV;GACF;EAED,eAAe;GACb,GAAG;GACH,MAAM,EACJ,OAAO,CAAE,4BACV;GACF;EACF;CAED,MAAM,EACJ,OAAO,CAAE,0FACV;CAED,aAAa,EACX,OAAO,CAAE,yIACV;CAED,kBAAkB,EAChB,OAAO,CAAE,mCACV;CACF,ECnEK,IAAmC;CACvC,aAIS,EACL,OAHW,CAAE,oHAId;CAGH,QAAQ,EACN,OAAO,CAAE,cACV;CAED,OAAO,EACL,OAAO,CAAE,0BACV;CAED,eAAe,EACb,OAAO,CAAE,aACV;CAED,eAAe,EACb,MAAM,EACJ,OAAO,CAAE,oNACV,EACF;CAED,SAAS,EAMP,OAAO,CAAE,yHACV;CAED,QAAQ,EACN,OAAO,CAAE,8CACV;CAED,MAAM,EACJ,OAAO,CAAE,eACV;CACF,ECzCK,IAAmC;CACvC,MAAM,EACJ,OAAO,CAAE,4GACV;CAED,QAAQ,EACN,OAAO,CAAE,uIACV;CAED,eAAe;EACb,MAAM,EACJ,OAAO,CAAE,2IACV;EAED,MAAM;GACJ,OAAO;GACP,QAAQ;GACT;EACF;CAED,OAAO,EACL,OAAO,CAAE,oBACV;CAED,SAAS,EACP,OAAO,CAAE,cACV;CAED,QAAQ,EACN,OAAO,CAAE,2FACV;CAED,MAAM,EACJ,OAAO,CAAE,wGACV;CAED,YAAY;EACV,gBAAgB,CAAE;EAClB,kBAAkB,CAAE;EACpB,kBAAkB,CAAE;EACpB,cAAc,CAAE;EACjB;CACF,EC7CK,IAA2C;CAC/C,cAAc,EAEZ,OAAO,CAAE,qCACV;CAED,OAAO,EACL,OAAO,CAAE,UACV;CACF,ECTK,IAA2C,EAC/C,MAAM,EACJ,OAAO,CAAE,QACV,EACF,ECHY,IAAO,CAAE,gqBAGT,IAAQ,CAAE,qCACV,IAAQ,CAAE,qCAEjB,IAAyC,EAC7C,OAAO,EAAE,eAAY;CAInB,IAAM,IAAW,CAAE,oJAGb,IAAQ,CAAE;AAEhB,QAAO;EACL,OAAO;IACJ,IAAO;IACP,IAAQ,CAAC,CAAC,EAAM;IAChB,IAAW;IACX,IAAQ,CAAC,EAAM,QAAQ,EAAM,SAAS;IACtC,IAAQ,EAAM,SAAS;GACzB;EACD,aAAa,EAAM,QAAQ;EAC5B;GAEJ,EC5BK,IAAyC,EAC7C,aAAa,EACX,OAAO,EAAE,gBACA,EACL,OAAO;EACJ,IAAO;EACP,IAAQ;CACT,UAAU,CAAC,CAAC,EAAM;CACnB,EACF,GAEJ,EACF,ECZK,IAA+B;CACnC,MAAM,EACJ,OAAO,CAAE,4DACV;CAED,MAAM,EACJ,OAAO,CAAE,8BACV;CAED,OAAO,EAAE,iBAAc;EACrB,IAAM,IAAO,CAAE,6RAET,IAAU,CAAE;AAElB,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAU,EAAQ;GACpB,EACF;;CAEH,aAAa,EACX,OAAO,CAAE,iCACV;CACD,UAAU,EACR,OAAO,CAAE,2BACV;CACF,EC3BK,IAAqC;CACzC,OAAO,EAAE,UAAO,kBAAe;EAE7B,IAAM,IAAO,CAAE,4CAGT,IAAW,EAAM,YAAY,QAE7B,IAAU,CAAE,mCAEZ,IAAO,CAAE,iCAET,IAAO,CAAE,qCAET,IAAQ,CAAE,+BAGV,IAAiB,CAAC,CAAC,EAAS,OAAO,MASnC,IAPoC;GACxC,SAAS;GACT,MAAM;GACN,MAAM;GACN,OAAO;GACR,CAE0B,IAErB,IAAS,CAAE;AAEjB,SAAO;GACL,OAAO;KACJ,IAAO;KACP,IAAU,MAAa;KACvB,IAAO,MAAa;KACpB,IAAO,MAAa;KACpB,IAAQ,MAAa;KACrB,IAAS,CAAC;IACZ;GACD,OAAO,EACL,iBAAkB,IAA4B,KAAA,IAAX,GACpC;GACF;;CAGH,SAAS,EACP,OAAO,CAAE,0BACV;CAED,MAAM,EACJ,OAAO,CAAE,UACV;CAED,cAAc,EAAE,eAAY;EAE1B,IAAM,IAAO,CAAE,+IAGT,IAAW,EAAM,YAAY,QAE7B,IAAU,CAAE,yDAEZ,IAAO,CAAE,sDAET,IAAO,CAAE,uDAET,IAAQ,CAAE;AAEhB,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAU,MAAa;IACvB,IAAO,MAAa;IACpB,IAAO,MAAa;IACpB,IAAQ,MAAa;GACvB,EACF;;CAEJ,EC9EK,IAA6C;CACjD,OAAO,EAAE,UAAO,eAAY;EAE1B,IAAM,IAAO,CAAE,uRAGT,IAAS,CAAE,kCAEX,IAAU,CAAE,sGAEZ,IAAQ,CAAE,kEAEV,IAAW,CAAE,4EAEb,IAAU,CAAE,wIAGZ,IAAQ,CAAE;AAEhB,SAAO;GACL,OAAO;KACJ,IAAO;KACP,IAAS,CAAC,EAAM;KAChB,IAAU,EAAM,WAAW,CAAC,EAAM;KAClC,IAAQ,CAAC,EAAM;KACf,IAAQ,CAAC,CAAC,EAAM;KAChB,IAAW,EAAM;KACjB,IAAU,EAAM;IAClB;GAED,gBAAgB,EAAM,UAAU,SAAS;GAC1C;;CAGH,UAAU,EACR,OAAO,CAAE,SACV;CAED,cAAc,EACZ,OAAO,CAAE,2BACV;CAED,eAAe,EACb,OAAO,CAAE,2BACV;CAED,gBAAgB,EACd,OAAO,CAAE,iBACV;CAED,OAAO,EACL,OAAO,CAAE,wCACV;CAED,SAAS,EACP,OAAO,CAAE,YACV;CAED,aAAa,EACX,OAAO,CAAE,SACV;CAED,QAAQ,EACN,OAAO,CAAE,UACV;CAED,SAAS,EAAE,iBAAc;EAEvB,IAAM,IAAO,CAAE,mRAGT,IAAU,CAAE;AAElB,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAU,EAAQ;GACpB,EACF;;CAEJ,EChFK,IAAU,CAAE,kBAEZ,IAAW,CAAE,iFAEb,IAAc,CAAE,gEAEhB,IAAU,CAAE,8DAEZ,IAAyC;CAC7C,MAAM,EACJ,OAAO,CAAE,iBACV;CAED,SAAS,EAAE,kBAGF,EACL,OAAO;GAHI,CAAE,gFAIH;GACP,IAAU;GACV,IAAU;GACV,IAAW,EAAQ;GACnB,IAAc,CAAC,EAAQ;EACzB,EACF;CAGH,SAAS,EACP,OAAO,CAAE,cACV;CAED,UAAU,EACR,OAAO,CAAE,8BACV;CAED,OAAO,EACL,OAAO,CAAE,8BACV;CAED,cAAc,EAAE,iBAAc;EAC5B,IAAM,IAAO,CAAE,+EAIT,IAAc,CAAE,GAAG,EAAQ;AAEjC,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAc,EAAQ;IACtB,IAAU;IACV,IAAW,EAAQ;IACnB,IAAc,CAAC,EAAQ;GACzB,EACF;;CAEJ,ECzDK,IAAuC,EAE5C,ECDK,IAAqD;CACzD,MAAM,EACJ,OAAO,CAAE,+CACV;CAED,QAAQ,EACN,OAAO,CAAE,6GACV;CACF,ECRK,IAA6C;CACjD,OAAO,EAAE,eAAY;EACnB,IAAM,IAAU,EAAM,SAAS;AAE/B,SAAO,EACL,OAAO,CACL,CAAE,qEACF,IAAU,CAAE,cAAc,CAAE,YAC7B,EACF;;CAGH,OAAO,EACL,OAAO,CAAE,kfACV;CAED,KAAK,EACH,OAAO,CAAE,kLACV;CAED,OAAO,EAAE,eAAY;EACnB,IAAM,IAAU,EAAM,SAAS;AAE/B,SAAO,EACL,OAAO,CAAC,CAAE,2BAA2B,IAAU,CAAE,cAAc,CAAE,YAAY,EAC9E;;CAEJ,EC3BK,IAAmC;CACvC,OAAO,EAAE,UAAO,eAAY;EAE1B,IAAM,IAAO,CAAE,0RAGT,IAAS,CAAE,kCAEX,IAAU,CAAE,gDAEZ,IAAQ,CAAE,kEAEV,IAAW,CAAE,4EAEb,IAAU,CAAE,wIAGZ,IAAQ,CAAE;AAEhB,SAAO;GACL,OAAO;KACJ,IAAO;KACP,IAAS,CAAC,EAAM;KAChB,KAAW,EAAM,WAAW,EAAM,mBAAmB,CAAC,EAAM;KAC5D,IAAQ,CAAC,EAAM;KACf,IAAQ,CAAC,CAAC,EAAM;KAChB,IAAW,EAAM;KACjB,IAAU,EAAM;IAClB;GAED,gBAAgB,EAAM,UAAU,SAAS;GAC1C;;CAGH,WAAW,EAAE,UAAO,eAAY;EAC9B,IAAM,IAAO,CAAE,aAET,IAAS,CAAE,yCAEX,IAAU,CAAE,0BAEZ,IAAW,CAAE;AAEnB,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAS,EAAE,EAAM,WAAW,EAAM,kBAAkB,EAAM;IAC1D,KAAW,EAAM,WAAW,EAAM,mBAAmB,CAAC,EAAM;IAC5D,IAAW,EAAM;GACnB,EACF;;CAGH,eAAe,EACb,OAAO,CAAE,2BACV;CAED,OAAO,EACL,OAAO,CAAE,kCACV;CAED,SAAS,EACP,OAAO,CAAE,YACV;CAED,SAAS,EAAE,YAAS,eAAY;EAE9B,IAAM,IAAO,CAAE,0OAGT,IAAU,CAAE,eAGZ,IAAgB,CAAE;AAExB,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAU,EAAQ;IAClB,IAAgB,EAAM;GACxB,EACF;;CAGH,iBAAiB,EACf,OAAO,CAAE,yBACV;CAED,iBAAiB,EACf,OAAO,CAAE,WACV;CACF,EC3FK,IAAuC;CAC3C,OAAO,EAAE,gBAAa,EACpB,OAAO;GACJ,CAAE,0DAA0D;GAC5D,CAAE,aAAa,EAAM,WAAW;EAClC,EACF;CAED,SAAS,EAAE,gBAAa,EACtB,OAAO;GACJ,CAAE,4EAA4E;GAC9E,CAAE,2CAA2C,EAAM,WAAW;GAC9D,CAAE,2CAA2C,EAAM,WAAW;EAChE,EACF;CAED,eAAe,EAAE,gBAAa,EAC5B,OAAO;GACJ,CAAE,0FAA0F;GAC5F,CAAE,4CAA4C,EAAM,WAAW;GAC/D,CAAE,4CAA4C,EAAM,WAAW;EACjE,EACF;CACF,ECrBY,IAA6B,EACxC,OAAO,EAAE,iBAAc;CACrB,IAAM,IAAO,CAAE,6IACT,IAAS,CAAE,8JACX,IAAW,CAAE;AACnB,QAAO,EACL,OAAO;GACJ,IAAO;GACP,IAAS,EAAQ;GACjB,IAAW,CAAC,EAAQ;EACtB,EACF;GAEJ,EACY,IAAuC,EAClD,MAAM,EACJ,OAAO,CAAE,sGACV,EACF,EACY,IAAqC,EAChD,SAAS,EACP,OAAO,CAAE,sMACV,EACF,ECzBK,IAAuC,EAC3C,OAAO,EAAE,eAAY;CAEnB,IAAM,IAAO,CAAE,gvBAGT,IAAQ,CAAE;AAEhB,QAAO,EACL,OAAO;GACJ,IAAO;GACP,IAAQ,CAAC,CAAC,EAAM;EAClB,EACF;GAEJ,ECfK,IAAiC;CACrC,MAAM,EACJ,OAAO,CAAE,YACV;CACD,UAAU,EAAE,eAAY;EAEtB,IAAM,IAAO,CAAE,gEAGT,IAAW,EAAM,SAAS,UAE1B,IAAU,CAAE,mCACZ,IAAQ,CAAE,+BACV,IAAO,CAAE,qCACT,IAAO,CAAE;AAEf,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAU,MAAa;IACvB,IAAQ,MAAa;IACrB,IAAO,MAAa;IACpB,IAAO,MAAa;GACtB,EACF;;CAGH,gBAAgB,EACd,OAAO,CAAE,2DACV;CAED,cAAc,EAAE,eAAY;EAE1B,IAAM,IAAO,CAAE,qCAGT,IAAW,EAAM,SAAS,YAAY,QAEtC,IAAc,CAAE,kBAChB,IAAY,CAAE,gBACd,IAAW,CAAE,cACb,IAAW,CAAE;AAEnB,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAc,MAAa;IAC3B,IAAY,MAAa;IACzB,IAAW,MAAa;IACxB,IAAW,MAAa;GAC1B,EACF;;CAGH,aAAa,EACX,OAAO,CAAE,mBACV;CAED,SAAS,EACP,OAAO,CAAE,mBACV;CAED,QAAQ,EACN,OAAO,CAAE,sBACV;CAED,cAAc,EAAE,eAAY;EAE1B,IAAM,IAAO,CAAE,iEAGT,IAAW,EAAM,SAAS,YAAY,QAEtC,IAAe,CAAE,sBACjB,IAAa,CAAE,oBACf,IAAY,CAAE,uBACd,IAAY,CAAE;AAEpB,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAe,MAAa;IAC5B,IAAa,MAAa;IAC1B,IAAY,MAAa;IACzB,IAAY,MAAa;GAC3B,EACF;;CAGH,WAAW,EACT,OAAO,CAAE,cACV;CACF,EC5FK,IAA8C;CAClD,QAAQ,EAAE,iBAAc;EAGtB,IAAM,IAAO,CAAE,8CACT,IAAM,CAAE,oFACR,IAAQ,CAAE,oFACV,IAAS,CAAE,oFACX,IAAO,CAAE,oFAET,IAAqB,CAAC,EAAQ,OAAO,CAAC,EAAQ,SAAS,CAAC,EAAQ,UAAU,CAAC,EAAQ;AAEzF,SAAO,EACL,OAAO;IACJ,IAAO;IACP,IAAM,EAAQ;IACd,IAAQ,EAAQ,SAAS;IACzB,IAAS,EAAQ;IACjB,IAAO,EAAQ;GACjB,EACF;;CAEH,MAAM,EACJ,OAAO,CAAE,0GACV;CACD,MAAM,EACJ,OAAO,CAAE,YACV;CACF,EEFY,IAAa;CACxB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA,aAAA;CACA,WAAA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA,MDrDmC;EACnC,MAAM,EACJ,OAAO,CAAE,yIACV;EACD,cAAc,EAAE,iBAAc;GAC5B,IAAM,IAAO,CAAE,mGACT,IAAU,CAAE,8BACZ,IAAe,CAAE,yFACjB,IAAW,CAAE,4CACb,IAAQ,CAAE,qBACV,IAAgB,CAAE;AAExB,UAAO,EACL,OAAO;KACJ,IAAO;KACP,IAAU;KACV,IAAW,EAAQ;KACnB,IAAQ,CAAC,EAAQ;KACjB,IAAgB,EAAQ;KACxB,IAAe;IACjB,EACF;;EAEH,mBAAmB,EAAE,iBAAc;GACjC,IAAM,IAAO,CAAE,0GACT,IAAa,EAAQ,OAAO,CAAE,WAAW,CAAE;AAEjD,UAAO,EACL,OAAO;KACJ,IAAO;KACP,IAAa,EAAQ;IACvB,EACF;;EAEH,oBAAoB;GAClB,IAAM,IAAO,CAAE,mGACT,IAAe,CAAE;AACvB,UAAO,EACL,OAAO;KACJ,IAAO;KACP,IAAe;IACjB,EACF;;EAEH,YAAY,EAAE,iBAAc;GAC1B,IAAM,IAAO,CAAE,wLACT,IAAW,CAAE,sDACb,IAAgB,CAAE;AAExB,UAAO,EACL,OAAO;KACJ,IAAO;KACP,IAAW,EAAQ;KACnB,IAAgB,EAAQ;IAC1B,EACF;;EAEJ;CCFC,YAAY,EACV,YACD;CACF,EAEY,IAAc,EACzB,SACD"}
|
package/dist/style.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
div[data-pc-section=nodecontent]:has(+ul[data-pc-section=nodechildren] li div[data-pc-section=nodecontent][data-p-selected=true]){border-left-color:var(--color-gray-600,oklch(44.6% .03 256.802));background-color:var(--color-gray-100,oklch(96.7% .003 264.542))}div[data-pc-section=nodecontent]:has(+ul[data-pc-section=nodechildren] li div[data-pc-section=nodecontent][data-p-selected=true]):hover{background-color:var(--color-blue-200,oklch(88.2% .059 254.128))}@theme static{--color-*: initial; --spacing-*: initial; --font-*: initial; --color-black: #0b0c0c; --color-white: #fff; --color-inherit: inherit; --color-current: currentColor; --color-transparent: transparent; --color-blue-100: #f2f6f8; --color-blue-200: #ecf1f4; --color-blue-300: #dce8ef; --color-blue-400: #ccdbe4; --color-blue-500: #b3c9d6; --color-blue-600: #6693ad; --color-blue-700: #336f91; --color-blue-800: #004b76; --color-blue-900: #003350; --color-gray-100: #f6f7f8; --color-gray-200: #eff2f4; --color-gray-300: #edeef0; --color-gray-400: #dcdee1; --color-gray-500: #cacdd2; --color-gray-600: #b8bdc3; --color-gray-700: #a6acb5; --color-gray-800: #717a88; --color-gray-900: #4e596a; --color-gray-1000: #0b0c0c; --color-green-100: #e8f7f0; --color-green-200: #ccebdd; --color-green-300: #b0d8c6; --color-green-400: #97ccb4; --color-green-500: #65b491; --color-green-600: #349d6e; --color-green-700: #01854a; --color-green-800: #006538; --color-green-900: #003e22; --color-orange-100: #fdf1d8; --color-orange-200: #fce4b1; --color-orange-300: #fad68b; --color-orange-400: #f9c964; --color-orange-500: #f7bb3d; --color-orange-600: #c69631; --color-orange-700: #947025; --color-orange-800: #634b18; --color-orange-900: #31250c; --color-red-100: #fcf2f5; --color-red-200: #f9e5ec; --color-red-300: #f2ccd8; --color-red-400: #ecb3c5; --color-red-500: #e699b1; --color-red-600: #d9668b; --color-red-700: #c61a50; --color-red-800: #b0243f; --color-red-900: #8e001b; --color-yellow-100: #fefcef; --color-yellow-200: #fff9d2; --color-yellow-300: #f9ec9e; --color-yellow-400: #f7e67d; --color-yellow-500: #f5e05d; --color-yellow-600: #f2dc5d; --color-yellow-700: #e5ce5c; --color-yellow-800: #dac23c; --color-yellow-900: #c3a91e; --spacing-0: 0rem; --spacing-1: .0625rem; --spacing-2: .125rem; --spacing-4: .25rem; --spacing-6: .375rem; --spacing-8: .5rem; --spacing-10: .625rem; --spacing-12: .75rem; --spacing-14: .875rem; --spacing-16: 1rem; --spacing-20: 1.25rem; --spacing-24: 1.5rem; --spacing-28: 1.75rem; --spacing-32: 2rem; --spacing-36: 2.25rem; --spacing-40: 2.5rem; --spacing-44: 2.75rem; --spacing-48: 3rem; --spacing-56: 3.5rem; --spacing-64: 4rem; --spacing-80: 5rem; --spacing-96: 6rem; --spacing-112: 7rem; --spacing-128: 8rem; --spacing-144: 9rem; --spacing-160: 10rem; --spacing-176: 11rem; --spacing-192: 12rem; --spacing-208: 13rem; --spacing-224: 14rem; --spacing-240: 15rem; --spacing-288: 18rem; --spacing-320: 20rem; --spacing-384: 24rem; --font-sans: BundesSansWeb,Calibri,Verdana,Arial,Helvetica,sans-serif; --font-serif: BundesSerifWeb,Georgia,"Times New Roman",serif; --font-condensed: BundesSansCondWeb,Arial Narrow,Arial,sans-serif;}@layer base{:root{--ris-icon-warn: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 5.99L19.53 19H4.47zM12 2L1 21h22z'/%3E%3Cpath fill='%23000' d='M13 16h-2v2h2zm0-6h-2v5h2z'/%3E%3C/svg%3E");--ris-icon-error: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238E001B' d='M12 5.99L19.53 19H4.47zM12 2L1 21h22z'/%3E%3Cpath fill='%238E001B' d='M13 16h-2v2h2zm0-6h-2v5h2z'/%3E%3C/svg%3E");--ris-icon-info: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23004B76' d='M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8'/%3E%3C/svg%3E");--ris-icon-success: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23005E34' d='M9 16.17L4.83 12l-1.42 1.41L9 19L21 7l-1.41-1.41z'/%3E%3C/svg%3E");--p-tabs-tab-active-background: white;--p-tabs-tab-border-color: var(--color-gray-600);--p-tabs-tablist-border-color: var(--color-gray-600)}body{color:var(--color-black);font-family:var(--font-sans)}::placeholder{font-family:var(--font-sans);font-style:normal}}@utility ris-title-regular{font-size: 4rem; font-weight: normal; line-height: 1.1875;}@utility ris-heading1-regular{font-size: 3rem; font-weight: normal; line-height: 1.2;}@utility ris-heading1-bold{font-size: 3rem; font-weight: bold; line-height: 1.2;}@utility ris-heading2-regular{font-size: 2rem; font-weight: normal; line-height: 1.1875;}@utility ris-heading2-bold{font-size: 2rem; font-weight: bold; line-height: 1.1875;}@utility ris-heading3-regular{font-size: 1.625rem; font-weight: normal; line-height: 1.23;}@utility ris-heading3-bold{font-size: 1.625rem; font-weight: bold; line-height: 1.23;}@utility ris-subhead-regular{font-size: 1.25rem; font-weight: normal; line-height: 1.5;}@utility ris-subhead-bold{font-size: 1.25rem; font-weight: bold; line-height: 1.5;}@utility ris-body1-regular{font-size: 1.125rem; font-weight: normal; line-height: 1.5;}@utility ris-body1-bold{font-size: 1.125rem; font-weight: bold; line-height: 1.5;}@utility ris-body2-regular{font-size: 1rem; font-weight: normal; line-height: 1.5;}@utility ris-body2-bold{font-size: 1rem; font-weight: bold; line-height: 1.5;}@utility ris-body3-regular{font-size: .875rem; font-weight: normal; line-height: 1.5;}@utility ris-body3-bold{font-size: .875rem; font-weight: bold; line-height: 1.5;}@utility ris-label1-regular{font-size: 1.125rem; font-weight: normal; line-height: 1.25;}@utility ris-label1-bold{font-size: 1.125rem; font-weight: bold; line-height: 1.25;}@utility ris-label2-regular{font-size: 1rem; font-weight: normal; line-height: 1.25;}@utility ris-label2-bold{font-size: 1rem; font-weight: bold; line-height: 1.25;}@utility ris-label3-regular{font-size: .875rem; font-weight: normal; line-height: 1.25;}@utility ris-label3-bold{font-size: .875rem; font-weight: bold; line-height: 1.25;}@utility ris-link1-regular{color: var(--color-blue-800); font-size: 1.125rem; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: .1875rem; &:hover {text-decoration-thickness: .1875rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link1-bold{color: var(--color-blue-800); font-size: 1.125rem; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: .1875rem; &:hover {text-decoration-thickness: .1875rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link2-regular{color: var(--color-blue-800); font-size: 1rem; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: .125rem; &:hover {text-decoration-thickness: .125rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link2-bold{color: var(--color-blue-800); font-size: 1rem; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: .125rem; &:hover {text-decoration-thickness: .125rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link3-regular{color: var(--color-blue-800); font-size: .875rem; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: .125rem; &:hover {text-decoration-thickness: .125rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link3-bold{color: var(--color-blue-800); font-size: .875rem; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: .125rem; &:hover {text-decoration-thickness: .125rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}
|
|
1
|
+
div[data-pc-section=nodecontent]:has(+ul[data-pc-section=nodechildren] li div[data-pc-section=nodecontent][data-p-selected=true]){border-left-color:var(--color-gray-600,oklch(44.6% .03 256.802));background-color:var(--color-gray-100,oklch(96.7% .003 264.542))}div[data-pc-section=nodecontent]:has(+ul[data-pc-section=nodechildren] li div[data-pc-section=nodecontent][data-p-selected=true]):hover{background-color:var(--color-blue-200,oklch(88.2% .059 254.128))}@theme static{--color-*: initial; --spacing-*: initial; --font-*: initial; --color-black: #0b0c0c; --color-white: #fff; --color-inherit: inherit; --color-current: currentColor; --color-transparent: transparent; --color-blue-100: #f2f6f8; --color-blue-200: #ecf1f4; --color-blue-300: #dce8ef; --color-blue-400: #ccdbe4; --color-blue-500: #b3c9d6; --color-blue-600: #6693ad; --color-blue-700: #336f91; --color-blue-800: #004b76; --color-blue-900: #003350; --color-gray-100: #f6f7f8; --color-gray-200: #eff2f4; --color-gray-300: #edeef0; --color-gray-400: #dcdee1; --color-gray-500: #cacdd2; --color-gray-600: #b8bdc3; --color-gray-700: #a6acb5; --color-gray-800: #717a88; --color-gray-900: #4e596a; --color-gray-1000: #0b0c0c; --color-green-100: #e8f7f0; --color-green-200: #ccebdd; --color-green-300: #b0d8c6; --color-green-400: #97ccb4; --color-green-500: #65b491; --color-green-600: #349d6e; --color-green-700: #01854a; --color-green-800: #006538; --color-green-900: #003e22; --color-orange-100: #fdf1d8; --color-orange-200: #fce4b1; --color-orange-300: #fad68b; --color-orange-400: #f9c964; --color-orange-500: #f7bb3d; --color-orange-600: #c69631; --color-orange-700: #947025; --color-orange-800: #634b18; --color-orange-900: #31250c; --color-red-100: #fcf2f5; --color-red-200: #f9e5ec; --color-red-300: #f2ccd8; --color-red-400: #ecb3c5; --color-red-500: #e699b1; --color-red-600: #d9668b; --color-red-700: #c61a50; --color-red-800: #b0243f; --color-red-900: #8e001b; --color-yellow-100: #fefcef; --color-yellow-200: #fff9d2; --color-yellow-300: #f9ec9e; --color-yellow-400: #f7e67d; --color-yellow-500: #f5e05d; --color-yellow-600: #f2dc5d; --color-yellow-700: #e5ce5c; --color-yellow-800: #dac23c; --color-yellow-900: #c3a91e; --spacing-0: 0rem; --spacing-1: .0625rem; --spacing-2: .125rem; --spacing-4: .25rem; --spacing-6: .375rem; --spacing-8: .5rem; --spacing-10: .625rem; --spacing-12: .75rem; --spacing-14: .875rem; --spacing-16: 1rem; --spacing-20: 1.25rem; --spacing-24: 1.5rem; --spacing-28: 1.75rem; --spacing-32: 2rem; --spacing-36: 2.25rem; --spacing-40: 2.5rem; --spacing-44: 2.75rem; --spacing-48: 3rem; --spacing-56: 3.5rem; --spacing-64: 4rem; --spacing-80: 5rem; --spacing-96: 6rem; --spacing-112: 7rem; --spacing-128: 8rem; --spacing-144: 9rem; --spacing-160: 10rem; --spacing-176: 11rem; --spacing-192: 12rem; --spacing-208: 13rem; --spacing-224: 14rem; --spacing-240: 15rem; --spacing-288: 18rem; --spacing-320: 20rem; --spacing-384: 24rem; --font-sans: BundesSansWeb,Calibri,Verdana,Arial,Helvetica,sans-serif; --font-serif: BundesSerifWeb,Georgia,"Times New Roman",serif; --font-condensed: BundesSansCondWeb,Arial Narrow,Arial,sans-serif;}@layer base{:root{--ris-icon-warn: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 5.99L19.53 19H4.47zM12 2L1 21h22z'/%3E%3Cpath fill='%23000' d='M13 16h-2v2h2zm0-6h-2v5h2z'/%3E%3C/svg%3E");--ris-icon-error: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238E001B' d='M12 5.99L19.53 19H4.47zM12 2L1 21h22z'/%3E%3Cpath fill='%238E001B' d='M13 16h-2v2h2zm0-6h-2v5h2z'/%3E%3C/svg%3E");--ris-icon-info: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23004B76' d='M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10s10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8s8 3.59 8 8s-3.59 8-8 8'/%3E%3C/svg%3E");--ris-icon-success: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23005E34' d='M9 16.17L4.83 12l-1.42 1.41L9 19L21 7l-1.41-1.41z'/%3E%3C/svg%3E");--p-tabs-tab-active-background: white;--p-tabs-tab-border-color: var(--color-gray-600);--p-tabs-tablist-border-color: var(--color-gray-600)}body{color:var(--color-black);font-family:var(--font-sans)}::placeholder{font-family:var(--font-sans);font-style:normal}}@utility ris-title-regular{font-size: 4rem; font-weight: normal; line-height: 1.1875;}@utility ris-heading1-regular{font-size: 3rem; font-weight: normal; line-height: 1.2;}@utility ris-heading1-bold{font-size: 3rem; font-weight: bold; line-height: 1.2;}@utility ris-heading2-regular{font-size: 2rem; font-weight: normal; line-height: 1.1875;}@utility ris-heading2-bold{font-size: 2rem; font-weight: bold; line-height: 1.1875;}@utility ris-heading3-regular{font-size: 1.625rem; font-weight: normal; line-height: 1.23;}@utility ris-heading3-bold{font-size: 1.625rem; font-weight: bold; line-height: 1.23;}@utility ris-subhead-regular{font-size: 1.25rem; font-weight: normal; line-height: 1.5;}@utility ris-subhead-bold{font-size: 1.25rem; font-weight: bold; line-height: 1.5;}@utility ris-body1-regular{font-size: 1.125rem; font-weight: normal; line-height: 1.5;}@utility ris-body1-bold{font-size: 1.125rem; font-weight: bold; line-height: 1.5;}@utility ris-body2-regular{font-size: 1rem; font-weight: normal; line-height: 1.5;}@utility ris-body2-bold{font-size: 1rem; font-weight: bold; line-height: 1.5;}@utility ris-body3-regular{font-size: .875rem; font-weight: normal; line-height: 1.5;}@utility ris-body3-bold{font-size: .875rem; font-weight: bold; line-height: 1.5;}@utility ris-label1-regular{font-size: 1.125rem; font-weight: normal; line-height: 1.25;}@utility ris-label1-bold{font-size: 1.125rem; font-weight: bold; line-height: 1.25;}@utility ris-label2-regular{font-size: 1rem; font-weight: normal; line-height: 1.25;}@utility ris-label2-bold{font-size: 1rem; font-weight: bold; line-height: 1.25;}@utility ris-label3-regular{font-size: .875rem; font-weight: normal; line-height: 1.25;}@utility ris-label3-bold{font-size: .875rem; font-weight: bold; line-height: 1.25;}@utility ris-link1-regular{color: var(--color-blue-800); font-size: 1.125rem; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: .1875rem; &:hover {text-decoration-thickness: .1875rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link1-bold{color: var(--color-blue-800); font-size: 1.125rem; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: .1875rem; &:hover {text-decoration-thickness: .1875rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link2-regular{color: var(--color-blue-800); font-size: 1rem; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: .125rem; &:hover {text-decoration-thickness: .125rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link2-bold{color: var(--color-blue-800); font-size: 1rem; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: .125rem; &:hover {text-decoration-thickness: .125rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link3-regular{color: var(--color-blue-800); font-size: .875rem; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: .125rem; &:hover {text-decoration-thickness: .125rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@utility ris-link3-bold{color: var(--color-blue-800); font-size: .875rem; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: .125rem; &:hover {text-decoration-thickness: .125rem;} &:focus-visible {outline: var(--color-blue-800) solid 4px; outline-offset: 4px;}}@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid}}}@layer components{.drawer-root{container-type:scroll-state}.drawer-root .drawer-header,.drawer-root .drawer-footer{border-color:#0000}@container scroll-state(scrollable:top){.drawer-root .drawer-header{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--color-gray-400,#dcdee1);box-shadow:0 0 .5rem rgb(from var(--color-gray-1000) r g b / .15)}}@container scroll-state(scrollable:bottom){.drawer-root .drawer-footer{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--color-gray-400,#dcdee1);box-shadow:0 0 .5rem rgb(from var(--color-gray-1000) r g b / .15)}}@supports not (container-type:scroll-state){.drawer-root .drawer-header{border-bottom-style:var(--tw-border-style);border-bottom-width:1px;border-color:var(--color-gray-400,#dcdee1)}.drawer-root .drawer-footer{border-top-style:var(--tw-border-style);border-top-width:1px;border-color:var(--color-gray-400,#dcdee1)}}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}
|
|
2
2
|
/*$vite$:1*/
|
package/dist/tailwind/index.d.ts
CHANGED