@milaboratories/uikit 1.2.13 → 1.2.15
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 +2341 -2317
- package/dist/pl-uikit.umd.cjs +7 -6
- package/dist/src/components/PlDialogModal/PlDialogModal.vue.d.ts +11 -0
- package/dist/src/components/PlLogView/PlLogView.vue.d.ts +17 -0
- package/dist/src/components/PlSlideModal/PlSlideModal.vue.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +5 -4
- package/src/assets/base.scss +1 -0
- package/src/assets/typography.scss +1 -0
- package/src/assets/variables.scss +4 -0
- package/src/components/PlBtnPrimary/PlBtnPrimary.vue +1 -1
- package/src/components/PlBtnPrimary/pl-btn-primary.scss +2 -1
- package/src/components/PlBtnSecondary/PlBtnSecondary.vue +1 -1
- package/src/components/PlBtnSecondary/pl-btn-secondary.scss +2 -1
- package/src/components/PlDialogModal/PlDialogModal.vue +33 -5
- package/src/components/PlDialogModal/pl-dialog-modal.scss +34 -21
- package/src/components/PlFileDialog/PlFileDialog.vue +22 -11
- package/src/components/PlFileDialog/pl-file-dialog.scss +2 -11
- package/src/components/PlFileInput/PlFileInput.vue +1 -1
- package/src/components/PlFileInput/pl-file-input.scss +1 -0
- package/src/components/PlLogView/PlLogView.vue +24 -4
- package/src/components/PlLogView/pl-log-view.scss +22 -3
- package/src/components/PlSlideModal/PlSlideModal.vue +3 -81
- package/src/components/PlSlideModal/pl-slide-modal.scss +88 -0
- package/src/components/PlTextField/pl-text-field.scss +1 -0
- package/src/components/contextMenu/Menu.vue +1 -1
- package/src/types.ts +8 -8
|
@@ -1,20 +1,28 @@
|
|
|
1
1
|
import './pl-dialog-modal.scss';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
+
/**
|
|
4
|
+
* Determines whether the modal is open
|
|
5
|
+
*/
|
|
3
6
|
modelValue: boolean;
|
|
4
7
|
width?: string;
|
|
5
8
|
height?: string;
|
|
6
9
|
minHeight?: string;
|
|
7
10
|
type?: "A" | "B" | "C";
|
|
8
11
|
closable?: boolean;
|
|
12
|
+
noContentGutters?: boolean;
|
|
9
13
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
14
|
"update:modelValue": (...args: any[]) => void;
|
|
11
15
|
}, string, import("vue").PublicProps, Readonly<{
|
|
16
|
+
/**
|
|
17
|
+
* Determines whether the modal is open
|
|
18
|
+
*/
|
|
12
19
|
modelValue: boolean;
|
|
13
20
|
width?: string;
|
|
14
21
|
height?: string;
|
|
15
22
|
minHeight?: string;
|
|
16
23
|
type?: "A" | "B" | "C";
|
|
17
24
|
closable?: boolean;
|
|
25
|
+
noContentGutters?: boolean;
|
|
18
26
|
}> & Readonly<{
|
|
19
27
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
20
28
|
}>, {
|
|
@@ -23,8 +31,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
23
31
|
type: "A" | "B" | "C";
|
|
24
32
|
minHeight: string;
|
|
25
33
|
closable: boolean;
|
|
34
|
+
noContentGutters: boolean;
|
|
26
35
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
36
|
+
title?(_: {}): any;
|
|
27
37
|
default?(_: {}): any;
|
|
38
|
+
actions?(_: {}): any;
|
|
28
39
|
}>;
|
|
29
40
|
export default _default;
|
|
30
41
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import './pl-log-view.scss';
|
|
2
|
+
import type { ValueOrErrors } from '@platforma-sdk/model';
|
|
2
3
|
/**
|
|
3
4
|
* Log Viewer Component
|
|
4
5
|
*/
|
|
@@ -7,10 +8,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
8
|
* String contents
|
|
8
9
|
*/
|
|
9
10
|
value?: string;
|
|
11
|
+
/**
|
|
12
|
+
* String contents
|
|
13
|
+
*/
|
|
14
|
+
error?: unknown;
|
|
15
|
+
/**
|
|
16
|
+
* Block output (Note: error and value take precedence over output property)
|
|
17
|
+
*/
|
|
18
|
+
output?: ValueOrErrors<unknown>;
|
|
10
19
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
11
20
|
/**
|
|
12
21
|
* String contents
|
|
13
22
|
*/
|
|
14
23
|
value?: string;
|
|
24
|
+
/**
|
|
25
|
+
* String contents
|
|
26
|
+
*/
|
|
27
|
+
error?: unknown;
|
|
28
|
+
/**
|
|
29
|
+
* Block output (Note: error and value take precedence over output property)
|
|
30
|
+
*/
|
|
31
|
+
output?: ValueOrErrors<unknown>;
|
|
15
32
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
33
|
export default _default;
|