@digitalservicebund/ris-ui 3.21.3 → 4.0.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.
- package/README.md +13 -101
- package/dist/config/locale.d.ts +1 -1
- package/dist/lib/tags.d.ts +1 -1
- package/dist/primevue/autocomplete/autocomplete.d.ts +1 -1
- package/dist/primevue/breadcrumb/breadcrumb.d.ts +1 -1
- package/dist/primevue/button/button.d.ts +1 -1
- package/dist/primevue/checkbox/checkbox.d.ts +1 -1
- package/dist/primevue/chip/chip.d.ts +1 -1
- package/dist/primevue/confirmDialog/confirmDialog.d.ts +1 -1
- package/dist/primevue/dataTable/dataTable.d.ts +1 -1
- package/dist/primevue/dialog/dialog.d.ts +1 -1
- package/dist/primevue/fileUpload/fileUpload.d.ts +1 -1
- package/dist/primevue/index.js +598 -843
- package/dist/primevue/index.js.map +1 -1
- package/dist/primevue/inputGroup/inputGroup.d.ts +1 -1
- package/dist/primevue/inputMask/inputMask.d.ts +1 -1
- package/dist/primevue/inputText/inputText.d.ts +1 -1
- package/dist/primevue/menu/menu.d.ts +1 -1
- package/dist/primevue/message/message.d.ts +1 -1
- package/dist/primevue/multiSelect/multiSelect.d.ts +1 -1
- package/dist/primevue/panelMenu/panelMenu.d.ts +1 -1
- package/dist/primevue/password/password.d.ts +1 -1
- package/dist/primevue/progressSpinner/progressSpinner.d.ts +1 -1
- package/dist/primevue/radioButton/radioButton.d.ts +1 -1
- package/dist/primevue/select/select.d.ts +1 -1
- package/dist/primevue/splitter/splitter.d.ts +1 -1
- package/dist/primevue/tabs/tabs.d.ts +1 -1
- package/dist/primevue/textarea/textarea.d.ts +1 -1
- package/dist/primevue/toast/toast.d.ts +1 -1
- package/dist/primevue/tooltip/tooltip.d.ts +1 -1
- package/dist/primevue/tree/tree.d.ts +1 -1
- package/dist/style.css +2 -1
- package/dist/tailwind/index.js +0 -2
- package/package.json +37 -66
- package/dist/components/RisAutoComplete/RisAutoComplete.vue.d.ts +0 -22
- package/dist/components/RisAutoCompleteMultiple/RisAutoCompleteMultiple.vue.d.ts +0 -24
- package/dist/components/RisChipsInput/ChipInput.vue.d.ts +0 -23
- package/dist/components/RisChipsInput/RisChipsInput.vue.d.ts +0 -18
- package/dist/components/RisCopyableLabel/RisCopyableLabel.vue.d.ts +0 -22
- package/dist/components/RisExpandableText/RisExpandableText.vue.d.ts +0 -34
- package/dist/components/RisGhostButton/RisGhostButton.vue.d.ts +0 -16
- package/dist/components/RisPaginator/RisPaginator.vue.d.ts +0 -15
- package/dist/components/RisSingleAccordion/RisSingleAccordion.vue.d.ts +0 -25
- package/dist/components/index.d.ts +0 -15
- package/dist/components/index.js +0 -6912
- package/dist/components/index.js.map +0 -1
- package/dist/tags-Dde6Li6m.js +0 -5
- package/dist/tags-Dde6Li6m.js.map +0 -1
- package/dist/tailwind/index.js.map +0 -1
- package/dist/vitest-setup.d.ts +0 -1
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { type AutoCompleteProps } from "primevue/autocomplete";
|
|
2
|
-
export interface AutoCompleteSuggestion {
|
|
3
|
-
id: string;
|
|
4
|
-
label: string;
|
|
5
|
-
secondaryLabel?: string;
|
|
6
|
-
}
|
|
7
|
-
export type RisAutoCompleteProps = Pick<AutoCompleteProps, "dropdown" | "ariaLabel" | "ariaLabelledby" | "delay" | "completeOnFocus" | "optionDisabled" | "typeahead" | "scrollHeight" | "dropdownMode" | "placeholder" | "loading" | "invalid" | "disabled" | "forceSelection" | "autoOptionFocus" | "selectOnFocus" | "focusOnHover" | "appendTo"> & {
|
|
8
|
-
suggestions?: AutoCompleteSuggestion[];
|
|
9
|
-
initialLabel?: string;
|
|
10
|
-
};
|
|
11
|
-
type __VLS_Props = RisAutoCompleteProps;
|
|
12
|
-
type __VLS_ModelProps = {
|
|
13
|
-
modelValue?: string;
|
|
14
|
-
};
|
|
15
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
16
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
-
"update:modelValue": (value: string | undefined) => any;
|
|
18
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
|
-
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
20
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
-
declare const _default: typeof __VLS_export;
|
|
22
|
-
export default _default;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { type AutoCompleteProps } from "primevue/autocomplete";
|
|
2
|
-
export interface AutoCompleteMultipleSuggestion {
|
|
3
|
-
id: string;
|
|
4
|
-
label: string;
|
|
5
|
-
secondaryLabel?: string;
|
|
6
|
-
}
|
|
7
|
-
export type RisAutoCompleteMultipleProps = Pick<AutoCompleteProps, "ariaLabel" | "ariaLabelledby" | "placeholder" | "loading" | "invalid" | "disabled"> & {
|
|
8
|
-
suggestions: AutoCompleteMultipleSuggestion[];
|
|
9
|
-
disableDropdownTabNavigation?: boolean;
|
|
10
|
-
};
|
|
11
|
-
type __VLS_Props = RisAutoCompleteMultipleProps;
|
|
12
|
-
type __VLS_ModelProps = {
|
|
13
|
-
modelValue?: AutoCompleteMultipleSuggestion[];
|
|
14
|
-
};
|
|
15
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
16
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
17
|
-
show: () => void;
|
|
18
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
-
"update:modelValue": (value: AutoCompleteMultipleSuggestion[]) => any;
|
|
20
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
|
-
"onUpdate:modelValue"?: ((value: AutoCompleteMultipleSuggestion[]) => any) | undefined;
|
|
22
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
|
-
declare const _default: typeof __VLS_export;
|
|
24
|
-
export default _default;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
ariaLabel?: string;
|
|
3
|
-
placeholder?: string;
|
|
4
|
-
hasError?: boolean;
|
|
5
|
-
mask?: string;
|
|
6
|
-
shouldFocusOnMount?: boolean;
|
|
7
|
-
id: string;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_ModelProps = {
|
|
10
|
-
modelValue: string;
|
|
11
|
-
};
|
|
12
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
13
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
14
|
-
focus: () => void;
|
|
15
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
-
"update:modelValue": (value: string) => any;
|
|
17
|
-
complete: (args_0: void) => any;
|
|
18
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
20
|
-
onComplete?: ((args_0?: void | undefined) => any) | undefined;
|
|
21
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
-
declare const _default: typeof __VLS_export;
|
|
23
|
-
export default _default;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
ariaLabel?: string;
|
|
3
|
-
hasError?: boolean;
|
|
4
|
-
mask?: string;
|
|
5
|
-
placeholder?: string;
|
|
6
|
-
inputId?: string;
|
|
7
|
-
};
|
|
8
|
-
type __VLS_ModelProps = {
|
|
9
|
-
modelValue: string[];
|
|
10
|
-
};
|
|
11
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
12
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
-
"update:modelValue": (value: string[]) => any;
|
|
14
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
16
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
-
declare const _default: typeof __VLS_export;
|
|
18
|
-
export default _default;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
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
|
-
};
|
|
17
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
|
-
name: string;
|
|
19
|
-
value: string;
|
|
20
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
-
declare const _default: typeof __VLS_export;
|
|
22
|
-
export default _default;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
/**
|
|
3
|
-
* Specifies the maximum number of visible lines.
|
|
4
|
-
* @default 3
|
|
5
|
-
*/
|
|
6
|
-
length?: number;
|
|
7
|
-
/**
|
|
8
|
-
* Specifies a pixels threshold under which overflowing content would be
|
|
9
|
-
* ignored.
|
|
10
|
-
* @default 3
|
|
11
|
-
*/
|
|
12
|
-
tolerance?: number;
|
|
13
|
-
};
|
|
14
|
-
type __VLS_ModelProps = {
|
|
15
|
-
"expanded"?: boolean;
|
|
16
|
-
};
|
|
17
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
18
|
-
declare var __VLS_1: {};
|
|
19
|
-
type __VLS_Slots = {} & {
|
|
20
|
-
default?: (props: typeof __VLS_1) => any;
|
|
21
|
-
};
|
|
22
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
-
"update:expanded": (value: boolean) => any;
|
|
24
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
25
|
-
"onUpdate:expanded"?: ((value: boolean) => any) | undefined;
|
|
26
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
28
|
-
declare const _default: typeof __VLS_export;
|
|
29
|
-
export default _default;
|
|
30
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
31
|
-
new (): {
|
|
32
|
-
$slots: S;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
forceFocus?: boolean;
|
|
3
|
-
};
|
|
4
|
-
declare var __VLS_1: {};
|
|
5
|
-
type __VLS_Slots = {} & {
|
|
6
|
-
default?: (props: typeof __VLS_1) => any;
|
|
7
|
-
};
|
|
8
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
10
|
-
declare const _default: typeof __VLS_export;
|
|
11
|
-
export default _default;
|
|
12
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
13
|
-
new (): {
|
|
14
|
-
$slots: S;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { PageState, PaginatorProps } from "primevue";
|
|
2
|
-
type __VLS_Props = PaginatorProps & {
|
|
3
|
-
prevButtonLabel?: string;
|
|
4
|
-
nextButtonLabel?: string;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
|
-
page: (value: PageState) => any;
|
|
8
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
-
onPage?: ((value: PageState) => any) | undefined;
|
|
10
|
-
}>, {
|
|
11
|
-
prevButtonLabel: string;
|
|
12
|
-
nextButtonLabel: string;
|
|
13
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
-
declare const _default: typeof __VLS_export;
|
|
15
|
-
export default _default;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
headerCollapsed: string;
|
|
3
|
-
headerExpanded: string;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_ModelProps = {
|
|
6
|
-
modelValue?: boolean;
|
|
7
|
-
};
|
|
8
|
-
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
9
|
-
declare var __VLS_36: {};
|
|
10
|
-
type __VLS_Slots = {} & {
|
|
11
|
-
default?: (props: typeof __VLS_36) => any;
|
|
12
|
-
};
|
|
13
|
-
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
-
"update:modelValue": (value: boolean) => any;
|
|
15
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
19
|
-
declare const _default: typeof __VLS_export;
|
|
20
|
-
export default _default;
|
|
21
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
22
|
-
new (): {
|
|
23
|
-
$slots: S;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import RisAutoComplete from "./RisAutoComplete/RisAutoComplete.vue";
|
|
2
|
-
import RisAutoCompleteMultiple from "./RisAutoCompleteMultiple/RisAutoCompleteMultiple.vue";
|
|
3
|
-
import RisChipsInput from "./RisChipsInput/RisChipsInput.vue";
|
|
4
|
-
import RisCopyableLabel from "./RisCopyableLabel/RisCopyableLabel.vue";
|
|
5
|
-
import RisExpandableText from "./RisExpandableText/RisExpandableText.vue";
|
|
6
|
-
import RisPaginator from "./RisPaginator/RisPaginator.vue";
|
|
7
|
-
import RisSingleAccordion from "./RisSingleAccordion/RisSingleAccordion.vue";
|
|
8
|
-
export * from "./RisAutoComplete/RisAutoComplete.vue";
|
|
9
|
-
export * from "./RisAutoCompleteMultiple/RisAutoCompleteMultiple.vue";
|
|
10
|
-
export * from "./RisChipsInput/RisChipsInput.vue";
|
|
11
|
-
export * from "./RisCopyableLabel/RisCopyableLabel.vue";
|
|
12
|
-
export * from "./RisExpandableText/RisExpandableText.vue";
|
|
13
|
-
export * from "./RisPaginator/RisPaginator.vue";
|
|
14
|
-
export * from "./RisSingleAccordion/RisSingleAccordion.vue";
|
|
15
|
-
export { RisAutoComplete, RisAutoCompleteMultiple, RisChipsInput, RisCopyableLabel, RisExpandableText, RisPaginator, RisSingleAccordion, };
|