@milaboratories/uikit 2.2.46 → 2.2.47
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 +6 -0
- package/dist/pl-uikit.js +43 -24
- package/dist/pl-uikit.umd.cjs +1 -1
- package/dist/src/components/PlDialogModal/PlDialogModal.vue.d.ts +10 -0
- package/dist/src/components/PlDropdownMultiRef/PlDropdownMultiRef.vue.d.ts +1 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/components/PlDialogModal/PlDialogModal.vue +41 -2
- package/src/components/PlDropdownMulti/PlDropdownMulti.vue +1 -0
- package/src/components/PlDropdownMultiRef/PlDropdownMultiRef.vue +1 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import './pl-dialog-modal.scss';
|
|
2
|
+
import type { Size } from '../../types';
|
|
2
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
4
|
/**
|
|
4
5
|
* Determines whether the modal is open
|
|
@@ -40,6 +41,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
40
41
|
* If `true`, the modal window closes when clicking outside the modal area (default: `true`)
|
|
41
42
|
*/
|
|
42
43
|
closeOnOutsideClick?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Predefined size (standard small | medium | large). Takes precedence over (min|max)(width|height) properties. Not defined by default.
|
|
46
|
+
*/
|
|
47
|
+
size?: Size | undefined;
|
|
43
48
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
49
|
"update:modelValue": (...args: any[]) => void;
|
|
45
50
|
}, string, import("vue").PublicProps, Readonly<{
|
|
@@ -83,9 +88,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
83
88
|
* If `true`, the modal window closes when clicking outside the modal area (default: `true`)
|
|
84
89
|
*/
|
|
85
90
|
closeOnOutsideClick?: boolean;
|
|
91
|
+
/**
|
|
92
|
+
* Predefined size (standard small | medium | large). Takes precedence over (min|max)(width|height) properties. Not defined by default.
|
|
93
|
+
*/
|
|
94
|
+
size?: Size | undefined;
|
|
86
95
|
}> & Readonly<{
|
|
87
96
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
88
97
|
}>, {
|
|
98
|
+
size: Size;
|
|
89
99
|
height: string;
|
|
90
100
|
width: string;
|
|
91
101
|
maxHeight: string;
|