@digitalservicebund/ris-ui 3.10.0 → 3.11.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/RisChipsInput/RisChipsInput.vue.d.ts +1 -1
- package/dist/components/RisCopyableLabel/RisCopyableLabel.vue.d.ts +1 -1
- package/dist/components/RisExpandableText/RisExpandableText.vue.d.ts +3 -73
- package/dist/components/RisGhostButton/RisGhostButton.vue.d.ts +3 -5
- package/dist/components/RisPaginator/RisPaginator.vue.d.ts +1 -1
- package/dist/components/RisSingleAccordion/RisSingleAccordion.vue.d.ts +5 -34
- package/dist/components/index.cjs +37 -21
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +1561 -1735
- package/dist/components/index.js.map +1 -1
- package/dist/mockServiceWorker.js +91 -54
- package/dist/primevue/index.cjs +1 -1
- package/dist/primevue/index.cjs.map +1 -1
- package/dist/primevue/index.d.ts +3 -0
- package/dist/primevue/index.js +71 -52
- package/dist/primevue/index.js.map +1 -1
- package/dist/primevue/tooltip/tooltip.d.ts +3 -0
- package/dist/style.css +1 -1
- package/package.json +26 -26
|
@@ -7,7 +7,7 @@ type __VLS_Props = {
|
|
|
7
7
|
type __VLS_PublicProps = __VLS_Props & {
|
|
8
8
|
modelValue: string[];
|
|
9
9
|
};
|
|
10
|
-
declare const _default: import("vue").DefineComponent<__VLS_PublicProps,
|
|
10
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
11
|
"update:modelValue": (value: string[]) => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
13
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
@@ -14,7 +14,7 @@ type __VLS_Props = {
|
|
|
14
14
|
*/
|
|
15
15
|
name?: string;
|
|
16
16
|
};
|
|
17
|
-
declare const _default: import("vue").DefineComponent<__VLS_Props,
|
|
17
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
18
|
value: string;
|
|
19
19
|
name: string;
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -11,84 +11,14 @@ type __VLS_Props = {
|
|
|
11
11
|
*/
|
|
12
12
|
tolerance?: number;
|
|
13
13
|
};
|
|
14
|
-
declare const expanded: import("vue").ModelRef<boolean, string, boolean, boolean>;
|
|
15
|
-
declare const canExpand: import("vue").Ref<boolean, boolean>;
|
|
16
|
-
declare const textId: string;
|
|
17
14
|
type __VLS_PublicProps = __VLS_Props & {
|
|
18
15
|
"expanded"?: boolean;
|
|
19
16
|
};
|
|
20
|
-
declare const __VLS_ctx: {
|
|
21
|
-
$style: Record<string, string> & __VLS_PrettifyGlobal<{} & {
|
|
22
|
-
"truncate": string;
|
|
23
|
-
}>;
|
|
24
|
-
$: import("vue").ComponentInternalInstance;
|
|
25
|
-
$data: {};
|
|
26
|
-
$props: {
|
|
27
|
-
readonly length?: number | undefined;
|
|
28
|
-
readonly tolerance?: number | undefined;
|
|
29
|
-
readonly expanded?: boolean | undefined;
|
|
30
|
-
readonly "onUpdate:expanded"?: ((value: boolean) => any) | undefined;
|
|
31
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
32
|
-
$attrs: {
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
35
|
-
$refs: {
|
|
36
|
-
[x: string]: unknown;
|
|
37
|
-
};
|
|
38
|
-
$slots: Readonly<{
|
|
39
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
40
|
-
}>;
|
|
41
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
42
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
43
|
-
$host: Element | null;
|
|
44
|
-
$emit: (event: "update:expanded", value: boolean) => void;
|
|
45
|
-
$el: any;
|
|
46
|
-
$options: import("vue").ComponentOptionsBase<Readonly<__VLS_PublicProps> & Readonly<{
|
|
47
|
-
"onUpdate:expanded"?: ((value: boolean) => any) | undefined;
|
|
48
|
-
}>, {
|
|
49
|
-
expanded: typeof expanded;
|
|
50
|
-
canExpand: typeof canExpand;
|
|
51
|
-
textId: typeof textId;
|
|
52
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
53
|
-
"update:expanded": (value: boolean) => any;
|
|
54
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
55
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
56
|
-
created?: (() => void) | (() => void)[];
|
|
57
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
58
|
-
mounted?: (() => void) | (() => void)[];
|
|
59
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
60
|
-
updated?: (() => void) | (() => void)[];
|
|
61
|
-
activated?: (() => void) | (() => void)[];
|
|
62
|
-
deactivated?: (() => void) | (() => void)[];
|
|
63
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
64
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
65
|
-
destroyed?: (() => void) | (() => void)[];
|
|
66
|
-
unmounted?: (() => void) | (() => void)[];
|
|
67
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
68
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
69
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
70
|
-
};
|
|
71
|
-
$forceUpdate: () => void;
|
|
72
|
-
$nextTick: typeof import("vue").nextTick;
|
|
73
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
74
|
-
length?: number;
|
|
75
|
-
tolerance?: number;
|
|
76
|
-
"onUpdate:expanded"?: ((value: boolean) => any) | undefined;
|
|
77
|
-
expanded: boolean;
|
|
78
|
-
canExpand: boolean;
|
|
79
|
-
textId: typeof textId;
|
|
80
|
-
$primevue: {
|
|
81
|
-
config: import("@primevue/core").PrimeVueConfiguration;
|
|
82
|
-
};
|
|
83
|
-
$toast: import("primevue").ToastServiceMethods;
|
|
84
|
-
$confirm: import("primevue").ConfirmationServiceMethods;
|
|
85
|
-
$dialog: import("primevue").DialogServiceMethods;
|
|
86
|
-
};
|
|
87
17
|
declare var __VLS_1: {};
|
|
88
|
-
type __VLS_Slots =
|
|
18
|
+
type __VLS_Slots = {} & {
|
|
89
19
|
default?: (props: typeof __VLS_1) => any;
|
|
90
|
-
}
|
|
91
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
20
|
+
};
|
|
21
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
92
22
|
"update:expanded": (value: boolean) => any;
|
|
93
23
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
94
24
|
"onUpdate:expanded"?: ((value: boolean) => any) | undefined;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
|
|
2
1
|
declare var __VLS_1: {};
|
|
3
|
-
type __VLS_Slots =
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
4
3
|
default?: (props: typeof __VLS_1) => any;
|
|
5
|
-
}
|
|
6
|
-
declare const
|
|
7
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
6
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
9
7
|
export default _default;
|
|
10
8
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -3,7 +3,7 @@ type __VLS_Props = PaginatorProps & {
|
|
|
3
3
|
prevButtonLabel?: string;
|
|
4
4
|
nextButtonLabel?: string;
|
|
5
5
|
};
|
|
6
|
-
declare const _default: import("vue").DefineComponent<__VLS_Props,
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
7
|
page: (value: PageState) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
9
|
onPage?: ((value: PageState) => any) | undefined;
|
|
@@ -1,44 +1,15 @@
|
|
|
1
|
-
import MaterialSymbolsExpandCircleDownRounded from "~icons/material-symbols/expand-circle-down-rounded";
|
|
2
|
-
import MaterialSymbolsExpandCircleDownOutlineRounded from "~icons/material-symbols/expand-circle-down-outline-rounded";
|
|
3
|
-
import MaterialSymbolsExpandCircleUpRounded from "~icons/material-symbols/expand-circle-up-rounded";
|
|
4
|
-
import MaterialSymbolsExpandCircleUpOutlineRounded from "~icons/material-symbols/expand-circle-up-outline-rounded";
|
|
5
|
-
import Accordion from "primevue/accordion";
|
|
6
|
-
import AccordionPanel from "primevue/accordionpanel";
|
|
7
|
-
import AccordionHeader from "primevue/accordionheader";
|
|
8
|
-
import AccordionContent from "primevue/accordioncontent";
|
|
9
|
-
declare const isHovered: import("vue").Ref<boolean, boolean>;
|
|
10
1
|
type __VLS_Props = {
|
|
11
2
|
headerCollapsed: string;
|
|
12
3
|
headerExpanded: string;
|
|
13
4
|
};
|
|
14
|
-
declare const activePanel: import("vue").WritableComputedRef<"0" | "", "0" | "">;
|
|
15
|
-
declare const accordionHeaderClasses = "flex flex-row space-x-8 py-24 items-center";
|
|
16
5
|
type __VLS_PublicProps = __VLS_Props & {
|
|
17
6
|
modelValue?: boolean;
|
|
18
7
|
};
|
|
19
|
-
declare
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
declare const __VLS_self: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
25
|
-
MaterialSymbolsExpandCircleDownRounded: typeof MaterialSymbolsExpandCircleDownRounded;
|
|
26
|
-
MaterialSymbolsExpandCircleDownOutlineRounded: typeof MaterialSymbolsExpandCircleDownOutlineRounded;
|
|
27
|
-
MaterialSymbolsExpandCircleUpRounded: typeof MaterialSymbolsExpandCircleUpRounded;
|
|
28
|
-
MaterialSymbolsExpandCircleUpOutlineRounded: typeof MaterialSymbolsExpandCircleUpOutlineRounded;
|
|
29
|
-
Accordion: typeof Accordion;
|
|
30
|
-
AccordionPanel: typeof AccordionPanel;
|
|
31
|
-
AccordionHeader: typeof AccordionHeader;
|
|
32
|
-
AccordionContent: typeof AccordionContent;
|
|
33
|
-
isHovered: typeof isHovered;
|
|
34
|
-
activePanel: typeof activePanel;
|
|
35
|
-
accordionHeaderClasses: typeof accordionHeaderClasses;
|
|
36
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
|
-
"update:modelValue": (value: boolean) => any;
|
|
38
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
39
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
40
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
41
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
declare var __VLS_42: {};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
default?: (props: typeof __VLS_42) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
42
13
|
"update:modelValue": (value: boolean) => any;
|
|
43
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
44
15
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|