@milaboratories/uikit 2.2.42 → 2.2.43

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.
@@ -18,7 +18,7 @@ declare const _default: <M = unknown>(__VLS_props: NonNullable<Awaited<typeof __
18
18
  /**
19
19
  * List of available options for the dropdown
20
20
  */
21
- options: Readonly<ListOption<M>[]>;
21
+ options?: Readonly<ListOption<M>[]>;
22
22
  /**
23
23
  * A helper text displayed below the dropdown when there are no errors (optional).
24
24
  */
@@ -0,0 +1,57 @@
1
+ import type { ModelRef, RefOption } from '../../types';
2
+ type __VLS_Props = {
3
+ /**
4
+ * The current selected values.
5
+ */
6
+ modelValue: ModelRef[] | undefined;
7
+ /**
8
+ * The label text for the dropdown field (optional)
9
+ */
10
+ label?: string;
11
+ /**
12
+ * List of available options for the dropdown
13
+ */
14
+ options?: Readonly<RefOption[]>;
15
+ /**
16
+ * A helper text displayed below the dropdown when there are no errors (optional).
17
+ */
18
+ helper?: string;
19
+ /**
20
+ * Error message displayed below the dropdown (optional)
21
+ */
22
+ error?: string;
23
+ /**
24
+ * Placeholder text shown when no value is selected.
25
+ */
26
+ placeholder?: string;
27
+ /**
28
+ * If `true`, the dropdown component is marked as required.
29
+ */
30
+ required?: boolean;
31
+ /**
32
+ * If `true`, the dropdown component is disabled and cannot be interacted with.
33
+ */
34
+ disabled?: boolean;
35
+ };
36
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
37
+ "update:modelValue": (value: Readonly<{
38
+ __isRef: true;
39
+ blockId: string;
40
+ name: string;
41
+ }>[] | undefined) => any;
42
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
43
+ "onUpdate:modelValue"?: ((value: Readonly<{
44
+ __isRef: true;
45
+ blockId: string;
46
+ name: string;
47
+ }>[] | undefined) => any) | undefined;
48
+ }>, {
49
+ label: string;
50
+ error: string;
51
+ modelValue: ModelRef[] | undefined;
52
+ required: boolean;
53
+ disabled: boolean;
54
+ helper: string;
55
+ placeholder: string;
56
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
57
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as PlDropdownMultiRef } from './PlDropdownMultiRef.vue';
@@ -33,6 +33,7 @@ export * from './components/PlTooltip';
33
33
  export * from './components/PlProgressBar';
34
34
  export * from './components/PlNumberField';
35
35
  export * from './components/PlDropdownMulti';
36
+ export * from './components/PlDropdownMultiRef';
36
37
  export * from './components/PlCheckbox';
37
38
  export * from './components/PlCheckboxGroup';
38
39
  export * from './components/PlChip';