@digitalservicebund/ris-ui 1.4.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/RisAutoComplete/RisAutoComplete.vue.d.ts +5 -5
- package/dist/components/RisCopyableLabel/RisCopyableLabel.vue.d.ts +4 -18
- package/dist/components/RisExpandableText/RisExpandableText.vue.d.ts +17 -7
- package/dist/components/RisSingleAccordion/RisSingleAccordion.vue.d.ts +12 -7
- package/dist/lib/tags.d.ts +2 -2
- package/dist/mockServiceWorker.js +12 -3
- package/dist/primevue/index.cjs +1 -1
- package/dist/primevue/index.d.ts +1 -0
- package/dist/primevue/index.js +136 -104
- package/dist/primevue/tree/tree.d.ts +4 -0
- package/dist/style.css +1 -1
- package/package.json +35 -39
@@ -8,15 +8,15 @@ export type Props = Pick<AutoCompleteProps, "dropdown" | "ariaLabel" | "ariaLabe
|
|
8
8
|
suggestions?: AutoCompleteSuggestion[];
|
9
9
|
initialLabel?: string;
|
10
10
|
};
|
11
|
-
|
11
|
+
type __VLS_Props = Props;
|
12
12
|
type __VLS_PublicProps = {
|
13
13
|
modelValue?: string;
|
14
|
-
} &
|
14
|
+
} & __VLS_Props;
|
15
15
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
|
16
|
-
autoCompleteRef: import("vue").Ref<import("@primevue/core").DefineComponent<AutoCompleteProps, import("primevue/autocomplete").AutoCompleteSlots, ((e: "
|
16
|
+
autoCompleteRef: import("vue").Ref<import("@primevue/core").DefineComponent<AutoCompleteProps, import("primevue/autocomplete").AutoCompleteSlots, ((e: "update:modelValue", value: any) => void) & ((e: "change", event: import("primevue/autocomplete").AutoCompleteChangeEvent) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "item-select", event: import("primevue/autocomplete").AutoCompleteOptionSelectEvent) => void) & ((e: "item-unselect", event: import("primevue/autocomplete").AutoCompleteOptionUnselectEvent) => void) & ((e: "option-select", event: import("primevue/autocomplete").AutoCompleteOptionSelectEvent) => void) & ((e: "option-unselect", event: import("primevue/autocomplete").AutoCompleteOptionUnselectEvent) => void) & ((e: "dropdown-click", event: import("primevue/autocomplete").AutoCompleteDropdownClickEvent) => void) & ((e: "clear") => void) & ((e: "complete", event: import("primevue/autocomplete").AutoCompleteCompleteEvent) => void) & ((e: "before-show") => void) & ((e: "before-hide") => void) & ((e: "show") => void) & ((e: "hide") => void)> | null, import("@primevue/core").DefineComponent<AutoCompleteProps, import("primevue/autocomplete").AutoCompleteSlots, ((e: "update:modelValue", value: any) => void) & ((e: "change", event: import("primevue/autocomplete").AutoCompleteChangeEvent) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "item-select", event: import("primevue/autocomplete").AutoCompleteOptionSelectEvent) => void) & ((e: "item-unselect", event: import("primevue/autocomplete").AutoCompleteOptionUnselectEvent) => void) & ((e: "option-select", event: import("primevue/autocomplete").AutoCompleteOptionSelectEvent) => void) & ((e: "option-unselect", event: import("primevue/autocomplete").AutoCompleteOptionUnselectEvent) => void) & ((e: "dropdown-click", event: import("primevue/autocomplete").AutoCompleteDropdownClickEvent) => void) & ((e: "clear") => void) & ((e: "complete", event: import("primevue/autocomplete").AutoCompleteCompleteEvent) => void) & ((e: "before-show") => void) & ((e: "before-hide") => void) & ((e: "show") => void) & ((e: "hide") => void)> | null>;
|
17
17
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
18
|
-
'update:modelValue': (
|
18
|
+
'update:modelValue': (value: string) => any;
|
19
19
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
20
|
-
"onUpdate:modelValue"?: ((
|
20
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
21
21
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
22
22
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
type __VLS_Props = {
|
2
2
|
/** Visible text. */
|
3
3
|
text: string;
|
4
4
|
/**
|
@@ -13,23 +13,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
13
13
|
* @default "Wert"
|
14
14
|
*/
|
15
15
|
name?: string;
|
16
|
-
}
|
17
|
-
|
18
|
-
text: string;
|
19
|
-
/**
|
20
|
-
* Value that should be copied. If no value is provided, copying will
|
21
|
-
* copy the `text` by default.
|
22
|
-
*/
|
23
|
-
value?: string;
|
24
|
-
/**
|
25
|
-
* Human-readable description of the value that should be copied. This
|
26
|
-
* will be used to provide an accessible label for the control.
|
27
|
-
*
|
28
|
-
* @default "Wert"
|
29
|
-
*/
|
30
|
-
name?: string;
|
31
|
-
}> & Readonly<{}>, {
|
16
|
+
};
|
17
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
32
18
|
value: string;
|
33
19
|
name: string;
|
34
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
35
21
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
type __VLS_Props = {
|
2
2
|
/**
|
3
3
|
* Specifies the maximum number of visible lines.
|
4
4
|
* @default 3
|
@@ -7,16 +7,26 @@ declare let __VLS_typeProps: {
|
|
7
7
|
};
|
8
8
|
type __VLS_PublicProps = {
|
9
9
|
"expanded"?: boolean;
|
10
|
-
} &
|
10
|
+
} & __VLS_Props;
|
11
11
|
declare function __VLS_template(): {
|
12
|
-
|
12
|
+
attrs: Partial<{}>;
|
13
|
+
slots: {
|
14
|
+
default?(_: {}): any;
|
15
|
+
};
|
16
|
+
refs: {
|
17
|
+
textContent: HTMLDivElement;
|
18
|
+
};
|
19
|
+
rootEl: HTMLDivElement;
|
13
20
|
};
|
21
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
14
22
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
15
|
-
'update:expanded': (
|
23
|
+
'update:expanded': (value: boolean) => any;
|
16
24
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
17
|
-
"onUpdate:expanded"?: ((
|
18
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
19
|
-
|
25
|
+
"onUpdate:expanded"?: ((value: boolean) => any) | undefined;
|
26
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
27
|
+
textContent: HTMLDivElement;
|
28
|
+
}, HTMLDivElement>;
|
29
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
20
30
|
export default _default;
|
21
31
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
22
32
|
new (): {
|
@@ -1,21 +1,26 @@
|
|
1
|
-
|
1
|
+
type __VLS_Props = {
|
2
2
|
headerCollapsed: string;
|
3
3
|
headerExpanded: string;
|
4
4
|
};
|
5
5
|
type __VLS_PublicProps = {
|
6
6
|
modelValue?: boolean;
|
7
|
-
} &
|
7
|
+
} & __VLS_Props;
|
8
8
|
declare function __VLS_template(): {
|
9
|
-
|
9
|
+
attrs: Partial<{}>;
|
10
|
+
slots: {
|
11
|
+
default?(_: {}): any;
|
12
|
+
};
|
13
|
+
refs: {};
|
14
|
+
rootEl: any;
|
10
15
|
};
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
11
17
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
12
|
-
'update:modelValue': (
|
18
|
+
'update:modelValue': (value: boolean) => any;
|
13
19
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
14
|
-
"onUpdate:modelValue"?: ((
|
20
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
15
21
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
16
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component,
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
17
23
|
export default _default;
|
18
|
-
|
19
24
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
20
25
|
new (): {
|
21
26
|
$slots: S;
|
package/dist/lib/tags.d.ts
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
* const template = html`<div>Hello world</div>`
|
8
8
|
* ```
|
9
9
|
*/
|
10
|
-
export declare const html: (strings: TemplateStringsArray, ...
|
10
|
+
export declare const html: (strings: TemplateStringsArray, ...values: unknown[]) => string;
|
11
11
|
/**
|
12
12
|
* Tagged template string for Tailwind classes. The tag itself doesn't do
|
13
13
|
* anything, but using it will allow your editor to provide Tailwind
|
@@ -18,4 +18,4 @@ export declare const html: (strings: TemplateStringsArray, ...expressions: unkno
|
|
18
18
|
* const classes = tw`px-16 bg-blue-200`
|
19
19
|
* ```
|
20
20
|
*/
|
21
|
-
export declare const tw: (strings: TemplateStringsArray, ...
|
21
|
+
export declare const tw: (strings: TemplateStringsArray, ...values: unknown[]) => string;
|
@@ -8,8 +8,8 @@
|
|
8
8
|
* - Please do NOT serve this file on production.
|
9
9
|
*/
|
10
10
|
|
11
|
-
const PACKAGE_VERSION = '2.
|
12
|
-
const INTEGRITY_CHECKSUM = '
|
11
|
+
const PACKAGE_VERSION = '2.6.0'
|
12
|
+
const INTEGRITY_CHECKSUM = '07a8241b182f8a246a7cd39894799a9e'
|
13
13
|
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
|
14
14
|
const activeClientIds = new Set()
|
15
15
|
|
@@ -62,7 +62,12 @@ self.addEventListener('message', async function (event) {
|
|
62
62
|
|
63
63
|
sendToClient(client, {
|
64
64
|
type: 'MOCKING_ENABLED',
|
65
|
-
payload:
|
65
|
+
payload: {
|
66
|
+
client: {
|
67
|
+
id: client.id,
|
68
|
+
frameType: client.frameType,
|
69
|
+
},
|
70
|
+
},
|
66
71
|
})
|
67
72
|
break
|
68
73
|
}
|
@@ -155,6 +160,10 @@ async function handleRequest(event, requestId) {
|
|
155
160
|
async function resolveMainClient(event) {
|
156
161
|
const client = await self.clients.get(event.clientId)
|
157
162
|
|
163
|
+
if (activeClientIds.has(event.clientId)) {
|
164
|
+
return client
|
165
|
+
}
|
166
|
+
|
158
167
|
if (client?.frameType === 'top-level') {
|
159
168
|
return client
|
160
169
|
}
|
package/dist/primevue/index.cjs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const p=(t,...o)=>{let r=t[0];for(let n=1,l=t.length;n<l;n++)r+=o[n-1],r+=t[n];return r},e=p,m={root:({props:t,instance:o})=>{const r=e`relative inline-flex max-w-full items-center justify-center gap-8 rounded-none text-center outline-4 outline-offset-4 outline-blue-800 focus:outline active:outline-none disabled:cursor-not-allowed disabled:outline-none`,n=t.severity??"primary",l=e`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`,s=e`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`,i=e`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`,a=t.size??"normal";let u=e`ris-body2-bold h-48 py-4`,c=e`ris-body1-bold h-64 py-4`;return o.hasIcon&&!t.label?(u=e`${u} w-48 px-4`,c=e`${c} w-64 px-4`):(u=e`${u} px-16`,c=e`${c} px-24`),{class:{[r]:!0,[u]:a==="normal",[c]:a==="large",[l]:!t.text&&n==="primary",[s]:!t.text&&n==="secondary",[i]:t.text&&n==="primary"}}},label:({props:t})=>({class:{hidden:!t.label,[e`-order-1`]:t.iconPos==="right"}}),loadingIcon:({props:t})=>{const o=t.size??"normal",r=e`h-[1.34em] w-[1.34em]`,n=e`h-24 w-24`;return{class:{[e`animate-spin`]:!0,[r]:o==="normal",[n]:o==="large"}}}},w={root:{class:e`relative inline-block h-24 min-h-24 w-24 min-w-24 [&+label]:ris-label1-regular [&+label]:ml-8`},input:{class:e`peer h-full w-full cursor-pointer appearance-none border-2 border-blue-800 bg-white outline-4 -outline-offset-4 outline-blue-800 hover:outline focus:outline active:outline-none disabled:cursor-not-allowed disabled:border-gray-600 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-none aria-[invalid]:disabled:outline-none`},box:{class:e`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`},icon:{class:e`h-12 w-12`}},v={},x={root:()=>({class:e`ris-label2-regular max-h-[90dvh] w-[95dvw] max-w-[25rem] border-2 border-blue-800 bg-white px-56 py-44 shadow-lg`}),header:{class:e`mb-16 flex`},title:{class:e`ris-label1-bold flex-1`},headerActions:{class:e`flex-none`},pcCloseButton:{root:{class:e`flex h-24 w-24 items-center justify-center p-4 text-blue-800 outline-2 outline-gray-500 hover:outline focus:outline active:outline-none`}},content:{class:e`ris-dialog-content overflow-auto has-[svg:first-child]:flex has-[svg:first-child]:gap-8`},footer:{class:e`mt-40 flex items-center justify-end gap-12`},mask:{class:e`bg-black/40`}},y={root:()=>({class:{[e`flex flex-col items-center gap-10`]:!0}}),input:()=>({class:"hidden"})},S={root:{class:e`has-[input:read-only]:curser-not-allowed inline-flex items-center gap-4 border-2 border-blue-800 bg-white px-16 py-0 outline-4 -outline-offset-4 outline-blue-800 has-[[aria-invalid]]:border-red-800 has-[input:disabled]:border-blue-500 has-[input:read-only]:border-blue-300 has-[[aria-invalid]]:bg-red-200 has-[input:disabled]:bg-white has-[input:read-only]:bg-blue-300 has-[[data-size=large]]:px-24 has-[input:disabled]:text-blue-500 has-[input:disabled]:outline-none has-[:focus]:outline has-[:hover]:outline has-[[aria-invalid]]:outline-red-800`}},M={root:{class:e`m-0 p-0`}},d=e`border-2 border-blue-800 bg-white outline-4 -outline-offset-4 outline-blue-800 placeholder:text-gray-800 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline focus:outline disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-none`,b=e`ris-body2-regular h-48 px-16 py-4`,k=e`ris-body1-regular h-64 px-24 py-4`,N=e`ris-body2-regular h-[44px] p-0`,z=e`ris-body1-regular h-[60px] p-0`,D={root:({props:t,parent:o})=>{const r=e`[&[type=password]:not(:placeholder-shown)]:text-[28px] [&[type=password]:not(:placeholder-shown)]:tracking-[4px] [&[type=password]]:w-full`,n=o.instance.$name==="InputGroup",l=e`bg-transparent placeholder:text-gray-900 focus:outline-none`,s=e`w-full`;return{class:{[d]:!n,[l]:n,[s]:!!t.fluid,[r]:!0,[b]:(!t.size||t.size==="small")&&!n,[N]:(!t.size||t.size==="small")&&n,[k]:t.size==="large"&&!n,[z]:t.size==="large"&&n},"data-size":t.size??"small"}}},A={root:({props:t,instance:o})=>{const r=e`ris-body1-regular border-l-4 px-20 py-14`,n=t.severity??"info",l=e`border-l-green-800 bg-green-200`,s=e`border-l-blue-800 bg-blue-200`,i=e`border-l-yellow-800 bg-yellow-200`,a=e`border-l-red-800 bg-red-200`,u=!!o.$slots.icon,h={success:"var(--ris-icon-success)",info:"var(--ris-icon-info)",warn:"var(--ris-icon-warn)",error:"var(--ris-icon-error)"}[n],f=e`bg-[length:20px] bg-[16px_18px] bg-no-repeat pl-44`;return{class:{[r]:!0,[l]:n==="success",[s]:n==="info",[i]:n==="warn",[a]:n==="error",[f]:!u},style:{backgroundImage:u?void 0:h}}},content:{class:e`flex items-start gap-8`},text:{class:e`flex-1`},closeButton:({props:t})=>{const o=e`mt-4 inline-flex h-20 w-20 flex-none items-center justify-center rounded-sm p-2 leading-none`,r=t.severity??"info",n=e`text-green-800 hover:bg-green-400 active:bg-green-500`,l=e`text-blue-800 hover:bg-blue-400 active:bg-blue-500`,s=e`text-black hover:bg-yellow-400 active:bg-yellow-500`,i=e`text-red-800 hover:bg-red-400 active:bg-red-500`;return{class:{[o]:!0,[n]:r==="success",[l]:r==="info",[s]:r==="warn",[i]:r==="error"}}}},B={},I={root:{class:e`mx-auto inline-block h-28 w-28 animate-spin`},circle:{class:e`fill-transparent stroke-current stroke-[4px] text-blue-800 [stroke-dasharray:200] [stroke-dashoffset:100]`}},L={root:{class:e`relative inline-block h-32 w-32 [&+label]:ris-label1-regular [&+label]:ml-8`},input:{class:e`peer h-full w-full cursor-pointer appearance-none rounded-full border-2 border-blue-800 bg-white outline-4 -outline-offset-4 outline-blue-800 hover:outline focus:outline active:outline-none disabled:cursor-not-allowed disabled:border-gray-600 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-none aria-[invalid]:disabled:outline-none`},box:{class:e`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`},icon:{class:e`h-16 w-16 rounded-full bg-current`}},g=e`w-full`,F={root:({props:t})=>({class:{[e`relative`]:!0,[g]:!!t.fluid}}),pcInput:{root:({props:t})=>({class:{[d]:!0,[b]:!0,[g]:!!t.fluid}})},dropdown:{class:e`absolute inset-y-0 right-16`},option:{class:e`hover:bg-blue-100 data-[p-focus=true]:bg-blue-200`},optionGroup:{class:e`hover:bg-blue-100 data-[p-focus=true]:bg-blue-200`},overlay:{class:e`max-h-56 min-w-288 overflow-auto bg-white px-8 py-12 shadow-md`}},T={root:({props:t})=>{const o=e`ris-body1-regular min-h-56 border-2 border-blue-800 bg-white px-14 pb-12 pt-8 outline-4 -outline-offset-4 outline-blue-800 placeholder:text-gray-900 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline focus:outline disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-none`,r=e`w-full`;return{class:{[o]:!0,[r]:!!t.fluid}}}},E={message:({props:t})=>{var a;const o=e`mb-8 flex w-full flex-row items-center gap-8 border-l-4 p-16`,r=(a=t.message)==null?void 0:a.severity,n=e`border-l-green-900 bg-green-200`,l=e`border-l-red-900 bg-red-200`,s=e`border-l-yellow-900 bg-yellow-200`,i=e`border-l-blue-900 bg-blue-200`;return{class:{[o]:!0,[n]:r==="success",[l]:r==="error",[s]:r==="warn",[i]:r==="info"}}},messageContent:{class:e`flex w-full flex-row items-start justify-between gap-10`},messageIcon:({props:t})=>{var a;const o=e`mt-2 h-20 w-20 flex-none shrink-0`,r=((a=t.message)==null?void 0:a.severity)??"info",n=e`text-green-800`,l=e`text-red-800`,s=e`text-black`,i=e`text-blue-800`;return{class:{[o]:!0,[n]:r==="success",[l]:r==="error",[s]:r==="warn",[i]:r==="info"}}},messageText:{class:e`flex-grow text-black`},summary:{class:e`ris-label2-bold`},detail:{class:e`ris-label2-regular`},closeButton:({props:t})=>{var a;const o=e`rounded-sm p-2`,r=((a=t.message)==null?void 0:a.severity)??"info",n=e`hover:bg-green-400`,l=e`hover:bg-red-400`,s=e`hover:bg-yellow-400`,i=e`hover:bg-blue-400`;return{class:{[o]:!0,[n]:r==="success",[l]:r==="error",[s]:r==="warn",[i]:r==="info"}}},closeIcon:{class:e`text-black`}},R={root:({props:t,state:o})=>{const r=e`ris-body2-regular inline-flex h-48 items-center justify-between border-2 bg-white py-4 pl-16 pr-12 outline-4 -outline-offset-4 [&+label]:ml-8`,n=e`cursor-pointer border-blue-800 outline-blue-800`,l=e`outline`,s=e`hover:outline`,i=e`cursor-not-allowed border-blue-500 text-blue-500`,a=e`border-red-800 bg-red-200 outline-red-800`,u=e`w-full`;return{class:{[r]:!0,[n]:!t.disabled,[l]:o.focused&&!t.disabled,[s]:!t.disabled,[u]:!!t.fluid,[i]:t.disabled,[a]:t.invalid},"aria-invalid":t.invalid?"true":null}},dropdown:{class:e`pl-12`},listContainer:{class:e`overflow-auto shadow-md`},label:{class:e`outline-none`},overlay:{class:e`bg-white`},option:({context:t})=>{const o=e`ris-body2-regular relative h-full min-h-48 w-full cursor-pointer px-24 py-16 after:absolute after:-bottom-1 after:left-8 after:right-8 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:bg-gray-100`,r=e`bg-gray-100`;return{class:{[o]:!0,[r]:t.focused}}}},G={pcInputText:{root:({props:t})=>({class:{[d]:!0,[b]:!0,"w-full":!!t.fluid}})}},P={list:()=>({class:{[e`m-0 flex list-none flex-wrap items-center p-0 leading-none`]:!0}}),item:()=>({class:{[e`flex-no-wrap ris-label1-regular my-2 flex items-center`]:!0}}),itemLink:()=>({class:{"underline ris-link1-bold cursor-pointer inline-flex items-center":!0,[e`outline-4 outline-offset-4 outline-blue-800 focus:outline`]:!0}}),separator:()=>({class:{"flex items-center text-gray-600 mx-2":!0}})},Z={startsWith:"Beginnt mit",contains:"Enthält",notContains:"Enthält nicht",endsWith:"Endet mit",equals:"Gleich",notEquals:"Ungleich",noFilter:"Kein Filter",lt:"Weniger als",lte:"Weniger oder gleich",gt:"Größer als",gte:"Größer oder gleich",dateIs:"Datum ist",dateIsNot:"Datum ist nicht",dateBefore:"Datum ist vor",dateAfter:"Datum ist nach",clear:"Löschen",apply:"Anwenden",matchAll:"Alle erfüllen",matchAny:"Beliebige erfüllen",addRule:"Regel hinzufügen",removeRule:"Regel entfernen",accept:"Ja",reject:"Nein",choose:"Auswählen",upload:"Hochladen",cancel:"Abbrechen",completed:"Abgeschlossen",pending:"Ausstehend",fileSizeTypes:["B","KB","MB","GB","TB","PB","EB","ZB","YB"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],chooseYear:"Jahr wählen",chooseMonth:"Monat wählen",chooseDate:"Datum wählen",prevDecade:"Vorheriges Jahrzehnt",nextDecade:"Nächstes Jahrzehnt",prevYear:"Vorheriges Jahr",nextYear:"Nächstes Jahr",prevMonth:"Vorheriger Monat",nextMonth:"Nächster Monat",prevHour:"Vorherige Stunde",nextHour:"Nächste Stunde",prevMinute:"Vorherige Minute",nextMinute:"Nächste Minute",prevSecond:"Vorherige Sekunde",nextSecond:"Nächste Sekunde",am:"vorm.",pm:"nachm.",today:"Heute",weekHeader:"KW",firstDayOfWeek:1,showMonthAfterYear:!1,dateFormat:"dd.mm.yy",weak:"Schwach",medium:"Mittel",strong:"Stark",passwordPrompt:"Passwort eingeben",emptyFilterMessage:"Keine Ergebnisse gefunden",searchMessage:"{0} Ergebnisse verfügbar",selectionMessage:"{0} Elemente ausgewählt",emptySelectionMessage:"Kein Element ausgewählt",emptySearchMessage:"Keine Ergebnisse gefunden",fileChosenMessage:"{0} Dateien",noFileChosenMessage:"Keine Datei ausgewählt",emptyMessage:"Keine Optionen verfügbar",aria:{trueLabel:"Wahr",falseLabel:"Falsch",nullLabel:"Nicht ausgewählt",star:"1 Stern",stars:"{star} Sterne",selectAll:"Alle Elemente ausgewählt",unselectAll:"Alle Elemente abgewählt",close:"Schließen",previous:"Vorherige",next:"Nächste",navigation:"Navigation",scrollTop:"Nach oben scrollen",moveTop:"Nach oben bewegen",moveUp:"Nach oben bewegen",moveDown:"Nach unten bewegen",moveBottom:"Nach unten bewegen",moveToTarget:"Zum Ziel verschieben",moveToSource:"Zur Quelle verschieben",moveAllToTarget:"Alle zum Ziel verschieben",moveAllToSource:"Alle zur Quelle verschieben",pageLabel:"Seite {page}",firstPageLabel:"Erste Seite",lastPageLabel:"Letzte Seite",nextPageLabel:"Nächste Seite",prevPageLabel:"Vorherige Seite",rowsPerPageLabel:"Zeilen pro Seite",jumpToPageDropdownLabel:"Zu Seite springen (Dropdown)",jumpToPageInputLabel:"Zu Seite springen (Eingabe)",selectRow:"Zeile ausgewählt",unselectRow:"Zeile abgewählt",expandRow:"Zeile erweitert",collapseRow:"Zeile reduziert",showFilterMenu:"Filtermenü anzeigen",hideFilterMenu:"Filtermenü ausblenden",filterOperator:"Filteroperator",filterConstraint:"Filterbedingung",editRow:"Zeile bearbeiten",saveEdit:"Bearbeitung speichern",cancelEdit:"Bearbeitung abbrechen",listView:"Listenansicht",gridView:"Gitteransicht",slide:"Folie",slideNumber:"Folie {slideNumber}",zoomImage:"Bild vergrößern",zoomIn:"Vergrößern",zoomOut:"Verkleinern",rotateRight:"Rechts drehen",rotateLeft:"Links drehen",listLabel:"Optionsliste"}},j={button:m,checkbox:w,confirmDialog:v,dialog:x,fileUpload:y,inputGroup:S,inputGroupAddon:M,inputText:D,message:A,password:B,progressSpinner:I,radioButton:L,textarea:T,toast:E,autocomplete:F,select:R,inputMask:G,breadcrumb:P},J={deDE:Z};exports.RisUiLocale=J;exports.RisUiTheme=j;
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const p=(t,...o)=>String.raw({raw:t},...o),e=p,v={root:({props:t,instance:o})=>{const r=e`relative inline-flex max-w-full items-center justify-center gap-8 rounded-none text-center outline-4 outline-offset-4 outline-blue-800 focus:outline active:outline-none disabled:cursor-not-allowed disabled:outline-none`,l=t.severity??"primary",n=e`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`,s=e`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`,a=e`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`,i=t.size??"normal";let u=e`ris-body2-bold h-48 py-4`,c=e`ris-body1-bold h-64 py-4`;return o.hasIcon&&!t.label?(u=e`${u} w-48 px-4`,c=e`${c} w-64 px-4`):(u=e`${u} px-16`,c=e`${c} px-24`),{class:{[r]:!0,[u]:i==="normal",[c]:i==="large",[n]:!t.text&&l==="primary",[s]:!t.text&&l==="secondary",[a]:t.text&&l==="primary"}}},label:({props:t})=>({class:{hidden:!t.label,[e`-order-1`]:t.iconPos==="right"}}),loadingIcon:({props:t})=>{const o=t.size??"normal",r=e`h-[1.34em] w-[1.34em]`,l=e`h-24 w-24`;return{class:{[e`animate-spin`]:!0,[r]:o==="normal",[l]:o==="large"}}}},m={root:{class:e`relative inline-block h-24 min-h-24 w-24 min-w-24 [&+label]:ris-label1-regular [&+label]:ml-8`},input:{class:e`peer h-full w-full cursor-pointer appearance-none border-2 border-blue-800 bg-white outline-4 -outline-offset-4 outline-blue-800 hover:outline focus:outline active:outline-none disabled:cursor-not-allowed disabled:border-gray-600 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-none aria-[invalid]:disabled:outline-none`},box:{class:e`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`},icon:{class:e`h-12 w-12`}},w={},x={root:()=>({class:e`ris-label2-regular max-h-[90dvh] w-[95dvw] max-w-[25rem] border-2 border-blue-800 bg-white px-56 py-44 shadow-lg`}),header:{class:e`mb-16 flex`},title:{class:e`ris-label1-bold flex-1`},headerActions:{class:e`flex-none`},pcCloseButton:{root:{class:e`flex h-24 w-24 items-center justify-center p-4 text-blue-800 outline-2 outline-gray-500 hover:outline focus:outline active:outline-none`}},content:{class:e`ris-dialog-content overflow-auto has-[svg:first-child]:flex has-[svg:first-child]:gap-8`},footer:{class:e`mt-40 flex items-center justify-end gap-12`},mask:{class:e`bg-black/40`}},y={root:()=>({class:{[e`flex flex-col items-center gap-10`]:!0}}),input:()=>({class:"hidden"})},S={root:{class:e`has-[input:read-only]:curser-not-allowed inline-flex items-center gap-4 border-2 border-blue-800 bg-white px-16 py-0 outline-4 -outline-offset-4 outline-blue-800 has-[[aria-invalid]]:border-red-800 has-[input:disabled]:border-blue-500 has-[input:read-only]:border-blue-300 has-[[aria-invalid]]:bg-red-200 has-[input:disabled]:bg-white has-[input:read-only]:bg-blue-300 has-[[data-size=large]]:px-24 has-[input:disabled]:text-blue-500 has-[input:disabled]:outline-none has-[:focus]:outline has-[:hover]:outline has-[[aria-invalid]]:outline-red-800`}},k={root:{class:e`m-0 p-0`}},b=e`border-2 border-blue-800 bg-white outline-4 -outline-offset-4 outline-blue-800 placeholder:text-gray-800 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline focus:outline disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-none`,d=e`ris-body2-regular h-48 px-16 py-4`,M=e`ris-body1-regular h-64 px-24 py-4`,N=e`ris-body2-regular h-[44px] p-0`,z=e`ris-body1-regular h-[60px] p-0`,D={root:({props:t,parent:o})=>{const r=e`[&[type=password]:not(:placeholder-shown)]:text-[28px] [&[type=password]:not(:placeholder-shown)]:tracking-[4px] [&[type=password]]:w-full`,l=o.instance.$name==="InputGroup",n=e`bg-transparent placeholder:text-gray-900 focus:outline-none`,s=e`w-full`;return{class:{[b]:!l,[n]:l,[s]:!!t.fluid,[r]:!0,[d]:(!t.size||t.size==="small")&&!l,[N]:(!t.size||t.size==="small")&&l,[M]:t.size==="large"&&!l,[z]:t.size==="large"&&l},"data-size":t.size??"small"}}},A={root:({props:t,instance:o})=>{const r=e`ris-body1-regular border-l-4 px-20 py-14`,l=t.severity??"info",n=e`border-l-green-800 bg-green-200`,s=e`border-l-blue-800 bg-blue-200`,a=e`border-l-yellow-800 bg-yellow-200`,i=e`border-l-red-800 bg-red-200`,u=!!o.$slots.icon,h={success:"var(--ris-icon-success)",info:"var(--ris-icon-info)",warn:"var(--ris-icon-warn)",error:"var(--ris-icon-error)"}[l],f=e`bg-[length:20px] bg-[16px_18px] bg-no-repeat pl-44`;return{class:{[r]:!0,[n]:l==="success",[s]:l==="info",[a]:l==="warn",[i]:l==="error",[f]:!u},style:{backgroundImage:u?void 0:h}}},content:{class:e`flex items-start gap-8`},text:{class:e`flex-1`},closeButton:({props:t})=>{const o=e`mt-4 inline-flex h-20 w-20 flex-none items-center justify-center rounded-sm p-2 leading-none`,r=t.severity??"info",l=e`text-green-800 hover:bg-green-400 active:bg-green-500`,n=e`text-blue-800 hover:bg-blue-400 active:bg-blue-500`,s=e`text-black hover:bg-yellow-400 active:bg-yellow-500`,a=e`text-red-800 hover:bg-red-400 active:bg-red-500`;return{class:{[o]:!0,[l]:r==="success",[n]:r==="info",[s]:r==="warn",[a]:r==="error"}}}},B={},I={root:{class:e`mx-auto inline-block h-28 w-28 animate-spin`},circle:{class:e`fill-transparent stroke-current stroke-[4px] text-blue-800 [stroke-dasharray:200] [stroke-dashoffset:100]`}},L={root:{class:e`relative inline-block h-32 w-32 [&+label]:ris-label1-regular [&+label]:ml-8`},input:{class:e`peer h-full w-full cursor-pointer appearance-none rounded-full border-2 border-blue-800 bg-white outline-4 -outline-offset-4 outline-blue-800 hover:outline focus:outline active:outline-none disabled:cursor-not-allowed disabled:border-gray-600 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:outline-red-800 aria-[invalid]:active:outline-none aria-[invalid]:disabled:outline-none`},box:{class:e`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`},icon:{class:e`h-16 w-16 rounded-full bg-current`}},g=e`w-full`,T={root:({props:t})=>({class:{[e`relative`]:!0,[g]:!!t.fluid}}),pcInput:{root:({props:t})=>({class:{[b]:!0,[d]:!0,[g]:!!t.fluid}})},dropdown:{class:e`absolute inset-y-0 right-16`},option:{class:e`hover:bg-blue-100 data-[p-focus=true]:bg-blue-200`},optionGroup:{class:e`hover:bg-blue-100 data-[p-focus=true]:bg-blue-200`},overlay:{class:e`max-h-56 min-w-288 overflow-auto bg-white px-8 py-12 shadow-md`}},F={root:({props:t})=>{const o=e`ris-body1-regular min-h-56 border-2 border-blue-800 bg-white px-14 pb-12 pt-8 outline-4 -outline-offset-4 outline-blue-800 placeholder:text-gray-900 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline focus:outline disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-none`,r=e`w-full`;return{class:{[o]:!0,[r]:!!t.fluid}}}},E={message:({props:t})=>{var i;const o=e`mb-8 flex w-full flex-row items-center gap-8 border-l-4 p-16`,r=(i=t.message)==null?void 0:i.severity,l=e`border-l-green-900 bg-green-200`,n=e`border-l-red-900 bg-red-200`,s=e`border-l-yellow-900 bg-yellow-200`,a=e`border-l-blue-900 bg-blue-200`;return{class:{[o]:!0,[l]:r==="success",[n]:r==="error",[s]:r==="warn",[a]:r==="info"}}},messageContent:{class:e`flex w-full flex-row items-start justify-between gap-10`},messageIcon:({props:t})=>{var i;const o=e`mt-2 h-20 w-20 flex-none shrink-0`,r=((i=t.message)==null?void 0:i.severity)??"info",l=e`text-green-800`,n=e`text-red-800`,s=e`text-black`,a=e`text-blue-800`;return{class:{[o]:!0,[l]:r==="success",[n]:r==="error",[s]:r==="warn",[a]:r==="info"}}},messageText:{class:e`flex-grow text-black`},summary:{class:e`ris-label2-bold`},detail:{class:e`ris-label2-regular`},closeButton:({props:t})=>{var i;const o=e`rounded-sm p-2`,r=((i=t.message)==null?void 0:i.severity)??"info",l=e`hover:bg-green-400`,n=e`hover:bg-red-400`,s=e`hover:bg-yellow-400`,a=e`hover:bg-blue-400`;return{class:{[o]:!0,[l]:r==="success",[n]:r==="error",[s]:r==="warn",[a]:r==="info"}}},closeIcon:{class:e`text-black`}},R={root:({props:t,state:o})=>{const r=e`ris-body2-regular inline-flex h-48 items-center justify-between border-2 bg-white py-4 pl-16 pr-12 outline-4 -outline-offset-4`,l=e`cursor-pointer border-blue-800 outline-blue-800`,n=e`outline`,s=e`hover:outline`,a=e`cursor-not-allowed border-blue-500 text-blue-500`,i=e`border-red-800 bg-red-200 outline-red-800`,u=e`w-full`;return{class:{[r]:!0,[l]:!t.disabled,[n]:o.focused&&!t.disabled,[s]:!t.disabled,[u]:!!t.fluid,[a]:t.disabled,[i]:t.invalid},"aria-invalid":t.invalid?"true":null}},dropdown:{class:e`pl-12`},listContainer:{class:e`overflow-auto shadow-md`},label:{class:e`line-clamp-1 outline-none`},overlay:{class:e`bg-white`},option:({context:t})=>{const o=e`ris-body2-regular relative h-full min-h-48 w-full cursor-pointer px-24 py-16 after:absolute after:-bottom-1 after:left-8 after:right-8 after:border-b after:border-gray-300 after:content-[''] last:after:border-b-0 hover:bg-gray-100`,r=e`bg-gray-100`;return{class:{[o]:!0,[r]:t.focused}}}},V={pcInputText:{root:({props:t})=>({class:{[b]:!0,[d]:!0,"w-full":!!t.fluid}})}},j={list:{class:e`m-0 flex list-none flex-wrap items-center p-0 leading-none`},item:{class:e`flex-no-wrap ris-label1-regular my-2 flex items-center break-all`},itemLink:{class:e`inline-flex cursor-pointer items-center text-blue-800 outline-4 outline-offset-4 outline-blue-800 hover:underline focus:outline`},separator:{class:e`mx-6 flex items-center text-gray-600`}},G={node:{class:e`mb-24 last:mb-0 focus-visible:outline-none focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 [&>ul:first-of-type]:border-l-0`},nodeContent:({context:t})=>{const o=e`group ris-label2-bold flex w-full border-l-4 border-transparent py-10 pl-10 pr-20 text-blue-800`,r=e`cursor-pointer select-none`,l=e`focus-visible:outline-none focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`,n=e`border-l-blue-800 bg-blue-200 text-black`,s=e`hover:bg-blue-200`,a=e`hover:bg-blue-300`;return{class:{[o]:!0,[r]:!0,[n]:t.selected,[s]:!t.selected,[a]:t.selected,[l]:!0}}},nodeToggleButton:({context:t})=>{const o=e`inline-flex h-20 w-20 justify-center border-0 bg-transparent text-gray-900 outline-none hover:text-black group-hover:text-black`,r=e`hidden`;return{class:{[o]:!0,[r]:t.leaf}}},nodeChildren:()=>{const t=e`m-0 list-none border-l border-gray-600 p-0 pl-36 outline-none [&:not(ul)]:pl-0 [&>ul:first-of-type]:border-0`,o=e`focus-visible:outline-none focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`;return{class:{[t]:!0,[o]:!0}}},nodeLabel:({context:t})=>{const o=e`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`,r=e`text-black [&>*:last-child:is(span)]:text-gray-900`,l=e`[&>*:last-child]:group-hover:text-black`;return{class:{[o]:!0,[r]:t.selected,[l]:t.selected}}}},P={startsWith:"Beginnt mit",contains:"Enthält",notContains:"Enthält nicht",endsWith:"Endet mit",equals:"Gleich",notEquals:"Ungleich",noFilter:"Kein Filter",lt:"Weniger als",lte:"Weniger oder gleich",gt:"Größer als",gte:"Größer oder gleich",dateIs:"Datum ist",dateIsNot:"Datum ist nicht",dateBefore:"Datum ist vor",dateAfter:"Datum ist nach",clear:"Löschen",apply:"Anwenden",matchAll:"Alle erfüllen",matchAny:"Beliebige erfüllen",addRule:"Regel hinzufügen",removeRule:"Regel entfernen",accept:"Ja",reject:"Nein",choose:"Auswählen",upload:"Hochladen",cancel:"Abbrechen",completed:"Abgeschlossen",pending:"Ausstehend",fileSizeTypes:["B","KB","MB","GB","TB","PB","EB","ZB","YB"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],chooseYear:"Jahr wählen",chooseMonth:"Monat wählen",chooseDate:"Datum wählen",prevDecade:"Vorheriges Jahrzehnt",nextDecade:"Nächstes Jahrzehnt",prevYear:"Vorheriges Jahr",nextYear:"Nächstes Jahr",prevMonth:"Vorheriger Monat",nextMonth:"Nächster Monat",prevHour:"Vorherige Stunde",nextHour:"Nächste Stunde",prevMinute:"Vorherige Minute",nextMinute:"Nächste Minute",prevSecond:"Vorherige Sekunde",nextSecond:"Nächste Sekunde",am:"vorm.",pm:"nachm.",today:"Heute",weekHeader:"KW",firstDayOfWeek:1,showMonthAfterYear:!1,dateFormat:"dd.mm.yy",weak:"Schwach",medium:"Mittel",strong:"Stark",passwordPrompt:"Passwort eingeben",emptyFilterMessage:"Keine Ergebnisse gefunden",searchMessage:"{0} Ergebnisse verfügbar",selectionMessage:"{0} Elemente ausgewählt",emptySelectionMessage:"Kein Element ausgewählt",emptySearchMessage:"Keine Ergebnisse gefunden",fileChosenMessage:"{0} Dateien",noFileChosenMessage:"Keine Datei ausgewählt",emptyMessage:"Keine Optionen verfügbar",aria:{trueLabel:"Wahr",falseLabel:"Falsch",nullLabel:"Nicht ausgewählt",star:"1 Stern",stars:"{star} Sterne",selectAll:"Alle Elemente ausgewählt",unselectAll:"Alle Elemente abgewählt",close:"Schließen",previous:"Vorherige",next:"Nächste",navigation:"Navigation",scrollTop:"Nach oben scrollen",moveTop:"Nach oben bewegen",moveUp:"Nach oben bewegen",moveDown:"Nach unten bewegen",moveBottom:"Nach unten bewegen",moveToTarget:"Zum Ziel verschieben",moveToSource:"Zur Quelle verschieben",moveAllToTarget:"Alle zum Ziel verschieben",moveAllToSource:"Alle zur Quelle verschieben",pageLabel:"Seite {page}",firstPageLabel:"Erste Seite",lastPageLabel:"Letzte Seite",nextPageLabel:"Nächste Seite",prevPageLabel:"Vorherige Seite",rowsPerPageLabel:"Zeilen pro Seite",jumpToPageDropdownLabel:"Zu Seite springen (Dropdown)",jumpToPageInputLabel:"Zu Seite springen (Eingabe)",selectRow:"Zeile ausgewählt",unselectRow:"Zeile abgewählt",expandRow:"Zeile erweitert",collapseRow:"Zeile reduziert",showFilterMenu:"Filtermenü anzeigen",hideFilterMenu:"Filtermenü ausblenden",filterOperator:"Filteroperator",filterConstraint:"Filterbedingung",editRow:"Zeile bearbeiten",saveEdit:"Bearbeitung speichern",cancelEdit:"Bearbeitung abbrechen",listView:"Listenansicht",gridView:"Gitteransicht",slide:"Folie",slideNumber:"Folie {slideNumber}",zoomImage:"Bild vergrößern",zoomIn:"Vergrößern",zoomOut:"Verkleinern",rotateRight:"Rechts drehen",rotateLeft:"Links drehen",listLabel:"Optionsliste"}},Z={button:v,checkbox:m,confirmDialog:w,dialog:x,fileUpload:y,inputGroup:S,inputGroupAddon:k,inputText:D,message:A,password:B,progressSpinner:I,radioButton:L,textarea:F,toast:E,autocomplete:T,select:R,inputMask:V,breadcrumb:j,tree:G},J={deDE:P};exports.RisUiLocale=J;exports.RisUiTheme=Z;
|
package/dist/primevue/index.d.ts
CHANGED
@@ -18,6 +18,7 @@ export declare const RisUiTheme: {
|
|
18
18
|
select: import("primevue/select").SelectPassThroughOptions<any>;
|
19
19
|
inputMask: import("primevue/inputmask").InputMaskPassThroughOptions;
|
20
20
|
breadcrumb: import("primevue/breadcrumb").BreadcrumbPassThroughOptions;
|
21
|
+
tree: import("primevue/tree").TreePassThroughOptions<any>;
|
21
22
|
};
|
22
23
|
export declare const RisUiLocale: {
|
23
24
|
deDE: import("@primevue/core").PrimeVueLocaleOptions;
|
package/dist/primevue/index.js
CHANGED
@@ -1,20 +1,15 @@
|
|
1
|
-
const p = (t, ...o) => {
|
2
|
-
let r = t[0];
|
3
|
-
for (let n = 1, l = t.length; n < l; n++)
|
4
|
-
r += o[n - 1], r += t[n];
|
5
|
-
return r;
|
6
|
-
}, e = p, m = {
|
1
|
+
const p = (t, ...o) => String.raw({ raw: t }, ...o), e = p, v = {
|
7
2
|
root: ({ props: t, instance: o }) => {
|
8
|
-
const r = e`relative inline-flex max-w-full items-center justify-center gap-8 rounded-none text-center outline-4 outline-offset-4 outline-blue-800 focus:outline active:outline-none disabled:cursor-not-allowed disabled:outline-none`,
|
3
|
+
const r = e`relative inline-flex max-w-full items-center justify-center gap-8 rounded-none text-center outline-4 outline-offset-4 outline-blue-800 focus:outline active:outline-none disabled:cursor-not-allowed disabled:outline-none`, l = t.severity ?? "primary", n = e`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`, s = e`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`, a = e`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`, i = t.size ?? "normal";
|
9
4
|
let u = e`ris-body2-bold h-48 py-4`, c = e`ris-body1-bold h-64 py-4`;
|
10
5
|
return o.hasIcon && !t.label ? (u = e`${u} w-48 px-4`, c = e`${c} w-64 px-4`) : (u = e`${u} px-16`, c = e`${c} px-24`), {
|
11
6
|
class: {
|
12
7
|
[r]: !0,
|
13
|
-
[u]:
|
14
|
-
[c]:
|
15
|
-
[
|
16
|
-
[s]: !t.text &&
|
17
|
-
[
|
8
|
+
[u]: i === "normal",
|
9
|
+
[c]: i === "large",
|
10
|
+
[n]: !t.text && l === "primary",
|
11
|
+
[s]: !t.text && l === "secondary",
|
12
|
+
[a]: t.text && l === "primary"
|
18
13
|
}
|
19
14
|
};
|
20
15
|
},
|
@@ -25,16 +20,16 @@ const p = (t, ...o) => {
|
|
25
20
|
}
|
26
21
|
}),
|
27
22
|
loadingIcon: ({ props: t }) => {
|
28
|
-
const o = t.size ?? "normal", r = e`h-[1.34em] w-[1.34em]`,
|
23
|
+
const o = t.size ?? "normal", r = e`h-[1.34em] w-[1.34em]`, l = e`h-24 w-24`;
|
29
24
|
return {
|
30
25
|
class: {
|
31
26
|
[e`animate-spin`]: !0,
|
32
27
|
[r]: o === "normal",
|
33
|
-
[
|
28
|
+
[l]: o === "large"
|
34
29
|
}
|
35
30
|
};
|
36
31
|
}
|
37
|
-
},
|
32
|
+
}, m = {
|
38
33
|
root: {
|
39
34
|
class: e`relative inline-block h-24 min-h-24 w-24 min-w-24 [&+label]:ris-label1-regular [&+label]:ml-8`
|
40
35
|
},
|
@@ -47,7 +42,7 @@ const p = (t, ...o) => {
|
|
47
42
|
icon: {
|
48
43
|
class: e`h-12 w-12`
|
49
44
|
}
|
50
|
-
},
|
45
|
+
}, w = {
|
51
46
|
// All styling implemented in primevue/dialog
|
52
47
|
}, x = {
|
53
48
|
root: () => ({
|
@@ -90,46 +85,46 @@ const p = (t, ...o) => {
|
|
90
85
|
input: () => ({
|
91
86
|
class: "hidden"
|
92
87
|
})
|
93
|
-
},
|
88
|
+
}, S = {
|
94
89
|
root: {
|
95
90
|
class: e`has-[input:read-only]:curser-not-allowed inline-flex items-center gap-4 border-2 border-blue-800 bg-white px-16 py-0 outline-4 -outline-offset-4 outline-blue-800 has-[[aria-invalid]]:border-red-800 has-[input:disabled]:border-blue-500 has-[input:read-only]:border-blue-300 has-[[aria-invalid]]:bg-red-200 has-[input:disabled]:bg-white has-[input:read-only]:bg-blue-300 has-[[data-size=large]]:px-24 has-[input:disabled]:text-blue-500 has-[input:disabled]:outline-none has-[:focus]:outline has-[:hover]:outline has-[[aria-invalid]]:outline-red-800`
|
96
91
|
}
|
97
|
-
},
|
92
|
+
}, k = {
|
98
93
|
root: {
|
99
94
|
class: e`m-0 p-0`
|
100
95
|
}
|
101
|
-
},
|
96
|
+
}, b = e`border-2 border-blue-800 bg-white outline-4 -outline-offset-4 outline-blue-800 placeholder:text-gray-800 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline focus:outline disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-none`, d = e`ris-body2-regular h-48 px-16 py-4`, M = e`ris-body1-regular h-64 px-24 py-4`, N = e`ris-body2-regular h-[44px] p-0`, z = e`ris-body1-regular h-[60px] p-0`, D = {
|
102
97
|
root: ({ props: t, parent: o }) => {
|
103
|
-
const r = e`[&[type=password]:not(:placeholder-shown)]:text-[28px] [&[type=password]:not(:placeholder-shown)]:tracking-[4px] [&[type=password]]:w-full`,
|
98
|
+
const r = e`[&[type=password]:not(:placeholder-shown)]:text-[28px] [&[type=password]:not(:placeholder-shown)]:tracking-[4px] [&[type=password]]:w-full`, l = o.instance.$name === "InputGroup", n = e`bg-transparent placeholder:text-gray-900 focus:outline-none`, s = e`w-full`;
|
104
99
|
return {
|
105
100
|
class: {
|
106
|
-
[
|
107
|
-
[
|
101
|
+
[b]: !l,
|
102
|
+
[n]: l,
|
108
103
|
[s]: !!t.fluid,
|
109
104
|
[r]: !0,
|
110
|
-
[
|
111
|
-
[N]: (!t.size || t.size === "small") &&
|
112
|
-
[
|
113
|
-
[z]: t.size === "large" &&
|
105
|
+
[d]: (!t.size || t.size === "small") && !l,
|
106
|
+
[N]: (!t.size || t.size === "small") && l,
|
107
|
+
[M]: t.size === "large" && !l,
|
108
|
+
[z]: t.size === "large" && l
|
114
109
|
},
|
115
110
|
"data-size": t.size ?? "small"
|
116
111
|
};
|
117
112
|
}
|
118
113
|
}, A = {
|
119
114
|
root: ({ props: t, instance: o }) => {
|
120
|
-
const r = e`ris-body1-regular border-l-4 px-20 py-14`,
|
115
|
+
const r = e`ris-body1-regular border-l-4 px-20 py-14`, l = t.severity ?? "info", n = e`border-l-green-800 bg-green-200`, s = e`border-l-blue-800 bg-blue-200`, a = e`border-l-yellow-800 bg-yellow-200`, i = e`border-l-red-800 bg-red-200`, u = !!o.$slots.icon, h = {
|
121
116
|
success: "var(--ris-icon-success)",
|
122
117
|
info: "var(--ris-icon-info)",
|
123
118
|
warn: "var(--ris-icon-warn)",
|
124
119
|
error: "var(--ris-icon-error)"
|
125
|
-
}[
|
120
|
+
}[l], f = e`bg-[length:20px] bg-[16px_18px] bg-no-repeat pl-44`;
|
126
121
|
return {
|
127
122
|
class: {
|
128
123
|
[r]: !0,
|
129
|
-
[
|
130
|
-
[s]:
|
131
|
-
[
|
132
|
-
[
|
124
|
+
[n]: l === "success",
|
125
|
+
[s]: l === "info",
|
126
|
+
[a]: l === "warn",
|
127
|
+
[i]: l === "error",
|
133
128
|
[f]: !u
|
134
129
|
},
|
135
130
|
style: {
|
@@ -144,14 +139,14 @@ const p = (t, ...o) => {
|
|
144
139
|
class: e`flex-1`
|
145
140
|
},
|
146
141
|
closeButton: ({ props: t }) => {
|
147
|
-
const o = e`mt-4 inline-flex h-20 w-20 flex-none items-center justify-center rounded-sm p-2 leading-none`, r = t.severity ?? "info",
|
142
|
+
const o = e`mt-4 inline-flex h-20 w-20 flex-none items-center justify-center rounded-sm p-2 leading-none`, r = t.severity ?? "info", l = e`text-green-800 hover:bg-green-400 active:bg-green-500`, n = e`text-blue-800 hover:bg-blue-400 active:bg-blue-500`, s = e`text-black hover:bg-yellow-400 active:bg-yellow-500`, a = e`text-red-800 hover:bg-red-400 active:bg-red-500`;
|
148
143
|
return {
|
149
144
|
class: {
|
150
145
|
[o]: !0,
|
151
|
-
[
|
152
|
-
[
|
146
|
+
[l]: r === "success",
|
147
|
+
[n]: r === "info",
|
153
148
|
[s]: r === "warn",
|
154
|
-
[
|
149
|
+
[a]: r === "error"
|
155
150
|
}
|
156
151
|
};
|
157
152
|
}
|
@@ -164,7 +159,7 @@ const p = (t, ...o) => {
|
|
164
159
|
circle: {
|
165
160
|
class: e`fill-transparent stroke-current stroke-[4px] text-blue-800 [stroke-dasharray:200] [stroke-dashoffset:100]`
|
166
161
|
}
|
167
|
-
},
|
162
|
+
}, L = {
|
168
163
|
root: {
|
169
164
|
class: e`relative inline-block h-32 w-32 [&+label]:ris-label1-regular [&+label]:ml-8`
|
170
165
|
},
|
@@ -177,7 +172,7 @@ const p = (t, ...o) => {
|
|
177
172
|
icon: {
|
178
173
|
class: e`h-16 w-16 rounded-full bg-current`
|
179
174
|
}
|
180
|
-
}, g = e`w-full`,
|
175
|
+
}, g = e`w-full`, F = {
|
181
176
|
root: ({ props: t }) => ({
|
182
177
|
class: {
|
183
178
|
[e`relative`]: !0,
|
@@ -187,8 +182,8 @@ const p = (t, ...o) => {
|
|
187
182
|
pcInput: {
|
188
183
|
root: ({ props: t }) => ({
|
189
184
|
class: {
|
190
|
-
[d]: !0,
|
191
185
|
[b]: !0,
|
186
|
+
[d]: !0,
|
192
187
|
[g]: !!t.fluid
|
193
188
|
}
|
194
189
|
})
|
@@ -203,7 +198,7 @@ const p = (t, ...o) => {
|
|
203
198
|
overlay: {
|
204
199
|
class: e`max-h-56 min-w-288 overflow-auto bg-white px-8 py-12 shadow-md`
|
205
200
|
}
|
206
|
-
},
|
201
|
+
}, T = {
|
207
202
|
root: ({ props: t }) => {
|
208
203
|
const o = e`ris-body1-regular min-h-56 border-2 border-blue-800 bg-white px-14 pb-12 pt-8 outline-4 -outline-offset-4 outline-blue-800 placeholder:text-gray-900 read-only:cursor-not-allowed read-only:border-blue-300 read-only:bg-blue-300 hover:outline focus:outline disabled:border-blue-500 disabled:bg-white disabled:text-blue-500 disabled:outline-none aria-[invalid]:border-red-800 aria-[invalid]:bg-red-200 aria-[invalid]:outline-red-800 aria-[invalid]:disabled:outline-none`, r = e`w-full`;
|
209
204
|
return {
|
@@ -213,17 +208,17 @@ const p = (t, ...o) => {
|
|
213
208
|
}
|
214
209
|
};
|
215
210
|
}
|
216
|
-
},
|
211
|
+
}, E = {
|
217
212
|
message: ({ props: t }) => {
|
218
|
-
var
|
219
|
-
const o = e`mb-8 flex w-full flex-row items-center gap-8 border-l-4 p-16`, r = (
|
213
|
+
var i;
|
214
|
+
const o = e`mb-8 flex w-full flex-row items-center gap-8 border-l-4 p-16`, r = (i = t.message) == null ? void 0 : i.severity, l = e`border-l-green-900 bg-green-200`, n = e`border-l-red-900 bg-red-200`, s = e`border-l-yellow-900 bg-yellow-200`, a = e`border-l-blue-900 bg-blue-200`;
|
220
215
|
return {
|
221
216
|
class: {
|
222
217
|
[o]: !0,
|
223
|
-
[
|
224
|
-
[
|
218
|
+
[l]: r === "success",
|
219
|
+
[n]: r === "error",
|
225
220
|
[s]: r === "warn",
|
226
|
-
[
|
221
|
+
[a]: r === "info"
|
227
222
|
}
|
228
223
|
};
|
229
224
|
},
|
@@ -231,15 +226,15 @@ const p = (t, ...o) => {
|
|
231
226
|
class: e`flex w-full flex-row items-start justify-between gap-10`
|
232
227
|
},
|
233
228
|
messageIcon: ({ props: t }) => {
|
234
|
-
var
|
235
|
-
const o = e`mt-2 h-20 w-20 flex-none shrink-0`, r = ((
|
229
|
+
var i;
|
230
|
+
const o = e`mt-2 h-20 w-20 flex-none shrink-0`, r = ((i = t.message) == null ? void 0 : i.severity) ?? "info", l = e`text-green-800`, n = e`text-red-800`, s = e`text-black`, a = e`text-blue-800`;
|
236
231
|
return {
|
237
232
|
class: {
|
238
233
|
[o]: !0,
|
239
|
-
[
|
240
|
-
[
|
234
|
+
[l]: r === "success",
|
235
|
+
[n]: r === "error",
|
241
236
|
[s]: r === "warn",
|
242
|
-
[
|
237
|
+
[a]: r === "info"
|
243
238
|
}
|
244
239
|
};
|
245
240
|
},
|
@@ -253,33 +248,33 @@ const p = (t, ...o) => {
|
|
253
248
|
class: e`ris-label2-regular`
|
254
249
|
},
|
255
250
|
closeButton: ({ props: t }) => {
|
256
|
-
var
|
257
|
-
const o = e`rounded-sm p-2`, r = ((
|
251
|
+
var i;
|
252
|
+
const o = e`rounded-sm p-2`, r = ((i = t.message) == null ? void 0 : i.severity) ?? "info", l = e`hover:bg-green-400`, n = e`hover:bg-red-400`, s = e`hover:bg-yellow-400`, a = e`hover:bg-blue-400`;
|
258
253
|
return {
|
259
254
|
class: {
|
260
255
|
[o]: !0,
|
261
|
-
[
|
262
|
-
[
|
256
|
+
[l]: r === "success",
|
257
|
+
[n]: r === "error",
|
263
258
|
[s]: r === "warn",
|
264
|
-
[
|
259
|
+
[a]: r === "info"
|
265
260
|
}
|
266
261
|
};
|
267
262
|
},
|
268
263
|
closeIcon: {
|
269
264
|
class: e`text-black`
|
270
265
|
}
|
271
|
-
},
|
266
|
+
}, V = {
|
272
267
|
root: ({ props: t, state: o }) => {
|
273
|
-
const r = e`ris-body2-regular inline-flex h-48 items-center justify-between border-2 bg-white py-4 pl-16 pr-12 outline-4 -outline-offset-4
|
268
|
+
const r = e`ris-body2-regular inline-flex h-48 items-center justify-between border-2 bg-white py-4 pl-16 pr-12 outline-4 -outline-offset-4`, l = e`cursor-pointer border-blue-800 outline-blue-800`, n = e`outline`, s = e`hover:outline`, a = e`cursor-not-allowed border-blue-500 text-blue-500`, i = e`border-red-800 bg-red-200 outline-red-800`, u = e`w-full`;
|
274
269
|
return {
|
275
270
|
class: {
|
276
271
|
[r]: !0,
|
277
|
-
[
|
278
|
-
[
|
272
|
+
[l]: !t.disabled,
|
273
|
+
[n]: o.focused && !t.disabled,
|
279
274
|
[s]: !t.disabled,
|
280
275
|
[u]: !!t.fluid,
|
281
|
-
[
|
282
|
-
[
|
276
|
+
[a]: t.disabled,
|
277
|
+
[i]: t.invalid
|
283
278
|
},
|
284
279
|
"aria-invalid": t.invalid ? "true" : null
|
285
280
|
};
|
@@ -291,7 +286,7 @@ const p = (t, ...o) => {
|
|
291
286
|
class: e`overflow-auto shadow-md`
|
292
287
|
},
|
293
288
|
label: {
|
294
|
-
class: e`outline-none`
|
289
|
+
class: e`line-clamp-1 outline-none`
|
295
290
|
},
|
296
291
|
overlay: {
|
297
292
|
class: e`bg-white`
|
@@ -305,39 +300,75 @@ const p = (t, ...o) => {
|
|
305
300
|
}
|
306
301
|
};
|
307
302
|
}
|
308
|
-
},
|
303
|
+
}, G = {
|
309
304
|
pcInputText: {
|
310
305
|
root: ({ props: t }) => ({
|
311
306
|
class: {
|
312
|
-
[d]: !0,
|
313
307
|
[b]: !0,
|
308
|
+
[d]: !0,
|
314
309
|
"w-full": !!t.fluid
|
315
310
|
}
|
316
311
|
})
|
317
312
|
}
|
313
|
+
}, R = {
|
314
|
+
list: {
|
315
|
+
class: e`m-0 flex list-none flex-wrap items-center p-0 leading-none`
|
316
|
+
},
|
317
|
+
item: {
|
318
|
+
class: e`flex-no-wrap ris-label1-regular my-2 flex items-center break-all`
|
319
|
+
},
|
320
|
+
itemLink: {
|
321
|
+
class: e`inline-flex cursor-pointer items-center text-blue-800 outline-4 outline-offset-4 outline-blue-800 hover:underline focus:outline`
|
322
|
+
},
|
323
|
+
separator: {
|
324
|
+
class: e`mx-6 flex items-center text-gray-600`
|
325
|
+
}
|
318
326
|
}, Z = {
|
319
|
-
|
320
|
-
class:
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
}
|
334
|
-
}
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
327
|
+
node: {
|
328
|
+
class: e`mb-24 last:mb-0 focus-visible:outline-none focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800 [&>ul:first-of-type]:border-l-0`
|
329
|
+
},
|
330
|
+
nodeContent: ({ context: t }) => {
|
331
|
+
const o = e`group ris-label2-bold flex w-full border-l-4 border-transparent py-10 pl-10 pr-20 text-blue-800`, r = e`cursor-pointer select-none`, l = e`focus-visible:outline-none focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`, n = e`border-l-blue-800 bg-blue-200 text-black`, s = e`hover:bg-blue-200`, a = e`hover:bg-blue-300`;
|
332
|
+
return {
|
333
|
+
class: {
|
334
|
+
[o]: !0,
|
335
|
+
[r]: !0,
|
336
|
+
[n]: t.selected,
|
337
|
+
[s]: !t.selected,
|
338
|
+
[a]: t.selected,
|
339
|
+
[l]: !0
|
340
|
+
}
|
341
|
+
};
|
342
|
+
},
|
343
|
+
nodeToggleButton: ({ context: t }) => {
|
344
|
+
const o = e`inline-flex h-20 w-20 justify-center border-0 bg-transparent text-gray-900 outline-none hover:text-black group-hover:text-black`, r = e`hidden`;
|
345
|
+
return {
|
346
|
+
class: {
|
347
|
+
[o]: !0,
|
348
|
+
[r]: t.leaf
|
349
|
+
}
|
350
|
+
};
|
351
|
+
},
|
352
|
+
nodeChildren: () => {
|
353
|
+
const t = e`m-0 list-none border-l border-gray-600 p-0 pl-36 outline-none [&:not(ul)]:pl-0 [&>ul:first-of-type]:border-0`, o = e`focus-visible:outline-none focus-visible:outline-4 focus-visible:outline-offset-4 focus-visible:outline-blue-800`;
|
354
|
+
return {
|
355
|
+
class: {
|
356
|
+
[t]: !0,
|
357
|
+
[o]: !0
|
358
|
+
}
|
359
|
+
};
|
360
|
+
},
|
361
|
+
nodeLabel: ({ context: t }) => {
|
362
|
+
const o = e`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`, r = e`text-black [&>*:last-child:is(span)]:text-gray-900`, l = e`[&>*:last-child]:group-hover:text-black`;
|
363
|
+
return {
|
364
|
+
class: {
|
365
|
+
[o]: !0,
|
366
|
+
[r]: t.selected,
|
367
|
+
[l]: t.selected
|
368
|
+
}
|
369
|
+
};
|
370
|
+
}
|
371
|
+
}, j = {
|
341
372
|
startsWith: "Beginnt mit",
|
342
373
|
contains: "Enthält",
|
343
374
|
notContains: "Enthält nicht",
|
@@ -491,29 +522,30 @@ const p = (t, ...o) => {
|
|
491
522
|
rotateLeft: "Links drehen",
|
492
523
|
listLabel: "Optionsliste"
|
493
524
|
}
|
494
|
-
},
|
495
|
-
button:
|
496
|
-
checkbox:
|
497
|
-
confirmDialog:
|
525
|
+
}, J = {
|
526
|
+
button: v,
|
527
|
+
checkbox: m,
|
528
|
+
confirmDialog: w,
|
498
529
|
dialog: x,
|
499
530
|
fileUpload: y,
|
500
|
-
inputGroup:
|
501
|
-
inputGroupAddon:
|
531
|
+
inputGroup: S,
|
532
|
+
inputGroupAddon: k,
|
502
533
|
inputText: D,
|
503
534
|
message: A,
|
504
535
|
password: B,
|
505
536
|
progressSpinner: I,
|
506
|
-
radioButton:
|
507
|
-
textarea:
|
508
|
-
toast:
|
509
|
-
autocomplete:
|
510
|
-
select:
|
511
|
-
inputMask:
|
512
|
-
breadcrumb:
|
513
|
-
|
514
|
-
|
537
|
+
radioButton: L,
|
538
|
+
textarea: T,
|
539
|
+
toast: E,
|
540
|
+
autocomplete: F,
|
541
|
+
select: V,
|
542
|
+
inputMask: G,
|
543
|
+
breadcrumb: R,
|
544
|
+
tree: Z
|
545
|
+
}, P = {
|
546
|
+
deDE: j
|
515
547
|
};
|
516
548
|
export {
|
517
|
-
|
518
|
-
|
549
|
+
P as RisUiLocale,
|
550
|
+
J as RisUiTheme
|
519
551
|
};
|
package/dist/style.css
CHANGED
@@ -1 +1 @@
|
|
1
|
-
*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#eff2f4}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#dcdee1}input::placeholder,textarea::placeholder{opacity:1;color:#dcdee1}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}body{color:#0b0c0c;font-family:BundesSansWeb,Calibri,Verdana,Arial,Helvetica,sans-serif}::-moz-placeholder{font-family:BundesSansWeb,Calibri,Verdana,Arial,Helvetica,sans-serif;font-style:normal}::placeholder{font-family:BundesSansWeb,Calibri,Verdana,Arial,Helvetica,sans-serif;font-style:normal}: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")}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(179 201 214 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(179 201 214 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.ris-title-regular{font-size:64px;font-weight:400;line-height:1.1875}.ris-heading1-regular{font-size:48px;font-weight:400;line-height:1.2}.ris-heading1-bold{font-size:48px;font-weight:700;line-height:1.2}.ris-heading2-regular{font-size:32px;font-weight:400;line-height:1.1875}.ris-heading2-bold{font-size:32px;font-weight:700;line-height:1.1875}.ris-heading3-regular{font-size:26px;font-weight:400;line-height:1.23}.ris-heading3-bold{font-size:26px;font-weight:700;line-height:1.23}.ris-subhead-regular{font-size:20px;font-weight:400;line-height:1.5}.ris-body1-regular{font-size:18px;font-weight:400;line-height:1.5}.ris-body1-bold{font-size:18px;font-weight:700;line-height:1.5}.ris-body2-regular{font-size:16px;font-weight:400;line-height:1.5}.ris-body2-bold{font-size:16px;font-weight:700;line-height:1.5}.ris-body3-regular{font-size:14px;font-weight:400;line-height:1.5}.ris-body3-bold{font-size:14px;font-weight:700;line-height:1.5}.ris-label1-regular{font-size:18px;font-weight:400;line-height:1.25}.ris-label1-bold{font-size:18px;font-weight:700;line-height:1.25}.ris-label2-regular{font-size:16px;font-weight:400;line-height:1.25}.ris-label2-bold{font-size:16px;font-weight:700;line-height:1.25}.ris-label3-regular{font-size:14px;font-weight:400;line-height:1.25}.ris-label3-bold{font-size:14px;font-weight:700;line-height:1.25}.ris-link1-regular{color:#004b76;font-size:18px;font-weight:400;line-height:1.5;text-decoration:underline}.ris-link1-bold{color:#004b76;font-size:18px;font-weight:700;line-height:1.5;text-decoration:underline}.ris-link2-regular{color:#004b76;font-size:16px;font-weight:400;line-height:1.5;text-decoration:underline}.ris-link2-bold{color:#004b76;font-size:16px;font-weight:700;line-height:1.5;text-decoration:underline}.ris-link3-regular{color:#004b76;font-size:14px;font-weight:400;line-height:1.5;text-decoration:underline}.ris-link3-bold{color:#004b76;font-size:14px;font-weight:700;line-height:1.5;text-decoration:underline}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.collapse{visibility:collapse}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0rem;right:0rem;bottom:0rem;left:0rem}.inset-y-0{top:0rem;bottom:0rem}.right-12{right:.75rem}.right-16{right:1rem}.-order-1{order:-1}.m-0{margin:0rem}.mx-2{margin-left:.125rem;margin-right:.125rem}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.125rem;margin-bottom:.125rem}.my-auto{margin-top:auto;margin-bottom:auto}.mb-1{margin-bottom:.0625rem}.mb-16{margin-bottom:1rem}.mb-4{margin-bottom:.25rem}.mb-8{margin-bottom:.5rem}.mr-2{margin-right:.125rem}.mt-16{margin-top:1rem}.mt-2{margin-top:.125rem}.mt-4{margin-top:.25rem}.mt-40{margin-top:2.5rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.hidden{display:none}.h-12{height:.75rem}.h-16{height:1rem}.h-20{height:1.25rem}.h-24{height:1.5rem}.h-28{height:1.75rem}.h-32{height:2rem}.h-48{height:3rem}.h-64{height:4rem}.h-\[1\.34em\]{height:1.34em}.h-\[44px\]{height:44px}.h-\[60px\]{height:60px}.h-full{height:100%}.max-h-56{max-height:3.5rem}.max-h-\[90dvh\]{max-height:90dvh}.min-h-24{min-height:1.5rem}.min-h-48{min-height:3rem}.min-h-56{min-height:3.5rem}.w-1\/2{width:50%}.w-1\/4{width:25%}.w-12{width:.75rem}.w-128{width:8rem}.w-16{width:1rem}.w-2\/5{width:40%}.w-20{width:1.25rem}.w-24{width:1.5rem}.w-28{width:1.75rem}.w-32{width:2rem}.w-320{width:20rem}.w-48{width:3rem}.w-64{width:4rem}.w-\[1\.34em\]{width:1.34em}.w-\[95dvw\]{width:95dvw}.w-full{width:100%}.min-w-24{min-width:1.5rem}.min-w-288{min-width:18rem}.max-w-320{max-width:20rem}.max-w-\[25rem\]{max-width:25rem}.max-w-full{max-width:100%}.flex-1{flex:1 1 0%}.flex-none{flex:none}.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.list-none{list-style-type:none}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-10{gap:.625rem}.gap-12{gap:.75rem}.gap-16{gap:1rem}.gap-2{gap:.125rem}.gap-24{gap:1.5rem}.gap-32{gap:2rem}.gap-4{gap:.25rem}.gap-8{gap:.5rem}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.overflow-auto{overflow:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.border{border-width:1px}.border-2{border-width:2px}.border-l-4{border-left-width:4px}.border-blue-500{--tw-border-opacity: 1;border-color:rgb(179 201 214 / var(--tw-border-opacity))}.border-blue-800{--tw-border-opacity: 1;border-color:rgb(0 75 118 / var(--tw-border-opacity))}.border-red-800{--tw-border-opacity: 1;border-color:rgb(176 36 63 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-l-blue-800{--tw-border-opacity: 1;border-left-color:rgb(0 75 118 / var(--tw-border-opacity))}.border-l-blue-900{--tw-border-opacity: 1;border-left-color:rgb(0 51 80 / var(--tw-border-opacity))}.border-l-green-800{--tw-border-opacity: 1;border-left-color:rgb(0 101 56 / var(--tw-border-opacity))}.border-l-green-900{--tw-border-opacity: 1;border-left-color:rgb(0 62 34 / var(--tw-border-opacity))}.border-l-red-800{--tw-border-opacity: 1;border-left-color:rgb(176 36 63 / var(--tw-border-opacity))}.border-l-red-900{--tw-border-opacity: 1;border-left-color:rgb(142 0 27 / var(--tw-border-opacity))}.border-l-yellow-800{--tw-border-opacity: 1;border-left-color:rgb(218 194 60 / var(--tw-border-opacity))}.border-l-yellow-900{--tw-border-opacity: 1;border-left-color:rgb(195 169 30 / var(--tw-border-opacity))}.bg-black\/40{background-color:#0b0c0c66}.bg-blue-200{--tw-bg-opacity: 1;background-color:rgb(236 241 244 / var(--tw-bg-opacity))}.bg-blue-800{--tw-bg-opacity: 1;background-color:rgb(0 75 118 / var(--tw-bg-opacity))}.bg-current{background-color:currentColor}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(246 247 248 / var(--tw-bg-opacity))}.bg-green-200{--tw-bg-opacity: 1;background-color:rgb(204 235 221 / var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity: 1;background-color:rgb(249 229 236 / var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-yellow-200{--tw-bg-opacity: 1;background-color:rgb(255 249 210 / var(--tw-bg-opacity))}.bg-\[length\:20px\]{background-size:20px}.bg-\[16px_18px\]{background-position:16px 18px}.bg-no-repeat{background-repeat:no-repeat}.fill-transparent{fill:transparent}.stroke-current{stroke:currentColor}.stroke-\[4px\]{stroke-width:4px}.p-0{padding:0rem}.p-16{padding:1rem}.p-2{padding:.125rem}.p-4{padding:.25rem}.px-12{padding-left:.75rem;padding-right:.75rem}.px-14{padding-left:.875rem;padding-right:.875rem}.px-16{padding-left:1rem;padding-right:1rem}.px-20{padding-left:1.25rem;padding-right:1.25rem}.px-24{padding-left:1.5rem;padding-right:1.5rem}.px-4{padding-left:.25rem;padding-right:.25rem}.px-56{padding-left:3.5rem;padding-right:3.5rem}.px-8{padding-left:.5rem;padding-right:.5rem}.py-0{padding-top:0rem;padding-bottom:0rem}.py-10{padding-top:.625rem;padding-bottom:.625rem}.py-12{padding-top:.75rem;padding-bottom:.75rem}.py-14{padding-top:.875rem;padding-bottom:.875rem}.py-16{padding-top:1rem;padding-bottom:1rem}.py-24{padding-top:1.5rem;padding-bottom:1.5rem}.py-4{padding-top:.25rem;padding-bottom:.25rem}.py-44{padding-top:2.75rem;padding-bottom:2.75rem}.pb-12{padding-bottom:.75rem}.pl-12{padding-left:.75rem}.pl-16{padding-left:1rem}.pl-44{padding-left:2.75rem}.pr-12{padding-right:.75rem}.pt-8{padding-top:.5rem}.text-left{text-align:left}.text-center{text-align:center}.leading-none{line-height:1}.text-black{--tw-text-opacity: 1;color:rgb(11 12 12 / var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity: 1;color:rgb(179 201 214 / var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity: 1;color:rgb(0 75 118 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(184 189 195 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}.text-green-800{--tw-text-opacity: 1;color:rgb(0 101 56 / var(--tw-text-opacity))}.text-red-800{--tw-text-opacity: 1;color:rgb(176 36 63 / var(--tw-text-opacity))}.text-transparent{color:transparent}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.outline-2{outline-width:2px}.outline-4{outline-width:4px}.-outline-offset-4{outline-offset:-4px}.outline-offset-4{outline-offset:4px}.outline-blue-800{outline-color:#004b76}.outline-gray-500{outline-color:#cacdd2}.outline-red-800{outline-color:#b0243f}.\[stroke-dasharray\:200\]{stroke-dasharray:200}.\[stroke-dashoffset\:100\]{stroke-dashoffset:100}.\[\&\+label\]\:ris-label1-regular+label{font-size:18px;font-weight:400;line-height:1.25}.placeholder\:text-gray-800::-moz-placeholder{--tw-text-opacity: 1;color:rgb(111 119 133 / var(--tw-text-opacity))}.placeholder\:text-gray-800::placeholder{--tw-text-opacity: 1;color:rgb(111 119 133 / var(--tw-text-opacity))}.placeholder\:text-gray-900::-moz-placeholder{--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}.placeholder\:text-gray-900::placeholder{--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:-bottom-1:after{content:var(--tw-content);bottom:-.0625rem}.after\:left-8:after{content:var(--tw-content);left:.5rem}.after\:right-8:after{content:var(--tw-content);right:.5rem}.after\:border-b:after{content:var(--tw-content);border-bottom-width:1px}.after\:border-gray-300:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(237 238 240 / var(--tw-border-opacity))}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.last\:after\:border-b-0:last-child:after{content:var(--tw-content);border-bottom-width:0px}.read-only\:cursor-not-allowed:-moz-read-only{cursor:not-allowed}.read-only\:cursor-not-allowed:read-only{cursor:not-allowed}.read-only\:border-blue-300:-moz-read-only{--tw-border-opacity: 1;border-color:rgb(220 232 239 / var(--tw-border-opacity))}.read-only\:border-blue-300:read-only{--tw-border-opacity: 1;border-color:rgb(220 232 239 / var(--tw-border-opacity))}.read-only\:bg-blue-300:-moz-read-only{--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.read-only\:bg-blue-300:read-only{--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.hover\:border-gray-500:hover{--tw-border-opacity: 1;border-color:rgb(202 205 210 / var(--tw-border-opacity))}.hover\:bg-blue-100:hover{--tw-bg-opacity: 1;background-color:rgb(242 246 248 / var(--tw-bg-opacity))}.hover\:bg-blue-400:hover{--tw-bg-opacity: 1;background-color:rgb(204 219 228 / var(--tw-bg-opacity))}.hover\:bg-blue-700:hover{--tw-bg-opacity: 1;background-color:rgb(51 111 145 / var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(246 247 248 / var(--tw-bg-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity: 1;background-color:rgb(239 242 244 / var(--tw-bg-opacity))}.hover\:bg-green-400:hover{--tw-bg-opacity: 1;background-color:rgb(151 204 180 / var(--tw-bg-opacity))}.hover\:bg-red-400:hover{--tw-bg-opacity: 1;background-color:rgb(236 179 197 / var(--tw-bg-opacity))}.hover\:bg-white:hover{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.hover\:bg-yellow-400:hover{--tw-bg-opacity: 1;background-color:rgb(247 230 125 / var(--tw-bg-opacity))}.hover\:outline:hover{outline-style:solid}.focus\:border-gray-500:focus{--tw-border-opacity: 1;border-color:rgb(202 205 210 / var(--tw-border-opacity))}.focus\:bg-gray-200:focus{--tw-bg-opacity: 1;background-color:rgb(239 242 244 / var(--tw-bg-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:outline:focus{outline-style:solid}.active\:border-white:active{--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.active\:bg-blue-500:active{--tw-bg-opacity: 1;background-color:rgb(179 201 214 / var(--tw-bg-opacity))}.active\:bg-green-500:active{--tw-bg-opacity: 1;background-color:rgb(101 180 145 / var(--tw-bg-opacity))}.active\:bg-red-500:active{--tw-bg-opacity: 1;background-color:rgb(230 153 177 / var(--tw-bg-opacity))}.active\:bg-white:active{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.active\:bg-yellow-500:active{--tw-bg-opacity: 1;background-color:rgb(245 224 93 / var(--tw-bg-opacity))}.active\:text-blue-800:active{--tw-text-opacity: 1;color:rgb(0 75 118 / var(--tw-text-opacity))}.active\:outline-none:active{outline:2px solid transparent;outline-offset:2px}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:border-blue-500:disabled{--tw-border-opacity: 1;border-color:rgb(179 201 214 / var(--tw-border-opacity))}.disabled\:border-gray-600:disabled{--tw-border-opacity: 1;border-color:rgb(184 189 195 / var(--tw-border-opacity))}.disabled\:bg-gray-400:disabled{--tw-bg-opacity: 1;background-color:rgb(220 222 225 / var(--tw-bg-opacity))}.disabled\:bg-transparent:disabled{background-color:transparent}.disabled\:bg-white:disabled{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.disabled\:text-blue-500:disabled{--tw-text-opacity: 1;color:rgb(179 201 214 / var(--tw-text-opacity))}.disabled\:text-gray-500:disabled{--tw-text-opacity: 1;color:rgb(202 205 210 / var(--tw-text-opacity))}.disabled\:text-gray-600:disabled{--tw-text-opacity: 1;color:rgb(184 189 195 / var(--tw-text-opacity))}.disabled\:outline-none:disabled{outline:2px solid transparent;outline-offset:2px}.disabled\:hover\:bg-white:hover:disabled{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.peer:checked~.peer-checked\:text-blue-800{--tw-text-opacity: 1;color:rgb(0 75 118 / var(--tw-text-opacity))}.peer:disabled~.peer-disabled\:text-gray-600{--tw-text-opacity: 1;color:rgb(184 189 195 / var(--tw-text-opacity))}.has-\[svg\:first-child\]\:flex:has(svg:first-child){display:flex}.has-\[svg\:first-child\]\:gap-8:has(svg:first-child){gap:.5rem}.has-\[\[aria-invalid\]\]\:border-red-800:has([aria-invalid]){--tw-border-opacity: 1;border-color:rgb(176 36 63 / var(--tw-border-opacity))}.has-\[input\:disabled\]\:border-blue-500:has(input:disabled){--tw-border-opacity: 1;border-color:rgb(179 201 214 / var(--tw-border-opacity))}.has-\[input\:-moz-read-only\]\:border-blue-300:has(input:-moz-read-only){--tw-border-opacity: 1;border-color:rgb(220 232 239 / var(--tw-border-opacity))}.has-\[input\:read-only\]\:border-blue-300:has(input:read-only){--tw-border-opacity: 1;border-color:rgb(220 232 239 / var(--tw-border-opacity))}.has-\[\[aria-invalid\]\]\:bg-red-200:has([aria-invalid]){--tw-bg-opacity: 1;background-color:rgb(249 229 236 / var(--tw-bg-opacity))}.has-\[input\:disabled\]\:bg-white:has(input:disabled){--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.has-\[input\:-moz-read-only\]\:bg-blue-300:has(input:-moz-read-only){--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.has-\[input\:read-only\]\:bg-blue-300:has(input:read-only){--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.has-\[\[data-size\=large\]\]\:px-24:has([data-size=large]){padding-left:1.5rem;padding-right:1.5rem}.has-\[input\:disabled\]\:text-blue-500:has(input:disabled){--tw-text-opacity: 1;color:rgb(179 201 214 / var(--tw-text-opacity))}.has-\[input\:disabled\]\:outline-none:has(input:disabled){outline:2px solid transparent;outline-offset:2px}.has-\[\:focus\]\:outline:has(:focus){outline-style:solid}.has-\[\:hover\]\:outline:has(:hover){outline-style:solid}.has-\[\[aria-invalid\]\]\:outline-red-800:has([aria-invalid]){outline-color:#b0243f}.aria-\[invalid\]\:border-red-800[aria-invalid]{--tw-border-opacity: 1;border-color:rgb(176 36 63 / var(--tw-border-opacity))}.aria-\[invalid\]\:bg-red-200[aria-invalid]{--tw-bg-opacity: 1;background-color:rgb(249 229 236 / var(--tw-bg-opacity))}.aria-\[invalid\]\:outline-red-800[aria-invalid]{outline-color:#b0243f}.aria-\[invalid\]\:active\:outline-none:active[aria-invalid]{outline:2px solid transparent;outline-offset:2px}.aria-\[invalid\]\:disabled\:outline-none:disabled[aria-invalid]{outline:2px solid transparent;outline-offset:2px}.peer[aria-invalid]~.peer-aria-\[invalid\]\:text-red-800{--tw-text-opacity: 1;color:rgb(176 36 63 / var(--tw-text-opacity))}.data-\[variant\=active\]\:border-blue-800[data-variant=active]{--tw-border-opacity: 1;border-color:rgb(0 75 118 / var(--tw-border-opacity))}.data-\[p-focus\=true\]\:bg-blue-200[data-p-focus=true],.data-\[variant\=active\]\:bg-blue-200[data-variant=active]{--tw-bg-opacity: 1;background-color:rgb(236 241 244 / var(--tw-bg-opacity))}.\[\&\+label\]\:ml-8+label{margin-left:.5rem}.\[\&\[type\=password\]\:not\(\:-moz-placeholder-shown\)\]\:text-\[28px\][type=password]:not(:-moz-placeholder-shown){font-size:28px}.\[\&\[type\=password\]\:not\(\:placeholder-shown\)\]\:text-\[28px\][type=password]:not(:placeholder-shown){font-size:28px}.\[\&\[type\=password\]\:not\(\:-moz-placeholder-shown\)\]\:tracking-\[4px\][type=password]:not(:-moz-placeholder-shown){letter-spacing:4px}.\[\&\[type\=password\]\:not\(\:placeholder-shown\)\]\:tracking-\[4px\][type=password]:not(:placeholder-shown){letter-spacing:4px}.\[\&\[type\=password\]\]\:w-full[type=password]{width:100%}.ris-dialog-content svg:first-child{flex:none}input+small{font-size:14px;font-weight:400;line-height:1.25;margin-top:.125rem;display:flex;align-items:center;gap:.25rem;--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}input[aria-invalid=true]+small{--tw-text-opacity: 1;color:rgb(142 0 27 / var(--tw-text-opacity))}textarea+small{font-size:14px;font-weight:400;line-height:1.25;margin-top:.125rem;display:flex;align-items:center;gap:.25rem;--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}textarea[aria-invalid=true]+small{--tw-text-opacity: 1;color:rgb(142 0 27 / var(--tw-text-opacity))}div+small{font-size:14px;font-weight:400;line-height:1.25;margin-top:.25rem;display:flex;align-items:center;gap:.25rem;--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}div[aria-invalid=true]+small{--tw-text-opacity: 1;color:rgb(142 0 27 / var(--tw-text-opacity))}._truncate_186wk_2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:var(--4da4d868)}
|
1
|
+
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(179 201 214 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(179 201 214 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#eff2f4}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#dcdee1}input::placeholder,textarea::placeholder{opacity:1;color:#dcdee1}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}body{color:#0b0c0c;font-family:BundesSansWeb,Calibri,Verdana,Arial,Helvetica,sans-serif}::-moz-placeholder{font-family:BundesSansWeb,Calibri,Verdana,Arial,Helvetica,sans-serif;font-style:normal}::placeholder{font-family:BundesSansWeb,Calibri,Verdana,Arial,Helvetica,sans-serif;font-style:normal}: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")}.ris-title-regular{font-size:64px;font-weight:400;line-height:1.1875}.ris-heading1-regular{font-size:48px;font-weight:400;line-height:1.2}.ris-heading1-bold{font-size:48px;font-weight:700;line-height:1.2}.ris-heading2-regular{font-size:32px;font-weight:400;line-height:1.1875}.ris-heading2-bold{font-size:32px;font-weight:700;line-height:1.1875}.ris-heading3-regular{font-size:26px;font-weight:400;line-height:1.23}.ris-heading3-bold{font-size:26px;font-weight:700;line-height:1.23}.ris-subhead-regular{font-size:20px;font-weight:400;line-height:1.5}.ris-body1-regular{font-size:18px;font-weight:400;line-height:1.5}.ris-body1-bold{font-size:18px;font-weight:700;line-height:1.5}.ris-body2-regular{font-size:16px;font-weight:400;line-height:1.5}.ris-body2-bold{font-size:16px;font-weight:700;line-height:1.5}.ris-body3-regular{font-size:14px;font-weight:400;line-height:1.5}.ris-body3-bold{font-size:14px;font-weight:700;line-height:1.5}.ris-label1-regular{font-size:18px;font-weight:400;line-height:1.25}.ris-label1-bold{font-size:18px;font-weight:700;line-height:1.25}.ris-label2-regular{font-size:16px;font-weight:400;line-height:1.25}.ris-label2-bold{font-size:16px;font-weight:700;line-height:1.25}.ris-label3-regular{font-size:14px;font-weight:400;line-height:1.25}.ris-label3-bold{font-size:14px;font-weight:700;line-height:1.25}.ris-link1-regular{color:#004b76;font-size:18px;font-weight:400;line-height:1.5;text-decoration:underline}.ris-link1-bold{color:#004b76;font-size:18px;font-weight:700;line-height:1.5;text-decoration:underline}.ris-link2-regular{color:#004b76;font-size:16px;font-weight:400;line-height:1.5;text-decoration:underline}.ris-link2-bold{color:#004b76;font-size:16px;font-weight:700;line-height:1.5;text-decoration:underline}.ris-link3-regular{color:#004b76;font-size:14px;font-weight:400;line-height:1.5;text-decoration:underline}.ris-link3-bold{color:#004b76;font-size:14px;font-weight:700;line-height:1.5;text-decoration:underline}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.collapse{visibility:collapse}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0rem;right:0rem;bottom:0rem;left:0rem}.inset-y-0{top:0rem;bottom:0rem}.right-12{right:.75rem}.right-16{right:1rem}.-order-1{order:-1}.m-0{margin:0rem}.mx-2{margin-left:.125rem;margin-right:.125rem}.mx-6{margin-left:.375rem;margin-right:.375rem}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.125rem;margin-bottom:.125rem}.my-auto{margin-top:auto;margin-bottom:auto}.-ml-2{margin-left:-.125rem}.mb-1{margin-bottom:.0625rem}.mb-16{margin-bottom:1rem}.mb-24{margin-bottom:1.5rem}.mb-4{margin-bottom:.25rem}.mb-6{margin-bottom:.375rem}.mb-8{margin-bottom:.5rem}.mr-2{margin-right:.125rem}.mt-16{margin-top:1rem}.mt-2{margin-top:.125rem}.mt-4{margin-top:.25rem}.mt-40{margin-top:2.5rem}.line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.hidden{display:none}.h-12{height:.75rem}.h-16{height:1rem}.h-20{height:1.25rem}.h-24{height:1.5rem}.h-28{height:1.75rem}.h-32{height:2rem}.h-48{height:3rem}.h-64{height:4rem}.h-\[1\.34em\]{height:1.34em}.h-\[44px\]{height:44px}.h-\[60px\]{height:60px}.h-full{height:100%}.max-h-56{max-height:3.5rem}.max-h-\[90dvh\]{max-height:90dvh}.min-h-24{min-height:1.5rem}.min-h-48{min-height:3rem}.min-h-56{min-height:3.5rem}.w-1\/2{width:50%}.w-1\/4{width:25%}.w-12{width:.75rem}.w-128{width:8rem}.w-16{width:1rem}.w-2\/5{width:40%}.w-20{width:1.25rem}.w-24{width:1.5rem}.w-28{width:1.75rem}.w-32{width:2rem}.w-320{width:20rem}.w-48{width:3rem}.w-64{width:4rem}.w-\[1\.34em\]{width:1.34em}.w-\[95dvw\]{width:95dvw}.w-full{width:100%}.min-w-24{min-width:1.5rem}.min-w-288{min-width:18rem}.max-w-320{max-width:20rem}.max-w-\[25rem\]{max-width:25rem}.max-w-full{max-width:100%}.flex-1{flex:1 1 0%}.flex-none{flex:none}.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.list-none{list-style-type:none}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-10{gap:.625rem}.gap-12{gap:.75rem}.gap-16{gap:1rem}.gap-2{gap:.125rem}.gap-24{gap:1.5rem}.gap-32{gap:2rem}.gap-4{gap:.25rem}.gap-8{gap:.5rem}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.overflow-auto{overflow:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.break-all{word-break:break-all}.rounded-full{border-radius:9999px}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.border{border-width:1px}.border-0{border-width:0px}.border-2{border-width:2px}.border-l{border-left-width:1px}.border-l-4{border-left-width:4px}.border-blue-500{--tw-border-opacity: 1;border-color:rgb(179 201 214 / var(--tw-border-opacity))}.border-blue-800{--tw-border-opacity: 1;border-color:rgb(0 75 118 / var(--tw-border-opacity))}.border-gray-600{--tw-border-opacity: 1;border-color:rgb(184 189 195 / var(--tw-border-opacity))}.border-red-800{--tw-border-opacity: 1;border-color:rgb(176 36 63 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-l-blue-800{--tw-border-opacity: 1;border-left-color:rgb(0 75 118 / var(--tw-border-opacity))}.border-l-blue-900{--tw-border-opacity: 1;border-left-color:rgb(0 51 80 / var(--tw-border-opacity))}.border-l-green-800{--tw-border-opacity: 1;border-left-color:rgb(0 101 56 / var(--tw-border-opacity))}.border-l-green-900{--tw-border-opacity: 1;border-left-color:rgb(0 62 34 / var(--tw-border-opacity))}.border-l-red-800{--tw-border-opacity: 1;border-left-color:rgb(176 36 63 / var(--tw-border-opacity))}.border-l-red-900{--tw-border-opacity: 1;border-left-color:rgb(142 0 27 / var(--tw-border-opacity))}.border-l-yellow-800{--tw-border-opacity: 1;border-left-color:rgb(218 194 60 / var(--tw-border-opacity))}.border-l-yellow-900{--tw-border-opacity: 1;border-left-color:rgb(195 169 30 / var(--tw-border-opacity))}.bg-black\/40{background-color:#0b0c0c66}.bg-blue-200{--tw-bg-opacity: 1;background-color:rgb(236 241 244 / var(--tw-bg-opacity))}.bg-blue-800{--tw-bg-opacity: 1;background-color:rgb(0 75 118 / var(--tw-bg-opacity))}.bg-current{background-color:currentColor}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(246 247 248 / var(--tw-bg-opacity))}.bg-green-200{--tw-bg-opacity: 1;background-color:rgb(204 235 221 / var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity: 1;background-color:rgb(249 229 236 / var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-yellow-200{--tw-bg-opacity: 1;background-color:rgb(255 249 210 / var(--tw-bg-opacity))}.bg-\[length\:20px\]{background-size:20px}.bg-\[16px_18px\]{background-position:16px 18px}.bg-no-repeat{background-repeat:no-repeat}.fill-transparent{fill:transparent}.stroke-current{stroke:currentColor}.stroke-\[4px\]{stroke-width:4px}.p-0{padding:0rem}.p-16{padding:1rem}.p-2{padding:.125rem}.p-4{padding:.25rem}.px-12{padding-left:.75rem;padding-right:.75rem}.px-14{padding-left:.875rem;padding-right:.875rem}.px-16{padding-left:1rem;padding-right:1rem}.px-20{padding-left:1.25rem;padding-right:1.25rem}.px-24{padding-left:1.5rem;padding-right:1.5rem}.px-4{padding-left:.25rem;padding-right:.25rem}.px-56{padding-left:3.5rem;padding-right:3.5rem}.px-8{padding-left:.5rem;padding-right:.5rem}.py-0{padding-top:0rem;padding-bottom:0rem}.py-10{padding-top:.625rem;padding-bottom:.625rem}.py-12{padding-top:.75rem;padding-bottom:.75rem}.py-14{padding-top:.875rem;padding-bottom:.875rem}.py-16{padding-top:1rem;padding-bottom:1rem}.py-24{padding-top:1.5rem;padding-bottom:1.5rem}.py-4{padding-top:.25rem;padding-bottom:.25rem}.py-44{padding-top:2.75rem;padding-bottom:2.75rem}.pb-12{padding-bottom:.75rem}.pl-10{padding-left:.625rem}.pl-12{padding-left:.75rem}.pl-16{padding-left:1rem}.pl-36{padding-left:2.25rem}.pl-44{padding-left:2.75rem}.pr-12{padding-right:.75rem}.pr-20{padding-right:1.25rem}.pt-8{padding-top:.5rem}.text-left{text-align:left}.text-center{text-align:center}.leading-none{line-height:1}.text-black{--tw-text-opacity: 1;color:rgb(11 12 12 / var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity: 1;color:rgb(179 201 214 / var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity: 1;color:rgb(0 75 118 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(184 189 195 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}.text-green-800{--tw-text-opacity: 1;color:rgb(0 101 56 / var(--tw-text-opacity))}.text-red-800{--tw-text-opacity: 1;color:rgb(176 36 63 / var(--tw-text-opacity))}.text-transparent{color:transparent}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.outline-2{outline-width:2px}.outline-4{outline-width:4px}.-outline-offset-4{outline-offset:-4px}.outline-offset-4{outline-offset:4px}.outline-blue-800{outline-color:#004b76}.outline-gray-500{outline-color:#cacdd2}.outline-red-800{outline-color:#b0243f}.\[stroke-dasharray\:200\]{stroke-dasharray:200}.\[stroke-dashoffset\:100\]{stroke-dashoffset:100}.\[\&\+label\]\:ris-label1-regular+label{font-size:18px;font-weight:400;line-height:1.25}.\*\:w-full>*{width:100%}.\*\:outline-none>*{outline:2px solid transparent;outline-offset:2px}.placeholder\:text-gray-800::-moz-placeholder{--tw-text-opacity: 1;color:rgb(111 119 133 / var(--tw-text-opacity))}.placeholder\:text-gray-800::placeholder{--tw-text-opacity: 1;color:rgb(111 119 133 / var(--tw-text-opacity))}.placeholder\:text-gray-900::-moz-placeholder{--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}.placeholder\:text-gray-900::placeholder{--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:-bottom-1:after{content:var(--tw-content);bottom:-.0625rem}.after\:left-8:after{content:var(--tw-content);left:.5rem}.after\:right-8:after{content:var(--tw-content);right:.5rem}.after\:border-b:after{content:var(--tw-content);border-bottom-width:1px}.after\:border-gray-300:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(237 238 240 / var(--tw-border-opacity))}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.last\:mb-0:last-child{margin-bottom:0rem}.last\:after\:border-b-0:last-child:after{content:var(--tw-content);border-bottom-width:0px}.read-only\:cursor-not-allowed:-moz-read-only{cursor:not-allowed}.read-only\:cursor-not-allowed:read-only{cursor:not-allowed}.read-only\:border-blue-300:-moz-read-only{--tw-border-opacity: 1;border-color:rgb(220 232 239 / var(--tw-border-opacity))}.read-only\:border-blue-300:read-only{--tw-border-opacity: 1;border-color:rgb(220 232 239 / var(--tw-border-opacity))}.read-only\:bg-blue-300:-moz-read-only{--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.read-only\:bg-blue-300:read-only{--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.hover\:border-gray-500:hover{--tw-border-opacity: 1;border-color:rgb(202 205 210 / var(--tw-border-opacity))}.hover\:bg-blue-100:hover{--tw-bg-opacity: 1;background-color:rgb(242 246 248 / var(--tw-bg-opacity))}.hover\:bg-blue-200:hover{--tw-bg-opacity: 1;background-color:rgb(236 241 244 / var(--tw-bg-opacity))}.hover\:bg-blue-300:hover{--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.hover\:bg-blue-400:hover{--tw-bg-opacity: 1;background-color:rgb(204 219 228 / var(--tw-bg-opacity))}.hover\:bg-blue-700:hover{--tw-bg-opacity: 1;background-color:rgb(51 111 145 / var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(246 247 248 / var(--tw-bg-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity: 1;background-color:rgb(239 242 244 / var(--tw-bg-opacity))}.hover\:bg-green-400:hover{--tw-bg-opacity: 1;background-color:rgb(151 204 180 / var(--tw-bg-opacity))}.hover\:bg-red-400:hover{--tw-bg-opacity: 1;background-color:rgb(236 179 197 / var(--tw-bg-opacity))}.hover\:bg-white:hover{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.hover\:bg-yellow-400:hover{--tw-bg-opacity: 1;background-color:rgb(247 230 125 / var(--tw-bg-opacity))}.hover\:text-black:hover{--tw-text-opacity: 1;color:rgb(11 12 12 / var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.hover\:outline:hover{outline-style:solid}.focus\:border-gray-500:focus{--tw-border-opacity: 1;border-color:rgb(202 205 210 / var(--tw-border-opacity))}.focus\:bg-gray-200:focus{--tw-bg-opacity: 1;background-color:rgb(239 242 244 / var(--tw-bg-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:outline:focus{outline-style:solid}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:outline-4:focus-visible{outline-width:4px}.focus-visible\:outline-offset-4:focus-visible{outline-offset:4px}.focus-visible\:outline-blue-800:focus-visible{outline-color:#004b76}.active\:border-white:active{--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.active\:bg-blue-500:active{--tw-bg-opacity: 1;background-color:rgb(179 201 214 / var(--tw-bg-opacity))}.active\:bg-green-500:active{--tw-bg-opacity: 1;background-color:rgb(101 180 145 / var(--tw-bg-opacity))}.active\:bg-red-500:active{--tw-bg-opacity: 1;background-color:rgb(230 153 177 / var(--tw-bg-opacity))}.active\:bg-white:active{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.active\:bg-yellow-500:active{--tw-bg-opacity: 1;background-color:rgb(245 224 93 / var(--tw-bg-opacity))}.active\:text-blue-800:active{--tw-text-opacity: 1;color:rgb(0 75 118 / var(--tw-text-opacity))}.active\:outline-none:active{outline:2px solid transparent;outline-offset:2px}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:border-blue-500:disabled{--tw-border-opacity: 1;border-color:rgb(179 201 214 / var(--tw-border-opacity))}.disabled\:border-gray-600:disabled{--tw-border-opacity: 1;border-color:rgb(184 189 195 / var(--tw-border-opacity))}.disabled\:bg-gray-400:disabled{--tw-bg-opacity: 1;background-color:rgb(220 222 225 / var(--tw-bg-opacity))}.disabled\:bg-transparent:disabled{background-color:transparent}.disabled\:bg-white:disabled{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.disabled\:text-blue-500:disabled{--tw-text-opacity: 1;color:rgb(179 201 214 / var(--tw-text-opacity))}.disabled\:text-gray-500:disabled{--tw-text-opacity: 1;color:rgb(202 205 210 / var(--tw-text-opacity))}.disabled\:text-gray-600:disabled{--tw-text-opacity: 1;color:rgb(184 189 195 / var(--tw-text-opacity))}.disabled\:outline-none:disabled{outline:2px solid transparent;outline-offset:2px}.disabled\:hover\:bg-white:hover:disabled{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.group:hover .group-hover\:text-black{--tw-text-opacity: 1;color:rgb(11 12 12 / var(--tw-text-opacity))}.peer:checked~.peer-checked\:text-blue-800{--tw-text-opacity: 1;color:rgb(0 75 118 / var(--tw-text-opacity))}.peer:disabled~.peer-disabled\:text-gray-600{--tw-text-opacity: 1;color:rgb(184 189 195 / var(--tw-text-opacity))}.has-\[svg\:first-child\]\:flex:has(svg:first-child){display:flex}.has-\[svg\:first-child\]\:gap-8:has(svg:first-child){gap:.5rem}.has-\[\[aria-invalid\]\]\:border-red-800:has([aria-invalid]){--tw-border-opacity: 1;border-color:rgb(176 36 63 / var(--tw-border-opacity))}.has-\[input\:disabled\]\:border-blue-500:has(input:disabled){--tw-border-opacity: 1;border-color:rgb(179 201 214 / var(--tw-border-opacity))}.has-\[input\:-moz-read-only\]\:border-blue-300:has(input:-moz-read-only){--tw-border-opacity: 1;border-color:rgb(220 232 239 / var(--tw-border-opacity))}.has-\[input\:read-only\]\:border-blue-300:has(input:read-only){--tw-border-opacity: 1;border-color:rgb(220 232 239 / var(--tw-border-opacity))}.has-\[\[aria-invalid\]\]\:bg-red-200:has([aria-invalid]){--tw-bg-opacity: 1;background-color:rgb(249 229 236 / var(--tw-bg-opacity))}.has-\[input\:disabled\]\:bg-white:has(input:disabled){--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.has-\[input\:-moz-read-only\]\:bg-blue-300:has(input:-moz-read-only){--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.has-\[input\:read-only\]\:bg-blue-300:has(input:read-only){--tw-bg-opacity: 1;background-color:rgb(220 232 239 / var(--tw-bg-opacity))}.has-\[\[data-size\=large\]\]\:px-24:has([data-size=large]){padding-left:1.5rem;padding-right:1.5rem}.has-\[input\:disabled\]\:text-blue-500:has(input:disabled){--tw-text-opacity: 1;color:rgb(179 201 214 / var(--tw-text-opacity))}.has-\[input\:disabled\]\:outline-none:has(input:disabled){outline:2px solid transparent;outline-offset:2px}.has-\[\:focus\]\:outline:has(:focus){outline-style:solid}.has-\[\:hover\]\:outline:has(:hover){outline-style:solid}.has-\[\[aria-invalid\]\]\:outline-red-800:has([aria-invalid]){outline-color:#b0243f}.aria-\[invalid\]\:border-red-800[aria-invalid]{--tw-border-opacity: 1;border-color:rgb(176 36 63 / var(--tw-border-opacity))}.aria-\[invalid\]\:bg-red-200[aria-invalid]{--tw-bg-opacity: 1;background-color:rgb(249 229 236 / var(--tw-bg-opacity))}.aria-\[invalid\]\:outline-red-800[aria-invalid]{outline-color:#b0243f}.aria-\[invalid\]\:active\:outline-none:active[aria-invalid]{outline:2px solid transparent;outline-offset:2px}.aria-\[invalid\]\:disabled\:outline-none:disabled[aria-invalid]{outline:2px solid transparent;outline-offset:2px}.peer[aria-invalid]~.peer-aria-\[invalid\]\:text-red-800{--tw-text-opacity: 1;color:rgb(176 36 63 / var(--tw-text-opacity))}.data-\[variant\=active\]\:border-blue-800[data-variant=active]{--tw-border-opacity: 1;border-color:rgb(0 75 118 / var(--tw-border-opacity))}.data-\[p-focus\=true\]\:bg-blue-200[data-p-focus=true],.data-\[variant\=active\]\:bg-blue-200[data-variant=active]{--tw-bg-opacity: 1;background-color:rgb(236 241 244 / var(--tw-bg-opacity))}.\[\&\+label\]\:ml-8+label{margin-left:.5rem}.\[\&\:not\(ul\)\]\:pl-0:not(ul){padding-left:0rem}.group:hover .\[\&\>\*\:first-child\]\:group-hover\:underline>*:first-child{text-decoration-line:underline}.\[\&\>\*\:last-child\:is\(span\)\]\:text-gray-900>*:last-child:is(span){--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}.group:hover .\[\&\>\*\:last-child\]\:group-hover\:text-black>*:last-child{--tw-text-opacity: 1;color:rgb(11 12 12 / var(--tw-text-opacity))}.group:hover .\[\&\>\*\:last-child\]\:group-hover\:no-underline>*:last-child{text-decoration-line:none}.\[\&\>ul\:first-of-type\]\:border-0>ul:first-of-type{border-width:0px}.\[\&\>ul\:first-of-type\]\:border-l-0>ul:first-of-type{border-left-width:0px}.\[\&\[type\=password\]\:not\(\:-moz-placeholder-shown\)\]\:text-\[28px\][type=password]:not(:-moz-placeholder-shown){font-size:28px}.\[\&\[type\=password\]\:not\(\:placeholder-shown\)\]\:text-\[28px\][type=password]:not(:placeholder-shown){font-size:28px}.\[\&\[type\=password\]\:not\(\:-moz-placeholder-shown\)\]\:tracking-\[4px\][type=password]:not(:-moz-placeholder-shown){letter-spacing:4px}.\[\&\[type\=password\]\:not\(\:placeholder-shown\)\]\:tracking-\[4px\][type=password]:not(:placeholder-shown){letter-spacing:4px}.\[\&\[type\=password\]\]\:w-full[type=password]{width:100%}.ris-dialog-content svg:first-child{flex:none}input+small{font-size:14px;font-weight:400;line-height:1.25;margin-top:.125rem;display:flex;align-items:center;gap:.25rem;--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}input[aria-invalid=true]+small{--tw-text-opacity: 1;color:rgb(142 0 27 / var(--tw-text-opacity))}textarea+small{font-size:14px;font-weight:400;line-height:1.25;margin-top:.125rem;display:flex;align-items:center;gap:.25rem;--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}textarea[aria-invalid=true]+small{--tw-text-opacity: 1;color:rgb(142 0 27 / var(--tw-text-opacity))}div+small{font-size:14px;font-weight:400;line-height:1.25;margin-top:.25rem;display:flex;align-items:center;gap:.25rem;--tw-text-opacity: 1;color:rgb(78 89 106 / var(--tw-text-opacity))}div[aria-invalid=true]+small{--tw-text-opacity: 1;color:rgb(142 0 27 / var(--tw-text-opacity))}div[data-pc-section=nodecontent]:has(+ul[data-pc-section=nodechildren] li div[data-pc-section=nodecontent][data-p-selected=true]){--tw-border-opacity: 1;border-left-color:rgb(184 189 195 / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(246 247 248 / var(--tw-bg-opacity))}div[data-pc-section=nodecontent]:has(+ul[data-pc-section=nodechildren] li div[data-pc-section=nodecontent][data-p-selected=true]):hover{--tw-bg-opacity: 1;background-color:rgb(236 241 244 / var(--tw-bg-opacity))}._truncate_186wk_2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:var(--4da4d868)}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@digitalservicebund/ris-ui",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.5.1",
|
4
4
|
"description": "Component library for NeuRIS",
|
5
5
|
"author": "digitalservicebund",
|
6
6
|
"license": "GPL-3.0-only",
|
@@ -56,50 +56,46 @@
|
|
56
56
|
"vue": "^3.0.0"
|
57
57
|
},
|
58
58
|
"devDependencies": {
|
59
|
-
"@
|
60
|
-
"@commitlint/config-conventional": "~19.2.2",
|
59
|
+
"@commitlint/config-conventional": "~19.5.0",
|
61
60
|
"@digitalservice4germany/angie": "~1.2.0",
|
62
61
|
"@digitalservice4germany/style-dictionary": "~2.0.0",
|
63
|
-
"@eslint/compat": "~1.
|
64
|
-
"@eslint/js": "~9.
|
65
|
-
"@iconify-json/material-symbols": "
|
66
|
-
"@iconify-json/mdi": "
|
67
|
-
"@iconify/vue": "
|
68
|
-
"@storybook/addon-essentials": "~8.2
|
69
|
-
"@storybook/
|
70
|
-
"@storybook/
|
71
|
-
"@storybook/
|
72
|
-
"@storybook/
|
73
|
-
"@storybook/
|
74
|
-
"@
|
75
|
-
"@
|
76
|
-
"@
|
77
|
-
"@
|
78
|
-
"@
|
79
|
-
"@
|
80
|
-
"@testing-library/vue": "^8.1.0",
|
81
|
-
"@vitejs/plugin-vue": "~5.1.2",
|
82
|
-
"@vue/test-utils": "^2.4.6",
|
62
|
+
"@eslint/compat": "~1.2.2",
|
63
|
+
"@eslint/js": "~9.14.0",
|
64
|
+
"@iconify-json/material-symbols": "~1.2.6",
|
65
|
+
"@iconify-json/mdi": "~1.2.1",
|
66
|
+
"@iconify/vue": "~4.1.2",
|
67
|
+
"@storybook/addon-essentials": "~8.4.2",
|
68
|
+
"@storybook/blocks": "~8.4.2",
|
69
|
+
"@storybook/manager-api": "~8.4.2",
|
70
|
+
"@storybook/theming": "~8.4.2",
|
71
|
+
"@storybook/vue3": "~8.4.2",
|
72
|
+
"@storybook/vue3-vite": "~8.4.2",
|
73
|
+
"@testing-library/jest-dom": "~6.6.3",
|
74
|
+
"@testing-library/user-event": "~14.5.2",
|
75
|
+
"@testing-library/vue": "~8.1.0",
|
76
|
+
"@types/lodash": "^4.17.13",
|
77
|
+
"@vitejs/plugin-vue": "~5.1.4",
|
78
|
+
"@vue/test-utils": "~2.4.6",
|
83
79
|
"autoprefixer": "~10.4.20",
|
84
|
-
"eslint": "~9.
|
80
|
+
"eslint": "~9.14.0",
|
85
81
|
"eslint-config-prettier": "~9.1.0",
|
86
|
-
"globals": "~15.
|
87
|
-
"jsdom": "
|
82
|
+
"globals": "~15.12.0",
|
83
|
+
"jsdom": "~25.0.1",
|
88
84
|
"license-checker": "~25.0.1",
|
89
|
-
"
|
90
|
-
"msw
|
91
|
-
"
|
85
|
+
"lodash": "^4.17.21",
|
86
|
+
"msw": "~2.6.0",
|
87
|
+
"msw-storybook-addon": "~2.0.3",
|
92
88
|
"prettier": "~3.3.3",
|
93
|
-
"prettier-plugin-tailwindcss": "~0.6.
|
94
|
-
"storybook": "~8.2
|
95
|
-
"storybook-vue3-router": "
|
96
|
-
"tailwindcss": "~3.4.
|
97
|
-
"typescript": "~5.
|
98
|
-
"typescript-eslint": "~8.
|
99
|
-
"unplugin-icons": "~0.
|
100
|
-
"vite": "~5.4.
|
101
|
-
"vitest": "
|
102
|
-
"vue-tsc": "~2.
|
89
|
+
"prettier-plugin-tailwindcss": "~0.6.8",
|
90
|
+
"storybook": "~8.4.2",
|
91
|
+
"storybook-vue3-router": "~5.0.0",
|
92
|
+
"tailwindcss": "~3.4.14",
|
93
|
+
"typescript": "~5.6.3",
|
94
|
+
"typescript-eslint": "~8.13.0",
|
95
|
+
"unplugin-icons": "~0.20.0",
|
96
|
+
"vite": "~5.4.10",
|
97
|
+
"vitest": "~2.1.4",
|
98
|
+
"vue-tsc": "~2.1.10"
|
103
99
|
},
|
104
100
|
"msw": {
|
105
101
|
"workerDirectory": [
|