@milaboratories/uikit 2.2.56 → 2.2.58
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 +2548 -2518
- package/dist/pl-uikit.js.map +1 -1
- package/dist/pl-uikit.umd.cjs +6 -6
- package/dist/pl-uikit.umd.cjs.map +1 -1
- package/dist/src/components/PlSplash/PlSplash.vue.d.ts +27 -7
- package/dist/src/layout/PlBlockPage/PlBlockPage.vue.d.ts +22 -0
- package/dist/src/layout/PlContainer/PlContainer.vue.d.ts +22 -0
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/assets/base.scss +0 -2
- package/src/assets/variables.scss +1 -0
- package/src/components/PlProgressCell/PlProgressCell.vue +2 -2
- package/src/components/PlProgressCell/pl-progress-cell.scss +4 -4
- package/src/components/PlProgressCell/types.ts +3 -3
- package/src/components/PlSplash/PlSplash.vue +18 -9
- package/src/components/PlSplash/pl-splash.module.scss +45 -9
- package/src/layout/PlBlockPage/PlBlockPage.vue +14 -2
- package/src/layout/PlContainer/PlContainer.vue +14 -2
|
@@ -1,15 +1,35 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
/**
|
|
3
|
-
* Optional string that sets
|
|
3
|
+
* Optional string that sets text that will be shown below the PlLoaderCircular.
|
|
4
4
|
*/
|
|
5
|
-
|
|
5
|
+
loadingText?: string;
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* If `true` the loading overlay is shown.
|
|
8
|
+
*/
|
|
9
|
+
loading?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* @TODO
|
|
8
12
|
*/
|
|
9
|
-
|
|
13
|
+
type?: 'table' | 'transparent';
|
|
14
|
+
};
|
|
15
|
+
declare function __VLS_template(): {
|
|
16
|
+
attrs: Partial<{}>;
|
|
17
|
+
slots: {
|
|
18
|
+
default?(_: {}): any;
|
|
19
|
+
};
|
|
20
|
+
refs: {};
|
|
21
|
+
rootEl: HTMLDivElement;
|
|
10
22
|
};
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
23
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
24
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
25
|
+
type: "table" | "transparent";
|
|
26
|
+
loading: boolean;
|
|
27
|
+
loadingText: string;
|
|
14
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
29
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
30
|
export default _default;
|
|
31
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -1,9 +1,31 @@
|
|
|
1
1
|
import './pl-block-page.scss';
|
|
2
2
|
/** Root block page component */
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* If `true` body gutters are removed
|
|
6
|
+
*/
|
|
4
7
|
noBodyGutters?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* If `true`, a loading overlay is displayed on the page body (over all default slot content)
|
|
10
|
+
*/
|
|
11
|
+
bodyLoading?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Optional body loading text
|
|
14
|
+
*/
|
|
15
|
+
bodyLoadingText?: string;
|
|
5
16
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
17
|
+
/**
|
|
18
|
+
* If `true` body gutters are removed
|
|
19
|
+
*/
|
|
6
20
|
noBodyGutters?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* If `true`, a loading overlay is displayed on the page body (over all default slot content)
|
|
23
|
+
*/
|
|
24
|
+
bodyLoading?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Optional body loading text
|
|
27
|
+
*/
|
|
28
|
+
bodyLoadingText?: string;
|
|
7
29
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
8
30
|
title?(_: {}): any;
|
|
9
31
|
"after-title"?(_: {}): any;
|
|
@@ -1,9 +1,31 @@
|
|
|
1
1
|
import './pl-container.scss';
|
|
2
2
|
/** Container with vertical spacing */
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* CSS width value (px, %)
|
|
6
|
+
*/
|
|
4
7
|
width?: string;
|
|
8
|
+
/**
|
|
9
|
+
* Shows loading overlay
|
|
10
|
+
*/
|
|
11
|
+
loading?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Optional loading text
|
|
14
|
+
*/
|
|
15
|
+
loadingText?: string;
|
|
5
16
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
17
|
+
/**
|
|
18
|
+
* CSS width value (px, %)
|
|
19
|
+
*/
|
|
6
20
|
width?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Shows loading overlay
|
|
23
|
+
*/
|
|
24
|
+
loading?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Optional loading text
|
|
27
|
+
*/
|
|
28
|
+
loadingText?: string;
|
|
7
29
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
8
30
|
default?(_: {}): any;
|
|
9
31
|
}>;
|