@digitalservicebund/ris-ui 1.3.0 → 1.4.0

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.
@@ -0,0 +1,35 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /** Visible text. */
3
+ text: string;
4
+ /**
5
+ * Value that should be copied. If no value is provided, copying will
6
+ * copy the `text` by default.
7
+ */
8
+ value?: string;
9
+ /**
10
+ * Human-readable description of the value that should be copied. This
11
+ * will be used to provide an accessible label for the control.
12
+ *
13
+ * @default "Wert"
14
+ */
15
+ name?: string;
16
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
17
+ /** Visible text. */
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<{}>, {
32
+ value: string;
33
+ name: string;
34
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
35
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import RisCopyableLabel from "./RisCopyableLabel.vue";
2
+ export default RisCopyableLabel;
@@ -0,0 +1,25 @@
1
+ declare let __VLS_typeProps: {
2
+ /**
3
+ * Specifies the maximum number of visible lines.
4
+ * @default 3
5
+ */
6
+ length?: number;
7
+ };
8
+ type __VLS_PublicProps = {
9
+ "expanded"?: boolean;
10
+ } & typeof __VLS_typeProps;
11
+ declare function __VLS_template(): {
12
+ default?(_: {}): any;
13
+ };
14
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ 'update:expanded': (expanded: boolean) => any;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
+ "onUpdate:expanded"?: ((expanded: boolean) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
20
+ export default _default;
21
+ type __VLS_WithTemplateSlots<T, S> = T & {
22
+ new (): {
23
+ $slots: S;
24
+ };
25
+ };
@@ -0,0 +1,2 @@
1
+ import RisExpandableText from "./RisExpandableText.vue";
2
+ export default RisExpandableText;