@digitalservicebund/ris-ui 1.1.0 → 1.3.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/dist/components/RisAutoComplete/RisAutoComplete.vue.d.ts +22 -0
- package/dist/components/RisAutoComplete/index.d.ts +2 -0
- package/dist/components/RisSingleAccordion/RisSingleAccordion.vue.d.ts +23 -0
- package/dist/components/RisSingleAccordion/index.d.ts +2 -0
- package/dist/components/index.cjs +758 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +5847 -0
- package/dist/primevue/autocomplete/autocomplete.d.ts +3 -0
- package/dist/primevue/index.cjs +1 -1
- package/dist/primevue/index.d.ts +3 -0
- package/dist/primevue/index.js +161 -82
- package/dist/primevue/inputMask/inputMask.d.ts +3 -0
- package/dist/primevue/inputText/inputText.d.ts +5 -0
- package/dist/primevue/select/select.d.ts +4 -0
- package/dist/style.css +1 -1
- package/package.json +15 -3
@@ -0,0 +1,22 @@
|
|
1
|
+
import { type AutoCompleteProps } from "primevue/autocomplete";
|
2
|
+
export interface AutoCompleteSuggestion {
|
3
|
+
id: string;
|
4
|
+
label: string;
|
5
|
+
secondaryLabel?: string;
|
6
|
+
}
|
7
|
+
export type Props = Pick<AutoCompleteProps, "dropdown" | "ariaLabel" | "ariaLabelledby" | "delay" | "completeOnFocus" | "optionDisabled" | "typeahead" | "scrollHeight" | "dropdownMode" | "placeholder" | "loading" | "invalid" | "disabled" | "forceSelection" | "autoOptionFocus" | "selectOnFocus"> & {
|
8
|
+
suggestions?: AutoCompleteSuggestion[];
|
9
|
+
initialLabel?: string;
|
10
|
+
};
|
11
|
+
declare let __VLS_typeProps: Props;
|
12
|
+
type __VLS_PublicProps = {
|
13
|
+
modelValue?: string;
|
14
|
+
} & typeof __VLS_typeProps;
|
15
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
|
16
|
+
autoCompleteRef: import("vue").Ref<import("@primevue/core").DefineComponent<AutoCompleteProps, import("primevue/autocomplete").AutoCompleteSlots, ((e: "blur", event: Event) => void) & ((e: "change", event: import("primevue/autocomplete").AutoCompleteChangeEvent) => void) & ((e: "focus", event: Event) => void) & ((e: "update:modelValue", value: any) => 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: "blur", event: Event) => void) & ((e: "change", event: import("primevue/autocomplete").AutoCompleteChangeEvent) => void) & ((e: "focus", event: Event) => void) & ((e: "update:modelValue", value: any) => 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
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
18
|
+
'update:modelValue': (modelValue: string) => any;
|
19
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
20
|
+
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
|
21
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
22
|
+
export default _default;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
declare let __VLS_typeProps: {
|
2
|
+
headerCollapsed: string;
|
3
|
+
headerExpanded: string;
|
4
|
+
};
|
5
|
+
type __VLS_PublicProps = {
|
6
|
+
modelValue?: boolean;
|
7
|
+
} & typeof __VLS_typeProps;
|
8
|
+
declare function __VLS_template(): {
|
9
|
+
default?(_: {}): any;
|
10
|
+
};
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
12
|
+
'update:modelValue': (modelValue: boolean) => any;
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
14
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
15
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
17
|
+
export default _default;
|
18
|
+
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
20
|
+
new (): {
|
21
|
+
$slots: S;
|
22
|
+
};
|
23
|
+
};
|