@milaboratories/uikit 2.2.56 → 2.2.57

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,15 +1,35 @@
1
1
  type __VLS_Props = {
2
2
  /**
3
- * Optional string that sets size for PlLoaderCircular.
3
+ * Optional string that sets text that will be shown below the PlLoaderCircular.
4
4
  */
5
- size?: '16' | '24' | '48' | string;
5
+ loadingText?: string;
6
6
  /**
7
- * Optional string that sets text that will be shown below the PlLoaderCircular.
7
+ * If `true` the loading overlay is shown.
8
+ */
9
+ loading?: boolean;
10
+ /**
11
+ * @TODO
8
12
  */
9
- text?: string;
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
- declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
12
- text: string;
13
- size: "16" | "24" | "48" | string;
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
  }>;