@digitalservicebund/ris-ui 3.17.1 → 3.18.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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../src/primevue/button/button.ts","../../src/primevue/checkbox/checkbox.ts","../../src/primevue/chip/chip.ts","../../src/primevue/confirmDialog/confirmDialog.ts","../../src/primevue/dialog/dialog.ts","../../src/primevue/fileUpload/fileUpload.ts","../../src/primevue/inputGroup/inputGroup.ts","../../src/primevue/inputText/inputText.ts","../../src/primevue/menu/menu.ts","../../src/primevue/message/message.ts","../../src/primevue/password/password.ts","../../src/primevue/progressSpinner/progressSpinner.ts","../../src/primevue/radioButton/radioButton.ts","../../src/primevue/autocomplete/autocomplete.ts","../../src/primevue/textarea/textarea.ts","../../src/primevue/toast/toast.ts","../../src/primevue/select/select.ts","../../src/primevue/multiSelect/multiSelect.ts","../../src/primevue/inputMask/inputMask.ts","../../src/primevue/breadcrumb/breadcrumb.ts","../../src/primevue/panelMenu/panelMenu.ts","../../src/primevue/tree/tree.ts","../../src/primevue/splitter/splitter.ts","../../src/primevue/dataTable/dataTable.ts","../../src/primevue/tabs/tabs.ts","../../src/primevue/tooltip/tooltip.ts","../../src/config/locale.ts","../../src/primevue/index.ts"],"sourcesContent":["import { 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:outline-4 focus:outline-offset-4 focus:outline-blue-800 focus:not-focus-visible:outline-none focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 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-gray-200 focus:bg-gray-200 active:border-white active:bg-white 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-gray-200 focus:bg-gray-200 focus:outline-red-800 active:border-white active:bg-white 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: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:border-gray-500 active:border-white active:bg-white 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 { tw } from \"@/lib/tags\";\nimport { CheckboxPassThroughOptions } from \"primevue/checkbox\";\n\nconst checkbox: CheckboxPassThroughOptions = {\n root: ({ props }) => {\n // Base\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]: true,\n [tw`h-32 min-h-32 w-32 min-w-32`]: props.size === \"large\",\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 hover:outline hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800 focus:outline focus:outline-4 focus:-outline-offset-4 focus:outline-blue-800 active:outline-hidden disabled:cursor-not-allowed disabled:border-gray-600 disabled:outline-hidden aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 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-disabled:text-gray-600 peer-aria-[invalid]:text-red-800`,\n },\n\n icon: {\n class: tw`h-12 w-12`,\n },\n};\n\nexport default checkbox;\n","import { tw } from \"@/lib/tags\";\nimport { ChipPassThroughOptions } from \"primevue\";\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 { ConfirmDialogPassThroughOptions } from \"primevue/confirmdialog\";\n\nconst confirmDialog: ConfirmDialogPassThroughOptions = {\n // All styling implemented in primevue/dialog\n};\n\nexport default confirmDialog;\n","import { tw } from \"@/lib/tags\";\nimport { DialogPassThroughOptions } from \"primevue/dialog\";\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`flex h-24 w-24 items-center justify-center p-4 text-blue-800 outline-hidden hover:outline hover:outline-2 hover:outline-gray-500 focus:outline focus:outline-2 focus:outline-gray-500 active:outline-hidden`,\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 { tw } from \"@/lib/tags.ts\";\nimport { FileUploadPassThroughOptions } from \"primevue/fileupload\";\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 { tw } from \"@/lib/tags\";\nimport { InputGroupPassThroughOptions } from \"primevue/inputgroup\";\n\nconst inputGroup: InputGroupPassThroughOptions = {\n root: {\n class: tw`flex`,\n },\n};\n\nexport default inputGroup;\n","import { tw } from \"@/lib/tags\";\nimport { InputTextPassThroughOptions } from \"primevue/inputtext\";\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:outline-4 focus:-outline-offset-4 focus: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-[28px] [&[type=password]:not(:placeholder-shown)]:tracking-[4px]`;\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 { tw } from \"@/lib/tags\";\nimport { MenuPassThroughOptions } from \"primevue/menu\";\n\nconst menu: MenuPassThroughOptions = {\n root: {\n class: tw`ris-body2-regular bg-white shadow`,\n },\n list: {\n class: tw`focus-visible:outline-none`,\n },\n item: ({ context }) => {\n const base = tw`relative h-48 pr-12 pl-16 after:absolute after:right-16 after:-bottom-1 after:left-16 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:bg-gray-100`;\n const focused = tw`bg-gray-200 hover:bg-gray-200`;\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 { tw } from \"@/lib/tags\";\nimport { MessagePassThroughOptions } from \"primevue/message\";\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-[length:20px] bg-[16px_18px] bg-no-repeat pl-44`;\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 rounded-sm p-2 leading-none`;\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 { PasswordPassThroughOptions } from \"primevue/password\";\n\nconst password: PasswordPassThroughOptions = {\n // All styling moved to inputText.ts\n};\n\nexport default password;\n","import { 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 { tw } from \"@/lib/tags\";\nimport { RadioButtonPassThroughOptions } from \"primevue/radiobutton\";\n\nconst radioButton: RadioButtonPassThroughOptions = {\n root: {\n class: tw`[&+label]:ris-label1-regular relative inline-block h-32 w-32 [&+label]:ml-8`,\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:outline focus:outline-4 focus:-outline-offset-4 focus: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: {\n class: tw`h-16 w-16 rounded-full bg-current`,\n },\n};\n\nexport default radioButton;\n","import { 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 placeholder:text-gray-800`;\n\n const normal = tw`cursor-pointer border-blue-800`;\n const focused = tw`has-[:focus]:outline-4 has-[:focus]:-outline-offset-4 has-[:focus]:outline-blue-800`;\n const hover = tw`hover:outline-4 hover:-outline-offset-4 hover:outline-blue-800`;\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 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 pcInputText: {\n root: ({ props }) => {\n const focus = tw`focus-visible:outline-hidden`;\n return {\n class: {\n [focus]: true,\n [fluid]: !!props.fluid,\n },\n };\n },\n },\n inputMultiple: {\n class: tw`flex w-full flex-wrap items-center gap-4`,\n },\n inputChip: {\n class: tw`flex items-center`,\n },\n input: {\n class: tw`w-full focus-visible:outline-hidden`,\n },\n dropdown: { class: tw`absolute inset-y-0 right-16` },\n option: {\n class: tw`cursor-pointer border-l-4 border-transparent hover:bg-blue-100 data-[p-focused=true]:border-blue-800 data-[p-focused=true]:bg-blue-200`,\n },\n optionGroup: {\n class: tw`hover:bg-blue-100 data-[p-focused=true]:bg-blue-200`,\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 { tw } from \"@/lib/tags\";\nimport { TextareaPassThroughOptions } from \"primevue/textarea\";\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:outline focus:outline-4 focus:-outline-offset-4 focus: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 { 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`flex-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`rounded-sm p-2`;\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 { tw } from \"@/lib/tags.ts\";\nimport { SelectPassThroughOptions } from \"primevue/select\";\n\nconst select: SelectPassThroughOptions = {\n root: ({ props, state }) => {\n // Base\n const base = tw`ris-body2-regular [&+small]:ris-label3-regular relative inline-flex h-48 items-center justify-between border-2 bg-white py-4 pr-12 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`has-[:focus]:outline-4 has-[:focus]:-outline-offset-4 has-[:focus]: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 listContainer: {\n class: tw`overflow-auto shadow-md`,\n },\n\n label: {\n class: tw`line-clamp-1 flex-grow outline-none`,\n },\n\n overlay: {\n class: tw`bg-white`,\n },\n\n option: ({ context }) => {\n // Base\n const base = tw`ris-body2-regular relative h-full min-h-48 w-full cursor-pointer px-24 py-16 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 return {\n class: {\n [base]: true,\n [focused]: context.focused,\n },\n };\n },\n};\n\nexport default select;\n","import { tw } from \"@/lib/tags.ts\";\nimport { MultiSelectPassThroughOptions } from \"primevue/multiselect\";\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]:outline-4 has-[:focus]:-outline-offset-4 has-[:focus]: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 { 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 { 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 hover:underline focus:outline focus:outline-4 focus:outline-offset-4 focus: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 { tw } from \"@/lib/tags\";\nimport { PanelMenuPassThroughOptions } from \"primevue/panelmenu\";\n\nconst pointer = tw`cursor-pointer`;\nconst selected = tw`ris-label1-bold border-l-blue-800 bg-blue-200 text-black hover:bg-blue-300 focus-visible:bg-blue-300`;\nconst notSelected = tw`ris-label1-regular hover:bg-blue-200 focus-visible:bg-blue-200`;\n\nconst focusVisible = tw`focus-visible:outline-none`;\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 return {\n class: {\n [base]: true,\n [focusVisible]: true,\n [pointer]: true,\n [selected]: context.active,\n [notSelected]: !context.active,\n },\n };\n },\n content: {\n class: tw`mt-8 ml-28`,\n },\n rootList: {\n class: tw`focus-visible:outline-none`,\n },\n panel: {\n class: tw`focus-visible:outline-none`,\n },\n itemContent: ({ context }) => {\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 base = tw`group flex h-48 items-center border-l-4 border-transparent py-8 pr-20 pl-10`;\n const activeAndFocused = tw`bg-blue-300`;\n const inactiveAndFocused = tw`bg-blue-200`;\n return {\n class: {\n [base]: true,\n [activeAndFocused]: context.active && context.focused,\n [inactiveAndFocused]: !context.active && context.focused,\n [focusVisible]: true,\n [pointer]: true,\n [selected]: context.active,\n [notSelected]: !context.active,\n },\n };\n },\n};\n\nexport default panelMenu;\n","import { 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 { 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-[3px] cursor-col-resize`]: props.layout === \"horizontal\",\n [tw`h-[3px] 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-2 outline-blue-800 focus:outline-2`]: true,\n [tw`h-11/12 w-[3px] cursor-col-resize`]: props.layout === \"horizontal\",\n [tw`h-[3px] w-11/12 cursor-row-resize`]: props.layout === \"vertical\",\n },\n }),\n};\n\nexport default splitter;\n","import {\n DataTablePassThroughOptions,\n DataTableContext,\n} 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`focus:outline-4 focus:-outline-offset-5 focus:outline-blue-800 focus:not-focus-visible:outline-none focus-visible:outline-4 focus-visible:-outline-offset-5 focus-visible:outline-blue-800`,\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 { tw } from \"@/lib/tags\";\nimport type { TabPassThroughOptions } from \"primevue/tab\";\nimport type { TabPanelPassThroughOptions } from \"primevue/tabpanel\";\nimport type { TabListPassThroughOptions } from \"primevue/tablist\";\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 { 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 =\n !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 { 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: [\n \"Sonntag\",\n \"Montag\",\n \"Dienstag\",\n \"Mittwoch\",\n \"Donnerstag\",\n \"Freitag\",\n \"Samstag\",\n ],\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","import button from \"./button/button\";\nimport checkbox from \"./checkbox/checkbox\";\nimport chip from \"./chip/chip\";\nimport confirmDialog from \"./confirmDialog/confirmDialog\";\nimport dialog from \"./dialog/dialog\";\nimport fileUpload from \"./fileUpload/fileUpload\";\nimport inputGroup from \"./inputGroup/inputGroup\";\nimport inputText from \"./inputText/inputText\";\nimport menu from \"./menu/menu\";\nimport message from \"./message/message\";\nimport password from \"./password/password\";\nimport progressSpinner from \"./progressSpinner/progressSpinner\";\nimport radioButton from \"./radioButton/radioButton\";\nimport autocomplete from \"./autocomplete/autocomplete\";\nimport textarea from \"./textarea/textarea\";\nimport toast from \"./toast/toast\";\nimport select from \"./select/select\";\nimport multiselect from \"./multiSelect/multiSelect\";\nimport inputMask from \"./inputMask/inputMask\";\nimport breadcrumb from \"@/primevue/breadcrumb/breadcrumb\";\nimport panelmenu from \"./panelMenu/panelMenu\";\nimport tree from \"./tree/tree\";\nimport splitter from \"./splitter/splitter\";\nimport dataTable from \"./dataTable/dataTable\";\nimport { tab, tabPanel, tabList } from \"./tabs/tabs\";\nimport tooltip from \"./tooltip/tooltip\";\n\nimport { deDE } from \"@/config/locale\";\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"],"names":["button","props","instance","base","tw","rounded","severity","primary","secondary","danger","info","primaryText","size","small","normal","large","checkbox","chip","confirmDialog","dialog","fileUpload","inputGroup","inputText","password","fluid","menu","context","focused","message","success","warn","error","hasDefaultIcon","iconName","iconBg","progressSpinner","radioButton","autocomplete","state","hover","invalid","disabled","textarea","toast","successIcon","errorIcon","warnIcon","infoIcon","successHover","errorHover","warnHover","infoHover","select","multiSelect","inputMask","breadcrumb","pointer","selected","notSelected","focusVisible","panelMenu","activeAndFocused","inactiveAndFocused","tree","hoverSelected","visibility","splitter","dataTable","tab","active","inactive","tabPanel","tabList","tooltip","top","right","bottom","left","noPlacementDefined","deDE","RisUiTheme","multiselect","panelmenu","RisUiLocale"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../../src/primevue/button/button.ts","../../src/primevue/checkbox/checkbox.ts","../../src/primevue/chip/chip.ts","../../src/primevue/confirmDialog/confirmDialog.ts","../../src/primevue/dialog/dialog.ts","../../src/primevue/fileUpload/fileUpload.ts","../../src/primevue/inputGroup/inputGroup.ts","../../src/primevue/inputText/inputText.ts","../../src/primevue/menu/menu.ts","../../src/primevue/message/message.ts","../../src/primevue/password/password.ts","../../src/primevue/progressSpinner/progressSpinner.ts","../../src/primevue/radioButton/radioButton.ts","../../src/primevue/autocomplete/autocomplete.ts","../../src/primevue/textarea/textarea.ts","../../src/primevue/toast/toast.ts","../../src/primevue/select/select.ts","../../src/primevue/multiSelect/multiSelect.ts","../../src/primevue/inputMask/inputMask.ts","../../src/primevue/breadcrumb/breadcrumb.ts","../../src/primevue/panelMenu/panelMenu.ts","../../src/primevue/tree/tree.ts","../../src/primevue/splitter/splitter.ts","../../src/primevue/dataTable/dataTable.ts","../../src/primevue/tabs/tabs.ts","../../src/primevue/tooltip/tooltip.ts","../../src/config/locale.ts","../../src/primevue/index.ts"],"sourcesContent":["import { 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-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 const danger = tw`border-2 border-red-800 bg-white text-red-800 hover:bg-gray-200 focus-visible:bg-gray-200 focus-visible:outline-red-800 active:border-white active:bg-white 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-white active:bg-white 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 { tw } from \"@/lib/tags\";\nimport { CheckboxPassThroughOptions } from \"primevue/checkbox\";\n\nconst checkbox: CheckboxPassThroughOptions = {\n root: ({ props }) => {\n // Base\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]: true,\n [tw`h-32 min-h-32 w-32 min-w-32`]: props.size === \"large\",\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 { tw } from \"@/lib/tags\";\nimport { ChipPassThroughOptions } from \"primevue\";\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 { ConfirmDialogPassThroughOptions } from \"primevue/confirmdialog\";\n\nconst confirmDialog: ConfirmDialogPassThroughOptions = {\n // All styling implemented in primevue/dialog\n};\n\nexport default confirmDialog;\n","import { tw } from \"@/lib/tags\";\nimport { DialogPassThroughOptions } from \"primevue/dialog\";\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`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 { tw } from \"@/lib/tags.ts\";\nimport { FileUploadPassThroughOptions } from \"primevue/fileupload\";\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 { tw } from \"@/lib/tags\";\nimport { InputGroupPassThroughOptions } from \"primevue/inputgroup\";\n\nconst inputGroup: InputGroupPassThroughOptions = {\n root: {\n class: tw`flex`,\n },\n};\n\nexport default inputGroup;\n","import { tw } from \"@/lib/tags\";\nimport { InputTextPassThroughOptions } from \"primevue/inputtext\";\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-[28px] [&[type=password]:not(:placeholder-shown)]:tracking-[4px]`;\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 { tw } from \"@/lib/tags\";\nimport { MenuPassThroughOptions } from \"primevue/menu\";\n\nconst menu: MenuPassThroughOptions = {\n root: {\n class: tw`ris-body2-regular bg-white shadow`,\n },\n list: {\n class: tw`focus-visible:outline-none`,\n },\n item: ({ context }) => {\n const base = tw`relative h-48 pr-12 pl-16 after:absolute after:right-16 after:-bottom-1 after:left-16 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:bg-gray-100`;\n const focused = tw`bg-gray-200 hover:bg-gray-200`;\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 { tw } from \"@/lib/tags\";\nimport { MessagePassThroughOptions } from \"primevue/message\";\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-[20px] bg-position-[16px_18px] bg-no-repeat pl-44`;\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 { PasswordPassThroughOptions } from \"primevue/password\";\n\nconst password: PasswordPassThroughOptions = {\n // All styling moved to inputText.ts\n};\n\nexport default password;\n","import { 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 { tw } from \"@/lib/tags\";\nimport { RadioButtonPassThroughOptions } from \"primevue/radiobutton\";\n\nconst radioButton: RadioButtonPassThroughOptions = {\n root: {\n class: tw`[&+label]:ris-label1-regular relative inline-block h-32 w-32 [&+label]:ml-8`,\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: {\n class: tw`h-16 w-16 rounded-full bg-current`,\n },\n};\n\nexport default radioButton;\n","import { 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 placeholder:text-gray-800`;\n\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 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 { tw } from \"@/lib/tags\";\nimport { TextareaPassThroughOptions } from \"primevue/textarea\";\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 { 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 { tw } from \"@/lib/tags.ts\";\nimport { SelectPassThroughOptions } from \"primevue/select\";\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 { tw } from \"@/lib/tags.ts\";\nimport { MultiSelectPassThroughOptions } from \"primevue/multiselect\";\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 { 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 { 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 { tw } from \"@/lib/tags\";\nimport { PanelMenuPassThroughOptions } from \"primevue/panelmenu\";\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 { 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 { 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-[3px] cursor-col-resize`]: props.layout === \"horizontal\",\n [tw`h-[3px] 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-[3px] cursor-col-resize`]: props.layout === \"horizontal\",\n [tw`h-[3px] w-11/12 cursor-row-resize`]: props.layout === \"vertical\",\n },\n }),\n};\n\nexport default splitter;\n","import {\n DataTablePassThroughOptions,\n DataTableContext,\n} 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 { tw } from \"@/lib/tags\";\nimport type { TabPassThroughOptions } from \"primevue/tab\";\nimport type { TabPanelPassThroughOptions } from \"primevue/tabpanel\";\nimport type { TabListPassThroughOptions } from \"primevue/tablist\";\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 { 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 =\n !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 { 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: [\n \"Sonntag\",\n \"Montag\",\n \"Dienstag\",\n \"Mittwoch\",\n \"Donnerstag\",\n \"Freitag\",\n \"Samstag\",\n ],\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","import button from \"./button/button\";\nimport checkbox from \"./checkbox/checkbox\";\nimport chip from \"./chip/chip\";\nimport confirmDialog from \"./confirmDialog/confirmDialog\";\nimport dialog from \"./dialog/dialog\";\nimport fileUpload from \"./fileUpload/fileUpload\";\nimport inputGroup from \"./inputGroup/inputGroup\";\nimport inputText from \"./inputText/inputText\";\nimport menu from \"./menu/menu\";\nimport message from \"./message/message\";\nimport password from \"./password/password\";\nimport progressSpinner from \"./progressSpinner/progressSpinner\";\nimport radioButton from \"./radioButton/radioButton\";\nimport autocomplete from \"./autocomplete/autocomplete\";\nimport textarea from \"./textarea/textarea\";\nimport toast from \"./toast/toast\";\nimport select from \"./select/select\";\nimport multiselect from \"./multiSelect/multiSelect\";\nimport inputMask from \"./inputMask/inputMask\";\nimport breadcrumb from \"@/primevue/breadcrumb/breadcrumb\";\nimport panelmenu from \"./panelMenu/panelMenu\";\nimport tree from \"./tree/tree\";\nimport splitter from \"./splitter/splitter\";\nimport dataTable from \"./dataTable/dataTable\";\nimport { tab, tabPanel, tabList } from \"./tabs/tabs\";\nimport tooltip from \"./tooltip/tooltip\";\n\nimport { deDE } from \"@/config/locale\";\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"],"names":["button","props","instance","base","tw","rounded","severity","primary","secondary","danger","info","primaryText","size","small","normal","large","checkbox","chip","confirmDialog","dialog","fileUpload","inputGroup","inputText","password","fluid","menu","context","focused","message","success","warn","error","hasDefaultIcon","iconName","iconBg","progressSpinner","radioButton","autocomplete","state","hover","invalid","disabled","textarea","toast","successIcon","errorIcon","warnIcon","infoIcon","successHover","errorHover","warnHover","infoHover","select","withCheckmark","multiSelect","inputMask","breadcrumb","pointer","selected","notSelected","panelMenu","itemFocused","tree","focusVisible","hoverSelected","visibility","splitter","dataTable","tab","active","inactive","tabPanel","tabList","tooltip","top","right","bottom","left","noPlacementDefined","deDE","RisUiTheme","multiselect","panelmenu","RisUiLocale"],"mappings":"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"}
package/dist/style.css CHANGED
@@ -1 +1 @@
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-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: #fef7e8; --color-orange-200: #fae5bb; --color-orange-300: #f9d791; --color-orange-400: #f8c967; --color-orange-500: #f7bb3d; --color-orange-600: #e9aa26; --color-orange-700: #d79815; --color-orange-800: #c18509; --color-orange-900: #ad7500; --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: 64px; font-weight: normal; line-height: 1.1875;}@utility ris-heading1-regular{font-size: 48px; font-weight: normal; line-height: 1.2;}@utility ris-heading1-bold{font-size: 48px; font-weight: bold; line-height: 1.2;}@utility ris-heading2-regular{font-size: 32px; font-weight: normal; line-height: 1.1875;}@utility ris-heading2-bold{font-size: 32px; font-weight: bold; line-height: 1.1875;}@utility ris-heading3-regular{font-size: 26px; font-weight: normal; line-height: 1.23;}@utility ris-heading3-bold{font-size: 26px; font-weight: bold; line-height: 1.23;}@utility ris-subhead-regular{font-size: 20px; font-weight: normal; line-height: 1.5;}@utility ris-subhead-bold{font-size: 20px; font-weight: bold; line-height: 1.5;}@utility ris-body1-regular{font-size: 18px; font-weight: normal; line-height: 1.5;}@utility ris-body1-bold{font-size: 18px; font-weight: bold; line-height: 1.5;}@utility ris-body2-regular{font-size: 16px; font-weight: normal; line-height: 1.5;}@utility ris-body2-bold{font-size: 16px; font-weight: bold; line-height: 1.5;}@utility ris-body3-regular{font-size: 14px; font-weight: normal; line-height: 1.5;}@utility ris-body3-bold{font-size: 14px; font-weight: bold; line-height: 1.5;}@utility ris-label1-regular{font-size: 18px; font-weight: normal; line-height: 1.25;}@utility ris-label1-bold{font-size: 18px; font-weight: bold; line-height: 1.25;}@utility ris-label2-regular{font-size: 16px; font-weight: normal; line-height: 1.25;}@utility ris-label2-bold{font-size: 16px; font-weight: bold; line-height: 1.25;}@utility ris-label3-regular{font-size: 14px; font-weight: normal; line-height: 1.25;}@utility ris-label3-bold{font-size: 14px; font-weight: bold; line-height: 1.25;}@utility ris-link1-regular{color: var(--color-blue-800); font-size: 18px; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: 3px;}@utility ris-link1-bold{color: var(--color-blue-800); font-size: 18px; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: 3px;}@utility ris-link2-regular{color: var(--color-blue-800); font-size: 16px; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: 2px;}@utility ris-link2-bold{color: var(--color-blue-800); font-size: 16px; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: 2px;}@utility ris-link3-regular{color: var(--color-blue-800); font-size: 14px; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: 2px;}@utility ris-link3-bold{color: var(--color-blue-800); font-size: 14px; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: 2px;}.ris-link1-regular:hover,.ris-link1-bold:hover{text-decoration-thickness:3px}.ris-link2-regular:hover,.ris-link2-bold:hover,.ris-link3-regular:hover,.ris-link3-bold:hover{text-decoration-thickness:2px}.ris-link1-regular:focus-visible,.ris-link1-bold:focus-visible,.ris-link2-regular:focus-visible,.ris-link2-bold:focus-visible,.ris-link3-regular:focus-visible,.ris-link3-bold:focus-visible{outline:var(--color-blue-800) solid 2px;outline-offset:4px}._truncate_186wk_2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:var(--027069d3)}
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: 64px; font-weight: normal; line-height: 1.1875;}@utility ris-heading1-regular{font-size: 48px; font-weight: normal; line-height: 1.2;}@utility ris-heading1-bold{font-size: 48px; font-weight: bold; line-height: 1.2;}@utility ris-heading2-regular{font-size: 32px; font-weight: normal; line-height: 1.1875;}@utility ris-heading2-bold{font-size: 32px; font-weight: bold; line-height: 1.1875;}@utility ris-heading3-regular{font-size: 26px; font-weight: normal; line-height: 1.23;}@utility ris-heading3-bold{font-size: 26px; font-weight: bold; line-height: 1.23;}@utility ris-subhead-regular{font-size: 20px; font-weight: normal; line-height: 1.5;}@utility ris-subhead-bold{font-size: 20px; font-weight: bold; line-height: 1.5;}@utility ris-body1-regular{font-size: 18px; font-weight: normal; line-height: 1.5;}@utility ris-body1-bold{font-size: 18px; font-weight: bold; line-height: 1.5;}@utility ris-body2-regular{font-size: 16px; font-weight: normal; line-height: 1.5;}@utility ris-body2-bold{font-size: 16px; font-weight: bold; line-height: 1.5;}@utility ris-body3-regular{font-size: 14px; font-weight: normal; line-height: 1.5;}@utility ris-body3-bold{font-size: 14px; font-weight: bold; line-height: 1.5;}@utility ris-label1-regular{font-size: 18px; font-weight: normal; line-height: 1.25;}@utility ris-label1-bold{font-size: 18px; font-weight: bold; line-height: 1.25;}@utility ris-label2-regular{font-size: 16px; font-weight: normal; line-height: 1.25;}@utility ris-label2-bold{font-size: 16px; font-weight: bold; line-height: 1.25;}@utility ris-label3-regular{font-size: 14px; font-weight: normal; line-height: 1.25;}@utility ris-label3-bold{font-size: 14px; font-weight: bold; line-height: 1.25;}@utility ris-link1-regular{color: var(--color-blue-800); font-size: 18px; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: 3px;}@utility ris-link1-bold{color: var(--color-blue-800); font-size: 18px; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: 3px;}@utility ris-link2-regular{color: var(--color-blue-800); font-size: 16px; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: 2px;}@utility ris-link2-bold{color: var(--color-blue-800); font-size: 16px; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: 2px;}@utility ris-link3-regular{color: var(--color-blue-800); font-size: 14px; font-weight: normal; line-height: 1.5; text-decoration: underline; text-underline-offset: 2px;}@utility ris-link3-bold{color: var(--color-blue-800); font-size: 14px; font-weight: bold; line-height: 1.5; text-decoration: underline; text-underline-offset: 2px;}.ris-link1-regular:hover,.ris-link1-bold:hover{text-decoration-thickness:3px}.ris-link2-regular:hover,.ris-link2-bold:hover,.ris-link3-regular:hover,.ris-link3-bold:hover{text-decoration-thickness:2px}.ris-link1-regular:focus-visible,.ris-link1-bold:focus-visible,.ris-link2-regular:focus-visible,.ris-link2-bold:focus-visible,.ris-link3-regular:focus-visible,.ris-link3-bold:focus-visible{outline:var(--color-blue-800) solid 4px;outline-offset:4px}._truncate_186wk_2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:var(--d6a14b30)}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitalservicebund/ris-ui",
3
- "version": "3.17.1",
3
+ "version": "3.18.1",
4
4
  "description": "Component library for NeuRIS",
5
5
  "author": "digitalservicebund",
6
6
  "license": "GPL-3.0-only",
@@ -44,10 +44,8 @@
44
44
  },
45
45
  "scripts": {
46
46
  "storybook": "storybook dev -p 6006",
47
- "prebuild": "npm run sync-fonts",
48
- "build": "vite build && vue-tsc --build tsconfig.lib.json --force",
49
- "prebuild:storybook": "npm run sync-fonts",
50
- "build:storybook": "storybook build",
47
+ "build": "npm run sync-fonts && vite build && vue-tsc --build tsconfig.lib.json --force",
48
+ "build:storybook": "npm run sync-fonts && storybook build",
51
49
  "prettier:check": "prettier --check .",
52
50
  "prettier:fix": "prettier --write --ignore-unknown .",
53
51
  "eslint:check": "eslint --max-warnings=0 --no-warn-ignored",