@milaboratories/uikit 2.1.0 → 2.1.2
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/CHANGELOG.md +12 -0
- package/dist/pl-uikit.js +2181 -2165
- package/dist/pl-uikit.umd.cjs +8 -8
- package/dist/src/components/PlDropdown/PlDropdown.vue.d.ts +5 -1
- package/dist/src/components/PlDropdownRef/PlDropdownRef.vue.d.ts +11 -2
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/PlBtnGroup/pl-btn-group.scss +2 -4
- package/src/components/PlDropdown/PlDropdown.vue +30 -6
- package/src/components/PlDropdown/pl-dropdown.scss +14 -4
- package/src/components/PlDropdownRef/PlDropdownRef.vue +15 -3
|
@@ -18,11 +18,15 @@ 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
|
|
21
|
+
options?: Readonly<ListOption<M>[]>;
|
|
22
22
|
/**
|
|
23
23
|
* A helper text displayed below the dropdown when there are no errors (optional).
|
|
24
24
|
*/
|
|
25
25
|
helper?: string;
|
|
26
|
+
/**
|
|
27
|
+
* A helper text displayed below the dropdown when there are no options yet or options is undefined (optional).
|
|
28
|
+
*/
|
|
29
|
+
loadingOptionsHelper?: string;
|
|
26
30
|
/**
|
|
27
31
|
* Error message displayed below the dropdown (optional)
|
|
28
32
|
*/
|
|
@@ -14,11 +14,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
14
14
|
/**
|
|
15
15
|
* List of available ref options for the dropdown
|
|
16
16
|
*/
|
|
17
|
-
options
|
|
17
|
+
options?: Readonly<RefOption[]>;
|
|
18
18
|
/**
|
|
19
19
|
* A helper text displayed below the dropdown when there are no errors (optional).
|
|
20
20
|
*/
|
|
21
21
|
helper?: string;
|
|
22
|
+
/**
|
|
23
|
+
* A helper text displayed below the dropdown when there are no options yet or options is undefined (optional).
|
|
24
|
+
*/
|
|
25
|
+
loadingOptionsHelper?: string;
|
|
22
26
|
/**
|
|
23
27
|
* Error message displayed below the dropdown (optional)
|
|
24
28
|
*/
|
|
@@ -61,11 +65,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
65
|
/**
|
|
62
66
|
* List of available ref options for the dropdown
|
|
63
67
|
*/
|
|
64
|
-
options
|
|
68
|
+
options?: Readonly<RefOption[]>;
|
|
65
69
|
/**
|
|
66
70
|
* A helper text displayed below the dropdown when there are no errors (optional).
|
|
67
71
|
*/
|
|
68
72
|
helper?: string;
|
|
73
|
+
/**
|
|
74
|
+
* A helper text displayed below the dropdown when there are no options yet or options is undefined (optional).
|
|
75
|
+
*/
|
|
76
|
+
loadingOptionsHelper?: string;
|
|
69
77
|
/**
|
|
70
78
|
* Error message displayed below the dropdown (optional)
|
|
71
79
|
*/
|
|
@@ -98,6 +106,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
98
106
|
}> | undefined) => any) | undefined;
|
|
99
107
|
}>, {
|
|
100
108
|
error: string;
|
|
109
|
+
options: Readonly<RefOption[]>;
|
|
101
110
|
label: string;
|
|
102
111
|
required: boolean;
|
|
103
112
|
disabled: boolean;
|