@espri/vue-components 2.4.1 → 2.4.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.
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
export interface EspriSelectOption {
|
|
2
|
-
/**
|
|
3
|
-
* Display text for the option
|
|
4
|
-
*/
|
|
5
|
-
label: string;
|
|
6
|
-
/**
|
|
7
|
-
* Value associated with the option
|
|
8
|
-
*/
|
|
9
|
-
value: any;
|
|
10
|
-
}
|
|
11
1
|
export default interface EspriCheckboxProps {
|
|
12
2
|
/**
|
|
13
3
|
* Label displayed next to the checkbox.
|
|
@@ -2,6 +2,7 @@ import type { DefineComponent } from 'vue';
|
|
|
2
2
|
import type EspriMultiSelectEmits from './interfaces/multi-select-emits.interface';
|
|
3
3
|
import type { EspriMultiSelectEmitsForDoc } from './interfaces/multi-select-emits.interface';
|
|
4
4
|
import type EspriMultiSelectProps from './interfaces/multi-select-props.interface';
|
|
5
|
+
import type { EspriMultiSelectOption } from './interfaces/multi-select-props.interface';
|
|
5
6
|
/**
|
|
6
7
|
* **ESPRI Digital - Multi Select (Vue component)**
|
|
7
8
|
* --- ---
|
|
@@ -16,4 +17,4 @@ declare const EspriMultiSelect: DefineComponent<EspriMultiSelectProps, {}, // Fo
|
|
|
16
17
|
{}, // Extends
|
|
17
18
|
EspriMultiSelectEmitsForDoc>;
|
|
18
19
|
export default EspriMultiSelect;
|
|
19
|
-
export type { EspriMultiSelectEmits, EspriMultiSelectProps };
|
|
20
|
+
export type { EspriMultiSelectEmits, EspriMultiSelectOption, EspriMultiSelectProps };
|